63 lines
2.3 KiB
Python
63 lines
2.3 KiB
Python
# vim: tabstop=4 shiftwidth=4 softtabstop=4
|
|
|
|
# Copyright 2011 Citrix Systems.
|
|
# 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 webob.dec
|
|
import webob.exc
|
|
|
|
from quantum.api import api_common as common
|
|
from quantum.common import wsgi
|
|
|
|
class Fault(webob.exc.HTTPException):
|
|
"""Error codes for API faults"""
|
|
|
|
_fault_names = {
|
|
400: "malformedRequest",
|
|
401: "unauthorized",
|
|
402: "networkNotFound",
|
|
403: "requestedStateInvalid",
|
|
460: "networkInUse",
|
|
461: "alreadyAttached",
|
|
462: "portInUse",
|
|
470: "serviceUnavailable",
|
|
471: "pluginFault"
|
|
}
|
|
|
|
def __init__(self, exception):
|
|
"""Create a Fault for the given webob.exc.exception."""
|
|
self.wrapped_exc = exception
|
|
|
|
@webob.dec.wsgify(RequestClass=wsgi.Request)
|
|
def __call__(self, req):
|
|
"""Generate a WSGI response based on the exception passed to ctor."""
|
|
# Replace the body with fault details.
|
|
code = self.wrapped_exc.status_int
|
|
fault_name = self._fault_names.get(code, "quantumServiceFault")
|
|
fault_data = {
|
|
fault_name: {
|
|
'code': code,
|
|
'message': self.wrapped_exc.explanation}}
|
|
#TODO (salvatore-orlando): place over-limit stuff here
|
|
# 'code' is an attribute on the fault tag itself
|
|
metadata = {'application/xml': {'attributes': {fault_name: 'code'}}}
|
|
default_xmlns = common.XML_NS_V10
|
|
serializer = wsgi.Serializer(metadata, default_xmlns)
|
|
content_type = req.best_match_content_type()
|
|
self.wrapped_exc.body = serializer.serialize(fault_data, content_type)
|
|
self.wrapped_exc.content_type = content_type
|
|
return self.wrapped_exc
|