
This change condenses the directory structure to something more similar to what we had before while producing similar packages. It also introduces version.py which allows us to get the version from git tags (or a fallback version if not available). Fixes lp bug 889336 Fixes lp bug 888795 Change-Id: I86136bd9dbabb5eb1f8366ed665ed9b54f695124
90 lines
3.3 KiB
Python
90 lines
3.3 KiB
Python
# vim: tabstop=4 shiftwidth=4 softtabstop=4
|
|
|
|
# Copyright 2011 Citrix System.
|
|
# 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 logging
|
|
import webob
|
|
|
|
from webob import exc
|
|
|
|
from quantum import wsgi
|
|
|
|
XML_NS_V01 = 'http://netstack.org/quantum/api/v0.1'
|
|
XML_NS_V10 = 'http://netstack.org/quantum/api/v1.0'
|
|
LOG = logging.getLogger('quantum.api.api_common')
|
|
|
|
|
|
class QuantumController(wsgi.Controller):
|
|
""" Base controller class for Quantum API """
|
|
|
|
def __init__(self, plugin):
|
|
self._plugin = plugin
|
|
super(QuantumController, self).__init__()
|
|
|
|
def _parse_request_params(self, req, params):
|
|
results = {}
|
|
data = {}
|
|
# Parameters are expected to be in request body only
|
|
if req.body:
|
|
des_body = self._deserialize(req.body,
|
|
req.best_match_content_type())
|
|
data = des_body and des_body.get(self._resource_name, None)
|
|
if not data:
|
|
msg = ("Failed to parse request. Resource: " +
|
|
self._resource_name + " not found in request body")
|
|
for line in msg.split('\n'):
|
|
LOG.error(line)
|
|
raise exc.HTTPBadRequest(msg)
|
|
|
|
for param in params:
|
|
param_name = param['param-name']
|
|
param_value = data.get(param_name, None)
|
|
# If the parameter wasn't found and it was required, return 400
|
|
if param_value is None and param['required']:
|
|
msg = ("Failed to parse request. " +
|
|
"Parameter: " + param_name + " not specified")
|
|
for line in msg.split('\n'):
|
|
LOG.error(line)
|
|
raise exc.HTTPBadRequest(msg)
|
|
results[param_name] = param_value or param.get('default-value')
|
|
|
|
# There may be other parameters (data extensions), so we
|
|
# should include those in the results dict as well.
|
|
for key in data.keys():
|
|
if key not in params:
|
|
results[key] = data[key]
|
|
|
|
return results
|
|
|
|
def _build_response(self, req, res_data, status_code=200):
|
|
""" A function which builds an HTTP response
|
|
given a status code and a dictionary containing
|
|
the response body to be serialized
|
|
|
|
"""
|
|
content_type = req.best_match_content_type()
|
|
default_xmlns = self.get_default_xmlns(req)
|
|
body = self._serialize(res_data, content_type, default_xmlns)
|
|
|
|
response = webob.Response()
|
|
response.status = status_code
|
|
response.headers['Content-Type'] = content_type
|
|
response.body = body
|
|
msg_dict = dict(url=req.url, status=response.status_int)
|
|
msg = _("%(url)s returned with HTTP %(status)d") % msg_dict
|
|
LOG.debug(msg)
|
|
return response
|