forked from oppia/oppia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
schema_utils.py
389 lines (324 loc) · 13.7 KB
/
schema_utils.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
# Copyright 2014 The Oppia Authors. All Rights Reserved.
#
# Licensed 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.
"""Utility functions for managing schemas and schema-based validation.
A schema is a way to specify the type of an object. For example, one might
want to require that an object is an integer, or that it is a dict with two
keys named 'abc' and 'def', each with values that are unicode strings. This
file contains utilities for validating schemas and for checking that objects
follow the definitions given by the schemas.
The objects that can be described by these schemas must be composable from the
following Python types: bool, dict, float, int, list, unicode.
"""
from __future__ import absolute_import # pylint: disable=import-only-modules
from __future__ import unicode_literals # pylint: disable=import-only-modules
import numbers
import re
from core.domain import html_cleaner
import python_utils
SCHEMA_KEY_ITEMS = 'items'
SCHEMA_KEY_LEN = 'len'
SCHEMA_KEY_PROPERTIES = 'properties'
SCHEMA_KEY_TYPE = 'type'
SCHEMA_KEY_POST_NORMALIZERS = 'post_normalizers'
SCHEMA_KEY_CHOICES = 'choices'
SCHEMA_KEY_NAME = 'name'
SCHEMA_KEY_SCHEMA = 'schema'
SCHEMA_KEY_OBJ_TYPE = 'obj_type'
SCHEMA_KEY_VALIDATORS = 'validators'
SCHEMA_TYPE_BOOL = 'bool'
SCHEMA_TYPE_CUSTOM = 'custom'
SCHEMA_TYPE_DICT = 'dict'
SCHEMA_TYPE_FLOAT = 'float'
SCHEMA_TYPE_HTML = 'html'
SCHEMA_TYPE_INT = 'int'
SCHEMA_TYPE_LIST = 'list'
SCHEMA_TYPE_UNICODE = 'unicode'
def normalize_against_schema(obj, schema, apply_custom_validators=True):
"""Validate the given object using the schema, normalizing if necessary.
Args:
obj: *. The object to validate and normalize.
schema: dict(str, *). The schema to validate and normalize the value
against.
apply_custom_validators: bool. Whether to validate the normalized
object using the validators defined in the schema.
Returns:
*. The normalized object.
Raises:
AssertionError: The object fails to validate against the schema.
"""
normalized_obj = None
if schema[SCHEMA_KEY_TYPE] == SCHEMA_TYPE_BOOL:
assert isinstance(obj, bool), ('Expected bool, received %s' % obj)
normalized_obj = obj
elif schema[SCHEMA_KEY_TYPE] == SCHEMA_TYPE_CUSTOM:
# Importing this at the top of the file causes a circular dependency.
# TODO(sll): Either get rid of custom objects or find a way to merge
# them into the schema framework -- probably the latter.
from core.domain import obj_services
obj_class = obj_services.Registry.get_object_class_by_type(
schema[SCHEMA_KEY_OBJ_TYPE])
if not apply_custom_validators:
normalized_obj = normalize_against_schema(
obj, obj_class.SCHEMA, apply_custom_validators=False)
else:
normalized_obj = obj_class.normalize(obj)
elif schema[SCHEMA_KEY_TYPE] == SCHEMA_TYPE_DICT:
assert isinstance(obj, dict), ('Expected dict, received %s' % obj)
expected_dict_keys = [
p[SCHEMA_KEY_NAME] for p in schema[SCHEMA_KEY_PROPERTIES]]
assert set(obj.keys()) == set(expected_dict_keys), (
'Missing keys: %s, Extra keys: %s' % (
list(set(expected_dict_keys) - set(obj.keys())),
list(set(obj.keys()) - set(expected_dict_keys))))
normalized_obj = {}
for prop in schema[SCHEMA_KEY_PROPERTIES]:
key = prop[SCHEMA_KEY_NAME]
normalized_obj[key] = normalize_against_schema(
obj[key], prop[SCHEMA_KEY_SCHEMA])
elif schema[SCHEMA_KEY_TYPE] == SCHEMA_TYPE_FLOAT:
obj = float(obj)
assert isinstance(obj, numbers.Real), (
'Expected float, received %s' % obj)
normalized_obj = obj
elif schema[SCHEMA_KEY_TYPE] == SCHEMA_TYPE_INT:
obj = int(obj)
assert isinstance(obj, numbers.Integral), (
'Expected int, received %s' % obj)
assert isinstance(obj, int), ('Expected int, received %s' % obj)
normalized_obj = obj
elif schema[SCHEMA_KEY_TYPE] == SCHEMA_TYPE_HTML:
assert isinstance(obj, python_utils.BASESTRING), (
'Expected unicode HTML string, received %s' % obj)
if isinstance(obj, bytes):
obj = obj.decode('utf-8')
else:
obj = python_utils.UNICODE(obj)
assert isinstance(obj, python_utils.UNICODE), (
'Expected unicode, received %s' % obj)
normalized_obj = html_cleaner.clean(obj)
elif schema[SCHEMA_KEY_TYPE] == SCHEMA_TYPE_LIST:
assert isinstance(obj, list), ('Expected list, received %s' % obj)
item_schema = schema[SCHEMA_KEY_ITEMS]
if SCHEMA_KEY_LEN in schema:
assert len(obj) == schema[SCHEMA_KEY_LEN]
normalized_obj = [
normalize_against_schema(item, item_schema) for item in obj
]
elif schema[SCHEMA_KEY_TYPE] == SCHEMA_TYPE_UNICODE:
assert isinstance(obj, python_utils.BASESTRING), (
'Expected unicode string, received %s' % obj)
if isinstance(obj, bytes):
obj = obj.decode('utf-8')
else:
obj = python_utils.UNICODE(obj)
assert isinstance(obj, python_utils.UNICODE), (
'Expected unicode, received %s' % obj)
normalized_obj = obj
else:
raise Exception('Invalid schema type: %s' % schema[SCHEMA_KEY_TYPE])
if SCHEMA_KEY_CHOICES in schema:
assert normalized_obj in schema[SCHEMA_KEY_CHOICES], (
'Received %s which is not in the allowed range of choices: %s' %
(normalized_obj, schema[SCHEMA_KEY_CHOICES]))
# When type normalization is finished, apply the post-normalizers in the
# given order.
if SCHEMA_KEY_POST_NORMALIZERS in schema:
for normalizer in schema[SCHEMA_KEY_POST_NORMALIZERS]:
kwargs = dict(normalizer)
del kwargs['id']
normalized_obj = Normalizers.get(normalizer['id'])(
normalized_obj, **kwargs)
# Validate the normalized object.
if apply_custom_validators:
if SCHEMA_KEY_VALIDATORS in schema:
for validator in schema[SCHEMA_KEY_VALIDATORS]:
kwargs = dict(validator)
del kwargs['id']
assert get_validator(
validator['id'])(normalized_obj, **kwargs), (
'Validation failed: %s (%s) for object %s' % (
validator['id'], kwargs, normalized_obj))
return normalized_obj
def get_validator(validator_id):
"""Get the validator method corresponding to the given validator_id.
Args:
validator_id: str. The name of the validator method that should
be retrieved.
Returns:
function. The validator method corresponding to the given
validator_id.
"""
return _Validators.get(validator_id)
class Normalizers(python_utils.OBJECT):
"""Various normalizers.
A normalizer is a function that takes an object, attempts to normalize
it to a canonical representation, and/or performs validity checks on the
object pre- and post-normalization. If the normalization succeeds, the
function returns the transformed object; if it fails, it raises an
exception.
Some normalizers require additional arguments. It is the responsibility of
callers of normalizer functions to ensure that the arguments they supply to
the normalizer are valid. What exactly this entails is provided in the
docstring for each normalizer.
"""
@classmethod
def get(cls, normalizer_id):
"""Returns the normalizer method corresponding to the specified
normalizer_id.
Args:
normalizer_id: str. The name of the normalizer method that should be
retrieved.
Returns:
function. The normalizer method corresponding to the given
normalizer_id.
Raises:
Exception: The normalizer_id is not valid.
"""
if not hasattr(cls, normalizer_id):
raise Exception('Invalid normalizer id: %s' % normalizer_id)
return getattr(cls, normalizer_id)
# TODO(ankita240796): The disable comment is required since the lint tests
# fail on circleci with the multiple-statements error on the line even though
# the line is empty. This is a temporary fix to unblock PRs.
# Relevant issue: https://github.com/oppia/oppia/issues/7307.
# pylint: disable=multiple-statements
@staticmethod
def sanitize_url(obj):
"""Takes a string representing a URL and sanitizes it.
Args:
obj: a string representing a URL.
Returns:
An empty string if the URL does not start with http:// or https://
except when the string is empty. Otherwise, returns the original
URL.
Raises:
AssertionError: The string is non-empty and does not start with
http:// or https://
"""
if obj == '':
return obj
url_components = python_utils.url_split(obj)
quoted_url_components = (
python_utils.url_quote(component) for component in url_components)
raw = python_utils.url_unsplit(quoted_url_components)
acceptable = html_cleaner.filter_a('a', 'href', obj)
assert acceptable, (
'Invalid URL: Sanitized URL should start with '
'\'http://\' or \'https://\'; received %s' % raw)
return raw
@staticmethod
def normalize_spaces(obj):
"""Collapses multiple spaces into single spaces.
Args:
obj: a string.
Returns:
A string that is the same as `obj`, except that each block of
whitespace is collapsed into a single space character. If the
block of whitespace is at the front or end of obj, then it
is simply removed.
"""
return ' '.join(obj.split())
class _Validators(python_utils.OBJECT):
"""Various validators.
A validator is a function that takes an object and returns True if it is
valid, and False if it isn't.
Validators should only be accessed from the checker methods in
schema_utils.py and schema_utils_test.py, since these methods do
preliminary checks on the arguments passed to the validator.
"""
@classmethod
def get(cls, validator_id):
"""Returns the validator method corresponding to the specified
validator_id.
Args:
validator_id: str. The name of the validator method that should be
retrieved.
Returns:
function. The validator method corresponding to the specified
validator_id.
"""
if not hasattr(cls, validator_id):
raise Exception('Invalid validator id: %s' % validator_id)
return getattr(cls, validator_id)
@staticmethod
def has_length_at_least(obj, min_value):
"""Returns True iff the given object (a list) has at least
`min_value` elements.
Args:
obj: list(*). A list of strings.
min_value: int. The minimum number of elements that `obj` should
contain.
Returns:
bool. Whether the given object has at least `min_value` elements.
"""
return len(obj) >= min_value
@staticmethod
def has_length_at_most(obj, max_value):
"""Returns True iff the given object (a list) has at most
`max_value` elements.
Args:
obj: list(*). A list of strings.
max_value: int. The maximum number of elements that `obj` should
contain.
Returns:
bool. Whether the given object has at most `max_value` elements.
"""
return len(obj) <= max_value
@staticmethod
def is_nonempty(obj):
"""Returns True iff the given object (a string) is nonempty.
Args:
obj: str. A string.
Returns:
bool. Whether the given object is nonempty.
"""
return bool(obj)
@staticmethod
def is_uniquified(obj):
"""Returns True iff the given object (a list) has no duplicates.
Args:
obj: list(*). A list of strings.
Returns:
bool. Whether the given object has no duplicates.
"""
return sorted(list(set(obj))) == sorted(obj)
@staticmethod
def is_at_least(obj, min_value):
"""Ensures that `obj` (an int/float) is at least `min_value`.
Args:
obj: int|float. An object.
min_value: int. The minimum allowed value for `obj`.
Returns:
bool. Whether the given object is at least `min_value`.
"""
return obj >= min_value
@staticmethod
def is_at_most(obj, max_value):
"""Ensures that `obj` (an int/float) is at most `max_value`.
Args:
obj: int|float. An object.
max_value: int. The maximum allowed value for `obj`.
Returns:
bool. Whether the given object is at most `max_value`.
"""
return obj <= max_value
@staticmethod
def is_valid_email(obj):
"""Ensures that `obj` (a string) is a valid email.
Args:
obj: str. A string.
Returns:
bool. Whether the given object is a valid email.
"""
return bool(re.search(r'^[\w\.\+\-]+\@[\w]+\.[a-z]{2,3}$', obj))