Merge "resolve fixme comments in RequestContext"

This commit is contained in:
Zuul
2025-07-03 17:28:54 +00:00
committed by Gerrit Code Review

View File

@@ -38,7 +38,7 @@ class RequestContext(context.RequestContext):
""" """
user = kwargs.pop('user', None) user = kwargs.pop('user', None)
tenant = kwargs.pop('tenant', None) tenant = kwargs.pop('tenant', None)
super(RequestContext, self).__init__( super().__init__(
auth_token=auth_token, auth_token=auth_token,
user_id=user_id or user, user_id=user_id or user,
project_id=project_id or tenant, project_id=project_id or tenant,
@@ -56,54 +56,24 @@ class RequestContext(context.RequestContext):
global_request_id=kwargs.pop('global_request_id', None), global_request_id=kwargs.pop('global_request_id', None),
system_scope=kwargs.pop('system_scope', None)) system_scope=kwargs.pop('system_scope', None))
self.remote_address = kwargs.pop('remote_address', None) # Note(sean-k-mooney): we should audit what we are using
self.read_deleted = kwargs.pop('read_deleted', None) # this for and possibly remove it or document it.
self.service_catalog = kwargs.pop('service_catalog', None)
self.quota_class = kwargs.pop('quota_class', None)
# FIXME(dims): user_id and project_id duplicate information that is
# already present in the oslo_context's RequestContext. We need to
# get rid of them.
self.domain_name = domain_name
self.domain_id = domain_id
self.auth_token_info = auth_token_info self.auth_token_info = auth_token_info
self.user_id = user_id or user
self.project_id = project_id
if not timestamp: if not timestamp:
timestamp = timeutils.utcnow() timestamp = timeutils.utcnow()
if isinstance(timestamp, str): if isinstance(timestamp, str):
timestamp = timeutils.parse_isotime(timestamp) timestamp = timeutils.parse_isotime(timestamp)
self.timestamp = timestamp self.timestamp = timestamp
self.user_name = user_name
self.project_name = project_name
self.is_admin = is_admin
# if self.is_admin is None:
# self.is_admin = policy.check_is_admin(self)
def to_dict(self): def to_dict(self):
values = super(RequestContext, self).to_dict() values = super().to_dict()
# FIXME(dims): defensive hasattr() checks need to be
# removed once we figure out why we are seeing stack
# traces
values.update({ values.update({
'user_id': getattr(self, 'user_id', None),
'user_name': getattr(self, 'user_name', None),
'project_id': getattr(self, 'project_id', None),
'project_name': getattr(self, 'project_name', None),
'domain_id': getattr(self, 'domain_id', None),
'domain_name': getattr(self, 'domain_name', None),
'auth_token_info': getattr(self, 'auth_token_info', None), 'auth_token_info': getattr(self, 'auth_token_info', None),
'is_admin': getattr(self, 'is_admin', None), 'timestamp': self.timestamp.isoformat(),
'timestamp': self.timestamp.isoformat() if hasattr(
self, 'timestamp') else None,
'request_id': getattr(self, 'request_id', None),
}) })
return values return values
@classmethod
def from_dict(cls, values):
return cls(**values)
def __str__(self): def __str__(self):
return "<Context %s>" % self.to_dict() return "<Context %s>" % self.to_dict()