forked from inveniosoftware/invenio-records-rest
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherrors.py
More file actions
276 lines (202 loc) · 7.51 KB
/
Copy patherrors.py
File metadata and controls
276 lines (202 loc) · 7.51 KB
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
# SPDX-FileCopyrightText: 2016-2018 CERN.
# SPDX-FileCopyrightText: 2026 Graz University of Technology.
# SPDX-License-Identifier: MIT
"""Records REST errors.
All error classes in this module are inheriting from
:class:`invenio_rest.errors.RESTException` or
:class:`invenio_rest.errors.RESTValidationError`.
"""
from flask import request
from invenio_i18n import gettext as _
from invenio_rest.errors import FieldError, RESTException, RESTValidationError
#
# Search
#
class SearchPaginationRESTError(RESTException):
"""Search pagination error."""
code = 400
def __init__(self, errors=None, **kwargs):
"""Initialize exception."""
_errors = []
if errors:
try:
# webargs >=6.0.0b7
for location, field_data in errors.items():
for field, messages in field_data.items():
_errors.extend([FieldError(field, msg) for msg in messages])
except AttributeError:
# webargs < 6.0.0b7
for field, messages in errors.items():
_errors.extend([FieldError(field, msg) for msg in messages])
super().__init__(errors=_errors, **kwargs)
#
# Query
#
class InvalidQueryRESTError(RESTException):
"""Invalid query syntax."""
code = 400
# We can't use lazy_gettext for the description field because it doesn't serialize correctly to JSON.
# To ensure the translated description is included in JSON output, we translate it in the constructor.
def __init__(self, **kwargs):
"""Initialize exception."""
if "description" not in kwargs:
kwargs["description"] = _("Invalid query syntax.")
super().__init__(**kwargs)
#
# CiteProc
#
class StyleNotFoundRESTError(RESTException):
"""No such style."""
code = 400
def __init__(self, style=None, **kwargs):
"""Initialize exception."""
if "description" not in kwargs:
kwargs["description"] = _(
"Style %(style)s could not be found.",
style=f'"{style}"' if style else "",
)
super().__init__(**kwargs)
#
# PID
#
class PIDRESTException(RESTException):
"""Base REST API PID exception class."""
def __init__(self, pid_error=None, **kwargs):
"""Initialize exception."""
super().__init__(**kwargs)
self.pid_error = pid_error
class PIDDoesNotExistRESTError(PIDRESTException):
"""Non-existent PID."""
code = 404
def __init__(self, **kwargs):
"""Initialize exception."""
if "description" not in kwargs:
kwargs["description"] = _("PID does not exist.")
super().__init__(**kwargs)
class PIDUnregisteredRESTError(PIDRESTException):
"""Unregistered PID."""
code = 404
def __init__(self, **kwargs):
"""Initialize exception."""
if "description" not in kwargs:
kwargs["description"] = _("PID is not registered.")
super().__init__(**kwargs)
class PIDDeletedRESTError(PIDRESTException):
"""Deleted PID."""
code = 410
def __init__(self, **kwargs):
"""Initialize exception."""
if "description" not in kwargs:
kwargs["description"] = _("PID has been deleted.")
super().__init__(**kwargs)
class PIDMissingObjectRESTError(PIDRESTException):
"""PID missing object."""
code = 500
def __init__(self, pid, **kwargs):
"""Initialize exception."""
if "description" not in kwargs:
kwargs["description"] = _("No object assigned to %(pid)s.", pid=pid)
super().__init__(**kwargs)
class PIDRedirectedRESTError(PIDRESTException):
"""Invalid redirect for destination."""
code = 500
def __init__(self, pid_type=None, **kwargs):
"""Initialize exception."""
if "description" not in kwargs:
kwargs["description"] = _(
"Invalid redirect - pid_type %(pid_type)s endpoint missing.",
pid_type=f'"{pid_type}"' if pid_type else "",
)
super().__init__(**kwargs)
#
# Views
#
class PIDResolveRESTError(RESTException):
"""Invalid PID."""
code = 500
def __init__(self, pid=None, **kwargs):
"""Initialize exception."""
if "description" not in kwargs:
kwargs["description"] = _(
"PID %(pid)s could not be resolved.", pid=f"#{pid}" if pid else ""
)
super().__init__(**kwargs)
class UnsupportedMediaRESTError(RESTException):
"""Creating record with unsupported media type."""
code = 415
def __init__(self, content_type=None, **kwargs):
"""Initialize exception."""
if "description" not in kwargs:
kwargs["description"] = _(
'Unsupported media type "%(content_type)s".',
content_type=content_type or request.mimetype,
)
super().__init__(**kwargs)
class InvalidDataRESTError(RESTException):
"""Invalid request body."""
code = 400
def __init__(self, **kwargs):
"""Initialize exception."""
if "description" not in kwargs:
kwargs["description"] = _("Could not load data.")
super().__init__(**kwargs)
class PatchJSONFailureRESTError(RESTException):
"""Failed to patch JSON."""
code = 400
def __init__(self, **kwargs):
"""Initialize exception."""
if "description" not in kwargs:
kwargs["description"] = _("Could not patch JSON.")
super().__init__(**kwargs)
class RecordConflictRESTError(RESTException):
"""Record was modified concurrently."""
code = 409
def __init__(self, **kwargs):
"""Initialize exception."""
if "description" not in kwargs:
kwargs["description"] = _(
"The record was modified concurrently, please retry."
)
super().__init__(**kwargs)
class SuggestMissingContextRESTError(RESTException):
"""Missing a context value when getting record suggestions."""
code = 400
def __init__(self, ctx_field=None, **kwargs):
"""Initialize exception."""
if "description" not in kwargs:
kwargs["description"] = _(
"Missing %(ctx_field)s context.",
ctx_field=f'"{ctx_field}"' if ctx_field else "",
)
super().__init__(**kwargs)
class SuggestNoCompletionsRESTError(RESTException):
"""No completion requested when getting record suggestions."""
code = 400
def __init__(self, options=None, **kwargs):
"""Initialize exception."""
if "description" not in kwargs:
kwargs["description"] = _(
"No completions requested.%(options)s",
options=f" (options: {options})" if options else "",
)
super().__init__(**kwargs)
class JSONSchemaValidationError(RESTValidationError):
"""JSONSchema validation error exception."""
code = 400
def __init__(self, error=None, **kwargs):
"""Initialize exception."""
if "description" not in kwargs:
kwargs["description"] = _(
"Validation error: %(error)s.", error=error.message if error else ""
)
super().__init__(**kwargs)
class UnhandledSearchError(RESTException):
"""Failed to handle exception."""
code = 500
def __init__(self, **kwargs):
"""Initialize exception."""
if "description" not in kwargs:
kwargs["description"] = _(
"An internal server error occurred when handling the request."
)
super().__init__(**kwargs)