64 lines
1.8 KiB
Python
Raw Normal View History

2014-03-07 15:36:22 -08:00
"""
Copyright 2014 Rackspace, 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.
"""
import pecan
2014-03-11 14:13:13 -07:00
from pecan import hooks
2014-03-07 15:36:22 -08:00
from ironic_python_agent.api import config
2014-03-07 15:36:22 -08:00
2014-03-11 14:13:13 -07:00
class AgentHook(hooks.PecanHook):
def __init__(self, agent, *args, **kwargs):
super(AgentHook, self).__init__(*args, **kwargs)
self.agent = agent
def before(self, state):
state.request.agent = self.agent
2014-03-07 15:36:22 -08:00
def get_pecan_config():
# Set up the pecan configuration
filename = config.__file__.replace('.pyc', '.py')
return pecan.configuration.conf_from_file(filename)
def setup_app(pecan_config=None, extra_hooks=None, agent=None):
2014-03-11 14:13:13 -07:00
app_hooks = [AgentHook(agent)]
2014-03-07 15:36:22 -08:00
if not pecan_config:
pecan_config = get_pecan_config()
pecan.configuration.set_config(dict(pecan_config), overwrite=True)
app = pecan.make_app(
pecan_config.app.root,
static_root=pecan_config.app.static_root,
2014-03-13 13:35:31 -07:00
debug=pecan_config.app.debug,
2014-03-07 15:36:22 -08:00
force_canonical=getattr(pecan_config.app, 'force_canonical', True),
2014-03-11 14:13:13 -07:00
hooks=app_hooks,
2014-03-07 15:36:22 -08:00
)
return app
class VersionSelectorApplication(object):
2014-03-11 14:13:13 -07:00
def __init__(self, agent):
2014-03-07 15:36:22 -08:00
pc = get_pecan_config()
self.v1 = setup_app(pecan_config=pc, agent=agent)
2014-03-07 15:36:22 -08:00
def __call__(self, environ, start_response):
return self.v1(environ, start_response)