
1. What is the problem The current Nova_APIGW does not support microversion function, the service controller uses a fixed API version number to initialize novaclient 2. What is the solution to the problem When the service controller receives an API request, it will get the microversion number from request headers , and use this to initialize novaclient. For how to get the microversion number, please refer to: https://specs.openstack.org/openstack/nova-specs/specs/kilo/implemented/api-microversions.html The microversion supported range is 2.1 to latest version 3. What the features need to be implemented to the Tricircle to realize the solution Nova_APIGW microversion support added Change-Id: Idf44c91100e5cb8ad0355164c9be991aa54a652b
184 lines
5.7 KiB
Python
184 lines
5.7 KiB
Python
# Copyright 2015 Huawei Technologies Co., Ltd.
|
|
# All Rights Reserved
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
import copy
|
|
|
|
from pecan import request
|
|
|
|
import oslo_context.context as oslo_ctx
|
|
|
|
from tricircle.common import constants
|
|
from tricircle.common.i18n import _
|
|
from tricircle.db import core
|
|
|
|
|
|
def get_db_context():
|
|
return Context()
|
|
|
|
|
|
def get_admin_context():
|
|
ctx = Context()
|
|
ctx.is_admin = True
|
|
return ctx
|
|
|
|
|
|
def is_admin_context(ctx):
|
|
return ctx.is_admin
|
|
|
|
|
|
def extract_context_from_environ():
|
|
context_paras = {'auth_token': 'HTTP_X_AUTH_TOKEN',
|
|
'user': 'HTTP_X_USER_ID',
|
|
'tenant': 'HTTP_X_TENANT_ID',
|
|
'user_name': 'HTTP_X_USER_NAME',
|
|
'tenant_name': 'HTTP_X_PROJECT_NAME',
|
|
'domain': 'HTTP_X_DOMAIN_ID',
|
|
'user_domain': 'HTTP_X_USER_DOMAIN_ID',
|
|
'project_domain': 'HTTP_X_PROJECT_DOMAIN_ID',
|
|
'request_id': 'openstack.request_id',
|
|
'nova_micro_version':
|
|
constants.NOVA_API_VERSION_REQUEST_HEADER}
|
|
|
|
environ = request.environ
|
|
|
|
for key in context_paras:
|
|
context_paras[key] = environ.get(context_paras[key])
|
|
role = environ.get('HTTP_X_ROLE')
|
|
|
|
context_paras['is_admin'] = role == 'admin'
|
|
return Context(**context_paras)
|
|
|
|
|
|
def get_context_from_neutron_context(context):
|
|
ctx = Context()
|
|
ctx.auth_token = context.auth_token
|
|
ctx.user = context.user_id
|
|
ctx.tenant = context.tenant_id
|
|
ctx.tenant_name = context.tenant_name
|
|
ctx.user_name = context.user_name
|
|
ctx.resource_uuid = context.resource_uuid
|
|
return ctx
|
|
|
|
|
|
class ContextBase(oslo_ctx.RequestContext):
|
|
def __init__(self, auth_token=None, user_id=None, tenant_id=None,
|
|
is_admin=False, read_deleted="no", request_id=None,
|
|
overwrite=True, user_name=None, tenant_name=None,
|
|
quota_class=None, **kwargs):
|
|
"""Initialize RequestContext.
|
|
|
|
:param read_deleted: 'no' indicates deleted records are hidden, 'yes'
|
|
indicates deleted records are visible, 'only' indicates that
|
|
*only* deleted records are visible.
|
|
|
|
:param overwrite: Set to False to ensure that the greenthread local
|
|
copy of the index is not overwritten.
|
|
"""
|
|
super(ContextBase, self).__init__(
|
|
auth_token=auth_token,
|
|
user=user_id or kwargs.get('user', None),
|
|
tenant=tenant_id or kwargs.get('tenant', None),
|
|
domain=kwargs.get('domain', None),
|
|
user_domain=kwargs.get('user_domain', None),
|
|
project_domain=kwargs.get('project_domain', None),
|
|
is_admin=is_admin,
|
|
read_only=kwargs.get('read_only', False),
|
|
show_deleted=kwargs.get('show_deleted', False),
|
|
request_id=request_id,
|
|
resource_uuid=kwargs.get('resource_uuid', None),
|
|
overwrite=overwrite)
|
|
self.user_name = user_name
|
|
self.tenant_name = tenant_name
|
|
self.quota_class = quota_class
|
|
self.read_deleted = read_deleted
|
|
self.nova_micro_version = kwargs.get('nova_micro_version',
|
|
constants.NOVA_APIGW_MIN_VERSION)
|
|
|
|
def _get_read_deleted(self):
|
|
return self._read_deleted
|
|
|
|
def _set_read_deleted(self, read_deleted):
|
|
if read_deleted not in ('no', 'yes', 'only'):
|
|
raise ValueError(_("read_deleted can only be one of 'no', "
|
|
"'yes' or 'only', not %r") % read_deleted)
|
|
self._read_deleted = read_deleted
|
|
|
|
def _del_read_deleted(self):
|
|
del self._read_deleted
|
|
|
|
read_deleted = property(_get_read_deleted, _set_read_deleted,
|
|
_del_read_deleted)
|
|
|
|
def to_dict(self):
|
|
ctx_dict = super(ContextBase, self).to_dict()
|
|
ctx_dict.update({
|
|
'user_name': self.user_name,
|
|
'tenant_name': self.tenant_name,
|
|
'tenant_id': self.tenant_id,
|
|
'project_id': self.project_id,
|
|
'quota_class': self.quota_class
|
|
})
|
|
return ctx_dict
|
|
|
|
@classmethod
|
|
def from_dict(cls, values):
|
|
return cls(**values)
|
|
|
|
@property
|
|
def project_id(self):
|
|
return self.tenant
|
|
|
|
@project_id.setter
|
|
def project_id(self, value):
|
|
self.tenant = value
|
|
|
|
@property
|
|
def tenant_id(self):
|
|
return self.tenant
|
|
|
|
@tenant_id.setter
|
|
def tenant_id(self, value):
|
|
self.tenant = value
|
|
|
|
@property
|
|
def user_id(self):
|
|
return self.user
|
|
|
|
@user_id.setter
|
|
def user_id(self, value):
|
|
self.user = value
|
|
|
|
|
|
class Context(ContextBase):
|
|
def __init__(self, **kwargs):
|
|
super(Context, self).__init__(**kwargs)
|
|
self._session = None
|
|
|
|
@property
|
|
def session(self):
|
|
if not self._session:
|
|
self._session = core.get_session()
|
|
return self._session
|
|
|
|
def elevated(self, read_deleted=None, overwrite=False):
|
|
"""Return a version of this context with admin flag set."""
|
|
ctx = copy.copy(self)
|
|
ctx.is_admin = True
|
|
|
|
if read_deleted is not None:
|
|
ctx.read_deleted = read_deleted
|
|
|
|
return ctx
|