deb-designate/designate/api/v2/patches.py

56 lines
2.1 KiB
Python

# Copyright 2013 Hewlett-Packard Development Company, L.P.
#
# Author: Kiall Mac Innes <kiall@hpe.com>
#
# 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.
from inspect import ismethod
from inspect import getargspec
import six
from oslo_serialization import jsonutils
import pecan.core
from designate import exceptions
JSON_TYPES = ('application/json', 'application/json-patch+json')
class Request(pecan.core.Request):
@property
def body_dict(self):
"""
Returns the body content as a dictionary, deserializing per the
Content-Type header.
We add this method to ease future XML support, so the main code
is not hardcoded to call pecans "request.json" method.
"""
if self.content_type in JSON_TYPES:
try:
return jsonutils.load(self.body_file)
except ValueError as valueError:
if len(self.body) == 0:
raise exceptions.EmptyRequestBody('Request Body is empty')
else:
raise exceptions.InvalidJson(six.text_type(valueError))
else:
raise exceptions.UnsupportedContentType(
'Content-type must be application/json')
__init__ = pecan.core.Pecan.__base__.__init__
if not ismethod(__init__) or 'request_cls' not in getargspec(__init__).args:
# only attempt to monkey patch `pecan.Request` in older versions of pecan;
# newer versions support specifying a custom request implementation in the
# `pecan.core.Pecan` constructor via the `request_cls` argument
pecan.core.Request = Request