268cfbbfc0
Allow users to enable whatever freezer-api version they like. * Added enable_v1_api to control v1 api * Added enable_v2_api to control v2 api Implements blueprint api-v2-multi-tenancy Change-Id: I62a31476d416f9fe89e6e90c2206a55a8c1b7d14 Signed-off-by: Saad Zaher <eng.szaher@gmail.com>
74 lines
2.3 KiB
Python
74 lines
2.3 KiB
Python
"""
|
|
(c) Copyright 2016 Hewlett-Packard Enterprise Development Company, L.P.
|
|
|
|
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 sys
|
|
|
|
import falcon
|
|
from oslo_config import cfg
|
|
from paste import deploy
|
|
from paste import urlmap
|
|
import pkg_resources
|
|
|
|
from freezer_api.cmd import api
|
|
from freezer_api.common import config
|
|
|
|
CONF = cfg.CONF
|
|
# Define the minimum version of falcon at which we can use the "new" invocation
|
|
# style for middleware (aka v1), i.e. the "middleware" named argument for
|
|
# falcon.API.
|
|
FALCON_MINVERSION_MIDDLEWARE = pkg_resources.parse_version('0.2.0b1')
|
|
|
|
|
|
def root_app_factory(loader, global_conf, **local_conf):
|
|
"""Allows freezer to launch multiple applications at a time.
|
|
It will allow freezer to manage multiple versions.
|
|
"""
|
|
if not CONF.enable_v1_api and '/v1' in local_conf:
|
|
del local_conf['/v1']
|
|
if not CONF.enable_v2_api and '/v2' in local_conf:
|
|
del local_conf['/v2']
|
|
return urlmap.urlmap_factory(loader, global_conf, **local_conf)
|
|
|
|
|
|
def freezer_appv1_factory(global_conf, **local_conf):
|
|
current_version = pkg_resources.parse_version(
|
|
falcon.__version__ if hasattr(falcon,
|
|
'__version__') else falcon.version)
|
|
|
|
# Check the currently installed version of falcon in order to invoke it
|
|
# correctly.
|
|
if current_version < FALCON_MINVERSION_MIDDLEWARE:
|
|
return api.build_app_v0()
|
|
else:
|
|
return api.build_app_v1()
|
|
|
|
|
|
def freezer_appv2_factory(global_conf, **local_conf):
|
|
return api.build_app_v2()
|
|
|
|
|
|
def initialize_app(conf=None, name='main'):
|
|
""" initializing app for paste to deploy it """
|
|
|
|
# register and parse arguments
|
|
config.parse_args(args=sys.argv[1:])
|
|
# register logging opts
|
|
config.setup_logging()
|
|
# locate and load paste file
|
|
conf = config.find_paste_config()
|
|
app = deploy.loadapp('config:%s' % conf, name=name)
|
|
return app
|