Craig Citro | 751b7fb | 2014-09-23 11:20:38 -0700 | [diff] [blame] | 1 | # Copyright 2014 Google Inc. All Rights Reserved. |
Joe Gregorio | 20a5aa9 | 2011-04-01 17:44:25 -0400 | [diff] [blame] | 2 | # |
| 3 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | # you may not use this file except in compliance with the License. |
| 5 | # You may obtain a copy of the License at |
| 6 | # |
| 7 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | # |
| 9 | # Unless required by applicable law or agreed to in writing, software |
| 10 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | # See the License for the specific language governing permissions and |
| 13 | # limitations under the License. |
Joe Gregorio | 3ad5e9a | 2010-12-09 15:01:04 -0500 | [diff] [blame] | 14 | |
| 15 | """Errors for the library. |
| 16 | |
| 17 | All exceptions defined by the library |
| 18 | should be defined in this file. |
| 19 | """ |
INADA Naoki | e4ea1a9 | 2015-03-04 03:45:42 +0900 | [diff] [blame] | 20 | from __future__ import absolute_import |
Joe Gregorio | 3ad5e9a | 2010-12-09 15:01:04 -0500 | [diff] [blame] | 21 | |
| 22 | __author__ = 'jcgregorio@google.com (Joe Gregorio)' |
| 23 | |
Craig Citro | 6ae34d7 | 2014-08-18 23:10:09 -0700 | [diff] [blame] | 24 | import json |
Joe Gregorio | 3ad5e9a | 2010-12-09 15:01:04 -0500 | [diff] [blame] | 25 | |
Joe Gregorio | 68a8cfe | 2012-08-03 16:17:40 -0400 | [diff] [blame] | 26 | from oauth2client import util |
Ali Afshar | 2dcc652 | 2010-12-16 10:11:53 +0100 | [diff] [blame] | 27 | |
| 28 | |
Joe Gregorio | 3ad5e9a | 2010-12-09 15:01:04 -0500 | [diff] [blame] | 29 | class Error(Exception): |
| 30 | """Base error for this module.""" |
| 31 | pass |
| 32 | |
| 33 | |
| 34 | class HttpError(Error): |
| 35 | """HTTP data was invalid or unexpected.""" |
| 36 | |
Joe Gregorio | 68a8cfe | 2012-08-03 16:17:40 -0400 | [diff] [blame] | 37 | @util.positional(3) |
Joe Gregorio | 4939655 | 2011-03-08 10:39:00 -0500 | [diff] [blame] | 38 | def __init__(self, resp, content, uri=None): |
Joe Gregorio | 3ad5e9a | 2010-12-09 15:01:04 -0500 | [diff] [blame] | 39 | self.resp = resp |
Ali Afshar | 2dcc652 | 2010-12-16 10:11:53 +0100 | [diff] [blame] | 40 | self.content = content |
Joe Gregorio | 4939655 | 2011-03-08 10:39:00 -0500 | [diff] [blame] | 41 | self.uri = uri |
Joe Gregorio | 3ad5e9a | 2010-12-09 15:01:04 -0500 | [diff] [blame] | 42 | |
Ali Afshar | 2dcc652 | 2010-12-16 10:11:53 +0100 | [diff] [blame] | 43 | def _get_reason(self): |
Joe Gregorio | fdf7c80 | 2011-06-30 12:33:38 -0400 | [diff] [blame] | 44 | """Calculate the reason for the error from the response content.""" |
Joe Gregorio | 20b54fb | 2012-07-26 09:59:35 -0400 | [diff] [blame] | 45 | reason = self.resp.reason |
| 46 | try: |
Craig Citro | 6ae34d7 | 2014-08-18 23:10:09 -0700 | [diff] [blame] | 47 | data = json.loads(self.content) |
Joe Gregorio | 20b54fb | 2012-07-26 09:59:35 -0400 | [diff] [blame] | 48 | reason = data['error']['message'] |
| 49 | except (ValueError, KeyError): |
| 50 | pass |
Joe Gregorio | e7bbbb9 | 2013-02-20 15:37:24 -0500 | [diff] [blame] | 51 | if reason is None: |
| 52 | reason = '' |
Ali Afshar | 2dcc652 | 2010-12-16 10:11:53 +0100 | [diff] [blame] | 53 | return reason |
| 54 | |
| 55 | def __repr__(self): |
Joe Gregorio | 4939655 | 2011-03-08 10:39:00 -0500 | [diff] [blame] | 56 | if self.uri: |
| 57 | return '<HttpError %s when requesting %s returned "%s">' % ( |
Joe Gregorio | 3fb9367 | 2012-07-25 11:31:11 -0400 | [diff] [blame] | 58 | self.resp.status, self.uri, self._get_reason().strip()) |
Joe Gregorio | 4939655 | 2011-03-08 10:39:00 -0500 | [diff] [blame] | 59 | else: |
| 60 | return '<HttpError %s "%s">' % (self.resp.status, self._get_reason()) |
Ali Afshar | 2dcc652 | 2010-12-16 10:11:53 +0100 | [diff] [blame] | 61 | |
| 62 | __str__ = __repr__ |
Joe Gregorio | 3ad5e9a | 2010-12-09 15:01:04 -0500 | [diff] [blame] | 63 | |
| 64 | |
Joe Gregorio | 4939655 | 2011-03-08 10:39:00 -0500 | [diff] [blame] | 65 | class InvalidJsonError(Error): |
| 66 | """The JSON returned could not be parsed.""" |
| 67 | pass |
| 68 | |
| 69 | |
Joe Gregorio | dc106fc | 2012-11-20 14:30:14 -0500 | [diff] [blame] | 70 | class UnknownFileType(Error): |
| 71 | """File type unknown or unexpected.""" |
| 72 | pass |
| 73 | |
| 74 | |
Joe Gregorio | 3ad5e9a | 2010-12-09 15:01:04 -0500 | [diff] [blame] | 75 | class UnknownLinkType(Error): |
| 76 | """Link type unknown or unexpected.""" |
| 77 | pass |
Joe Gregorio | fdf7c80 | 2011-06-30 12:33:38 -0400 | [diff] [blame] | 78 | |
Joe Gregorio | 66f5752 | 2011-11-30 11:00:00 -0500 | [diff] [blame] | 79 | |
Joe Gregorio | dae2f55 | 2011-11-21 08:16:56 -0500 | [diff] [blame] | 80 | class UnknownApiNameOrVersion(Error): |
Joe Gregorio | 8b4df3f | 2011-11-18 15:44:48 -0500 | [diff] [blame] | 81 | """No API with that name and version exists.""" |
| 82 | pass |
| 83 | |
Joe Gregorio | a388ce3 | 2011-09-09 17:19:13 -0400 | [diff] [blame] | 84 | |
Joe Gregorio | fdf7c80 | 2011-06-30 12:33:38 -0400 | [diff] [blame] | 85 | class UnacceptableMimeTypeError(Error): |
| 86 | """That is an unacceptable mimetype for this operation.""" |
| 87 | pass |
| 88 | |
Joe Gregorio | a388ce3 | 2011-09-09 17:19:13 -0400 | [diff] [blame] | 89 | |
Joe Gregorio | fdf7c80 | 2011-06-30 12:33:38 -0400 | [diff] [blame] | 90 | class MediaUploadSizeError(Error): |
| 91 | """Media is larger than the method can accept.""" |
| 92 | pass |
Joe Gregorio | a388ce3 | 2011-09-09 17:19:13 -0400 | [diff] [blame] | 93 | |
| 94 | |
Joe Gregorio | baf0480 | 2013-03-01 12:27:06 -0500 | [diff] [blame] | 95 | class ResumableUploadError(HttpError): |
Joe Gregorio | d0bd388 | 2011-11-22 09:49:47 -0500 | [diff] [blame] | 96 | """Error occured during resumable upload.""" |
| 97 | pass |
| 98 | |
| 99 | |
Joe Gregorio | c80ac9d | 2012-08-21 14:09:09 -0400 | [diff] [blame] | 100 | class InvalidChunkSizeError(Error): |
| 101 | """The given chunksize is not valid.""" |
| 102 | pass |
| 103 | |
Joe Gregorio | 1a5e30e | 2013-06-25 15:35:47 -0400 | [diff] [blame] | 104 | class InvalidNotificationError(Error): |
| 105 | """The channel Notification is invalid.""" |
| 106 | pass |
Joe Gregorio | c80ac9d | 2012-08-21 14:09:09 -0400 | [diff] [blame] | 107 | |
Joe Gregorio | 5d1171b | 2012-01-05 10:48:24 -0500 | [diff] [blame] | 108 | class BatchError(HttpError): |
Joe Gregorio | 66f5752 | 2011-11-30 11:00:00 -0500 | [diff] [blame] | 109 | """Error occured during batch operations.""" |
Joe Gregorio | 5d1171b | 2012-01-05 10:48:24 -0500 | [diff] [blame] | 110 | |
Joe Gregorio | 68a8cfe | 2012-08-03 16:17:40 -0400 | [diff] [blame] | 111 | @util.positional(2) |
Joe Gregorio | 5d1171b | 2012-01-05 10:48:24 -0500 | [diff] [blame] | 112 | def __init__(self, reason, resp=None, content=None): |
| 113 | self.resp = resp |
| 114 | self.content = content |
| 115 | self.reason = reason |
| 116 | |
| 117 | def __repr__(self): |
| 118 | return '<BatchError %s "%s">' % (self.resp.status, self.reason) |
| 119 | |
| 120 | __str__ = __repr__ |
Joe Gregorio | 66f5752 | 2011-11-30 11:00:00 -0500 | [diff] [blame] | 121 | |
| 122 | |
Joe Gregorio | a388ce3 | 2011-09-09 17:19:13 -0400 | [diff] [blame] | 123 | class UnexpectedMethodError(Error): |
| 124 | """Exception raised by RequestMockBuilder on unexpected calls.""" |
| 125 | |
Joe Gregorio | 68a8cfe | 2012-08-03 16:17:40 -0400 | [diff] [blame] | 126 | @util.positional(1) |
Joe Gregorio | a388ce3 | 2011-09-09 17:19:13 -0400 | [diff] [blame] | 127 | def __init__(self, methodId=None): |
| 128 | """Constructor for an UnexpectedMethodError.""" |
| 129 | super(UnexpectedMethodError, self).__init__( |
| 130 | 'Received unexpected call %s' % methodId) |
| 131 | |
| 132 | |
| 133 | class UnexpectedBodyError(Error): |
| 134 | """Exception raised by RequestMockBuilder on unexpected bodies.""" |
| 135 | |
| 136 | def __init__(self, expected, provided): |
| 137 | """Constructor for an UnexpectedMethodError.""" |
| 138 | super(UnexpectedBodyError, self).__init__( |
| 139 | 'Expected: [%s] - Provided: [%s]' % (expected, provided)) |