Joe Gregorio | 3ad5e9a | 2010-12-09 15:01:04 -0500 | [diff] [blame] | 1 | #!/usr/bin/python2.4 |
| 2 | # |
Joe Gregorio | 20a5aa9 | 2011-04-01 17:44:25 -0400 | [diff] [blame] | 3 | # Copyright (C) 2010 Google Inc. |
| 4 | # |
| 5 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | # you may not use this file except in compliance with the License. |
| 7 | # You may obtain a copy of the License at |
| 8 | # |
| 9 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | # |
| 11 | # Unless required by applicable law or agreed to in writing, software |
| 12 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | # See the License for the specific language governing permissions and |
| 15 | # limitations under the License. |
Joe Gregorio | 3ad5e9a | 2010-12-09 15:01:04 -0500 | [diff] [blame] | 16 | |
Joe Gregorio | ec34365 | 2011-02-16 16:52:51 -0500 | [diff] [blame] | 17 | """Model objects for requests and responses. |
Joe Gregorio | 3ad5e9a | 2010-12-09 15:01:04 -0500 | [diff] [blame] | 18 | |
| 19 | Each API may support one or more serializations, such |
| 20 | as JSON, Atom, etc. The model classes are responsible |
| 21 | for converting between the wire format and the Python |
| 22 | object representation. |
| 23 | """ |
| 24 | |
| 25 | __author__ = 'jcgregorio@google.com (Joe Gregorio)' |
| 26 | |
Joe Gregorio | 34044bc | 2011-03-07 16:58:33 -0500 | [diff] [blame] | 27 | import gflags |
Joe Gregorio | 3ad5e9a | 2010-12-09 15:01:04 -0500 | [diff] [blame] | 28 | import logging |
| 29 | import urllib |
| 30 | |
Joe Gregorio | b843fa2 | 2010-12-13 16:26:07 -0500 | [diff] [blame] | 31 | from anyjson import simplejson |
| 32 | from errors import HttpError |
Joe Gregorio | 3ad5e9a | 2010-12-09 15:01:04 -0500 | [diff] [blame] | 33 | |
Joe Gregorio | 34044bc | 2011-03-07 16:58:33 -0500 | [diff] [blame] | 34 | FLAGS = gflags.FLAGS |
| 35 | |
Joe Gregorio | afdf50b | 2011-03-08 09:41:52 -0500 | [diff] [blame] | 36 | gflags.DEFINE_boolean('dump_request_response', False, |
Matt McDonald | 2a5f413 | 2011-04-29 16:32:27 -0400 | [diff] [blame] | 37 | 'Dump all http server requests and responses. ' |
Joe Gregorio | 205e73a | 2011-03-12 09:55:31 -0500 | [diff] [blame] | 38 | ) |
Joe Gregorio | deeb020 | 2011-02-15 14:49:57 -0500 | [diff] [blame] | 39 | |
Joe Gregorio | afdf50b | 2011-03-08 09:41:52 -0500 | [diff] [blame] | 40 | |
Joe Gregorio | abda96f | 2011-02-11 20:19:33 -0500 | [diff] [blame] | 41 | def _abstract(): |
| 42 | raise NotImplementedError('You need to override this function') |
Joe Gregorio | 3ad5e9a | 2010-12-09 15:01:04 -0500 | [diff] [blame] | 43 | |
Joe Gregorio | abda96f | 2011-02-11 20:19:33 -0500 | [diff] [blame] | 44 | |
| 45 | class Model(object): |
| 46 | """Model base class. |
| 47 | |
| 48 | All Model classes should implement this interface. |
| 49 | The Model serializes and de-serializes between a wire |
| 50 | format such as JSON and a Python object representation. |
| 51 | """ |
| 52 | |
| 53 | def request(self, headers, path_params, query_params, body_value): |
Matt McDonald | 2a5f413 | 2011-04-29 16:32:27 -0400 | [diff] [blame] | 54 | """Updates outgoing requests with a serialized body. |
Joe Gregorio | abda96f | 2011-02-11 20:19:33 -0500 | [diff] [blame] | 55 | |
| 56 | Args: |
| 57 | headers: dict, request headers |
| 58 | path_params: dict, parameters that appear in the request path |
| 59 | query_params: dict, parameters that appear in the query |
| 60 | body_value: object, the request body as a Python object, which must be |
| 61 | serializable. |
| 62 | Returns: |
| 63 | A tuple of (headers, path_params, query, body) |
| 64 | |
| 65 | headers: dict, request headers |
| 66 | path_params: dict, parameters that appear in the request path |
| 67 | query: string, query part of the request URI |
| 68 | body: string, the body serialized in the desired wire format. |
| 69 | """ |
| 70 | _abstract() |
| 71 | |
| 72 | def response(self, resp, content): |
| 73 | """Convert the response wire format into a Python object. |
| 74 | |
| 75 | Args: |
| 76 | resp: httplib2.Response, the HTTP response headers and status |
| 77 | content: string, the body of the HTTP response |
| 78 | |
| 79 | Returns: |
| 80 | The body de-serialized as a Python object. |
| 81 | |
| 82 | Raises: |
| 83 | apiclient.errors.HttpError if a non 2xx response is received. |
| 84 | """ |
| 85 | _abstract() |
| 86 | |
| 87 | |
Matt McDonald | 2a5f413 | 2011-04-29 16:32:27 -0400 | [diff] [blame] | 88 | class BaseModel(Model): |
| 89 | """Base model class. |
Joe Gregorio | 3ad5e9a | 2010-12-09 15:01:04 -0500 | [diff] [blame] | 90 | |
Matt McDonald | 2a5f413 | 2011-04-29 16:32:27 -0400 | [diff] [blame] | 91 | Subclasses should provide implementations for the "serialize" and |
| 92 | "deserialize" methods, as well as values for the following class attributes. |
| 93 | |
| 94 | Attributes: |
| 95 | accept: The value to use for the HTTP Accept header. |
| 96 | content_type: The value to use for the HTTP Content-type header. |
| 97 | no_content_response: The value to return when deserializing a 204 "No |
| 98 | Content" response. |
| 99 | alt_param: The value to supply as the "alt" query parameter for requests. |
Joe Gregorio | 3ad5e9a | 2010-12-09 15:01:04 -0500 | [diff] [blame] | 100 | """ |
| 101 | |
Matt McDonald | 2a5f413 | 2011-04-29 16:32:27 -0400 | [diff] [blame] | 102 | accept = None |
| 103 | content_type = None |
| 104 | no_content_response = None |
| 105 | alt_param = None |
Joe Gregorio | d433b2a | 2011-02-22 10:51:51 -0500 | [diff] [blame] | 106 | |
Matt McDonald | 2a5f413 | 2011-04-29 16:32:27 -0400 | [diff] [blame] | 107 | def _log_request(self, headers, path_params, query, body): |
| 108 | """Logs debugging information about the request if requested.""" |
| 109 | if FLAGS.dump_request_response: |
| 110 | logging.info('--request-start--') |
| 111 | logging.info('-headers-start-') |
| 112 | for h, v in headers.iteritems(): |
| 113 | logging.info('%s: %s', h, v) |
| 114 | logging.info('-headers-end-') |
| 115 | logging.info('-path-parameters-start-') |
| 116 | for h, v in path_params.iteritems(): |
| 117 | logging.info('%s: %s', h, v) |
| 118 | logging.info('-path-parameters-end-') |
| 119 | logging.info('body: %s', body) |
| 120 | logging.info('query: %s', query) |
| 121 | logging.info('--request-end--') |
Joe Gregorio | d433b2a | 2011-02-22 10:51:51 -0500 | [diff] [blame] | 122 | |
Joe Gregorio | 3ad5e9a | 2010-12-09 15:01:04 -0500 | [diff] [blame] | 123 | def request(self, headers, path_params, query_params, body_value): |
Matt McDonald | 2a5f413 | 2011-04-29 16:32:27 -0400 | [diff] [blame] | 124 | """Updates outgoing requests with a serialized body. |
Joe Gregorio | 3ad5e9a | 2010-12-09 15:01:04 -0500 | [diff] [blame] | 125 | |
| 126 | Args: |
| 127 | headers: dict, request headers |
| 128 | path_params: dict, parameters that appear in the request path |
| 129 | query_params: dict, parameters that appear in the query |
| 130 | body_value: object, the request body as a Python object, which must be |
| 131 | serializable by simplejson. |
| 132 | Returns: |
| 133 | A tuple of (headers, path_params, query, body) |
| 134 | |
| 135 | headers: dict, request headers |
| 136 | path_params: dict, parameters that appear in the request path |
| 137 | query: string, query part of the request URI |
| 138 | body: string, the body serialized as JSON |
| 139 | """ |
| 140 | query = self._build_query(query_params) |
Matt McDonald | 2a5f413 | 2011-04-29 16:32:27 -0400 | [diff] [blame] | 141 | headers['accept'] = self.accept |
Joe Gregorio | 6429bf6 | 2011-03-01 22:53:21 -0800 | [diff] [blame] | 142 | headers['accept-encoding'] = 'gzip, deflate' |
Joe Gregorio | 3ad5e9a | 2010-12-09 15:01:04 -0500 | [diff] [blame] | 143 | if 'user-agent' in headers: |
| 144 | headers['user-agent'] += ' ' |
| 145 | else: |
| 146 | headers['user-agent'] = '' |
| 147 | headers['user-agent'] += 'google-api-python-client/1.0' |
Joe Gregorio | d433b2a | 2011-02-22 10:51:51 -0500 | [diff] [blame] | 148 | |
Joe Gregorio | afdf50b | 2011-03-08 09:41:52 -0500 | [diff] [blame] | 149 | if body_value is not None: |
Matt McDonald | 2a5f413 | 2011-04-29 16:32:27 -0400 | [diff] [blame] | 150 | headers['content-type'] = self.content_type |
| 151 | body_value = self.serialize(body_value) |
| 152 | self._log_request(headers, path_params, query, body_value) |
Joe Gregorio | afdf50b | 2011-03-08 09:41:52 -0500 | [diff] [blame] | 153 | return (headers, path_params, query, body_value) |
Joe Gregorio | 3ad5e9a | 2010-12-09 15:01:04 -0500 | [diff] [blame] | 154 | |
| 155 | def _build_query(self, params): |
| 156 | """Builds a query string. |
| 157 | |
| 158 | Args: |
| 159 | params: dict, the query parameters |
| 160 | |
| 161 | Returns: |
| 162 | The query parameters properly encoded into an HTTP URI query string. |
| 163 | """ |
Matt McDonald | 2a5f413 | 2011-04-29 16:32:27 -0400 | [diff] [blame] | 164 | params.update({'alt': self.alt_param}) |
Joe Gregorio | 3ad5e9a | 2010-12-09 15:01:04 -0500 | [diff] [blame] | 165 | astuples = [] |
| 166 | for key, value in params.iteritems(): |
Joe Gregorio | 61d7e96 | 2011-02-22 22:52:07 -0500 | [diff] [blame] | 167 | if type(value) == type([]): |
| 168 | for x in value: |
| 169 | x = x.encode('utf-8') |
| 170 | astuples.append((key, x)) |
| 171 | else: |
| 172 | if getattr(value, 'encode', False) and callable(value.encode): |
| 173 | value = value.encode('utf-8') |
| 174 | astuples.append((key, value)) |
Joe Gregorio | 3ad5e9a | 2010-12-09 15:01:04 -0500 | [diff] [blame] | 175 | return '?' + urllib.urlencode(astuples) |
| 176 | |
Matt McDonald | 2a5f413 | 2011-04-29 16:32:27 -0400 | [diff] [blame] | 177 | def _log_response(self, resp, content): |
| 178 | """Logs debugging information about the response if requested.""" |
| 179 | if FLAGS.dump_request_response: |
| 180 | logging.info('--response-start--') |
| 181 | for h, v in resp.iteritems(): |
| 182 | logging.info('%s: %s', h, v) |
| 183 | if content: |
| 184 | logging.info(content) |
| 185 | logging.info('--response-end--') |
| 186 | |
Joe Gregorio | 3ad5e9a | 2010-12-09 15:01:04 -0500 | [diff] [blame] | 187 | def response(self, resp, content): |
| 188 | """Convert the response wire format into a Python object. |
| 189 | |
| 190 | Args: |
| 191 | resp: httplib2.Response, the HTTP response headers and status |
| 192 | content: string, the body of the HTTP response |
| 193 | |
| 194 | Returns: |
| 195 | The body de-serialized as a Python object. |
| 196 | |
| 197 | Raises: |
| 198 | apiclient.errors.HttpError if a non 2xx response is received. |
| 199 | """ |
Matt McDonald | 2a5f413 | 2011-04-29 16:32:27 -0400 | [diff] [blame] | 200 | self._log_response(resp, content) |
Joe Gregorio | 3ad5e9a | 2010-12-09 15:01:04 -0500 | [diff] [blame] | 201 | # Error handling is TBD, for example, do we retry |
| 202 | # for some operation/error combinations? |
| 203 | if resp.status < 300: |
| 204 | if resp.status == 204: |
| 205 | # A 204: No Content response should be treated differently |
| 206 | # to all the other success states |
Matt McDonald | 2a5f413 | 2011-04-29 16:32:27 -0400 | [diff] [blame] | 207 | return self.no_content_response |
| 208 | return self.deserialize(content) |
Joe Gregorio | 3ad5e9a | 2010-12-09 15:01:04 -0500 | [diff] [blame] | 209 | else: |
| 210 | logging.debug('Content from bad request was: %s' % content) |
Ali Afshar | 2dcc652 | 2010-12-16 10:11:53 +0100 | [diff] [blame] | 211 | raise HttpError(resp, content) |
Joe Gregorio | 34044bc | 2011-03-07 16:58:33 -0500 | [diff] [blame] | 212 | |
Matt McDonald | 2a5f413 | 2011-04-29 16:32:27 -0400 | [diff] [blame] | 213 | def serialize(self, body_value): |
| 214 | """Perform the actual Python object serialization. |
Joe Gregorio | 34044bc | 2011-03-07 16:58:33 -0500 | [diff] [blame] | 215 | |
| 216 | Args: |
Matt McDonald | 2a5f413 | 2011-04-29 16:32:27 -0400 | [diff] [blame] | 217 | body_value: object, the request body as a Python object. |
| 218 | |
| 219 | Returns: |
| 220 | string, the body in serialized form. |
| 221 | """ |
| 222 | _abstract() |
| 223 | |
| 224 | def deserialize(self, content): |
| 225 | """Perform the actual deserialization from response string to Python object. |
| 226 | |
| 227 | Args: |
| 228 | content: string, the body of the HTTP response |
Joe Gregorio | 34044bc | 2011-03-07 16:58:33 -0500 | [diff] [blame] | 229 | |
| 230 | Returns: |
| 231 | The body de-serialized as a Python object. |
| 232 | """ |
Matt McDonald | 2a5f413 | 2011-04-29 16:32:27 -0400 | [diff] [blame] | 233 | _abstract() |
Joe Gregorio | afdf50b | 2011-03-08 09:41:52 -0500 | [diff] [blame] | 234 | |
Matt McDonald | 2a5f413 | 2011-04-29 16:32:27 -0400 | [diff] [blame] | 235 | |
| 236 | class JsonModel(BaseModel): |
| 237 | """Model class for JSON. |
| 238 | |
| 239 | Serializes and de-serializes between JSON and the Python |
| 240 | object representation of HTTP request and response bodies. |
| 241 | """ |
| 242 | accept = 'application/json' |
| 243 | content_type = 'application/json' |
| 244 | alt_param = 'json' |
| 245 | |
| 246 | def __init__(self, data_wrapper=False): |
| 247 | """Construct a JsonModel. |
Joe Gregorio | afdf50b | 2011-03-08 09:41:52 -0500 | [diff] [blame] | 248 | |
| 249 | Args: |
Matt McDonald | 2a5f413 | 2011-04-29 16:32:27 -0400 | [diff] [blame] | 250 | data_wrapper: boolean, wrap requests and responses in a data wrapper |
Joe Gregorio | afdf50b | 2011-03-08 09:41:52 -0500 | [diff] [blame] | 251 | """ |
Matt McDonald | 2a5f413 | 2011-04-29 16:32:27 -0400 | [diff] [blame] | 252 | self._data_wrapper = data_wrapper |
| 253 | |
| 254 | def serialize(self, body_value): |
| 255 | if (isinstance(body_value, dict) and 'data' not in body_value and |
| 256 | self._data_wrapper): |
| 257 | body_value = {'data': body_value} |
| 258 | return simplejson.dumps(body_value) |
| 259 | |
| 260 | def deserialize(self, content): |
| 261 | body = simplejson.loads(content) |
| 262 | if isinstance(body, dict) and 'data' in body: |
| 263 | body = body['data'] |
| 264 | return body |
| 265 | |
| 266 | @property |
| 267 | def no_content_response(self): |
| 268 | return {} |
| 269 | |
| 270 | |
| 271 | class ProtocolBufferModel(BaseModel): |
| 272 | """Model class for protocol buffers. |
| 273 | |
| 274 | Serializes and de-serializes the binary protocol buffer sent in the HTTP |
| 275 | request and response bodies. |
| 276 | """ |
| 277 | accept = 'application/x-protobuf' |
| 278 | content_type = 'application/x-protobuf' |
| 279 | alt_param = 'proto' |
| 280 | |
| 281 | def __init__(self, protocol_buffer): |
| 282 | """Constructs a ProtocolBufferModel. |
| 283 | |
| 284 | The serialzed protocol buffer returned in an HTTP response will be |
| 285 | de-serialized using the given protocol buffer class. |
| 286 | |
| 287 | Args: |
| 288 | protocol_buffer: The protocol buffer class used to de-serialize a response |
| 289 | from the API. |
| 290 | """ |
| 291 | self._protocol_buffer = protocol_buffer |
| 292 | |
| 293 | def serialize(self, body_value): |
| 294 | return body_value.SerializeToString() |
| 295 | |
| 296 | def deserialize(self, content): |
| 297 | return self._protocol_buffer.FromString(content) |
| 298 | |
| 299 | @property |
| 300 | def no_content_response(self): |
| 301 | return self._protocol_buffer() |
Joe Gregorio | e98c232 | 2011-05-26 15:40:48 -0400 | [diff] [blame] | 302 | |
| 303 | |
| 304 | def makepatch(original, modified): |
| 305 | """Create a patch object. |
| 306 | |
| 307 | Some methods support PATCH, an efficient way to send updates to a resource. |
| 308 | This method allows the easy construction of patch bodies by looking at the |
| 309 | differences between a resource before and after it was modified. |
| 310 | |
| 311 | Args: |
| 312 | original: object, the original deserialized resource |
| 313 | modified: object, the modified deserialized resource |
| 314 | Returns: |
| 315 | An object that contains only the changes from original to modified, in a |
| 316 | form suitable to pass to a PATCH method. |
| 317 | |
| 318 | Example usage: |
| 319 | item = service.activities().get(postid=postid, userid=userid).execute() |
| 320 | original = copy.deepcopy(item) |
| 321 | item['object']['content'] = 'This is updated.' |
| 322 | service.activities.patch(postid=postid, userid=userid, |
| 323 | body=makepatch(original, item)).execute() |
| 324 | """ |
| 325 | patch = {} |
| 326 | for key, original_value in original.iteritems(): |
| 327 | modified_value = modified.get(key, None) |
| 328 | if modified_value is None: |
| 329 | # Use None to signal that the element is deleted |
| 330 | patch[key] = None |
| 331 | elif original_value != modified_value: |
| 332 | if type(original_value) == type({}): |
| 333 | # Recursively descend objects |
| 334 | patch[key] = makepatch(original_value, modified_value) |
| 335 | else: |
| 336 | # In the case of simple types or arrays we just replace |
| 337 | patch[key] = modified_value |
| 338 | else: |
| 339 | # Don't add anything to patch if there's no change |
| 340 | pass |
| 341 | for key in modified: |
| 342 | if key not in original: |
| 343 | patch[key] = modified[key] |
| 344 | |
| 345 | return patch |