forked from apache/superset
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexceptions.py
434 lines (321 loc) · 11.8 KB
/
exceptions.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you 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.
from __future__ import annotations
from collections import defaultdict
from typing import Any, Optional
from flask_babel import gettext as _
from marshmallow import ValidationError
from superset.errors import ErrorLevel, SupersetError, SupersetErrorType
class SupersetException(Exception): # noqa: N818
status = 500
message = ""
def __init__(
self,
message: str = "",
exception: Optional[Exception] = None,
error_type: Optional[SupersetErrorType] = None,
) -> None:
if message:
self.message = message
self._exception = exception
self._error_type = error_type
super().__init__(self.message)
@property
def exception(self) -> Optional[Exception]:
return self._exception
@property
def error_type(self) -> Optional[SupersetErrorType]:
return self._error_type
def to_dict(self) -> dict[str, Any]:
rv = {}
if hasattr(self, "message"):
rv["message"] = self.message
if self.error_type:
rv["error_type"] = self.error_type
if self.exception is not None and hasattr(self.exception, "to_dict"):
rv = {**rv, **self.exception.to_dict()}
return rv
class SupersetErrorException(SupersetException):
"""Exceptions with a single SupersetErrorType associated with them"""
def __init__(self, error: SupersetError, status: Optional[int] = None) -> None:
super().__init__(error.message)
self.error = error
if status is not None:
self.status = status
def to_dict(self) -> dict[str, Any]:
return self.error.to_dict()
class SupersetGenericErrorException(SupersetErrorException):
"""Exceptions that are too generic to have their own type"""
def __init__(self, message: str, status: Optional[int] = None) -> None:
super().__init__(
SupersetError(
message=message,
error_type=SupersetErrorType.GENERIC_BACKEND_ERROR,
level=ErrorLevel.ERROR,
)
)
if status is not None:
self.status = status
class SupersetErrorFromParamsException(SupersetErrorException):
"""Exceptions that pass in parameters to construct a SupersetError"""
def __init__(
self,
error_type: SupersetErrorType,
message: str,
level: ErrorLevel,
extra: Optional[dict[str, Any]] = None,
) -> None:
super().__init__(
SupersetError(
error_type=error_type, message=message, level=level, extra=extra or {}
)
)
class SupersetErrorsException(SupersetException):
"""Exceptions with multiple SupersetErrorType associated with them"""
def __init__(
self, errors: list[SupersetError], status: Optional[int] = None
) -> None:
super().__init__(str(errors))
self.errors = errors
if status is not None:
self.status = status
class SupersetSyntaxErrorException(SupersetErrorsException):
status = 422
error_type = SupersetErrorType.SYNTAX_ERROR
def __init__(self, errors: list[SupersetError]) -> None:
super().__init__(errors)
class SupersetTimeoutException(SupersetErrorFromParamsException):
status = 408
class SupersetGenericDBErrorException(SupersetErrorFromParamsException):
status = 400
def __init__(
self,
message: str,
level: ErrorLevel = ErrorLevel.ERROR,
extra: Optional[dict[str, Any]] = None,
) -> None:
super().__init__(
SupersetErrorType.GENERIC_DB_ENGINE_ERROR,
message,
level,
extra,
)
class SupersetTemplateParamsErrorException(SupersetErrorFromParamsException):
status = 400
def __init__(
self,
message: str,
error: SupersetErrorType,
level: ErrorLevel = ErrorLevel.ERROR,
extra: Optional[dict[str, Any]] = None,
) -> None:
super().__init__(
error,
message,
level,
extra,
)
class SupersetSecurityException(SupersetErrorException):
status = 403
def __init__(
self, error: SupersetError, payload: Optional[dict[str, Any]] = None
) -> None:
super().__init__(error)
self.payload = payload
class SupersetVizException(SupersetErrorsException):
status = 400
class NoDataException(SupersetException):
status = 400
class NullValueException(SupersetException):
status = 400
class SupersetTemplateException(SupersetException):
pass
class SpatialException(SupersetException):
pass
class CertificateException(SupersetException):
message = _("Invalid certificate")
class DatabaseNotFound(SupersetException):
status = 400
class MissingUserContextException(SupersetException):
status = 422
class QueryObjectValidationError(SupersetException):
status = 400
class AdvancedDataTypeResponseError(SupersetException):
status = 400
class InvalidPostProcessingError(SupersetException):
status = 400
class CacheLoadError(SupersetException):
status = 404
class QueryClauseValidationException(SupersetException):
status = 400
class DashboardImportException(SupersetException):
pass
class DatasetInvalidPermissionEvaluationException(SupersetException):
"""
When a dataset can't compute its permission name
"""
class SerializationError(SupersetException):
pass
class InvalidPayloadFormatError(SupersetErrorException):
status = 400
def __init__(self, message: str = "Request payload has incorrect format"):
error = SupersetError(
message=message,
error_type=SupersetErrorType.INVALID_PAYLOAD_FORMAT_ERROR,
level=ErrorLevel.ERROR,
)
super().__init__(error)
class InvalidPayloadSchemaError(SupersetErrorException):
status = 422
def __init__(self, error: ValidationError):
# dataclasses.asdict does not work with defaultdict, convert to dict
# https://bugs.python.org/issue35540
for k, v in error.messages.items():
if isinstance(v, defaultdict):
error.messages[k] = dict(v)
error = SupersetError(
message="An error happened when validating the request",
error_type=SupersetErrorType.INVALID_PAYLOAD_SCHEMA_ERROR,
level=ErrorLevel.ERROR,
extra={"messages": error.messages},
)
super().__init__(error)
class SupersetCancelQueryException(SupersetException):
status = 422
class QueryNotFoundException(SupersetException):
status = 404
class ColumnNotFoundException(SupersetException):
status = 404
class SupersetMarshmallowValidationError(SupersetErrorException):
"""
Exception to be raised for Marshmallow validation errors.
"""
status = 422
def __init__(self, exc: ValidationError, payload: dict[str, Any]):
error = SupersetError(
message=_("The schema of the submitted payload is invalid."),
error_type=SupersetErrorType.MARSHMALLOW_ERROR,
level=ErrorLevel.ERROR,
extra={"messages": exc.messages, "payload": payload},
)
super().__init__(error)
class SupersetParseError(SupersetErrorException):
"""
Exception to be raised when we fail to parse SQL.
"""
status = 422
def __init__( # pylint: disable=too-many-arguments
self,
sql: str,
engine: Optional[str] = None,
message: Optional[str] = None,
highlight: Optional[str] = None,
line: Optional[int] = None,
column: Optional[int] = None,
):
if message is None:
parts = [_("Error parsing")]
if highlight:
parts.append(_(" near '%(highlight)s'", highlight=highlight))
if line:
parts.append(_(" at line %(line)d", line=line))
if column:
parts.append(f":{column}")
message = "".join(parts)
error = SupersetError(
message=message,
error_type=SupersetErrorType.INVALID_SQL_ERROR,
level=ErrorLevel.ERROR,
extra={"sql": sql, "engine": engine, "line": line, "column": column},
)
super().__init__(error)
class OAuth2RedirectError(SupersetErrorException):
"""
Exception used to start OAuth2 dance for personal tokens.
The exception requires 3 parameters:
- The URL that starts the OAuth2 dance.
- The UUID of the browser tab where OAuth2 started, so that the newly opened tab
where OAuth2 happens can communicate with the original tab to inform that OAuth2
was successful (or not).
- The redirect URL, so that the original tab can validate that the message from the
second tab is coming from a valid origin.
See the `OAuth2RedirectMessage.tsx` component for more details of how this
information is handled.
TODO (betodealmeida): change status to 403.
"""
def __init__(self, url: str, tab_id: str, redirect_uri: str):
super().__init__(
SupersetError(
message="You don't have permission to access the data.",
error_type=SupersetErrorType.OAUTH2_REDIRECT,
level=ErrorLevel.WARNING,
extra={"url": url, "tab_id": tab_id, "redirect_uri": redirect_uri},
)
)
class OAuth2Error(SupersetErrorException):
"""
Exception for when OAuth2 goes wrong.
"""
def __init__(self, error: str):
super().__init__(
SupersetError(
message="Something went wrong while doing OAuth2",
error_type=SupersetErrorType.OAUTH2_REDIRECT_ERROR,
level=ErrorLevel.ERROR,
extra={"error": error},
)
)
class DisallowedSQLFunction(SupersetErrorException):
"""
Disallowed function found on SQL statement
"""
def __init__(self, functions: set[str]):
super().__init__(
SupersetError(
message=f"SQL statement contains disallowed function(s): {functions}",
error_type=SupersetErrorType.SYNTAX_ERROR,
level=ErrorLevel.ERROR,
)
)
class CreateKeyValueDistributedLockFailedException(Exception): # noqa: N818
"""
Exception to signalize failure to acquire lock.
"""
class DeleteKeyValueDistributedLockFailedException(Exception): # noqa: N818
"""
Exception to signalize failure to delete lock.
"""
class DatabaseNotFoundException(SupersetErrorException):
status = 404
def __init__(self, message: str):
super().__init__(
SupersetError(
message=message,
error_type=SupersetErrorType.DATABASE_NOT_FOUND_ERROR,
level=ErrorLevel.ERROR,
)
)
class TableNotFoundException(SupersetErrorException):
status = 404
def __init__(self, message: str):
super().__init__(
SupersetError(
message=message,
error_type=SupersetErrorType.TABLE_NOT_FOUND_ERROR,
level=ErrorLevel.ERROR,
)
)