如何进行NoAuthMiddlewareBase及NoAuthMiddleware解析

71次阅读
没有评论

共计 1570 个字符,预计需要花费 4 分钟才能阅读完成。

这期内容当中丸趣 TV 小编将会给大家带来有关如何进行 NoAuthMiddlewareBase 及 NoAuthMiddleware 解析,文章内容丰富且以专业的角度为大家分析和叙述,阅读完这篇文章希望大家可以有所收获。

NoAuthMiddlewareBase 解析

class NoAuthMiddlewareBase(base_wsgi.Middleware): 如果请求头里没有指定对应的请求令牌,则返回一个伪造的令牌.  def base_call(self, req, project_id_in_path, always_admin=True):if  X-Auth-Token  not in req.headers:
 user_id = req.headers.get(X-Auth-User ,  admin)# 设置默认的用户 ID
 project_id = req.headers.get(X-Auth-Project-Id ,  admin)# 设置默认的项目 IDif project_id_in_path:
 os_url =  / .join([req.url.rstrip( /), project_id])else:
 os_url = req.url.rstrip(/)
 res = webob.Response()# NOTE(vish): This is expecting and returning Auth(1.1), whereas # keystone uses 2.0 auth. We should probably allow # 2.0 auth here as well. res.headers[X-Auth-Token] =  %s:%s  % (user_id, project_id)# 伪造 token
 res.headers[X-Server-Management-Url] = os_url # 设置 url
 res.content_type =  text/plain  # 设置 content-type res.status =  204  return res
 token = req.headers[X-Auth-Token]
 user_id, _sep, project_id = token.partition(:)
 project_id = project_id or user_id
 remote_address = getattr(req,  remote_address ,  127.0.0.1)if CONF.api.use_forwarded_for:
 remote_address = req.headers.get(X-Forwarded-For , remote_address)
 is_admin = always_admin or (user_id ==  admin)
 ctx = context.RequestContext(user_id,
 project_id, is_admin=is_admin, remote_address=remote_address)# 封装请求上下文
 req.environ[nova.context] = ctxreturn self.application

NoAuthMiddleware 解析

class NoAuthMiddleware(NoAuthMiddlewareBase):
#继承父类  
@webob.dec.wsgify(Request >

上述就是丸趣 TV 小编为大家分享的如何进行 NoAuthMiddlewareBase 及 NoAuthMiddleware 解析了,如果刚好有类似的疑惑,不妨参照上述分析进行理解。如果想知道更多相关知识,欢迎关注丸趣 TV 行业资讯频道。

正文完
 
丸趣
版权声明:本站原创文章,由 丸趣 2023-08-16发表,共计1570字。
转载说明:除特殊说明外本站除技术相关以外文章皆由网络搜集发布,转载请注明出处。
评论(没有评论)