selecting k8scluster at deployment. Allow day2 action primitive for kdu
[osm/NBI.git] / osm_nbi / validation.py
1 # -*- coding: utf-8 -*-
2
3 # 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
16 from jsonschema import validate as js_v, exceptions as js_e
17 from http import HTTPStatus
18 from copy import deepcopy
19 from uuid import UUID # To test for valid UUID
20
21 __author__ = "Alfonso Tierno <alfonso.tiernosepulveda@telefonica.com>"
22 __version__ = "0.1"
23 version_date = "Mar 2018"
24
25 """
26 Validator of input data using JSON schemas for those items that not contains an OSM yang information model
27 """
28
29 # Basis schemas
30 patern_name = "^[ -~]+$"
31 shortname_schema = {"type": "string", "minLength": 1, "maxLength": 60, "pattern": "^[^,;()\\.\\$'\"]+$"}
32 passwd_schema = {"type": "string", "minLength": 1, "maxLength": 60}
33 name_schema = {"type": "string", "minLength": 1, "maxLength": 255, "pattern": "^[^,;()'\"]+$"}
34 string_schema = {"type": "string", "minLength": 1, "maxLength": 255}
35 xml_text_schema = {"type": "string", "minLength": 1, "maxLength": 1000, "pattern": "^[^']+$"}
36 description_schema = {"type": ["string", "null"], "maxLength": 255, "pattern": "^[^'\"]+$"}
37 id_schema_fake = {"type": "string", "minLength": 2, "maxLength": 36}
38 bool_schema = {"type": "boolean"}
39 null_schema = {"type": "null"}
40 # "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}$"
41 id_schema = {"type": "string", "pattern": "^[a-fA-F0-9]{8}(-[a-fA-F0-9]{4}){3}-[a-fA-F0-9]{12}$"}
42 time_schema = {"type": "string", "pattern": "^[0-9]{4}-[0-1][0-9]-[0-3][0-9]T[0-2][0-9]([0-5]:){2}"}
43 pci_schema = {"type": "string", "pattern": "^[0-9a-fA-F]{4}(:[0-9a-fA-F]{2}){2}\\.[0-9a-fA-F]$"}
44 # allows [] for wildcards. For that reason huge length limit is set
45 pci_extended_schema = {"type": "string", "pattern": "^[0-9a-fA-F.:-\\[\\]]{12,40}$"}
46 http_schema = {"type": "string", "pattern": "^https?://[^'\"=]+$"}
47 bandwidth_schema = {"type": "string", "pattern": "^[0-9]+ *([MG]bps)?$"}
48 memory_schema = {"type": "string", "pattern": "^[0-9]+ *([MG]i?[Bb])?$"}
49 integer0_schema = {"type": "integer", "minimum": 0}
50 integer1_schema = {"type": "integer", "minimum": 1}
51 path_schema = {"type": "string", "pattern": "^(\\.){0,2}(/[^/\"':{}\\(\\)]+)+$"}
52 vlan_schema = {"type": "integer", "minimum": 1, "maximum": 4095}
53 vlan1000_schema = {"type": "integer", "minimum": 1000, "maximum": 4095}
54 mac_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
56 dpid_Schema = {"type": "string", "pattern": "^[0-9a-fA-F]{2}(:[0-9a-fA-F]{2}){7}$"}
57 # mac_schema={"type":"string", "pattern":"^([0-9a-fA-F]{2}:){5}[0-9a-fA-F]{2}$"}
58 ip_schema = {"type": "string",
59 "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]?)$"}
60 ip_prefix_schema = {"type": "string",
61 "pattern": "^((25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.){3}"
62 "(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)/(30|[12]?[0-9])$"}
63 port_schema = {"type": "integer", "minimum": 1, "maximum": 65534}
64 object_schema = {"type": "object"}
65 schema_version_2 = {"type": "integer", "minimum": 2, "maximum": 2}
66 # schema_version_string={"type":"string","enum": ["0.1", "2", "0.2", "3", "0.3"]}
67 log_level_schema = {"type": "string", "enum": ["DEBUG", "INFO", "WARNING", "ERROR", "CRITICAL"]}
68 checksum_schema = {"type": "string", "pattern": "^[0-9a-fA-F]{32}$"}
69 size_schema = {"type": "integer", "minimum": 1, "maximum": 100}
70 array_edition_schema = {
71 "type": "object",
72 "patternProperties": {
73 "^\\$": {}
74 },
75 "additionalProperties": False,
76 "minProperties": 1,
77 }
78 nameshort_list_schema = {
79 "type": "array",
80 "minItems": 1,
81 "items": shortname_schema,
82 }
83
84
85 ns_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
124 ip_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
137 ip_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
147 ip_profile_schema = {
148 "title": "ip profile validation schame",
149 "$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
160 ip_profile_update_schema = {
161 "title": "ip profile validation schame",
162 "$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
175 ns_instantiate_internal_vld = {
176 "title": "ns action instantiate input schema for vdu",
177 "$schema": "http://json-schema.org/draft-04/schema#",
178 "type": "object",
179 "properties": {
180 "name": name_schema,
181 "vim-network-name": name_schema,
182 "vim-network-id": name_schema,
183 "ip-profile": ip_profile_update_schema,
184 "internal-connection-point": {
185 "type": "array",
186 "minItems": 1,
187 "items": {
188 "type": "object",
189 "properties": {
190 "id-ref": name_schema,
191 "ip-address": ip_schema,
192 # "mac-address": mac_schema,
193 },
194 "required": ["id-ref"],
195 "minProperties": 2,
196 "additionalProperties": False
197 },
198 }
199 },
200 "required": ["name"],
201 "minProperties": 2,
202 "additionalProperties": False
203 }
204
205 additional_params_for_vnf = {
206 "type": "array",
207 "items": {
208 "type": "object",
209 "properties": {
210 "member-vnf-index": name_schema,
211 "additionalParams": object_schema,
212 },
213 "required": ["member-vnf-index", "additionalParams"],
214 "additionalProperties": False
215 }
216
217 }
218
219 ns_instantiate = {
220 "title": "ns action instantiate input schema",
221 "$schema": "http://json-schema.org/draft-04/schema#",
222 "type": "object",
223 "properties": {
224 "lcmOperationType": string_schema,
225 "nsInstanceId": id_schema,
226 "netsliceInstanceId": id_schema,
227 "nsName": name_schema,
228 "nsDescription": {"oneOf": [description_schema, null_schema]},
229 "nsdId": id_schema,
230 "vimAccountId": id_schema,
231 "wimAccountId": {"OneOf": [id_schema, bool_schema, null_schema]},
232 "additionalParamsForNs": object_schema,
233 "additionalParamsForVnf": additional_params_for_vnf,
234 "ssh_keys": {"type": "array", "items": {"type": "string"}},
235 "nsr_id": id_schema,
236 "vduImage": name_schema,
237 "vnf": {
238 "type": "array",
239 "minItems": 1,
240 "items": {
241 "type": "object",
242 "properties": {
243 "member-vnf-index": name_schema,
244 "vimAccountId": id_schema,
245 "vdu": {
246 "type": "array",
247 "minItems": 1,
248 "items": ns_instantiate_vdu,
249 },
250 "internal-vld": {
251 "type": "array",
252 "minItems": 1,
253 "items": ns_instantiate_internal_vld
254 }
255 },
256 "required": ["member-vnf-index"],
257 "minProperties": 2,
258 "additionalProperties": False
259 }
260 },
261 "vld": {
262 "type": "array",
263 "minItems": 1,
264 "items": {
265 "type": "object",
266 "properties": {
267 "name": string_schema,
268 "vim-network-name": {"OneOf": [string_schema, object_schema]},
269 "vim-network-id": {"OneOf": [string_schema, object_schema]},
270 "ns-net": object_schema,
271 "wimAccountId": {"OneOf": [id_schema, bool_schema, null_schema]},
272 "ip-profile": object_schema,
273 "vnfd-connection-point-ref": {
274 "type": "array",
275 "minItems": 1,
276 "items": {
277 "type": "object",
278 "properties": {
279 "member-vnf-index-ref": name_schema,
280 "vnfd-connection-point-ref": name_schema,
281 "ip-address": ip_schema,
282 # "mac-address": mac_schema,
283 },
284 "required": ["member-vnf-index-ref", "vnfd-connection-point-ref"],
285 "minProperties": 3,
286 "additionalProperties": False
287 },
288 }
289 },
290 "required": ["name"],
291 "additionalProperties": False
292 }
293 },
294 },
295 "required": ["nsName", "nsdId", "vimAccountId"],
296 "additionalProperties": False
297 }
298
299 ns_action = { # TODO for the moment it is only contemplated the vnfd primitive execution
300 "title": "ns action input schema",
301 "$schema": "http://json-schema.org/draft-04/schema#",
302 "type": "object",
303 "properties": {
304 "lcmOperationType": string_schema,
305 "nsInstanceId": id_schema,
306 "member_vnf_index": name_schema,
307 "vnf_member_index": name_schema, # TODO for backward compatibility. To remove in future
308 "vdu_id": name_schema,
309 "vdu_count_index": integer0_schema,
310 "kdu_name": name_schema,
311 "primitive": name_schema,
312 "primitive_params": {"type": "object"},
313 },
314 "required": ["primitive", "primitive_params"], # TODO add member_vnf_index
315 "additionalProperties": False
316 }
317 ns_scale = { # TODO for the moment it is only VDU-scaling
318 "title": "ns scale input schema",
319 "$schema": "http://json-schema.org/draft-04/schema#",
320 "type": "object",
321 "properties": {
322 "lcmOperationType": string_schema,
323 "nsInstanceId": id_schema,
324 "scaleType": {"enum": ["SCALE_VNF"]},
325 "scaleVnfData": {
326 "type": "object",
327 "properties": {
328 "vnfInstanceId": name_schema,
329 "scaleVnfType": {"enum": ["SCALE_OUT", 'SCALE_IN']},
330 "scaleByStepData": {
331 "type": "object",
332 "properties": {
333 "scaling-group-descriptor": name_schema,
334 "member-vnf-index": name_schema,
335 "scaling-policy": name_schema,
336 },
337 "required": ["scaling-group-descriptor", "member-vnf-index"],
338 "additionalProperties": False
339 },
340 },
341 "required": ["scaleVnfType", "scaleByStepData"], # vnfInstanceId
342 "additionalProperties": False
343 },
344 "scaleTime": time_schema,
345 },
346 "required": ["scaleType", "scaleVnfData"],
347 "additionalProperties": False
348 }
349
350
351 schema_version = {"type": "string", "enum": ["1.0"]}
352 schema_type = {"type": "string"}
353 vim_type = {"enum": ["openstack", "openvim", "vmware", "opennebula", "aws", "azure", "fos"]}
354
355 vim_account_edit_schema = {
356 "title": "vim_account edit input schema",
357 "$schema": "http://json-schema.org/draft-04/schema#",
358 "type": "object",
359 "properties": {
360 "name": name_schema,
361 "description": description_schema,
362 "vim": name_schema,
363 "datacenter": name_schema,
364 "vim_type": vim_type,
365 "vim_url": description_schema,
366 # "vim_url_admin": description_schema,
367 # "vim_tenant": name_schema,
368 "vim_tenant_name": name_schema,
369 "vim_user": shortname_schema,
370 "vim_password": passwd_schema,
371 "config": {"type": "object"}
372 },
373 "additionalProperties": False
374 }
375
376 vim_account_new_schema = {
377 "title": "vim_account creation input schema",
378 "$schema": "http://json-schema.org/draft-04/schema#",
379 "type": "object",
380 "properties": {
381 "schema_version": schema_version,
382 "schema_type": schema_type,
383 "name": name_schema,
384 "description": description_schema,
385 "vim": name_schema,
386 "datacenter": name_schema,
387 "vim_type": vim_type,
388 "vim_url": description_schema,
389 # "vim_url_admin": description_schema,
390 # "vim_tenant": name_schema,
391 "vim_tenant_name": name_schema,
392 "vim_user": shortname_schema,
393 "vim_password": passwd_schema,
394 "config": {"type": "object"}
395 },
396 "required": ["name", "vim_url", "vim_type", "vim_user", "vim_password", "vim_tenant_name"],
397 "additionalProperties": False
398 }
399
400 wim_type = {"enum": ["tapi", "onos", "odl", "dynpac", "fake"]}
401
402 wim_account_edit_schema = {
403 "title": "wim_account edit input schema",
404 "$schema": "http://json-schema.org/draft-04/schema#",
405 "type": "object",
406 "properties": {
407 "name": name_schema,
408 "description": description_schema,
409 "wim": name_schema,
410 "wim_type": wim_type,
411 "wim_url": description_schema,
412 "user": shortname_schema,
413 "password": passwd_schema,
414 "config": {"type": "object"}
415 },
416 "additionalProperties": False
417 }
418
419 wim_account_new_schema = {
420 "title": "wim_account creation input schema",
421 "$schema": "http://json-schema.org/draft-04/schema#",
422 "type": "object",
423 "properties": {
424 "schema_version": schema_version,
425 "schema_type": schema_type,
426 "name": name_schema,
427 "description": description_schema,
428 "wim": name_schema,
429 "wim_type": wim_type,
430 "wim_url": description_schema,
431 "user": shortname_schema,
432 "password": passwd_schema,
433 "config": {
434 "type": "object",
435 "patternProperties": {
436 ".": {"not": {"type": "null"}}
437 }
438 }
439 },
440 "required": ["name", "wim_url", "wim_type"],
441 "additionalProperties": False
442 }
443
444 sdn_properties = {
445 "name": name_schema,
446 "description": description_schema,
447 "dpid": dpid_Schema,
448 "ip": ip_schema,
449 "port": port_schema,
450 "type": {"type": "string", "enum": ["opendaylight", "floodlight", "onos"]},
451 "version": {"type": "string", "minLength": 1, "maxLength": 12},
452 "user": shortname_schema,
453 "password": passwd_schema
454 }
455 sdn_new_schema = {
456 "title": "sdn controller information schema",
457 "$schema": "http://json-schema.org/draft-04/schema#",
458 "type": "object",
459 "properties": sdn_properties,
460 "required": ["name", "port", 'ip', 'dpid', 'type'],
461 "additionalProperties": False
462 }
463 sdn_edit_schema = {
464 "title": "sdn controller update information schema",
465 "$schema": "http://json-schema.org/draft-04/schema#",
466 "type": "object",
467 "properties": sdn_properties,
468 # "required": ["name", "port", 'ip', 'dpid', 'type'],
469 "additionalProperties": False
470 }
471 sdn_port_mapping_schema = {
472 "$schema": "http://json-schema.org/draft-04/schema#",
473 "title": "sdn port mapping information schema",
474 "type": "array",
475 "items": {
476 "type": "object",
477 "properties": {
478 "compute_node": shortname_schema,
479 "ports": {
480 "type": "array",
481 "items": {
482 "type": "object",
483 "properties": {
484 "pci": pci_extended_schema,
485 "switch_port": shortname_schema,
486 "switch_mac": mac_schema
487 },
488 "required": ["pci"]
489 }
490 }
491 },
492 "required": ["compute_node", "ports"]
493 }
494 }
495 sdn_external_port_schema = {
496 "$schema": "http://json-schema.org/draft-04/schema#",
497 "title": "External port information",
498 "type": "object",
499 "properties": {
500 "port": {"type": "string", "minLength": 1, "maxLength": 60},
501 "vlan": vlan_schema,
502 "mac": mac_schema
503 },
504 "required": ["port"]
505 }
506
507 # K8s Clusters
508 k8scluster_nets_schema = {
509 "title": "k8scluster nets input schema",
510 "$schema": "http://json-schema.org/draft-04/schema#",
511 "type": "object",
512 "patternProperties": {".": string_schema},
513 "minProperties": 1,
514 "additionalProperties": False
515 }
516 k8scluster_new_schema = {
517 "title": "k8scluster creation input schema",
518 "$schema": "http://json-schema.org/draft-04/schema#",
519 "type": "object",
520 "properties": {
521 "schema_version": schema_version,
522 "schema_type": schema_type,
523 "name": name_schema,
524 "description": description_schema,
525 "credentials": object_schema,
526 "vim_account": id_schema,
527 "k8s_version": string_schema,
528 "nets": k8scluster_nets_schema,
529 "namespace": name_schema,
530 "cni": nameshort_list_schema,
531 },
532 "required": ["name", "credentials", "vim_account", "k8s_version", "nets"],
533 "additionalProperties": False
534 }
535 k8scluster_edit_schema = {
536 "title": "vim_account edit input schema",
537 "$schema": "http://json-schema.org/draft-04/schema#",
538 "type": "object",
539 "properties": {
540 "name": name_schema,
541 "description": description_schema,
542 "credentials": object_schema,
543 "vim_account": id_schema,
544 "k8s_version": string_schema,
545 "nets": k8scluster_nets_schema,
546 "namespace": name_schema,
547 "cni": nameshort_list_schema,
548 },
549 "additionalProperties": False
550 }
551
552 # K8s Repos
553 k8srepo_types = {"enum": ["chart", "bundle"]}
554 k8srepo_properties = {
555 "name": name_schema,
556 "description": description_schema,
557 "type": k8srepo_types,
558 "url": description_schema,
559 }
560 k8srepo_new_schema = {
561 "title": "k8scluster creation input schema",
562 "$schema": "http://json-schema.org/draft-04/schema#",
563 "type": "object",
564 "properties": k8srepo_properties,
565 "required": ["name", "type", "url"],
566 "additionalProperties": False
567 }
568 k8srepo_edit_schema = {
569 "title": "vim_account edit input schema",
570 "$schema": "http://json-schema.org/draft-04/schema#",
571 "type": "object",
572 "properties": k8srepo_properties,
573 "additionalProperties": False
574 }
575
576 # PDUs
577 pdu_interface = {
578 "type": "object",
579 "properties": {
580 "name": shortname_schema,
581 "mgmt": bool_schema,
582 "type": {"enum": ["overlay", 'underlay']},
583 "ip-address": ip_schema,
584 # TODO, add user, password, ssh-key
585 "mac-address": mac_schema,
586 "vim-network-name": shortname_schema, # interface is connected to one vim network, or switch port
587 "vim-network-id": shortname_schema,
588 # # provide this in case SDN assist must deal with this interface
589 # "switch-dpid": dpid_Schema,
590 # "switch-port": shortname_schema,
591 # "switch-mac": shortname_schema,
592 # "switch-vlan": vlan_schema,
593 },
594 "required": ["name", "mgmt", "ip-address"],
595 "additionalProperties": False
596 }
597 pdu_new_schema = {
598 "title": "pdu creation input schema",
599 "$schema": "http://json-schema.org/draft-04/schema#",
600 "type": "object",
601 "properties": {
602 "name": shortname_schema,
603 "type": shortname_schema,
604 "description": description_schema,
605 "shared": bool_schema,
606 "vims": nameshort_list_schema,
607 "vim_accounts": nameshort_list_schema,
608 "interfaces": {
609 "type": "array",
610 "items": pdu_interface,
611 "minItems": 1
612 }
613 },
614 "required": ["name", "type", "interfaces"],
615 "additionalProperties": False
616 }
617
618 pdu_edit_schema = {
619 "title": "pdu edit input schema",
620 "$schema": "http://json-schema.org/draft-04/schema#",
621 "type": "object",
622 "properties": {
623 "name": shortname_schema,
624 "type": shortname_schema,
625 "description": description_schema,
626 "shared": bool_schema,
627 "vims": {"oneOf": [array_edition_schema, nameshort_list_schema]},
628 "vim_accounts": {"oneOf": [array_edition_schema, nameshort_list_schema]},
629 "interfaces": {"oneOf": [
630 array_edition_schema,
631 {
632 "type": "array",
633 "items": pdu_interface,
634 "minItems": 1
635 }
636 ]}
637 },
638 "additionalProperties": False,
639 "minProperties": 1
640 }
641
642 # USERS
643 project_role_mappings = {
644 "title": "list pf projects/roles",
645 "$schema": "http://json-schema.org/draft-04/schema#",
646 "type": "array",
647 "items": {
648 "type": "object",
649 "properties": {
650 "project": shortname_schema,
651 "role": shortname_schema
652 },
653 "required": ["project", "role"],
654 "additionalProperties": False
655 },
656 "minItems": 1
657 }
658 project_role_mappings_optional = {
659 "title": "list of projects/roles or projects only",
660 "$schema": "http://json-schema.org/draft-04/schema#",
661 "type": "array",
662 "items": {
663 "type": "object",
664 "properties": {
665 "project": shortname_schema,
666 "role": shortname_schema
667 },
668 "required": ["project"],
669 "additionalProperties": False
670 },
671 "minItems": 1
672 }
673 user_new_schema = {
674 "$schema": "http://json-schema.org/draft-04/schema#",
675 "title": "New user schema",
676 "type": "object",
677 "properties": {
678 "username": shortname_schema,
679 "password": passwd_schema,
680 "projects": nameshort_list_schema,
681 "project_role_mappings": project_role_mappings,
682 },
683 "required": ["username", "password"],
684 "additionalProperties": False
685 }
686 user_edit_schema = {
687 "$schema": "http://json-schema.org/draft-04/schema#",
688 "title": "User edit schema for administrators",
689 "type": "object",
690 "properties": {
691 "password": passwd_schema,
692 "username": shortname_schema, # To allow User Name modification
693 "projects": {
694 "oneOf": [
695 nameshort_list_schema,
696 array_edition_schema
697 ]
698 },
699 "project_role_mappings": project_role_mappings,
700 "add_project_role_mappings": project_role_mappings,
701 "remove_project_role_mappings": project_role_mappings_optional,
702 },
703 "minProperties": 1,
704 "additionalProperties": False
705 }
706
707 # PROJECTS
708 topics_with_quota = ["vnfds", "nsds", "nsts", "pdus", "nsrs", "nsis", "vim_accounts", "wim_accounts", "sdns",
709 "k8sclusters", "k8srepos"]
710 project_new_schema = {
711 "$schema": "http://json-schema.org/draft-04/schema#",
712 "title": "New project schema for administrators",
713 "type": "object",
714 "properties": {
715 "name": shortname_schema,
716 "admin": bool_schema,
717 "quotas": {
718 "type": "object",
719 "properties": {topic: integer0_schema for topic in topics_with_quota},
720 "additionalProperties": False
721 },
722 },
723 "required": ["name"],
724 "additionalProperties": False
725 }
726 project_edit_schema = {
727 "$schema": "http://json-schema.org/draft-04/schema#",
728 "title": "Project edit schema for administrators",
729 "type": "object",
730 "properties": {
731 "admin": bool_schema,
732 "name": shortname_schema, # To allow Project Name modification
733 "quotas": {
734 "type": "object",
735 "properties": {topic: {"oneOf": [integer0_schema, null_schema]} for topic in topics_with_quota},
736 "additionalProperties": False
737 },
738 },
739 "additionalProperties": False,
740 "minProperties": 1
741 }
742
743 # ROLES
744 roles_new_schema = {
745 "$schema": "http://json-schema.org/draft-04/schema#",
746 "title": "New role schema for administrators",
747 "type": "object",
748 "properties": {
749 "name": shortname_schema,
750 "permissions": {
751 "type": "object",
752 "patternProperties": {
753 ".": bool_schema,
754 },
755 # "minProperties": 1,
756 }
757 },
758 "required": ["name"],
759 "additionalProperties": False
760 }
761 roles_edit_schema = {
762 "$schema": "http://json-schema.org/draft-04/schema#",
763 "title": "Roles edit schema for administrators",
764 "type": "object",
765 "properties": {
766 "name": shortname_schema,
767 "permissions": {
768 "type": "object",
769 "patternProperties": {
770 ".": {
771 "oneOf": [bool_schema, null_schema]
772 }
773 },
774 # "minProperties": 1,
775 }
776 },
777 "additionalProperties": False,
778 "minProperties": 1
779 }
780
781 # GLOBAL SCHEMAS
782
783 nbi_new_input_schemas = {
784 "users": user_new_schema,
785 "projects": project_new_schema,
786 "vim_accounts": vim_account_new_schema,
787 "sdns": sdn_new_schema,
788 "ns_instantiate": ns_instantiate,
789 "ns_action": ns_action,
790 "ns_scale": ns_scale,
791 "pdus": pdu_new_schema,
792 }
793
794 nbi_edit_input_schemas = {
795 "users": user_edit_schema,
796 "projects": project_edit_schema,
797 "vim_accounts": vim_account_edit_schema,
798 "sdns": sdn_edit_schema,
799 "pdus": pdu_edit_schema,
800 }
801
802 # NETSLICE SCHEMAS
803 nsi_subnet_instantiate = deepcopy(ns_instantiate)
804 nsi_subnet_instantiate["title"] = "netslice subnet instantiation params input schema"
805 nsi_subnet_instantiate["properties"]["id"] = name_schema
806 del nsi_subnet_instantiate["required"]
807
808 nsi_vld_instantiate = {
809 "title": "netslice vld instantiation params input schema",
810 "$schema": "http://json-schema.org/draft-04/schema#",
811 "type": "object",
812 "properties": {
813 "name": string_schema,
814 "vim-network-name": {"OneOf": [string_schema, object_schema]},
815 "vim-network-id": {"OneOf": [string_schema, object_schema]},
816 "ip-profile": object_schema,
817 },
818 "required": ["name"],
819 "additionalProperties": False
820 }
821
822 nsi_instantiate = {
823 "title": "netslice action instantiate input schema",
824 "$schema": "http://json-schema.org/draft-04/schema#",
825 "type": "object",
826 "properties": {
827 "lcmOperationType": string_schema,
828 "netsliceInstanceId": id_schema,
829 "nsiName": name_schema,
830 "nsiDescription": {"oneOf": [description_schema, null_schema]},
831 "nstId": string_schema,
832 "vimAccountId": id_schema,
833 "ssh_keys": {"type": "string"},
834 "nsi_id": id_schema,
835 "additionalParamsForNsi": object_schema,
836 "netslice-subnet": {
837 "type": "array",
838 "minItems": 1,
839 "items": nsi_subnet_instantiate
840 },
841 "netslice-vld": {
842 "type": "array",
843 "minItems": 1,
844 "items": nsi_vld_instantiate
845 },
846 },
847 "required": ["nsiName", "nstId", "vimAccountId"],
848 "additionalProperties": False
849 }
850
851 nsi_action = {
852
853 }
854
855 nsi_terminate = {
856
857 }
858
859
860 class ValidationError(Exception):
861 def __init__(self, message, http_code=HTTPStatus.UNPROCESSABLE_ENTITY):
862 self.http_code = http_code
863 Exception.__init__(self, message)
864
865
866 def validate_input(indata, schema_to_use):
867 """
868 Validates input data against json schema
869 :param indata: user input data. Should be a dictionary
870 :param schema_to_use: jsonschema to test
871 :return: None if ok, raises ValidationError exception on error
872 """
873 try:
874 if schema_to_use:
875 js_v(indata, schema_to_use)
876 return None
877 except js_e.ValidationError as e:
878 if e.path:
879 error_pos = "at '" + ":".join(map(str, e.path)) + "'"
880 else:
881 error_pos = ""
882 raise ValidationError("Format error {} '{}' ".format(error_pos, e.message))
883 except js_e.SchemaError:
884 raise ValidationError("Bad json schema {}".format(schema_to_use), http_code=HTTPStatus.INTERNAL_SERVER_ERROR)
885
886
887 def is_valid_uuid(x):
888 """
889 Test for a valid UUID
890 :param x: string to test
891 :return: True if x is a valid uuid, False otherwise
892 """
893 try:
894 if UUID(x):
895 return True
896 except (TypeError, ValueError, AttributeError):
897 return False