This repository was archived by the owner on Dec 25, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathschemas.hbs
More file actions
378 lines (308 loc) · 11.3 KB
/
schemas.hbs
File metadata and controls
378 lines (308 loc) · 11.3 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
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
# coding: utf-8
{{> _helper_header }}
from __future__ import annotations
import datetime
import dataclasses
import io
import typing
import uuid
import typing_extensions
from {{packageName}}.configurations import schema_configuration
from . import schema, validation
@dataclasses.dataclass(frozen=True)
class ListSchema(schema.Schema[validation.immutabledict, tuple]):
types: typing.FrozenSet[typing.Type] = frozenset({tuple})
@typing.overload
@classmethod
def validate(
cls,
arg: typing.Union[
typing.List[schema.INPUT_TYPES_ALL],
schema.U
],
configuration: typing.Optional[schema_configuration.SchemaConfiguration] = None
) -> schema.U: ...
@typing.overload
@classmethod
def validate(
cls,
arg: typing.Union[
typing.Tuple[schema.INPUT_TYPES_ALL, ...],
schema.U
],
configuration: typing.Optional[schema_configuration.SchemaConfiguration] = None
) -> schema.U: ...
@classmethod
def validate(
cls,
arg,
configuration: typing.Optional[schema_configuration.SchemaConfiguration] = None
):
return super().validate_base(arg, configuration=configuration)
@dataclasses.dataclass(frozen=True)
class NoneSchema(schema.Schema):
types: typing.FrozenSet[typing.Type] = frozenset({type(None)})
@classmethod
def validate(
cls,
arg: None,
configuration: typing.Optional[schema_configuration.SchemaConfiguration] = None
) -> None:
return super().validate_base(arg, configuration=configuration)
@dataclasses.dataclass(frozen=True)
class NumberSchema(schema.Schema):
"""
This is used for type: number with no format
Both integers AND floats are accepted
"""
types: typing.FrozenSet[typing.Type] = frozenset({float, int})
@typing.overload
@classmethod
def validate(
cls,
arg: int,
configuration: typing.Optional[schema_configuration.SchemaConfiguration] = None
) -> int: ...
@typing.overload
@classmethod
def validate(
cls,
arg: float,
configuration: typing.Optional[schema_configuration.SchemaConfiguration] = None
) -> float: ...
@classmethod
def validate(
cls,
arg,
configuration: typing.Optional[schema_configuration.SchemaConfiguration] = None
):
return super().validate_base(arg, configuration=configuration)
@dataclasses.dataclass(frozen=True)
class IntSchema(NumberSchema):
types: typing.FrozenSet[typing.Type] = frozenset({int, float})
format: str = 'int'
@dataclasses.dataclass(frozen=True)
class Int32Schema(IntSchema):
types: typing.FrozenSet[typing.Type] = frozenset({int, float})
format: str = 'int32'
@dataclasses.dataclass(frozen=True)
class Int64Schema(IntSchema):
types: typing.FrozenSet[typing.Type] = frozenset({int, float})
format: str = 'int64'
@dataclasses.dataclass(frozen=True)
class Float32Schema(NumberSchema):
{{#if generatorSettings.intsAllowedForFloatDoubleFormats}}
types: typing.FrozenSet[typing.Type] = frozenset({int, float})
{{else}}
types: typing.FrozenSet[typing.Type] = frozenset({float})
{{/if}}
format: str = 'float'
@dataclasses.dataclass(frozen=True)
class Float64Schema(NumberSchema):
{{#if generatorSettings.intsAllowedForFloatDoubleFormats}}
types: typing.FrozenSet[typing.Type] = frozenset({int, float})
{{else}}
types: typing.FrozenSet[typing.Type] = frozenset({float})
{{/if}}
format: str = 'double'
@dataclasses.dataclass(frozen=True)
class StrSchema(schema.Schema):
"""
date + datetime string types must inherit from this class
That is because one can validate a str payload as both:
- type: string (format unset)
- type: string, format: date
"""
types: typing.FrozenSet[typing.Type] = frozenset({str})
@classmethod
def validate(
cls,
arg: str,
configuration: typing.Optional[schema_configuration.SchemaConfiguration] = None
) -> str:
return super().validate_base(arg, configuration=configuration)
@dataclasses.dataclass(frozen=True)
class UUIDSchema(schema.Schema):
types: typing.FrozenSet[typing.Type] = frozenset({str})
format: str = 'uuid'
@classmethod
def validate(
cls,
arg: typing.Union[str, uuid.UUID],
configuration: typing.Optional[schema_configuration.SchemaConfiguration] = None
) -> str:
return super().validate_base(arg, configuration=configuration)
@dataclasses.dataclass(frozen=True)
class DateSchema(schema.Schema):
types: typing.FrozenSet[typing.Type] = frozenset({str})
format: str = 'date'
@classmethod
def validate(
cls,
arg: typing.Union[str, datetime.date],
configuration: typing.Optional[schema_configuration.SchemaConfiguration] = None
) -> str:
return super().validate_base(arg, configuration=configuration)
@dataclasses.dataclass(frozen=True)
class DateTimeSchema(schema.Schema):
types: typing.FrozenSet[typing.Type] = frozenset({str})
format: str = 'date-time'
@classmethod
def validate(
cls,
arg: typing.Union[str, datetime.datetime],
configuration: typing.Optional[schema_configuration.SchemaConfiguration] = None
) -> str:
return super().validate_base(arg, configuration=configuration)
@dataclasses.dataclass(frozen=True)
class DecimalSchema(schema.Schema):
types: typing.FrozenSet[typing.Type] = frozenset({str})
format: str = 'number'
@classmethod
def validate(
cls,
arg: str,
configuration: typing.Optional[schema_configuration.SchemaConfiguration] = None
) -> str:
"""
Note: Decimals may not be passed in because cast_to_allowed_types is only invoked once for payloads
which can be simple (str) or complex (dicts or lists with nested values)
Because casting is only done once and recursively casts all values prior to validation then for a potential
client side Decimal input if Decimal was accepted as an input in DecimalSchema then one would not know
if one was using it for a StrSchema (where it should be cast to str) or one is using it for NumberSchema
where it should stay as Decimal.
"""
return super().validate_base(arg, configuration=configuration)
@dataclasses.dataclass(frozen=True)
class BytesSchema(schema.Schema):
"""
this class will subclass bytes and is immutable
"""
types: typing.FrozenSet[typing.Type] = frozenset({bytes})
@classmethod
def validate(
cls,
arg: bytes,
configuration: typing.Optional[schema_configuration.SchemaConfiguration] = None
) -> bytes:
return cls.validate_base(arg)
@dataclasses.dataclass(frozen=True)
class FileSchema(schema.Schema):
"""
This class is NOT immutable
Dynamic classes are built using it for example when AnyType allows in binary data
Al other schema classes ARE immutable
If one wanted to make this immutable one could make this a DictSchema with required properties:
- data = BytesSchema (which would be an immutable bytes based schema)
- file_name = StrSchema
and cast_to_allowed_types would convert bytes and file instances into dicts containing data + file_name
The downside would be that data would be stored in memory which one may not want to do for very large files
The developer is responsible for closing this file and deleting it
This class was kept as mutable:
- to allow file reading and writing to disk
- to be able to preserve file name info
"""
types: typing.FrozenSet[typing.Type] = frozenset({schema.FileIO})
@classmethod
def validate(
cls,
arg: typing.Union[io.FileIO, io.BufferedReader],
configuration: typing.Optional[schema_configuration.SchemaConfiguration] = None
) -> schema.FileIO:
return cls.validate_base(arg)
@dataclasses.dataclass(frozen=True)
class BinarySchema(schema.Schema):
types: typing.FrozenSet[typing.Type] = frozenset({schema.FileIO, bytes})
format: str = 'binary'
one_of: typing.Tuple[typing.Type[schema.Schema], ...] = (
BytesSchema,
FileSchema,
)
@classmethod
def validate(
cls,
arg: typing.Union[io.FileIO, io.BufferedReader, bytes],
configuration: typing.Optional[schema_configuration.SchemaConfiguration] = None
) -> typing.Union[schema.FileIO, bytes]:
return cls.validate_base(arg)
@dataclasses.dataclass(frozen=True)
class BoolSchema(schema.Schema):
types: typing.FrozenSet[typing.Type] = frozenset({schema.Bool})
@typing.overload
@classmethod
def validate(
cls,
arg: typing.Literal[True],
configuration: typing.Optional[schema_configuration.SchemaConfiguration] = None
) -> typing.Literal[True]: ...
@typing.overload
@classmethod
def validate(
cls,
arg: typing.Literal[False],
configuration: typing.Optional[schema_configuration.SchemaConfiguration] = None
) -> typing.Literal[False]: ...
@typing.overload
@classmethod
def validate(
cls,
arg: bool,
configuration: typing.Optional[schema_configuration.SchemaConfiguration] = None
) -> bool: ...
@classmethod
def validate(
cls,
arg,
configuration: typing.Optional[schema_configuration.SchemaConfiguration] = None
):
return super().validate_base(arg, configuration=configuration)
@dataclasses.dataclass(frozen=True)
class NotAnyTypeSchema(schema.AnyTypeSchema):
"""
Python representation of a schema defined as false or {'not': {}}
Does not allow inputs in of AnyType
Note: validations on this class are never run because the code knows that no inputs will ever validate
"""
not_: typing.Type[schema.Schema] = schema.AnyTypeSchema
@classmethod
def validate(
cls,
arg,
configuration: typing.Optional[schema_configuration.SchemaConfiguration] = None,
):
return super().validate_base(arg, configuration=configuration)
OUTPUT_BASE_TYPES = typing.Union[
validation.immutabledict[str, 'OUTPUT_BASE_TYPES'],
str,
int,
float,
bool,
schema.none_type_,
typing.Tuple['OUTPUT_BASE_TYPES', ...],
bytes,
schema.FileIO
]
@dataclasses.dataclass(frozen=True)
class DictSchema(schema.Schema[schema.validation.immutabledict[str, OUTPUT_BASE_TYPES], tuple]):
types: typing.FrozenSet[typing.Type] = frozenset({validation.immutabledict})
@typing.overload
@classmethod
def validate(
cls,
arg: schema.validation.immutabledict[str, OUTPUT_BASE_TYPES],
configuration: typing.Optional[schema_configuration.SchemaConfiguration] = None
) -> schema.validation.immutabledict[str, OUTPUT_BASE_TYPES]: ...
@typing.overload
@classmethod
def validate(
cls,
arg: typing.Mapping[str, schema.INPUT_TYPES_ALL],
configuration: typing.Optional[schema_configuration.SchemaConfiguration] = None
) -> schema.validation.immutabledict[str, OUTPUT_BASE_TYPES]: ...
@classmethod
def validate(
cls,
arg,
configuration: typing.Optional[schema_configuration.SchemaConfiguration] = None,
) -> schema.validation.immutabledict[str, OUTPUT_BASE_TYPES]:
return super().validate_base(arg, configuration=configuration)