-
Notifications
You must be signed in to change notification settings - Fork 339
/
Copy pathStorageErrorFactory.ts
456 lines (418 loc) · 12 KB
/
StorageErrorFactory.ts
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
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
/**
* A factory class maintains all Azure Storage table service errors.
*
* @export
* @class StorageErrorFactory
*/
import Context from "../generated/Context";
import StorageError from "./StorageError";
const defaultID: string = "DefaultID";
// see: https://learn.microsoft.com/en-us/rest/api/storageservices/table-service-error-codes
export default class StorageErrorFactory {
static getBatchDuplicateRowKey(context: Context, rowKey: string): StorageError {
return new StorageError(
400,
"InvalidDuplicateRow",
`A command with RowKey '${rowKey}' is already present in the batch. An entity can appear only once in a batch. `,
context.contextID || defaultID,
undefined,
context
);
}
static getBatchPartitionKeyMismatch(context: Context): StorageError {
return new StorageError(
400,
"InvalidPartitionKey",
`All entities in the batch must have the same partition key. `,
context.contextID || defaultID,
undefined,
context
);
}
public static getInvalidHeaderValue(
context: Context,
additionalMessages?: { [key: string]: string }
): StorageError {
if (additionalMessages === undefined) {
additionalMessages = {};
}
return new StorageError(
400,
"InvalidHeaderValue",
"The value for one of the HTTP headers is not in the correct format.",
context.contextID || defaultID,
additionalMessages,
context
);
}
public static getInvalidAPIVersion(
context: Context,
apiVersion?: string
): StorageError {
return new StorageError(
400,
"InvalidHeaderValue",
`The API version ${apiVersion} is not supported by Azurite. Please upgrade Azurite to latest version and retry. If you are using Azurite in Visual Studio, please check you have installed latest Visual Studio patch. Azurite command line parameter \"--skipApiVersionCheck\" or Visual Studio Code configuration \"Skip Api Version Check\" can skip this error. `,
context.contextID || defaultID,
undefined,
context
);
}
public static getInvalidInput(
context: Context,
additionalMessages?: { [key: string]: string }
): StorageError {
if (additionalMessages === undefined) {
additionalMessages = {};
}
return new StorageError(
400,
"InvalidInput",
"An error occurred while processing this request.",
context.contextID || defaultID,
additionalMessages,
context
);
}
public static getTableAlreadyExists(context: Context): StorageError {
return new StorageError(
409,
"TableAlreadyExists",
"The table specified already exists.",
context.contextID || defaultID,
undefined,
context
);
}
public static getTableNameEmpty(context: Context): StorageError {
return new StorageError(
400,
"TableNameEmpty",
"The specified table name is empty.",
context.contextID || defaultID,
undefined,
context
);
}
public static getInvalidOperation(
context: Context,
message: string = ""
): StorageError {
return new StorageError(
400,
"InvalidOperation",
message,
context.contextID || "",
undefined,
context
);
}
public static getAuthorizationSourceIPMismatch(
context: Context
): StorageError {
return new StorageError(
403,
"AuthorizationSourceIPMismatch",
"This request is not authorized to perform this operation using this source IP {SourceIP}.",
context.contextID || defaultID,
undefined,
context
);
}
public static getAuthorizationProtocolMismatch(
context: Context
): StorageError {
return new StorageError(
403,
"AuthorizationProtocolMismatch",
"This request is not authorized to perform this operation using this protocol.",
context.contextID || defaultID,
undefined,
context
);
}
public static getAuthorizationPermissionMismatch(
context: Context
): StorageError {
return new StorageError(
403,
"AuthorizationPermissionMismatch",
"This request is not authorized to perform this operation using this permission.",
context.contextID || defaultID,
undefined,
context
);
}
public static getAuthorizationServiceMismatch(
context: Context
): StorageError {
return new StorageError(
403,
"AuthorizationServiceMismatch",
"This request is not authorized to perform this operation using this service.",
context.contextID || defaultID,
undefined,
context
);
}
public static getAuthorizationResourceTypeMismatch(
context: Context
): StorageError {
return new StorageError(
403,
"AuthorizationResourceTypeMismatch",
"This request is not authorized to perform this operation using this resource type.",
context.contextID || defaultID,
undefined,
context
);
}
public static getAccountNameEmpty(context: Context): StorageError {
return new StorageError(
400,
"AccountNameEmpty",
"The specified account name is empty.",
context.contextID || defaultID,
undefined,
context
);
}
public static getTableNotExist(context: Context): StorageError {
return new StorageError(
404,
"TableNotFound",
"The table specified does not exist.",
context.contextID || defaultID,
undefined,
context
);
}
public static getAuthorizationFailure(context: Context): StorageError {
return new StorageError(
403,
"AuthorizationFailure",
// tslint:disable-next-line:max-line-length
"Server failed to authenticate the request. Make sure the value of the Authorization header is formed correctly including the signature.",
context.contextID || defaultID,
undefined,
context
);
}
public static getEntityAlreadyExist(context: Context): StorageError {
return new StorageError(
409,
"EntityAlreadyExists",
"The specified entity already exists.",
context.contextID || defaultID,
undefined,
context
);
}
public static getPropertiesNeedValue(context: Context): StorageError {
return new StorageError(
400,
"PropertiesNeedValue",
"The values are not specified for all properties in the entity.",
context.contextID || defaultID,
undefined,
context
);
}
public static getAtomFormatNotSupported(context: Context): StorageError {
return new StorageError(
415,
"AtomFormatNotSupported",
"Atom format is not supported.",
context.contextID || defaultID,
undefined,
context
);
}
public static getPreconditionFailed(context: Context): StorageError {
return new StorageError(
412,
"UpdateConditionNotSatisfied",
"The update condition specified in the request was not satisfied.",
context.contextID || defaultID,
undefined,
context
);
}
public static getTableNotFound(context: Context): StorageError {
return new StorageError(
404,
"TableNotFound",
"The table specified does not exist.",
context.contextID || defaultID,
undefined,
context
);
}
public static ResourceNotFound(context: Context): StorageError {
return new StorageError(
404,
"ResourceNotFound",
"The specified resource does not exist.",
context.contextID || defaultID,
undefined,
context
);
}
public static getEntityNotFound(context: Context): StorageError {
return new StorageError(
404,
"ResourceNotFound",
"The specified resource does not exist.",
context.contextID || defaultID,
undefined,
context
);
}
public static getQueryConditionInvalid(context: Context): StorageError {
return new StorageError(
400,
"InvalidInput",
"The query condition specified in the request is invalid.",
context.contextID || defaultID,
undefined,
context
);
}
public static getInvalidResourceName(context: Context): StorageError {
return new StorageError(
400,
"",
`The specifed resource name contains invalid characters.`,
context.contextID || defaultID,
undefined,
context
);
}
public static getOutOfRangeName(context: Context): StorageError {
return new StorageError(
400,
"",
`The specified resource name length is not within the permissible limits.`,
context.contextID || defaultID,
undefined,
context
);
}
public static getInvalidXmlDocument(context: Context): StorageError {
return new StorageError(
400,
"InvalidXmlDocument",
`XML specified is not syntactically valid.`,
context.contextID || defaultID,
undefined,
context
);
}
public static getInvalidQueryParameterValue(
context: Context,
additionalMessages?: { [key: string]: string }
): StorageError {
if (additionalMessages === undefined) {
additionalMessages = {};
}
return new StorageError(
400,
"InvalidQueryParameterValue",
`Value for one of the query parameters specified in the request URI is invalid.`,
context.contextID || defaultID,
additionalMessages,
context
);
}
public static getInvalidCorsHeaderValue(
context: Context,
additionalMessages?: { [key: string]: string }
): StorageError {
return new StorageError(
400,
"InvalidHeaderValue",
"A required CORS header is not present.",
context.contextID || defaultID,
additionalMessages,
context
);
}
public static corsPreflightFailure(
context: Context,
additionalMessages?: { [key: string]: string }
): StorageError {
return new StorageError(
403,
"CorsPreflightFailure",
"CORS not enabled or no matching rule found for this request.",
context.contextID || defaultID,
additionalMessages,
context
);
}
public static getInvalidAuthenticationInfo(context: Context): StorageError {
return new StorageError(
400,
"InvalidAuthenticationInfo",
"Authentication information is not given in the correct format. Check the value of Authorization header.",
context.contextID || defaultID,
undefined,
context
);
}
public static getAuthenticationFailed(
context: Context,
authenticationErrorDetail: string
): StorageError {
return new StorageError(
403,
"AuthenticationFailed",
"Server failed to authenticate the request. Make sure the value of the Authorization header is formed correctly including the signature.",
context.contextID || defaultID,
{
AuthenticationErrorDetail: authenticationErrorDetail
},
context
);
}
public static getNotImplementedError(context: Context): StorageError {
return new StorageError(
501,
"NotImplemented",
"The requested operation is not implemented on the specified resource.",
context.contextID || defaultID,
undefined,
context
);
}
public static getPropertyValueTooLargeError(context: Context): StorageError {
return new StorageError(
400,
"PropertyValueTooLarge",
"The property value exceeds the maximum allowed size (64KB). If the property value is a string, it is UTF-16 encoded and the maximum number of characters should be 32K or less.",
context.contextID || defaultID,
undefined,
context
);
}
public static getRequestBodyTooLarge(context: Context): StorageError {
return new StorageError(
413,
"RequestBodyTooLarge",
`The request body is too large and exceeds the maximum permissible limit.`,
context.contextID || defaultID,
undefined,
context
);
}
public static getEntityTooLarge(context: Context): StorageError {
return new StorageError(
400,
"EntityTooLarge",
`The entity is larger than the maximum allowed size (1MB).`,
context.contextID || defaultID,
undefined,
context
);
}
}