blob: ebcf94e000d89b433839eb75c94f5e7d281aaf1e [file] [log] [blame]
tierno0f98af52018-03-19 10:28:22 +01001# -*- coding: utf-8 -*-
2
tiernod125caf2018-11-22 16:05:54 +00003# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
12# implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
tierno0f98af52018-03-19 10:28:22 +010016from jsonschema import validate as js_v, exceptions as js_e
tierno36ec8602018-11-02 17:27:11 +010017from http import HTTPStatus
garciadeblasdaf8cc52018-11-30 14:17:20 +010018from copy import deepcopy
delacruzramoc061f562019-04-05 11:00:02 +020019from uuid import UUID # To test for valid UUID
tierno0f98af52018-03-19 10:28:22 +010020
21__author__ = "Alfonso Tierno <alfonso.tiernosepulveda@telefonica.com>"
22__version__ = "0.1"
23version_date = "Mar 2018"
24
25"""
26Validator of input data using JSON schemas for those items that not contains an OSM yang information model
27"""
28
29# Basis schemas
30patern_name = "^[ -~]+$"
tiernofd160572019-01-21 10:41:37 +000031shortname_schema = {"type": "string", "minLength": 1, "maxLength": 60, "pattern": "^[^,;()\\.\\$'\"]+$"}
tierno0f98af52018-03-19 10:28:22 +010032passwd_schema = {"type": "string", "minLength": 1, "maxLength": 60}
tierno0f98af52018-03-19 10:28:22 +010033name_schema = {"type": "string", "minLength": 1, "maxLength": 255, "pattern": "^[^,;()'\"]+$"}
tierno0da52252018-06-27 15:47:22 +020034string_schema = {"type": "string", "minLength": 1, "maxLength": 255}
tierno0f98af52018-03-19 10:28:22 +010035xml_text_schema = {"type": "string", "minLength": 1, "maxLength": 1000, "pattern": "^[^']+$"}
36description_schema = {"type": ["string", "null"], "maxLength": 255, "pattern": "^[^'\"]+$"}
tierno441dbbf2018-07-10 12:52:48 +020037id_schema_fake = {"type": "string", "minLength": 2, "maxLength": 36}
38bool_schema = {"type": "boolean"}
39null_schema = {"type": "null"}
tierno2236d202018-05-16 19:05:16 +020040# "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$"
tierno0f98af52018-03-19 10:28:22 +010041id_schema = {"type": "string", "pattern": "^[a-fA-F0-9]{8}(-[a-fA-F0-9]{4}){3}-[a-fA-F0-9]{12}$"}
tiernof759d822018-06-11 18:54:54 +020042time_schema = {"type": "string", "pattern": "^[0-9]{4}-[0-1][0-9]-[0-3][0-9]T[0-2][0-9]([0-5]:){2}"}
tierno87006042018-10-24 12:50:20 +020043pci_schema = {"type": "string", "pattern": "^[0-9a-fA-F]{4}(:[0-9a-fA-F]{2}){2}\\.[0-9a-fA-F]$"}
tierno42fce592018-11-02 09:23:43 +010044# allows [] for wildcards. For that reason huge length limit is set
45pci_extended_schema = {"type": "string", "pattern": "^[0-9a-fA-F.:-\\[\\]]{12,40}$"}
tierno0f98af52018-03-19 10:28:22 +010046http_schema = {"type": "string", "pattern": "^https?://[^'\"=]+$"}
47bandwidth_schema = {"type": "string", "pattern": "^[0-9]+ *([MG]bps)?$"}
48memory_schema = {"type": "string", "pattern": "^[0-9]+ *([MG]i?[Bb])?$"}
49integer0_schema = {"type": "integer", "minimum": 0}
50integer1_schema = {"type": "integer", "minimum": 1}
tierno87006042018-10-24 12:50:20 +020051path_schema = {"type": "string", "pattern": "^(\\.){0,2}(/[^/\"':{}\\(\\)]+)+$"}
tierno0f98af52018-03-19 10:28:22 +010052vlan_schema = {"type": "integer", "minimum": 1, "maximum": 4095}
53vlan1000_schema = {"type": "integer", "minimum": 1000, "maximum": 4095}
54mac_schema = {"type": "string",
55 "pattern": "^[0-9a-fA-F][02468aceACE](:[0-9a-fA-F]{2}){5}$"} # must be unicast: LSB bit of MSB byte ==0
tiernocb83c942018-09-24 17:28:13 +020056dpid_Schema = {"type": "string", "pattern": "^[0-9a-fA-F]{2}(:[0-9a-fA-F]{2}){7}$"}
tierno0f98af52018-03-19 10:28:22 +010057# mac_schema={"type":"string", "pattern":"^([0-9a-fA-F]{2}:){5}[0-9a-fA-F]{2}$"}
58ip_schema = {"type": "string",
tierno87006042018-10-24 12:50:20 +020059 "pattern": "^((25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.){3}(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$"}
tierno0f98af52018-03-19 10:28:22 +010060ip_prefix_schema = {"type": "string",
tierno87006042018-10-24 12:50:20 +020061 "pattern": "^((25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.){3}"
tierno2236d202018-05-16 19:05:16 +020062 "(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)/(30|[12]?[0-9])$"}
tierno0f98af52018-03-19 10:28:22 +010063port_schema = {"type": "integer", "minimum": 1, "maximum": 65534}
64object_schema = {"type": "object"}
65schema_version_2 = {"type": "integer", "minimum": 2, "maximum": 2}
66# schema_version_string={"type":"string","enum": ["0.1", "2", "0.2", "3", "0.3"]}
67log_level_schema = {"type": "string", "enum": ["DEBUG", "INFO", "WARNING", "ERROR", "CRITICAL"]}
68checksum_schema = {"type": "string", "pattern": "^[0-9a-fA-F]{32}$"}
69size_schema = {"type": "integer", "minimum": 1, "maximum": 100}
tiernocd54a4a2018-09-12 16:40:35 +020070array_edition_schema = {
71 "type": "object",
72 "patternProperties": {
tiernofd160572019-01-21 10:41:37 +000073 "^\\$": {}
tiernocd54a4a2018-09-12 16:40:35 +020074 },
75 "additionalProperties": False,
76 "minProperties": 1,
77}
tiernocb83c942018-09-24 17:28:13 +020078nameshort_list_schema = {
79 "type": "array",
80 "minItems": 1,
tiernofd160572019-01-21 10:41:37 +000081 "items": shortname_schema,
tiernocb83c942018-09-24 17:28:13 +020082}
tiernocd54a4a2018-09-12 16:40:35 +020083
tierno0f98af52018-03-19 10:28:22 +010084
tierno441dbbf2018-07-10 12:52:48 +020085ns_instantiate_vdu = {
86 "title": "ns action instantiate input schema for vdu",
87 "$schema": "http://json-schema.org/draft-04/schema#",
88 "type": "object",
89 "properties": {
90 "id": name_schema,
91 "volume": {
92 "type": "array",
93 "minItems": 1,
94 "items": {
95 "type": "object",
96 "properties": {
97 "name": name_schema,
98 "vim-volume-id": name_schema,
99 },
100 "required": ["name", "vim-volume-id"],
101 "additionalProperties": False
102 }
103 },
104 "interface": {
105 "type": "array",
106 "minItems": 1,
107 "items": {
108 "type": "object",
109 "properties": {
110 "name": name_schema,
111 "ip-address": ip_schema,
112 "mac-address": mac_schema,
113 "floating-ip-required": bool_schema,
114 },
115 "required": ["name"],
116 "additionalProperties": False
117 }
118 }
119 },
120 "required": ["id"],
121 "additionalProperties": False
122}
123
124ip_profile_dns_schema = {
125 "type": "array",
126 "minItems": 1,
127 "items": {
128 "type": "object",
129 "properties": {
130 "address": ip_schema,
131 },
132 "required": ["address"],
133 "additionalProperties": False
134 }
135}
136
137ip_profile_dhcp_schema = {
138 "type": "object",
139 "properties": {
140 "enabled": {"type": "boolean"},
141 "count": integer1_schema,
142 "start-address": ip_schema
143 },
144 "additionalProperties": False,
145}
146
147ip_profile_schema = {
tierno2a929042020-03-10 16:34:25 +0000148 "title": "ip profile validation schema",
tierno441dbbf2018-07-10 12:52:48 +0200149 "$schema": "http://json-schema.org/draft-04/schema#",
150 "type": "object",
151 "properties": {
152 "ip-version": {"enum": ["ipv4", "ipv6"]},
153 "subnet-address": ip_prefix_schema,
154 "gateway-address": ip_schema,
155 "dns-server": ip_profile_dns_schema,
156 "dhcp-params": ip_profile_dhcp_schema,
157 }
158}
159
160ip_profile_update_schema = {
tierno2a929042020-03-10 16:34:25 +0000161 "title": "ip profile validation schema",
tierno441dbbf2018-07-10 12:52:48 +0200162 "$schema": "http://json-schema.org/draft-04/schema#",
163 "type": "object",
164 "properties": {
165 "ip-version": {"enum": ["ipv4", "ipv6"]},
166 "subnet-address": {"oneOf": [null_schema, ip_prefix_schema]},
167 "gateway-address": {"oneOf": [null_schema, ip_schema]},
168 "dns-server": {"oneOf": [null_schema, ip_profile_dns_schema]},
169
170 "dhcp-params": {"oneOf": [null_schema, ip_profile_dhcp_schema]},
171 },
172 "additionalProperties": False
173}
174
kbsub21f03f52019-10-17 16:26:56 +0000175provider_network_schema = {
tierno2a929042020-03-10 16:34:25 +0000176 "title": "provider network validation schema",
kbsub21f03f52019-10-17 16:26:56 +0000177 "$schema": "http://json-schema.org/draft-04/schema#",
178 "type": "object",
179 "properties": {
180 "physical-network": name_schema,
181 "segmentation-id": name_schema,
tierno2a929042020-03-10 16:34:25 +0000182 "sdn-ports": { # external ports to append to the SDN-assist network
183 "type": "array",
184 "items": {
185 "type": "object",
186 "properties": {
187 "switch_id": shortname_schema,
188 "switch_port": shortname_schema,
189 "mac_address": mac_schema,
190 "vlan": vlan_schema,
191 },
192 "additionalProperties": True
193 }
194 },
195 "network-type": shortname_schema,
kbsub21f03f52019-10-17 16:26:56 +0000196 },
tierno2a929042020-03-10 16:34:25 +0000197 "additionalProperties": True
kbsub21f03f52019-10-17 16:26:56 +0000198}
199
tierno441dbbf2018-07-10 12:52:48 +0200200ns_instantiate_internal_vld = {
201 "title": "ns action instantiate input schema for vdu",
202 "$schema": "http://json-schema.org/draft-04/schema#",
203 "type": "object",
204 "properties": {
205 "name": name_schema,
206 "vim-network-name": name_schema,
gcalvino17d5b732018-12-17 16:26:21 +0100207 "vim-network-id": name_schema,
tierno441dbbf2018-07-10 12:52:48 +0200208 "ip-profile": ip_profile_update_schema,
kbsub21f03f52019-10-17 16:26:56 +0000209 "provider-network": provider_network_schema,
tierno441dbbf2018-07-10 12:52:48 +0200210 "internal-connection-point": {
211 "type": "array",
212 "minItems": 1,
213 "items": {
214 "type": "object",
215 "properties": {
216 "id-ref": name_schema,
217 "ip-address": ip_schema,
tiernob7c6f2a2018-09-03 14:32:10 +0200218 # "mac-address": mac_schema,
tierno441dbbf2018-07-10 12:52:48 +0200219 },
tiernob7c6f2a2018-09-03 14:32:10 +0200220 "required": ["id-ref"],
221 "minProperties": 2,
tierno441dbbf2018-07-10 12:52:48 +0200222 "additionalProperties": False
223 },
224 }
225 },
226 "required": ["name"],
227 "minProperties": 2,
228 "additionalProperties": False
229}
tierno65acb4d2018-04-06 16:42:40 +0200230
tiernofd160572019-01-21 10:41:37 +0000231additional_params_for_vnf = {
232 "type": "array",
233 "items": {
234 "type": "object",
235 "properties": {
236 "member-vnf-index": name_schema,
237 "additionalParams": object_schema,
tierno714954e2019-11-29 13:43:26 +0000238 "additionalParamsForVdu": {
239 "type": "array",
240 "items": {
241 "type": "object",
242 "properties": {
243 "vdu_id": name_schema,
244 "additionalParams": object_schema,
245 },
246 "required": ["vdu_id", "additionalParams"],
247 "additionalProperties": False,
248 },
249 },
250 "additionalParamsForKdu": {
251 "type": "array",
252 "items": {
253 "type": "object",
254 "properties": {
255 "kdu_name": name_schema,
256 "additionalParams": object_schema,
257 },
258 "required": ["kdu_name", "additionalParams"],
259 "additionalProperties": False,
260 },
261 },
tiernofd160572019-01-21 10:41:37 +0000262 },
tierno714954e2019-11-29 13:43:26 +0000263 "required": ["member-vnf-index"],
264 "minProperties": 2,
tiernofd160572019-01-21 10:41:37 +0000265 "additionalProperties": False
266 }
tiernofd160572019-01-21 10:41:37 +0000267}
268
tierno65acb4d2018-04-06 16:42:40 +0200269ns_instantiate = {
270 "title": "ns action instantiate input schema",
271 "$schema": "http://json-schema.org/draft-04/schema#",
272 "type": "object",
tierno0da52252018-06-27 15:47:22 +0200273 "properties": {
tiernob24258a2018-10-04 18:39:49 +0200274 "lcmOperationType": string_schema,
275 "nsInstanceId": id_schema,
Felipe Vicens07f31722018-10-29 15:16:44 +0100276 "netsliceInstanceId": id_schema,
tierno0da52252018-06-27 15:47:22 +0200277 "nsName": name_schema,
tierno4f9d4ae2019-03-20 17:24:11 +0000278 "nsDescription": {"oneOf": [description_schema, null_schema]},
tierno0da52252018-06-27 15:47:22 +0200279 "nsdId": id_schema,
280 "vimAccountId": id_schema,
tierno4f9d4ae2019-03-20 17:24:11 +0000281 "wimAccountId": {"OneOf": [id_schema, bool_schema, null_schema]},
magnussonlf318b302020-01-20 18:38:18 +0100282 "placement-engine": string_schema,
283 "placement-constraints": object_schema,
tiernobee085c2018-12-12 17:03:04 +0000284 "additionalParamsForNs": object_schema,
tiernofd160572019-01-21 10:41:37 +0000285 "additionalParamsForVnf": additional_params_for_vnf,
tiernofc5089c2018-10-31 09:28:11 +0100286 "ssh_keys": {"type": "array", "items": {"type": "string"}},
tiernoa8186a52020-01-14 15:54:48 +0000287 "timeout_ns_deploy": integer1_schema,
tierno441dbbf2018-07-10 12:52:48 +0200288 "nsr_id": id_schema,
tiernocc103432018-10-19 14:10:35 +0200289 "vduImage": name_schema,
tierno0da52252018-06-27 15:47:22 +0200290 "vnf": {
291 "type": "array",
292 "minItems": 1,
293 "items": {
294 "type": "object",
295 "properties": {
296 "member-vnf-index": name_schema,
297 "vimAccountId": id_schema,
tierno441dbbf2018-07-10 12:52:48 +0200298 "vdu": {
299 "type": "array",
300 "minItems": 1,
301 "items": ns_instantiate_vdu,
302 },
303 "internal-vld": {
304 "type": "array",
305 "minItems": 1,
306 "items": ns_instantiate_internal_vld
307 }
tierno0da52252018-06-27 15:47:22 +0200308 },
tierno441dbbf2018-07-10 12:52:48 +0200309 "required": ["member-vnf-index"],
310 "minProperties": 2,
311 "additionalProperties": False
tierno0da52252018-06-27 15:47:22 +0200312 }
313 },
314 "vld": {
315 "type": "array",
316 "minItems": 1,
317 "items": {
318 "type": "object",
319 "properties": {
320 "name": string_schema,
321 "vim-network-name": {"OneOf": [string_schema, object_schema]},
gcalvino17d5b732018-12-17 16:26:21 +0100322 "vim-network-id": {"OneOf": [string_schema, object_schema]},
Felipe Vicens09e65422019-01-22 15:06:46 +0100323 "ns-net": object_schema,
tierno4f9d4ae2019-03-20 17:24:11 +0000324 "wimAccountId": {"OneOf": [id_schema, bool_schema, null_schema]},
tierno0da52252018-06-27 15:47:22 +0200325 "ip-profile": object_schema,
kbsub21f03f52019-10-17 16:26:56 +0000326 "provider-network": provider_network_schema,
tiernob7c6f2a2018-09-03 14:32:10 +0200327 "vnfd-connection-point-ref": {
328 "type": "array",
329 "minItems": 1,
330 "items": {
331 "type": "object",
332 "properties": {
333 "member-vnf-index-ref": name_schema,
334 "vnfd-connection-point-ref": name_schema,
335 "ip-address": ip_schema,
336 # "mac-address": mac_schema,
337 },
338 "required": ["member-vnf-index-ref", "vnfd-connection-point-ref"],
339 "minProperties": 3,
340 "additionalProperties": False
341 },
342 }
tierno0da52252018-06-27 15:47:22 +0200343 },
tierno441dbbf2018-07-10 12:52:48 +0200344 "required": ["name"],
345 "additionalProperties": False
tierno0da52252018-06-27 15:47:22 +0200346 }
347 },
348 },
tierno441dbbf2018-07-10 12:52:48 +0200349 "required": ["nsName", "nsdId", "vimAccountId"],
350 "additionalProperties": False
tierno65acb4d2018-04-06 16:42:40 +0200351}
tierno0da52252018-06-27 15:47:22 +0200352
tierno1c38f2f2020-03-24 11:51:39 +0000353ns_terminate = {
354 "title": "ns terminate input schema",
355 "$schema": "http://json-schema.org/draft-04/schema#",
356 "type": "object",
357 "properties": {
358 "lcmOperationType": string_schema,
359 "nsInstanceId": id_schema,
360 "autoremove": bool_schema,
361 "timeout_ns_terminate": integer1_schema,
362 "skip_terminate_primitives": bool_schema,
363 },
364 "additionalProperties": False
365}
366
tierno65acb4d2018-04-06 16:42:40 +0200367ns_action = { # TODO for the moment it is only contemplated the vnfd primitive execution
tiernof759d822018-06-11 18:54:54 +0200368 "title": "ns action input schema",
tierno65acb4d2018-04-06 16:42:40 +0200369 "$schema": "http://json-schema.org/draft-04/schema#",
370 "type": "object",
371 "properties": {
tiernob24258a2018-10-04 18:39:49 +0200372 "lcmOperationType": string_schema,
373 "nsInstanceId": id_schema,
tiernof5298be2018-05-16 14:43:57 +0200374 "member_vnf_index": name_schema,
375 "vnf_member_index": name_schema, # TODO for backward compatibility. To remove in future
tierno7ce1db92018-07-25 12:50:52 +0200376 "vdu_id": name_schema,
tiernof0637052019-03-07 16:26:47 +0000377 "vdu_count_index": integer0_schema,
tierno9cb7d672019-10-30 12:13:48 +0000378 "kdu_name": name_schema,
tierno65acb4d2018-04-06 16:42:40 +0200379 "primitive": name_schema,
tierno50c8e6e2020-04-02 15:40:12 +0000380 "timeout_ns_action": integer1_schema,
tierno65acb4d2018-04-06 16:42:40 +0200381 "primitive_params": {"type": "object"},
382 },
tiernof5298be2018-05-16 14:43:57 +0200383 "required": ["primitive", "primitive_params"], # TODO add member_vnf_index
tierno65acb4d2018-04-06 16:42:40 +0200384 "additionalProperties": False
385}
tiernof759d822018-06-11 18:54:54 +0200386ns_scale = { # TODO for the moment it is only VDU-scaling
387 "title": "ns scale input schema",
388 "$schema": "http://json-schema.org/draft-04/schema#",
389 "type": "object",
390 "properties": {
tiernob24258a2018-10-04 18:39:49 +0200391 "lcmOperationType": string_schema,
392 "nsInstanceId": id_schema,
tiernof759d822018-06-11 18:54:54 +0200393 "scaleType": {"enum": ["SCALE_VNF"]},
tierno50c8e6e2020-04-02 15:40:12 +0000394 "timeout_ns_scale": integer1_schema,
tiernof759d822018-06-11 18:54:54 +0200395 "scaleVnfData": {
396 "type": "object",
397 "properties": {
398 "vnfInstanceId": name_schema,
399 "scaleVnfType": {"enum": ["SCALE_OUT", 'SCALE_IN']},
400 "scaleByStepData": {
401 "type": "object",
402 "properties": {
403 "scaling-group-descriptor": name_schema,
404 "member-vnf-index": name_schema,
405 "scaling-policy": name_schema,
406 },
407 "required": ["scaling-group-descriptor", "member-vnf-index"],
408 "additionalProperties": False
409 },
410 },
411 "required": ["scaleVnfType", "scaleByStepData"], # vnfInstanceId
412 "additionalProperties": False
413 },
414 "scaleTime": time_schema,
415 },
416 "required": ["scaleType", "scaleVnfData"],
417 "additionalProperties": False
418}
tierno65acb4d2018-04-06 16:42:40 +0200419
420
tierno0f98af52018-03-19 10:28:22 +0100421schema_version = {"type": "string", "enum": ["1.0"]}
tierno55ba2e62018-12-11 17:22:22 +0000422schema_type = {"type": "string"}
tiernob3d0a0e2019-11-13 15:57:51 +0000423vim_type = shortname_schema # {"enum": ["openstack", "openvim", "vmware", "opennebula", "aws", "azure", "fos"]}
delacruzramo3a144c92019-10-25 09:46:33 +0200424
tierno09c073e2018-04-26 13:36:48 +0200425vim_account_edit_schema = {
426 "title": "vim_account edit input schema",
427 "$schema": "http://json-schema.org/draft-04/schema#",
428 "type": "object",
429 "properties": {
430 "name": name_schema,
431 "description": description_schema,
tierno09c073e2018-04-26 13:36:48 +0200432 "vim": name_schema,
433 "datacenter": name_schema,
delacruzramo3a144c92019-10-25 09:46:33 +0200434 "vim_type": vim_type,
tierno09c073e2018-04-26 13:36:48 +0200435 "vim_url": description_schema,
delacruzramo3a144c92019-10-25 09:46:33 +0200436 # "vim_url_admin": description_schema,
437 # "vim_tenant": name_schema,
tierno09c073e2018-04-26 13:36:48 +0200438 "vim_tenant_name": name_schema,
delacruzramo3a144c92019-10-25 09:46:33 +0200439 "vim_user": shortname_schema,
tiernocd54a4a2018-09-12 16:40:35 +0200440 "vim_password": passwd_schema,
tierno09c073e2018-04-26 13:36:48 +0200441 "config": {"type": "object"}
442 },
443 "additionalProperties": False
444}
tierno0f98af52018-03-19 10:28:22 +0100445
tierno09c073e2018-04-26 13:36:48 +0200446vim_account_new_schema = {
447 "title": "vim_account creation input schema",
tierno0f98af52018-03-19 10:28:22 +0100448 "$schema": "http://json-schema.org/draft-04/schema#",
449 "type": "object",
450 "properties": {
451 "schema_version": schema_version,
452 "schema_type": schema_type,
453 "name": name_schema,
454 "description": description_schema,
tierno09c073e2018-04-26 13:36:48 +0200455 "vim": name_schema,
456 "datacenter": name_schema,
delacruzramo3a144c92019-10-25 09:46:33 +0200457 "vim_type": vim_type,
tierno0f98af52018-03-19 10:28:22 +0100458 "vim_url": description_schema,
459 # "vim_url_admin": description_schema,
460 # "vim_tenant": name_schema,
461 "vim_tenant_name": name_schema,
tiernofd160572019-01-21 10:41:37 +0000462 "vim_user": shortname_schema,
tiernocd54a4a2018-09-12 16:40:35 +0200463 "vim_password": passwd_schema,
tierno0f98af52018-03-19 10:28:22 +0100464 "config": {"type": "object"}
465 },
466 "required": ["name", "vim_url", "vim_type", "vim_user", "vim_password", "vim_tenant_name"],
467 "additionalProperties": False
468}
tierno0f98af52018-03-19 10:28:22 +0100469
tierno85807722019-12-20 14:11:35 +0000470wim_type = shortname_schema # {"enum": ["ietfl2vpn", "onos", "odl", "dynpac", "fake"]}
delacruzramo3a144c92019-10-25 09:46:33 +0200471
tierno55ba2e62018-12-11 17:22:22 +0000472wim_account_edit_schema = {
473 "title": "wim_account edit input schema",
474 "$schema": "http://json-schema.org/draft-04/schema#",
475 "type": "object",
476 "properties": {
477 "name": name_schema,
478 "description": description_schema,
tierno55ba2e62018-12-11 17:22:22 +0000479 "wim": name_schema,
delacruzramo3a144c92019-10-25 09:46:33 +0200480 "wim_type": wim_type,
tierno55ba2e62018-12-11 17:22:22 +0000481 "wim_url": description_schema,
tiernofd160572019-01-21 10:41:37 +0000482 "user": shortname_schema,
tierno55ba2e62018-12-11 17:22:22 +0000483 "password": passwd_schema,
484 "config": {"type": "object"}
485 },
486 "additionalProperties": False
487}
488
489wim_account_new_schema = {
490 "title": "wim_account creation input schema",
491 "$schema": "http://json-schema.org/draft-04/schema#",
492 "type": "object",
493 "properties": {
494 "schema_version": schema_version,
495 "schema_type": schema_type,
496 "name": name_schema,
497 "description": description_schema,
498 "wim": name_schema,
delacruzramo3a144c92019-10-25 09:46:33 +0200499 "wim_type": wim_type,
tierno55ba2e62018-12-11 17:22:22 +0000500 "wim_url": description_schema,
tiernofd160572019-01-21 10:41:37 +0000501 "user": shortname_schema,
tierno55ba2e62018-12-11 17:22:22 +0000502 "password": passwd_schema,
tiernof0637052019-03-07 16:26:47 +0000503 "config": {
504 "type": "object",
505 "patternProperties": {
506 ".": {"not": {"type": "null"}}
507 }
508 }
tierno55ba2e62018-12-11 17:22:22 +0000509 },
510 "required": ["name", "wim_url", "wim_type"],
511 "additionalProperties": False
512}
tierno0f98af52018-03-19 10:28:22 +0100513
514sdn_properties = {
515 "name": name_schema,
tierno7adaeb02019-12-17 16:46:12 +0000516 "type": {"type": "string"},
517 "url": {"type": "string"},
518 "user": shortname_schema,
519 "password": passwd_schema,
520 "config": {"type": "object"},
tiernocfb07c62018-05-10 18:30:51 +0200521 "description": description_schema,
tierno7adaeb02019-12-17 16:46:12 +0000522 # The folowing are deprecated. Maintanied for backward compatibility
tiernocb83c942018-09-24 17:28:13 +0200523 "dpid": dpid_Schema,
tierno0f98af52018-03-19 10:28:22 +0100524 "ip": ip_schema,
525 "port": port_schema,
tierno0f98af52018-03-19 10:28:22 +0100526 "version": {"type": "string", "minLength": 1, "maxLength": 12},
tierno0f98af52018-03-19 10:28:22 +0100527}
528sdn_new_schema = {
529 "title": "sdn controller information schema",
530 "$schema": "http://json-schema.org/draft-04/schema#",
531 "type": "object",
532 "properties": sdn_properties,
tierno7adaeb02019-12-17 16:46:12 +0000533 "required": ["name", 'type'],
tierno0f98af52018-03-19 10:28:22 +0100534 "additionalProperties": False
535}
536sdn_edit_schema = {
537 "title": "sdn controller update information schema",
538 "$schema": "http://json-schema.org/draft-04/schema#",
539 "type": "object",
540 "properties": sdn_properties,
tiernocfb07c62018-05-10 18:30:51 +0200541 # "required": ["name", "port", 'ip', 'dpid', 'type'],
tierno0f98af52018-03-19 10:28:22 +0100542 "additionalProperties": False
543}
544sdn_port_mapping_schema = {
545 "$schema": "http://json-schema.org/draft-04/schema#",
546 "title": "sdn port mapping information schema",
547 "type": "array",
548 "items": {
549 "type": "object",
550 "properties": {
tiernofd160572019-01-21 10:41:37 +0000551 "compute_node": shortname_schema,
tierno0f98af52018-03-19 10:28:22 +0100552 "ports": {
553 "type": "array",
554 "items": {
555 "type": "object",
556 "properties": {
tierno42fce592018-11-02 09:23:43 +0100557 "pci": pci_extended_schema,
tiernofd160572019-01-21 10:41:37 +0000558 "switch_port": shortname_schema,
tierno0f98af52018-03-19 10:28:22 +0100559 "switch_mac": mac_schema
560 },
561 "required": ["pci"]
562 }
563 }
564 },
565 "required": ["compute_node", "ports"]
566 }
567}
568sdn_external_port_schema = {
569 "$schema": "http://json-schema.org/draft-04/schema#",
tiernocd54a4a2018-09-12 16:40:35 +0200570 "title": "External port information",
tierno0f98af52018-03-19 10:28:22 +0100571 "type": "object",
572 "properties": {
573 "port": {"type": "string", "minLength": 1, "maxLength": 60},
574 "vlan": vlan_schema,
575 "mac": mac_schema
576 },
577 "required": ["port"]
578}
579
delacruzramofe598fe2019-10-23 18:25:11 +0200580# K8s Clusters
581k8scluster_nets_schema = {
582 "title": "k8scluster nets input schema",
583 "$schema": "http://json-schema.org/draft-04/schema#",
584 "type": "object",
tierno8c81ab02020-02-07 10:18:30 +0000585 "patternProperties": {".": {"oneOf": [name_schema, null_schema]}},
delacruzramofe598fe2019-10-23 18:25:11 +0200586 "minProperties": 1,
587 "additionalProperties": False
588}
589k8scluster_new_schema = {
590 "title": "k8scluster creation input schema",
591 "$schema": "http://json-schema.org/draft-04/schema#",
592 "type": "object",
593 "properties": {
594 "schema_version": schema_version,
595 "schema_type": schema_type,
596 "name": name_schema,
597 "description": description_schema,
598 "credentials": object_schema,
599 "vim_account": id_schema,
600 "k8s_version": string_schema,
601 "nets": k8scluster_nets_schema,
602 "namespace": name_schema,
603 "cni": nameshort_list_schema,
604 },
605 "required": ["name", "credentials", "vim_account", "k8s_version", "nets"],
606 "additionalProperties": False
607}
608k8scluster_edit_schema = {
609 "title": "vim_account edit input schema",
610 "$schema": "http://json-schema.org/draft-04/schema#",
611 "type": "object",
612 "properties": {
613 "name": name_schema,
614 "description": description_schema,
615 "credentials": object_schema,
616 "vim_account": id_schema,
617 "k8s_version": string_schema,
618 "nets": k8scluster_nets_schema,
619 "namespace": name_schema,
620 "cni": nameshort_list_schema,
621 },
622 "additionalProperties": False
623}
624
625# K8s Repos
tierno332e0802019-12-03 23:50:49 +0000626k8srepo_types = {"enum": ["helm-chart", "juju-bundle"]}
delacruzramofe598fe2019-10-23 18:25:11 +0200627k8srepo_properties = {
628 "name": name_schema,
629 "description": description_schema,
630 "type": k8srepo_types,
631 "url": description_schema,
632}
633k8srepo_new_schema = {
634 "title": "k8scluster creation input schema",
635 "$schema": "http://json-schema.org/draft-04/schema#",
636 "type": "object",
637 "properties": k8srepo_properties,
638 "required": ["name", "type", "url"],
639 "additionalProperties": False
640}
641k8srepo_edit_schema = {
642 "title": "vim_account edit input schema",
643 "$schema": "http://json-schema.org/draft-04/schema#",
644 "type": "object",
645 "properties": k8srepo_properties,
646 "additionalProperties": False
647}
648
tiernocb83c942018-09-24 17:28:13 +0200649# PDUs
650pdu_interface = {
651 "type": "object",
652 "properties": {
tiernofd160572019-01-21 10:41:37 +0000653 "name": shortname_schema,
tiernocb83c942018-09-24 17:28:13 +0200654 "mgmt": bool_schema,
655 "type": {"enum": ["overlay", 'underlay']},
tierno36ec8602018-11-02 17:27:11 +0100656 "ip-address": ip_schema,
tiernocb83c942018-09-24 17:28:13 +0200657 # TODO, add user, password, ssh-key
tierno36ec8602018-11-02 17:27:11 +0100658 "mac-address": mac_schema,
tiernofd160572019-01-21 10:41:37 +0000659 "vim-network-name": shortname_schema, # interface is connected to one vim network, or switch port
660 "vim-network-id": shortname_schema,
tierno36ec8602018-11-02 17:27:11 +0100661 # # provide this in case SDN assist must deal with this interface
662 # "switch-dpid": dpid_Schema,
tiernofd160572019-01-21 10:41:37 +0000663 # "switch-port": shortname_schema,
664 # "switch-mac": shortname_schema,
tierno36ec8602018-11-02 17:27:11 +0100665 # "switch-vlan": vlan_schema,
tiernocb83c942018-09-24 17:28:13 +0200666 },
tierno36ec8602018-11-02 17:27:11 +0100667 "required": ["name", "mgmt", "ip-address"],
tiernocb83c942018-09-24 17:28:13 +0200668 "additionalProperties": False
tiernocd54a4a2018-09-12 16:40:35 +0200669}
tiernocb83c942018-09-24 17:28:13 +0200670pdu_new_schema = {
671 "title": "pdu creation input schema",
672 "$schema": "http://json-schema.org/draft-04/schema#",
673 "type": "object",
674 "properties": {
tiernofd160572019-01-21 10:41:37 +0000675 "name": shortname_schema,
676 "type": shortname_schema,
tiernocb83c942018-09-24 17:28:13 +0200677 "description": description_schema,
678 "shared": bool_schema,
679 "vims": nameshort_list_schema,
680 "vim_accounts": nameshort_list_schema,
681 "interfaces": {
682 "type": "array",
tierno36ec8602018-11-02 17:27:11 +0100683 "items": pdu_interface,
tiernocb83c942018-09-24 17:28:13 +0200684 "minItems": 1
685 }
686 },
687 "required": ["name", "type", "interfaces"],
688 "additionalProperties": False
689}
tiernocb83c942018-09-24 17:28:13 +0200690pdu_edit_schema = {
691 "title": "pdu edit input schema",
692 "$schema": "http://json-schema.org/draft-04/schema#",
693 "type": "object",
694 "properties": {
tiernofd160572019-01-21 10:41:37 +0000695 "name": shortname_schema,
696 "type": shortname_schema,
tiernocb83c942018-09-24 17:28:13 +0200697 "description": description_schema,
698 "shared": bool_schema,
garciadeblas84bdd552018-11-30 22:59:45 +0100699 "vims": {"oneOf": [array_edition_schema, nameshort_list_schema]},
700 "vim_accounts": {"oneOf": [array_edition_schema, nameshort_list_schema]},
701 "interfaces": {"oneOf": [
tiernocb83c942018-09-24 17:28:13 +0200702 array_edition_schema,
703 {
704 "type": "array",
tierno36ec8602018-11-02 17:27:11 +0100705 "items": pdu_interface,
tiernocb83c942018-09-24 17:28:13 +0200706 "minItems": 1
707 }
708 ]}
709 },
710 "additionalProperties": False,
711 "minProperties": 1
712}
713
delacruzramo271d2002019-12-02 21:00:37 +0100714# VNF PKG OPERATIONS
715vnfpkgop_new_schema = {
716 "title": "VNF PKG operation creation input schema",
717 "$schema": "http://json-schema.org/draft-04/schema#",
718 "type": "object",
719 "properties": {
720 "lcmOperationType": string_schema,
721 "vnfPkgId": id_schema,
722 "kdu_name": name_schema,
723 "primitive": name_schema,
724 "primitive_params": {"type": "object"},
725 },
726 "required": ["lcmOperationType", "vnfPkgId", "kdu_name", "primitive", "primitive_params"],
727 "additionalProperties": False
728}
729
tiernocb83c942018-09-24 17:28:13 +0200730# USERS
tiernocf042d32019-06-13 09:06:40 +0000731project_role_mappings = {
732 "title": "list pf projects/roles",
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100733 "$schema": "http://json-schema.org/draft-04/schema#",
tiernocf042d32019-06-13 09:06:40 +0000734 "type": "array",
735 "items": {
736 "type": "object",
737 "properties": {
738 "project": shortname_schema,
739 "role": shortname_schema
740 },
741 "required": ["project", "role"],
742 "additionalProperties": False
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100743 },
tiernocf042d32019-06-13 09:06:40 +0000744 "minItems": 1
745}
746project_role_mappings_optional = {
747 "title": "list of projects/roles or projects only",
748 "$schema": "http://json-schema.org/draft-04/schema#",
749 "type": "array",
750 "items": {
751 "type": "object",
752 "properties": {
753 "project": shortname_schema,
754 "role": shortname_schema
755 },
756 "required": ["project"],
757 "additionalProperties": False
758 },
759 "minItems": 1
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100760}
tiernocd54a4a2018-09-12 16:40:35 +0200761user_new_schema = {
762 "$schema": "http://json-schema.org/draft-04/schema#",
763 "title": "New user schema",
764 "type": "object",
765 "properties": {
tiernofd160572019-01-21 10:41:37 +0000766 "username": shortname_schema,
tiernoad6d5332020-02-19 14:29:49 +0000767 "domain_name": shortname_schema,
tiernocd54a4a2018-09-12 16:40:35 +0200768 "password": passwd_schema,
tiernocb83c942018-09-24 17:28:13 +0200769 "projects": nameshort_list_schema,
tiernocf042d32019-06-13 09:06:40 +0000770 "project_role_mappings": project_role_mappings,
tiernocd54a4a2018-09-12 16:40:35 +0200771 },
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100772 "required": ["username", "password"],
tiernocd54a4a2018-09-12 16:40:35 +0200773 "additionalProperties": False
774}
775user_edit_schema = {
776 "$schema": "http://json-schema.org/draft-04/schema#",
777 "title": "User edit schema for administrators",
778 "type": "object",
779 "properties": {
780 "password": passwd_schema,
delacruzramoc061f562019-04-05 11:00:02 +0200781 "username": shortname_schema, # To allow User Name modification
tiernocd54a4a2018-09-12 16:40:35 +0200782 "projects": {
garciadeblas84bdd552018-11-30 22:59:45 +0100783 "oneOf": [
tiernocb83c942018-09-24 17:28:13 +0200784 nameshort_list_schema,
tiernocd54a4a2018-09-12 16:40:35 +0200785 array_edition_schema
786 ]
787 },
tiernocf042d32019-06-13 09:06:40 +0000788 "project_role_mappings": project_role_mappings,
789 "add_project_role_mappings": project_role_mappings,
790 "remove_project_role_mappings": project_role_mappings_optional,
tiernocb83c942018-09-24 17:28:13 +0200791 },
792 "minProperties": 1,
793 "additionalProperties": False
tiernocd54a4a2018-09-12 16:40:35 +0200794}
795
796# PROJECTS
delacruzramofe598fe2019-10-23 18:25:11 +0200797topics_with_quota = ["vnfds", "nsds", "nsts", "pdus", "nsrs", "nsis", "vim_accounts", "wim_accounts", "sdns",
798 "k8sclusters", "k8srepos"]
tiernocd54a4a2018-09-12 16:40:35 +0200799project_new_schema = {
800 "$schema": "http://json-schema.org/draft-04/schema#",
801 "title": "New project schema for administrators",
802 "type": "object",
803 "properties": {
tiernofd160572019-01-21 10:41:37 +0000804 "name": shortname_schema,
tiernocd54a4a2018-09-12 16:40:35 +0200805 "admin": bool_schema,
tiernoad6d5332020-02-19 14:29:49 +0000806 "domain_name": shortname_schema,
delacruzramo32bab472019-09-13 12:24:22 +0200807 "quotas": {
808 "type": "object",
809 "properties": {topic: integer0_schema for topic in topics_with_quota},
810 "additionalProperties": False
811 },
tiernocd54a4a2018-09-12 16:40:35 +0200812 },
813 "required": ["name"],
814 "additionalProperties": False
815}
816project_edit_schema = {
817 "$schema": "http://json-schema.org/draft-04/schema#",
818 "title": "Project edit schema for administrators",
819 "type": "object",
820 "properties": {
821 "admin": bool_schema,
delacruzramoc061f562019-04-05 11:00:02 +0200822 "name": shortname_schema, # To allow Project Name modification
delacruzramo32bab472019-09-13 12:24:22 +0200823 "quotas": {
824 "type": "object",
825 "properties": {topic: {"oneOf": [integer0_schema, null_schema]} for topic in topics_with_quota},
826 "additionalProperties": False
827 },
tiernocd54a4a2018-09-12 16:40:35 +0200828 },
829 "additionalProperties": False,
830 "minProperties": 1
831}
832
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100833# ROLES
834roles_new_schema = {
835 "$schema": "http://json-schema.org/draft-04/schema#",
836 "title": "New role schema for administrators",
837 "type": "object",
838 "properties": {
839 "name": shortname_schema,
tierno1f029d82019-06-13 22:37:04 +0000840 "permissions": {
841 "type": "object",
842 "patternProperties": {
843 ".": bool_schema,
844 },
845 # "minProperties": 1,
846 }
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100847 },
tierno1f029d82019-06-13 22:37:04 +0000848 "required": ["name"],
849 "additionalProperties": False
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100850}
851roles_edit_schema = {
852 "$schema": "http://json-schema.org/draft-04/schema#",
853 "title": "Roles edit schema for administrators",
854 "type": "object",
855 "properties": {
tierno1f029d82019-06-13 22:37:04 +0000856 "name": shortname_schema,
857 "permissions": {
858 "type": "object",
859 "patternProperties": {
860 ".": {
861 "oneOf": [bool_schema, null_schema]
862 }
863 },
864 # "minProperties": 1,
865 }
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100866 },
tierno1f029d82019-06-13 22:37:04 +0000867 "additionalProperties": False,
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100868 "minProperties": 1
869}
870
tiernocd54a4a2018-09-12 16:40:35 +0200871# GLOBAL SCHEMAS
tierno0f98af52018-03-19 10:28:22 +0100872
873nbi_new_input_schemas = {
tiernocd54a4a2018-09-12 16:40:35 +0200874 "users": user_new_schema,
875 "projects": project_new_schema,
tierno09c073e2018-04-26 13:36:48 +0200876 "vim_accounts": vim_account_new_schema,
tierno65acb4d2018-04-06 16:42:40 +0200877 "sdns": sdn_new_schema,
878 "ns_instantiate": ns_instantiate,
879 "ns_action": ns_action,
tiernocb83c942018-09-24 17:28:13 +0200880 "ns_scale": ns_scale,
881 "pdus": pdu_new_schema,
tierno0f98af52018-03-19 10:28:22 +0100882}
883
884nbi_edit_input_schemas = {
tiernocd54a4a2018-09-12 16:40:35 +0200885 "users": user_edit_schema,
886 "projects": project_edit_schema,
tierno09c073e2018-04-26 13:36:48 +0200887 "vim_accounts": vim_account_edit_schema,
tiernocb83c942018-09-24 17:28:13 +0200888 "sdns": sdn_edit_schema,
889 "pdus": pdu_edit_schema,
tierno0f98af52018-03-19 10:28:22 +0100890}
891
Felipe Vicens07f31722018-10-29 15:16:44 +0100892# NETSLICE SCHEMAS
tierno032916c2019-03-22 13:27:12 +0000893nsi_subnet_instantiate = deepcopy(ns_instantiate)
894nsi_subnet_instantiate["title"] = "netslice subnet instantiation params input schema"
895nsi_subnet_instantiate["properties"]["id"] = name_schema
896del nsi_subnet_instantiate["required"]
garciadeblasdaf8cc52018-11-30 14:17:20 +0100897
898nsi_vld_instantiate = {
899 "title": "netslice vld instantiation params input schema",
900 "$schema": "http://json-schema.org/draft-04/schema#",
901 "type": "object",
902 "properties": {
903 "name": string_schema,
904 "vim-network-name": {"OneOf": [string_schema, object_schema]},
gcalvino17d5b732018-12-17 16:26:21 +0100905 "vim-network-id": {"OneOf": [string_schema, object_schema]},
garciadeblasdaf8cc52018-11-30 14:17:20 +0100906 "ip-profile": object_schema,
907 },
delacruzramoc061f562019-04-05 11:00:02 +0200908 "required": ["name"],
garciadeblasdaf8cc52018-11-30 14:17:20 +0100909 "additionalProperties": False
910}
911
Felipe Vicens07f31722018-10-29 15:16:44 +0100912nsi_instantiate = {
913 "title": "netslice action instantiate input schema",
914 "$schema": "http://json-schema.org/draft-04/schema#",
915 "type": "object",
916 "properties": {
917 "lcmOperationType": string_schema,
Felipe Vicens126af572019-06-05 19:13:04 +0200918 "netsliceInstanceId": id_schema,
Felipe Vicens07f31722018-10-29 15:16:44 +0100919 "nsiName": name_schema,
tierno4f9d4ae2019-03-20 17:24:11 +0000920 "nsiDescription": {"oneOf": [description_schema, null_schema]},
tierno9e5eea32018-11-29 09:42:09 +0000921 "nstId": string_schema,
Felipe Vicens07f31722018-10-29 15:16:44 +0100922 "vimAccountId": id_schema,
tiernoa8186a52020-01-14 15:54:48 +0000923 "timeout_nsi_deploy": integer1_schema,
Felipe Vicens07f31722018-10-29 15:16:44 +0100924 "ssh_keys": {"type": "string"},
925 "nsi_id": id_schema,
tierno032916c2019-03-22 13:27:12 +0000926 "additionalParamsForNsi": object_schema,
garciadeblasdaf8cc52018-11-30 14:17:20 +0100927 "netslice-subnet": {
Felipe Vicens07f31722018-10-29 15:16:44 +0100928 "type": "array",
929 "minItems": 1,
tierno032916c2019-03-22 13:27:12 +0000930 "items": nsi_subnet_instantiate
garciadeblasdaf8cc52018-11-30 14:17:20 +0100931 },
932 "netslice-vld": {
933 "type": "array",
934 "minItems": 1,
935 "items": nsi_vld_instantiate
Felipe Vicens07f31722018-10-29 15:16:44 +0100936 },
937 },
Felipe Vicensc8bbaaa2018-12-01 04:42:40 +0100938 "required": ["nsiName", "nstId", "vimAccountId"],
Felipe Vicens07f31722018-10-29 15:16:44 +0100939 "additionalProperties": False
940}
941
942nsi_action = {
943
944}
945
946nsi_terminate = {
delacruzramoc061f562019-04-05 11:00:02 +0200947
Felipe Vicens07f31722018-10-29 15:16:44 +0100948}
949
tierno0f98af52018-03-19 10:28:22 +0100950
951class ValidationError(Exception):
tierno36ec8602018-11-02 17:27:11 +0100952 def __init__(self, message, http_code=HTTPStatus.UNPROCESSABLE_ENTITY):
953 self.http_code = http_code
954 Exception.__init__(self, message)
tierno0f98af52018-03-19 10:28:22 +0100955
956
tiernob24258a2018-10-04 18:39:49 +0200957def validate_input(indata, schema_to_use):
tierno0f98af52018-03-19 10:28:22 +0100958 """
tiernocd54a4a2018-09-12 16:40:35 +0200959 Validates input data against json schema
tierno0f98af52018-03-19 10:28:22 +0100960 :param indata: user input data. Should be a dictionary
tiernob24258a2018-10-04 18:39:49 +0200961 :param schema_to_use: jsonschema to test
962 :return: None if ok, raises ValidationError exception on error
tierno0f98af52018-03-19 10:28:22 +0100963 """
964 try:
tierno0f98af52018-03-19 10:28:22 +0100965 if schema_to_use:
966 js_v(indata, schema_to_use)
967 return None
968 except js_e.ValidationError as e:
969 if e.path:
tierno0da52252018-06-27 15:47:22 +0200970 error_pos = "at '" + ":".join(map(str, e.path)) + "'"
tierno0f98af52018-03-19 10:28:22 +0100971 else:
972 error_pos = ""
tierno441dbbf2018-07-10 12:52:48 +0200973 raise ValidationError("Format error {} '{}' ".format(error_pos, e.message))
tierno36ec8602018-11-02 17:27:11 +0100974 except js_e.SchemaError:
975 raise ValidationError("Bad json schema {}".format(schema_to_use), http_code=HTTPStatus.INTERNAL_SERVER_ERROR)
delacruzramoc061f562019-04-05 11:00:02 +0200976
977
978def is_valid_uuid(x):
979 """
980 Test for a valid UUID
981 :param x: string to test
982 :return: True if x is a valid uuid, False otherwise
983 """
984 try:
985 if UUID(x):
986 return True
tiernobdebce92019-07-01 15:36:49 +0000987 except (TypeError, ValueError, AttributeError):
delacruzramoc061f562019-04-05 11:00:02 +0200988 return False