21a14acba4
The Oslo libraries have moved all of their code out of the 'oslo' namespace package into per-library packages. The namespace package was retained during kilo for backwards compatibility, but will be removed by the liberty-2 milestone. This change removes the use of the namespace package, replacing it with the new package names. The patches in the libraries will be put on hold until application patches have landed, or L2, whichever comes first. At that point, new versions of the libraries without namespace packages will be released as a major version update. Please merge this patch, or an equivalent, before L2 to avoid problems with those library releases. Blueprint: remove-namespace-packages https://blueprints.launchpad.net/oslo-incubator/+spec/remove-namespace-packages Change-Id: I975592f3694be42d52685ebf606f6d3012caf1a8
94 lines
3.1 KiB
Python
94 lines
3.1 KiB
Python
# Copyright (c) 2014 Mirantis, Inc.
|
|
#
|
|
# 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.
|
|
|
|
"""
|
|
A filter middleware that inspects the requested URI for a version string
|
|
and/or Accept headers and attempts to negotiate an API controller to
|
|
return
|
|
"""
|
|
|
|
from oslo_config import cfg
|
|
|
|
from murano.api import versions
|
|
from murano.common import wsgi
|
|
import murano.openstack.common.log as logging
|
|
|
|
CONF = cfg.CONF
|
|
LOG = logging.getLogger(__name__)
|
|
|
|
|
|
class VersionNegotiationFilter(wsgi.Middleware):
|
|
@classmethod
|
|
def factory(cls, global_conf, **local_conf):
|
|
def filter(app):
|
|
return cls(app)
|
|
return filter
|
|
|
|
def __init__(self, app):
|
|
self.versions_app = versions.Controller()
|
|
super(VersionNegotiationFilter, self).__init__(app)
|
|
|
|
def process_request(self, req):
|
|
"""Try to find a version first in the accept header, then the URL."""
|
|
msg = ("Determining version of request:"
|
|
" %(method)s %(path)s Accept: %(accept)s")
|
|
args = {'method': req.method, 'path': req.path, 'accept': req.accept}
|
|
LOG.debug(msg % args)
|
|
|
|
LOG.debug("Using url versioning")
|
|
# Remove version in url so it doesn't conflict later
|
|
req_version = self._pop_path_info(req)
|
|
|
|
try:
|
|
version = self._match_version_string(req_version)
|
|
except ValueError:
|
|
LOG.debug("Unknown version. Returning version choices.")
|
|
return self.versions_app
|
|
|
|
req.environ['api.version'] = version
|
|
req.path_info = ''.join(('/v', str(version), req.path_info))
|
|
LOG.debug("Matched version: v%d", version)
|
|
LOG.debug('new path %s' % req.path_info)
|
|
return None
|
|
|
|
def _match_version_string(self, subject):
|
|
"""Given a string, tries to match a major and/or
|
|
minor version number.
|
|
|
|
:param subject: The string to check
|
|
:returns version found in the subject
|
|
:raises ValueError if no acceptable version could be found
|
|
"""
|
|
if subject in ('v1',):
|
|
major_version = 1
|
|
else:
|
|
raise ValueError()
|
|
return major_version
|
|
|
|
def _pop_path_info(self, req):
|
|
"""'Pops' off the next segment of PATH_INFO, returns the popped
|
|
segment. Do NOT push it onto SCRIPT_NAME.
|
|
"""
|
|
path = req.path_info
|
|
if not path:
|
|
return None
|
|
while path.startswith('/'):
|
|
path = path[1:]
|
|
idx = path.find('/')
|
|
if idx == -1:
|
|
idx = len(path)
|
|
r = path[:idx]
|
|
req.path_info = path[idx:]
|
|
return r
|