summaryrefslogtreecommitdiff
path: root/designate/api/v2/patches.py
diff options
context:
space:
mode:
Diffstat (limited to 'designate/api/v2/patches.py')
-rw-r--r--designate/api/v2/patches.py38
1 files changed, 38 insertions, 0 deletions
diff --git a/designate/api/v2/patches.py b/designate/api/v2/patches.py
new file mode 100644
index 00000000..1f0bf8ad
--- /dev/null
+++ b/designate/api/v2/patches.py
@@ -0,0 +1,38 @@
+# Copyright 2013 Hewlett-Packard Development Company, L.P.
+#
+# Author: Kiall Mac Innes <kiall@hp.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.
+import pecan.core
+from designate.openstack.common import jsonutils
+
+JSON_TYPES = ('application/json', 'application/json-patch+json')
+
+
+class Request(pecan.core.Request):
+ @property
+ def body_dict(self):
+ """
+ Returns the body content as a dictonary, 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:
+ return jsonutils.load(self.body_file)
+ else:
+ raise Exception('TODO: Unsupported Content Type')
+
+
+pecan.core.Request = Request