blob: 442c213c075277f375fd60391712e1bc30256eae [file] [log] [blame]
Craig Citro751b7fb2014-09-23 11:20:38 -07001# Copyright 2014 Google Inc. All Rights Reserved.
Joe Gregorio20a5aa92011-04-01 17:44:25 -04002#
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 Gregorio3ad5e9a2010-12-09 15:01:04 -050014
15"""Errors for the library.
16
17All exceptions defined by the library
18should be defined in this file.
19"""
INADA Naokie4ea1a92015-03-04 03:45:42 +090020from __future__ import absolute_import
Joe Gregorio3ad5e9a2010-12-09 15:01:04 -050021
22__author__ = 'jcgregorio@google.com (Joe Gregorio)'
23
Craig Citro6ae34d72014-08-18 23:10:09 -070024import json
Joe Gregorio3ad5e9a2010-12-09 15:01:04 -050025
Helen Koikede13e3b2018-04-26 16:05:16 -030026from googleapiclient import _helpers as util
Ali Afshar2dcc6522010-12-16 10:11:53 +010027
28
Joe Gregorio3ad5e9a2010-12-09 15:01:04 -050029class Error(Exception):
30 """Base error for this module."""
31 pass
32
33
34class HttpError(Error):
35 """HTTP data was invalid or unexpected."""
36
Joe Gregorio68a8cfe2012-08-03 16:17:40 -040037 @util.positional(3)
Joe Gregorio49396552011-03-08 10:39:00 -050038 def __init__(self, resp, content, uri=None):
Joe Gregorio3ad5e9a2010-12-09 15:01:04 -050039 self.resp = resp
INADA Naoki09157612015-03-25 01:51:03 +090040 if not isinstance(content, bytes):
41 raise TypeError("HTTP content should be bytes")
Ali Afshar2dcc6522010-12-16 10:11:53 +010042 self.content = content
Joe Gregorio49396552011-03-08 10:39:00 -050043 self.uri = uri
Son CHUf6e26612017-07-17 18:02:18 +020044 self.error_details = ''
Joe Gregorio3ad5e9a2010-12-09 15:01:04 -050045
Ali Afshar2dcc6522010-12-16 10:11:53 +010046 def _get_reason(self):
Joe Gregoriofdf7c802011-06-30 12:33:38 -040047 """Calculate the reason for the error from the response content."""
Joe Gregorio20b54fb2012-07-26 09:59:35 -040048 reason = self.resp.reason
49 try:
INADA Naoki09157612015-03-25 01:51:03 +090050 data = json.loads(self.content.decode('utf-8'))
Thang Minh Vub7122b32016-10-15 01:57:15 +080051 if isinstance(data, dict):
52 reason = data['error']['message']
Son CHUf6e26612017-07-17 18:02:18 +020053 if 'details' in data['error']:
54 self.error_details = data['error']['details']
Bu Sun Kim778eabe2019-08-12 17:53:34 -070055 elif 'detail' in data['error']:
56 self.error_details = data['error']['detail']
Thang Minh Vub7122b32016-10-15 01:57:15 +080057 elif isinstance(data, list) and len(data) > 0:
58 first_error = data[0]
59 reason = first_error['error']['message']
Son CHUf6e26612017-07-17 18:02:18 +020060 if 'details' in first_error['error']:
61 self.error_details = first_error['error']['details']
Thang Minh Vub7122b32016-10-15 01:57:15 +080062 except (ValueError, KeyError, TypeError):
Joe Gregorio20b54fb2012-07-26 09:59:35 -040063 pass
Joe Gregorioe7bbbb92013-02-20 15:37:24 -050064 if reason is None:
65 reason = ''
Ali Afshar2dcc6522010-12-16 10:11:53 +010066 return reason
67
68 def __repr__(self):
Son CHUf6e26612017-07-17 18:02:18 +020069 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 Gregorio49396552011-03-08 10:39:00 -050074 return '<HttpError %s when requesting %s returned "%s">' % (
Joe Gregorio3fb93672012-07-25 11:31:11 -040075 self.resp.status, self.uri, self._get_reason().strip())
Joe Gregorio49396552011-03-08 10:39:00 -050076 else:
77 return '<HttpError %s "%s">' % (self.resp.status, self._get_reason())
Ali Afshar2dcc6522010-12-16 10:11:53 +010078
79 __str__ = __repr__
Joe Gregorio3ad5e9a2010-12-09 15:01:04 -050080
81
Joe Gregorio49396552011-03-08 10:39:00 -050082class InvalidJsonError(Error):
83 """The JSON returned could not be parsed."""
84 pass
85
86
Joe Gregoriodc106fc2012-11-20 14:30:14 -050087class UnknownFileType(Error):
88 """File type unknown or unexpected."""
89 pass
90
91
Joe Gregorio3ad5e9a2010-12-09 15:01:04 -050092class UnknownLinkType(Error):
93 """Link type unknown or unexpected."""
94 pass
Joe Gregoriofdf7c802011-06-30 12:33:38 -040095
Joe Gregorio66f57522011-11-30 11:00:00 -050096
Joe Gregoriodae2f552011-11-21 08:16:56 -050097class UnknownApiNameOrVersion(Error):
Joe Gregorio8b4df3f2011-11-18 15:44:48 -050098 """No API with that name and version exists."""
99 pass
100
Joe Gregorioa388ce32011-09-09 17:19:13 -0400101
Joe Gregoriofdf7c802011-06-30 12:33:38 -0400102class UnacceptableMimeTypeError(Error):
103 """That is an unacceptable mimetype for this operation."""
104 pass
105
Joe Gregorioa388ce32011-09-09 17:19:13 -0400106
Joe Gregoriofdf7c802011-06-30 12:33:38 -0400107class MediaUploadSizeError(Error):
108 """Media is larger than the method can accept."""
109 pass
Joe Gregorioa388ce32011-09-09 17:19:13 -0400110
111
Joe Gregoriobaf04802013-03-01 12:27:06 -0500112class ResumableUploadError(HttpError):
Joe Gregoriod0bd3882011-11-22 09:49:47 -0500113 """Error occured during resumable upload."""
114 pass
115
116
Joe Gregorioc80ac9d2012-08-21 14:09:09 -0400117class InvalidChunkSizeError(Error):
118 """The given chunksize is not valid."""
119 pass
120
Joe Gregorio1a5e30e2013-06-25 15:35:47 -0400121class InvalidNotificationError(Error):
122 """The channel Notification is invalid."""
123 pass
Joe Gregorioc80ac9d2012-08-21 14:09:09 -0400124
Joe Gregorio5d1171b2012-01-05 10:48:24 -0500125class BatchError(HttpError):
Joe Gregorio66f57522011-11-30 11:00:00 -0500126 """Error occured during batch operations."""
Joe Gregorio5d1171b2012-01-05 10:48:24 -0500127
Joe Gregorio68a8cfe2012-08-03 16:17:40 -0400128 @util.positional(2)
Joe Gregorio5d1171b2012-01-05 10:48:24 -0500129 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):
ittus5f00cad2016-10-15 10:32:40 +0800135 if getattr(self.resp, 'status', None) is None:
136 return '<BatchError "%s">' % (self.reason)
137 else:
Joe Gregorio5d1171b2012-01-05 10:48:24 -0500138 return '<BatchError %s "%s">' % (self.resp.status, self.reason)
139
140 __str__ = __repr__
Joe Gregorio66f57522011-11-30 11:00:00 -0500141
142
Joe Gregorioa388ce32011-09-09 17:19:13 -0400143class UnexpectedMethodError(Error):
144 """Exception raised by RequestMockBuilder on unexpected calls."""
145
Joe Gregorio68a8cfe2012-08-03 16:17:40 -0400146 @util.positional(1)
Joe Gregorioa388ce32011-09-09 17:19:13 -0400147 def __init__(self, methodId=None):
148 """Constructor for an UnexpectedMethodError."""
149 super(UnexpectedMethodError, self).__init__(
150 'Received unexpected call %s' % methodId)
151
152
153class 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))