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 | |
Helen Koike | de13e3b | 2018-04-26 16:05:16 -0300 | [diff] [blame] | 26 | from googleapiclient import _helpers as 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 |
INADA Naoki | 0915761 | 2015-03-25 01:51:03 +0900 | [diff] [blame] | 40 | if not isinstance(content, bytes): |
| 41 | raise TypeError("HTTP content should be bytes") |
Ali Afshar | 2dcc652 | 2010-12-16 10:11:53 +0100 | [diff] [blame] | 42 | self.content = content |
Joe Gregorio | 4939655 | 2011-03-08 10:39:00 -0500 | [diff] [blame] | 43 | self.uri = uri |
Son CHU | f6e2661 | 2017-07-17 18:02:18 +0200 | [diff] [blame] | 44 | self.error_details = '' |
Joe Gregorio | 3ad5e9a | 2010-12-09 15:01:04 -0500 | [diff] [blame] | 45 | |
Ali Afshar | 2dcc652 | 2010-12-16 10:11:53 +0100 | [diff] [blame] | 46 | def _get_reason(self): |
Joe Gregorio | fdf7c80 | 2011-06-30 12:33:38 -0400 | [diff] [blame] | 47 | """Calculate the reason for the error from the response content.""" |
Joe Gregorio | 20b54fb | 2012-07-26 09:59:35 -0400 | [diff] [blame] | 48 | reason = self.resp.reason |
| 49 | try: |
INADA Naoki | 0915761 | 2015-03-25 01:51:03 +0900 | [diff] [blame] | 50 | data = json.loads(self.content.decode('utf-8')) |
Thang Minh Vu | b7122b3 | 2016-10-15 01:57:15 +0800 | [diff] [blame] | 51 | if isinstance(data, dict): |
| 52 | reason = data['error']['message'] |
Son CHU | f6e2661 | 2017-07-17 18:02:18 +0200 | [diff] [blame] | 53 | if 'details' in data['error']: |
| 54 | self.error_details = data['error']['details'] |
Bu Sun Kim | 778eabe | 2019-08-12 17:53:34 -0700 | [diff] [blame^] | 55 | elif 'detail' in data['error']: |
| 56 | self.error_details = data['error']['detail'] |
Thang Minh Vu | b7122b3 | 2016-10-15 01:57:15 +0800 | [diff] [blame] | 57 | elif isinstance(data, list) and len(data) > 0: |
| 58 | first_error = data[0] |
| 59 | reason = first_error['error']['message'] |
Son CHU | f6e2661 | 2017-07-17 18:02:18 +0200 | [diff] [blame] | 60 | if 'details' in first_error['error']: |
| 61 | self.error_details = first_error['error']['details'] |
Thang Minh Vu | b7122b3 | 2016-10-15 01:57:15 +0800 | [diff] [blame] | 62 | except (ValueError, KeyError, TypeError): |
Joe Gregorio | 20b54fb | 2012-07-26 09:59:35 -0400 | [diff] [blame] | 63 | pass |
Joe Gregorio | e7bbbb9 | 2013-02-20 15:37:24 -0500 | [diff] [blame] | 64 | if reason is None: |
| 65 | reason = '' |
Ali Afshar | 2dcc652 | 2010-12-16 10:11:53 +0100 | [diff] [blame] | 66 | return reason |
| 67 | |
| 68 | def __repr__(self): |
Son CHU | f6e2661 | 2017-07-17 18:02:18 +0200 | [diff] [blame] | 69 | reason = self._get_reason() |
| 70 | if self.error_details: |
| 71 | return '<HttpError %s when requesting %s returned "%s". Details: "%s">' % \ |
| 72 | (self.resp.status, self.uri, reason.strip(), self.error_details) |
| 73 | elif self.uri: |
Joe Gregorio | 4939655 | 2011-03-08 10:39:00 -0500 | [diff] [blame] | 74 | return '<HttpError %s when requesting %s returned "%s">' % ( |
Joe Gregorio | 3fb9367 | 2012-07-25 11:31:11 -0400 | [diff] [blame] | 75 | self.resp.status, self.uri, self._get_reason().strip()) |
Joe Gregorio | 4939655 | 2011-03-08 10:39:00 -0500 | [diff] [blame] | 76 | else: |
| 77 | return '<HttpError %s "%s">' % (self.resp.status, self._get_reason()) |
Ali Afshar | 2dcc652 | 2010-12-16 10:11:53 +0100 | [diff] [blame] | 78 | |
| 79 | __str__ = __repr__ |
Joe Gregorio | 3ad5e9a | 2010-12-09 15:01:04 -0500 | [diff] [blame] | 80 | |
| 81 | |
Joe Gregorio | 4939655 | 2011-03-08 10:39:00 -0500 | [diff] [blame] | 82 | class InvalidJsonError(Error): |
| 83 | """The JSON returned could not be parsed.""" |
| 84 | pass |
| 85 | |
| 86 | |
Joe Gregorio | dc106fc | 2012-11-20 14:30:14 -0500 | [diff] [blame] | 87 | class UnknownFileType(Error): |
| 88 | """File type unknown or unexpected.""" |
| 89 | pass |
| 90 | |
| 91 | |
Joe Gregorio | 3ad5e9a | 2010-12-09 15:01:04 -0500 | [diff] [blame] | 92 | class UnknownLinkType(Error): |
| 93 | """Link type unknown or unexpected.""" |
| 94 | pass |
Joe Gregorio | fdf7c80 | 2011-06-30 12:33:38 -0400 | [diff] [blame] | 95 | |
Joe Gregorio | 66f5752 | 2011-11-30 11:00:00 -0500 | [diff] [blame] | 96 | |
Joe Gregorio | dae2f55 | 2011-11-21 08:16:56 -0500 | [diff] [blame] | 97 | class UnknownApiNameOrVersion(Error): |
Joe Gregorio | 8b4df3f | 2011-11-18 15:44:48 -0500 | [diff] [blame] | 98 | """No API with that name and version exists.""" |
| 99 | pass |
| 100 | |
Joe Gregorio | a388ce3 | 2011-09-09 17:19:13 -0400 | [diff] [blame] | 101 | |
Joe Gregorio | fdf7c80 | 2011-06-30 12:33:38 -0400 | [diff] [blame] | 102 | class UnacceptableMimeTypeError(Error): |
| 103 | """That is an unacceptable mimetype for this operation.""" |
| 104 | pass |
| 105 | |
Joe Gregorio | a388ce3 | 2011-09-09 17:19:13 -0400 | [diff] [blame] | 106 | |
Joe Gregorio | fdf7c80 | 2011-06-30 12:33:38 -0400 | [diff] [blame] | 107 | class MediaUploadSizeError(Error): |
| 108 | """Media is larger than the method can accept.""" |
| 109 | pass |
Joe Gregorio | a388ce3 | 2011-09-09 17:19:13 -0400 | [diff] [blame] | 110 | |
| 111 | |
Joe Gregorio | baf0480 | 2013-03-01 12:27:06 -0500 | [diff] [blame] | 112 | class ResumableUploadError(HttpError): |
Joe Gregorio | d0bd388 | 2011-11-22 09:49:47 -0500 | [diff] [blame] | 113 | """Error occured during resumable upload.""" |
| 114 | pass |
| 115 | |
| 116 | |
Joe Gregorio | c80ac9d | 2012-08-21 14:09:09 -0400 | [diff] [blame] | 117 | class InvalidChunkSizeError(Error): |
| 118 | """The given chunksize is not valid.""" |
| 119 | pass |
| 120 | |
Joe Gregorio | 1a5e30e | 2013-06-25 15:35:47 -0400 | [diff] [blame] | 121 | class InvalidNotificationError(Error): |
| 122 | """The channel Notification is invalid.""" |
| 123 | pass |
Joe Gregorio | c80ac9d | 2012-08-21 14:09:09 -0400 | [diff] [blame] | 124 | |
Joe Gregorio | 5d1171b | 2012-01-05 10:48:24 -0500 | [diff] [blame] | 125 | class BatchError(HttpError): |
Joe Gregorio | 66f5752 | 2011-11-30 11:00:00 -0500 | [diff] [blame] | 126 | """Error occured during batch operations.""" |
Joe Gregorio | 5d1171b | 2012-01-05 10:48:24 -0500 | [diff] [blame] | 127 | |
Joe Gregorio | 68a8cfe | 2012-08-03 16:17:40 -0400 | [diff] [blame] | 128 | @util.positional(2) |
Joe Gregorio | 5d1171b | 2012-01-05 10:48:24 -0500 | [diff] [blame] | 129 | def __init__(self, reason, resp=None, content=None): |
| 130 | self.resp = resp |
| 131 | self.content = content |
| 132 | self.reason = reason |
| 133 | |
| 134 | def __repr__(self): |
ittus | 5f00cad | 2016-10-15 10:32:40 +0800 | [diff] [blame] | 135 | if getattr(self.resp, 'status', None) is None: |
| 136 | return '<BatchError "%s">' % (self.reason) |
| 137 | else: |
Joe Gregorio | 5d1171b | 2012-01-05 10:48:24 -0500 | [diff] [blame] | 138 | return '<BatchError %s "%s">' % (self.resp.status, self.reason) |
| 139 | |
| 140 | __str__ = __repr__ |
Joe Gregorio | 66f5752 | 2011-11-30 11:00:00 -0500 | [diff] [blame] | 141 | |
| 142 | |
Joe Gregorio | a388ce3 | 2011-09-09 17:19:13 -0400 | [diff] [blame] | 143 | class UnexpectedMethodError(Error): |
| 144 | """Exception raised by RequestMockBuilder on unexpected calls.""" |
| 145 | |
Joe Gregorio | 68a8cfe | 2012-08-03 16:17:40 -0400 | [diff] [blame] | 146 | @util.positional(1) |
Joe Gregorio | a388ce3 | 2011-09-09 17:19:13 -0400 | [diff] [blame] | 147 | def __init__(self, methodId=None): |
| 148 | """Constructor for an UnexpectedMethodError.""" |
| 149 | super(UnexpectedMethodError, self).__init__( |
| 150 | 'Received unexpected call %s' % methodId) |
| 151 | |
| 152 | |
| 153 | class UnexpectedBodyError(Error): |
| 154 | """Exception raised by RequestMockBuilder on unexpected bodies.""" |
| 155 | |
| 156 | def __init__(self, expected, provided): |
| 157 | """Constructor for an UnexpectedMethodError.""" |
| 158 | super(UnexpectedBodyError, self).__init__( |
| 159 | 'Expected: [%s] - Provided: [%s]' % (expected, provided)) |