blob: 9ff90db0f019897efcd86a33c90ac999de331056 [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,
tierno54db2e42020-04-06 15:29:42 +0000238 "k8s-namespace": name_schema,
tiernof62ac6a2020-04-29 13:46:13 +0000239 "config-units": integer1_schema, # number of configuration units of this vnf, by default 1
tierno714954e2019-11-29 13:43:26 +0000240 "additionalParamsForVdu": {
241 "type": "array",
242 "items": {
243 "type": "object",
244 "properties": {
245 "vdu_id": name_schema,
246 "additionalParams": object_schema,
tiernof62ac6a2020-04-29 13:46:13 +0000247 "config-units": integer1_schema, # number of configuration units of this vdu, by default 1
tierno714954e2019-11-29 13:43:26 +0000248 },
tiernof62ac6a2020-04-29 13:46:13 +0000249 "required": ["vdu_id"],
250 "minProperties": 2,
tierno714954e2019-11-29 13:43:26 +0000251 "additionalProperties": False,
252 },
253 },
254 "additionalParamsForKdu": {
255 "type": "array",
256 "items": {
257 "type": "object",
258 "properties": {
259 "kdu_name": name_schema,
260 "additionalParams": object_schema,
tierno54db2e42020-04-06 15:29:42 +0000261 "kdu_model": name_schema,
262 "k8s-namespace": name_schema,
tiernof62ac6a2020-04-29 13:46:13 +0000263 "config-units": integer1_schema, # number of configuration units of this knf, by default 1
tierno714954e2019-11-29 13:43:26 +0000264 },
tierno54db2e42020-04-06 15:29:42 +0000265 "required": ["kdu_name"],
266 "minProperties": 2,
tierno714954e2019-11-29 13:43:26 +0000267 "additionalProperties": False,
268 },
269 },
tiernofd160572019-01-21 10:41:37 +0000270 },
tierno714954e2019-11-29 13:43:26 +0000271 "required": ["member-vnf-index"],
272 "minProperties": 2,
tiernofd160572019-01-21 10:41:37 +0000273 "additionalProperties": False
274 }
tiernofd160572019-01-21 10:41:37 +0000275}
276
tierno65acb4d2018-04-06 16:42:40 +0200277ns_instantiate = {
278 "title": "ns action instantiate input schema",
279 "$schema": "http://json-schema.org/draft-04/schema#",
280 "type": "object",
tierno0da52252018-06-27 15:47:22 +0200281 "properties": {
tiernob24258a2018-10-04 18:39:49 +0200282 "lcmOperationType": string_schema,
283 "nsInstanceId": id_schema,
Felipe Vicens07f31722018-10-29 15:16:44 +0100284 "netsliceInstanceId": id_schema,
tierno0da52252018-06-27 15:47:22 +0200285 "nsName": name_schema,
tierno4f9d4ae2019-03-20 17:24:11 +0000286 "nsDescription": {"oneOf": [description_schema, null_schema]},
tierno0da52252018-06-27 15:47:22 +0200287 "nsdId": id_schema,
288 "vimAccountId": id_schema,
tierno4f9d4ae2019-03-20 17:24:11 +0000289 "wimAccountId": {"OneOf": [id_schema, bool_schema, null_schema]},
magnussonlf318b302020-01-20 18:38:18 +0100290 "placement-engine": string_schema,
291 "placement-constraints": object_schema,
tiernobee085c2018-12-12 17:03:04 +0000292 "additionalParamsForNs": object_schema,
tiernofd160572019-01-21 10:41:37 +0000293 "additionalParamsForVnf": additional_params_for_vnf,
tiernof62ac6a2020-04-29 13:46:13 +0000294 "config-units": integer1_schema, # number of configuration units of this ns, by default 1
tierno54db2e42020-04-06 15:29:42 +0000295 "k8s-namespace": name_schema,
tiernofc5089c2018-10-31 09:28:11 +0100296 "ssh_keys": {"type": "array", "items": {"type": "string"}},
tiernoa8186a52020-01-14 15:54:48 +0000297 "timeout_ns_deploy": integer1_schema,
tierno441dbbf2018-07-10 12:52:48 +0200298 "nsr_id": id_schema,
tiernocc103432018-10-19 14:10:35 +0200299 "vduImage": name_schema,
tierno0da52252018-06-27 15:47:22 +0200300 "vnf": {
301 "type": "array",
302 "minItems": 1,
303 "items": {
304 "type": "object",
305 "properties": {
306 "member-vnf-index": name_schema,
307 "vimAccountId": id_schema,
tierno441dbbf2018-07-10 12:52:48 +0200308 "vdu": {
309 "type": "array",
310 "minItems": 1,
311 "items": ns_instantiate_vdu,
312 },
313 "internal-vld": {
314 "type": "array",
315 "minItems": 1,
316 "items": ns_instantiate_internal_vld
317 }
tierno0da52252018-06-27 15:47:22 +0200318 },
tierno441dbbf2018-07-10 12:52:48 +0200319 "required": ["member-vnf-index"],
320 "minProperties": 2,
321 "additionalProperties": False
tierno0da52252018-06-27 15:47:22 +0200322 }
323 },
324 "vld": {
325 "type": "array",
326 "minItems": 1,
327 "items": {
328 "type": "object",
329 "properties": {
330 "name": string_schema,
331 "vim-network-name": {"OneOf": [string_schema, object_schema]},
gcalvino17d5b732018-12-17 16:26:21 +0100332 "vim-network-id": {"OneOf": [string_schema, object_schema]},
Felipe Vicens09e65422019-01-22 15:06:46 +0100333 "ns-net": object_schema,
tierno4f9d4ae2019-03-20 17:24:11 +0000334 "wimAccountId": {"OneOf": [id_schema, bool_schema, null_schema]},
tierno0da52252018-06-27 15:47:22 +0200335 "ip-profile": object_schema,
kbsub21f03f52019-10-17 16:26:56 +0000336 "provider-network": provider_network_schema,
tiernob7c6f2a2018-09-03 14:32:10 +0200337 "vnfd-connection-point-ref": {
338 "type": "array",
339 "minItems": 1,
340 "items": {
341 "type": "object",
342 "properties": {
343 "member-vnf-index-ref": name_schema,
344 "vnfd-connection-point-ref": name_schema,
345 "ip-address": ip_schema,
346 # "mac-address": mac_schema,
347 },
348 "required": ["member-vnf-index-ref", "vnfd-connection-point-ref"],
349 "minProperties": 3,
350 "additionalProperties": False
351 },
352 }
tierno0da52252018-06-27 15:47:22 +0200353 },
tierno441dbbf2018-07-10 12:52:48 +0200354 "required": ["name"],
355 "additionalProperties": False
tierno0da52252018-06-27 15:47:22 +0200356 }
357 },
358 },
tierno441dbbf2018-07-10 12:52:48 +0200359 "required": ["nsName", "nsdId", "vimAccountId"],
360 "additionalProperties": False
tierno65acb4d2018-04-06 16:42:40 +0200361}
tierno0da52252018-06-27 15:47:22 +0200362
tierno1c38f2f2020-03-24 11:51:39 +0000363ns_terminate = {
364 "title": "ns terminate input schema",
365 "$schema": "http://json-schema.org/draft-04/schema#",
366 "type": "object",
367 "properties": {
368 "lcmOperationType": string_schema,
369 "nsInstanceId": id_schema,
370 "autoremove": bool_schema,
371 "timeout_ns_terminate": integer1_schema,
372 "skip_terminate_primitives": bool_schema,
tierno0b8752f2020-05-12 09:42:02 +0000373 "netsliceInstanceId": id_schema,
tierno1c38f2f2020-03-24 11:51:39 +0000374 },
375 "additionalProperties": False
376}
377
tierno65acb4d2018-04-06 16:42:40 +0200378ns_action = { # TODO for the moment it is only contemplated the vnfd primitive execution
tiernof759d822018-06-11 18:54:54 +0200379 "title": "ns action input schema",
tierno65acb4d2018-04-06 16:42:40 +0200380 "$schema": "http://json-schema.org/draft-04/schema#",
381 "type": "object",
382 "properties": {
tiernob24258a2018-10-04 18:39:49 +0200383 "lcmOperationType": string_schema,
384 "nsInstanceId": id_schema,
tiernof5298be2018-05-16 14:43:57 +0200385 "member_vnf_index": name_schema,
386 "vnf_member_index": name_schema, # TODO for backward compatibility. To remove in future
tierno7ce1db92018-07-25 12:50:52 +0200387 "vdu_id": name_schema,
tiernof0637052019-03-07 16:26:47 +0000388 "vdu_count_index": integer0_schema,
tierno9cb7d672019-10-30 12:13:48 +0000389 "kdu_name": name_schema,
tierno65acb4d2018-04-06 16:42:40 +0200390 "primitive": name_schema,
tierno50c8e6e2020-04-02 15:40:12 +0000391 "timeout_ns_action": integer1_schema,
tierno65acb4d2018-04-06 16:42:40 +0200392 "primitive_params": {"type": "object"},
393 },
tiernof5298be2018-05-16 14:43:57 +0200394 "required": ["primitive", "primitive_params"], # TODO add member_vnf_index
tierno65acb4d2018-04-06 16:42:40 +0200395 "additionalProperties": False
396}
tiernof759d822018-06-11 18:54:54 +0200397ns_scale = { # TODO for the moment it is only VDU-scaling
398 "title": "ns scale input schema",
399 "$schema": "http://json-schema.org/draft-04/schema#",
400 "type": "object",
401 "properties": {
tiernob24258a2018-10-04 18:39:49 +0200402 "lcmOperationType": string_schema,
403 "nsInstanceId": id_schema,
tiernof759d822018-06-11 18:54:54 +0200404 "scaleType": {"enum": ["SCALE_VNF"]},
tierno50c8e6e2020-04-02 15:40:12 +0000405 "timeout_ns_scale": integer1_schema,
tiernof759d822018-06-11 18:54:54 +0200406 "scaleVnfData": {
407 "type": "object",
408 "properties": {
409 "vnfInstanceId": name_schema,
410 "scaleVnfType": {"enum": ["SCALE_OUT", 'SCALE_IN']},
411 "scaleByStepData": {
412 "type": "object",
413 "properties": {
414 "scaling-group-descriptor": name_schema,
415 "member-vnf-index": name_schema,
416 "scaling-policy": name_schema,
417 },
418 "required": ["scaling-group-descriptor", "member-vnf-index"],
419 "additionalProperties": False
420 },
421 },
422 "required": ["scaleVnfType", "scaleByStepData"], # vnfInstanceId
423 "additionalProperties": False
424 },
425 "scaleTime": time_schema,
426 },
427 "required": ["scaleType", "scaleVnfData"],
428 "additionalProperties": False
429}
tierno65acb4d2018-04-06 16:42:40 +0200430
431
tierno0f98af52018-03-19 10:28:22 +0100432schema_version = {"type": "string", "enum": ["1.0"]}
tierno55ba2e62018-12-11 17:22:22 +0000433schema_type = {"type": "string"}
tiernob3d0a0e2019-11-13 15:57:51 +0000434vim_type = shortname_schema # {"enum": ["openstack", "openvim", "vmware", "opennebula", "aws", "azure", "fos"]}
delacruzramo3a144c92019-10-25 09:46:33 +0200435
tierno09c073e2018-04-26 13:36:48 +0200436vim_account_edit_schema = {
437 "title": "vim_account edit input schema",
438 "$schema": "http://json-schema.org/draft-04/schema#",
439 "type": "object",
440 "properties": {
441 "name": name_schema,
442 "description": description_schema,
tierno09c073e2018-04-26 13:36:48 +0200443 "vim": name_schema,
444 "datacenter": name_schema,
delacruzramo3a144c92019-10-25 09:46:33 +0200445 "vim_type": vim_type,
tierno09c073e2018-04-26 13:36:48 +0200446 "vim_url": description_schema,
delacruzramo3a144c92019-10-25 09:46:33 +0200447 # "vim_url_admin": description_schema,
448 # "vim_tenant": name_schema,
tierno09c073e2018-04-26 13:36:48 +0200449 "vim_tenant_name": name_schema,
delacruzramo3a144c92019-10-25 09:46:33 +0200450 "vim_user": shortname_schema,
tiernocd54a4a2018-09-12 16:40:35 +0200451 "vim_password": passwd_schema,
tierno09c073e2018-04-26 13:36:48 +0200452 "config": {"type": "object"}
453 },
454 "additionalProperties": False
455}
tierno0f98af52018-03-19 10:28:22 +0100456
tierno09c073e2018-04-26 13:36:48 +0200457vim_account_new_schema = {
458 "title": "vim_account creation input schema",
tierno0f98af52018-03-19 10:28:22 +0100459 "$schema": "http://json-schema.org/draft-04/schema#",
460 "type": "object",
461 "properties": {
462 "schema_version": schema_version,
463 "schema_type": schema_type,
464 "name": name_schema,
465 "description": description_schema,
tierno09c073e2018-04-26 13:36:48 +0200466 "vim": name_schema,
467 "datacenter": name_schema,
delacruzramo3a144c92019-10-25 09:46:33 +0200468 "vim_type": vim_type,
tierno0f98af52018-03-19 10:28:22 +0100469 "vim_url": description_schema,
470 # "vim_url_admin": description_schema,
471 # "vim_tenant": name_schema,
472 "vim_tenant_name": name_schema,
tiernofd160572019-01-21 10:41:37 +0000473 "vim_user": shortname_schema,
tiernocd54a4a2018-09-12 16:40:35 +0200474 "vim_password": passwd_schema,
tierno0f98af52018-03-19 10:28:22 +0100475 "config": {"type": "object"}
476 },
477 "required": ["name", "vim_url", "vim_type", "vim_user", "vim_password", "vim_tenant_name"],
478 "additionalProperties": False
479}
tierno0f98af52018-03-19 10:28:22 +0100480
tierno85807722019-12-20 14:11:35 +0000481wim_type = shortname_schema # {"enum": ["ietfl2vpn", "onos", "odl", "dynpac", "fake"]}
delacruzramo3a144c92019-10-25 09:46:33 +0200482
tierno55ba2e62018-12-11 17:22:22 +0000483wim_account_edit_schema = {
484 "title": "wim_account edit input schema",
485 "$schema": "http://json-schema.org/draft-04/schema#",
486 "type": "object",
487 "properties": {
488 "name": name_schema,
489 "description": description_schema,
tierno55ba2e62018-12-11 17:22:22 +0000490 "wim": name_schema,
delacruzramo3a144c92019-10-25 09:46:33 +0200491 "wim_type": wim_type,
tierno55ba2e62018-12-11 17:22:22 +0000492 "wim_url": description_schema,
tiernofd160572019-01-21 10:41:37 +0000493 "user": shortname_schema,
tierno55ba2e62018-12-11 17:22:22 +0000494 "password": passwd_schema,
495 "config": {"type": "object"}
496 },
497 "additionalProperties": False
498}
499
500wim_account_new_schema = {
501 "title": "wim_account creation input schema",
502 "$schema": "http://json-schema.org/draft-04/schema#",
503 "type": "object",
504 "properties": {
505 "schema_version": schema_version,
506 "schema_type": schema_type,
507 "name": name_schema,
508 "description": description_schema,
509 "wim": name_schema,
delacruzramo3a144c92019-10-25 09:46:33 +0200510 "wim_type": wim_type,
tierno55ba2e62018-12-11 17:22:22 +0000511 "wim_url": description_schema,
tiernofd160572019-01-21 10:41:37 +0000512 "user": shortname_schema,
tierno55ba2e62018-12-11 17:22:22 +0000513 "password": passwd_schema,
tiernof0637052019-03-07 16:26:47 +0000514 "config": {
515 "type": "object",
516 "patternProperties": {
517 ".": {"not": {"type": "null"}}
518 }
519 }
tierno55ba2e62018-12-11 17:22:22 +0000520 },
521 "required": ["name", "wim_url", "wim_type"],
522 "additionalProperties": False
523}
tierno0f98af52018-03-19 10:28:22 +0100524
525sdn_properties = {
526 "name": name_schema,
tierno7adaeb02019-12-17 16:46:12 +0000527 "type": {"type": "string"},
528 "url": {"type": "string"},
529 "user": shortname_schema,
530 "password": passwd_schema,
531 "config": {"type": "object"},
tiernocfb07c62018-05-10 18:30:51 +0200532 "description": description_schema,
tierno7adaeb02019-12-17 16:46:12 +0000533 # The folowing are deprecated. Maintanied for backward compatibility
tiernocb83c942018-09-24 17:28:13 +0200534 "dpid": dpid_Schema,
tierno0f98af52018-03-19 10:28:22 +0100535 "ip": ip_schema,
536 "port": port_schema,
tierno0f98af52018-03-19 10:28:22 +0100537 "version": {"type": "string", "minLength": 1, "maxLength": 12},
tierno0f98af52018-03-19 10:28:22 +0100538}
539sdn_new_schema = {
540 "title": "sdn controller information schema",
541 "$schema": "http://json-schema.org/draft-04/schema#",
542 "type": "object",
543 "properties": sdn_properties,
tierno7adaeb02019-12-17 16:46:12 +0000544 "required": ["name", 'type'],
tierno0f98af52018-03-19 10:28:22 +0100545 "additionalProperties": False
546}
547sdn_edit_schema = {
548 "title": "sdn controller update information schema",
549 "$schema": "http://json-schema.org/draft-04/schema#",
550 "type": "object",
551 "properties": sdn_properties,
tiernocfb07c62018-05-10 18:30:51 +0200552 # "required": ["name", "port", 'ip', 'dpid', 'type'],
tierno0f98af52018-03-19 10:28:22 +0100553 "additionalProperties": False
554}
555sdn_port_mapping_schema = {
556 "$schema": "http://json-schema.org/draft-04/schema#",
557 "title": "sdn port mapping information schema",
558 "type": "array",
559 "items": {
560 "type": "object",
561 "properties": {
tiernofd160572019-01-21 10:41:37 +0000562 "compute_node": shortname_schema,
tierno0f98af52018-03-19 10:28:22 +0100563 "ports": {
564 "type": "array",
565 "items": {
566 "type": "object",
567 "properties": {
tierno42fce592018-11-02 09:23:43 +0100568 "pci": pci_extended_schema,
tiernofd160572019-01-21 10:41:37 +0000569 "switch_port": shortname_schema,
tierno0f98af52018-03-19 10:28:22 +0100570 "switch_mac": mac_schema
571 },
572 "required": ["pci"]
573 }
574 }
575 },
576 "required": ["compute_node", "ports"]
577 }
578}
579sdn_external_port_schema = {
580 "$schema": "http://json-schema.org/draft-04/schema#",
tiernocd54a4a2018-09-12 16:40:35 +0200581 "title": "External port information",
tierno0f98af52018-03-19 10:28:22 +0100582 "type": "object",
583 "properties": {
584 "port": {"type": "string", "minLength": 1, "maxLength": 60},
585 "vlan": vlan_schema,
586 "mac": mac_schema
587 },
588 "required": ["port"]
589}
590
delacruzramofe598fe2019-10-23 18:25:11 +0200591# K8s Clusters
592k8scluster_nets_schema = {
593 "title": "k8scluster nets input schema",
594 "$schema": "http://json-schema.org/draft-04/schema#",
595 "type": "object",
tierno8c81ab02020-02-07 10:18:30 +0000596 "patternProperties": {".": {"oneOf": [name_schema, null_schema]}},
delacruzramofe598fe2019-10-23 18:25:11 +0200597 "minProperties": 1,
598 "additionalProperties": False
599}
600k8scluster_new_schema = {
601 "title": "k8scluster creation input schema",
602 "$schema": "http://json-schema.org/draft-04/schema#",
603 "type": "object",
604 "properties": {
605 "schema_version": schema_version,
606 "schema_type": schema_type,
607 "name": name_schema,
608 "description": description_schema,
609 "credentials": object_schema,
610 "vim_account": id_schema,
611 "k8s_version": string_schema,
612 "nets": k8scluster_nets_schema,
613 "namespace": name_schema,
614 "cni": nameshort_list_schema,
615 },
616 "required": ["name", "credentials", "vim_account", "k8s_version", "nets"],
617 "additionalProperties": False
618}
619k8scluster_edit_schema = {
620 "title": "vim_account edit input schema",
621 "$schema": "http://json-schema.org/draft-04/schema#",
622 "type": "object",
623 "properties": {
624 "name": name_schema,
625 "description": description_schema,
626 "credentials": object_schema,
627 "vim_account": id_schema,
628 "k8s_version": string_schema,
629 "nets": k8scluster_nets_schema,
630 "namespace": name_schema,
631 "cni": nameshort_list_schema,
632 },
633 "additionalProperties": False
634}
635
636# K8s Repos
tierno332e0802019-12-03 23:50:49 +0000637k8srepo_types = {"enum": ["helm-chart", "juju-bundle"]}
delacruzramofe598fe2019-10-23 18:25:11 +0200638k8srepo_properties = {
639 "name": name_schema,
640 "description": description_schema,
641 "type": k8srepo_types,
642 "url": description_schema,
643}
644k8srepo_new_schema = {
645 "title": "k8scluster creation input schema",
646 "$schema": "http://json-schema.org/draft-04/schema#",
647 "type": "object",
648 "properties": k8srepo_properties,
649 "required": ["name", "type", "url"],
650 "additionalProperties": False
651}
652k8srepo_edit_schema = {
653 "title": "vim_account edit input schema",
654 "$schema": "http://json-schema.org/draft-04/schema#",
655 "type": "object",
656 "properties": k8srepo_properties,
657 "additionalProperties": False
658}
659
tiernocb83c942018-09-24 17:28:13 +0200660# PDUs
661pdu_interface = {
662 "type": "object",
663 "properties": {
tiernofd160572019-01-21 10:41:37 +0000664 "name": shortname_schema,
tiernocb83c942018-09-24 17:28:13 +0200665 "mgmt": bool_schema,
666 "type": {"enum": ["overlay", 'underlay']},
tierno36ec8602018-11-02 17:27:11 +0100667 "ip-address": ip_schema,
tiernocb83c942018-09-24 17:28:13 +0200668 # TODO, add user, password, ssh-key
tierno36ec8602018-11-02 17:27:11 +0100669 "mac-address": mac_schema,
tiernofd160572019-01-21 10:41:37 +0000670 "vim-network-name": shortname_schema, # interface is connected to one vim network, or switch port
671 "vim-network-id": shortname_schema,
tierno36ec8602018-11-02 17:27:11 +0100672 # # provide this in case SDN assist must deal with this interface
673 # "switch-dpid": dpid_Schema,
tiernofd160572019-01-21 10:41:37 +0000674 # "switch-port": shortname_schema,
675 # "switch-mac": shortname_schema,
tierno36ec8602018-11-02 17:27:11 +0100676 # "switch-vlan": vlan_schema,
tiernocb83c942018-09-24 17:28:13 +0200677 },
tierno36ec8602018-11-02 17:27:11 +0100678 "required": ["name", "mgmt", "ip-address"],
tiernocb83c942018-09-24 17:28:13 +0200679 "additionalProperties": False
tiernocd54a4a2018-09-12 16:40:35 +0200680}
tiernocb83c942018-09-24 17:28:13 +0200681pdu_new_schema = {
682 "title": "pdu creation input schema",
683 "$schema": "http://json-schema.org/draft-04/schema#",
684 "type": "object",
685 "properties": {
tiernofd160572019-01-21 10:41:37 +0000686 "name": shortname_schema,
687 "type": shortname_schema,
tiernocb83c942018-09-24 17:28:13 +0200688 "description": description_schema,
689 "shared": bool_schema,
690 "vims": nameshort_list_schema,
691 "vim_accounts": nameshort_list_schema,
692 "interfaces": {
693 "type": "array",
tierno36ec8602018-11-02 17:27:11 +0100694 "items": pdu_interface,
tiernocb83c942018-09-24 17:28:13 +0200695 "minItems": 1
696 }
697 },
698 "required": ["name", "type", "interfaces"],
699 "additionalProperties": False
700}
tiernocb83c942018-09-24 17:28:13 +0200701pdu_edit_schema = {
702 "title": "pdu edit input schema",
703 "$schema": "http://json-schema.org/draft-04/schema#",
704 "type": "object",
705 "properties": {
tiernofd160572019-01-21 10:41:37 +0000706 "name": shortname_schema,
707 "type": shortname_schema,
tiernocb83c942018-09-24 17:28:13 +0200708 "description": description_schema,
709 "shared": bool_schema,
garciadeblas84bdd552018-11-30 22:59:45 +0100710 "vims": {"oneOf": [array_edition_schema, nameshort_list_schema]},
711 "vim_accounts": {"oneOf": [array_edition_schema, nameshort_list_schema]},
712 "interfaces": {"oneOf": [
tiernocb83c942018-09-24 17:28:13 +0200713 array_edition_schema,
714 {
715 "type": "array",
tierno36ec8602018-11-02 17:27:11 +0100716 "items": pdu_interface,
tiernocb83c942018-09-24 17:28:13 +0200717 "minItems": 1
718 }
719 ]}
720 },
721 "additionalProperties": False,
722 "minProperties": 1
723}
724
delacruzramo271d2002019-12-02 21:00:37 +0100725# VNF PKG OPERATIONS
726vnfpkgop_new_schema = {
727 "title": "VNF PKG operation creation input schema",
728 "$schema": "http://json-schema.org/draft-04/schema#",
729 "type": "object",
730 "properties": {
731 "lcmOperationType": string_schema,
732 "vnfPkgId": id_schema,
733 "kdu_name": name_schema,
734 "primitive": name_schema,
735 "primitive_params": {"type": "object"},
736 },
737 "required": ["lcmOperationType", "vnfPkgId", "kdu_name", "primitive", "primitive_params"],
738 "additionalProperties": False
739}
740
tiernocb83c942018-09-24 17:28:13 +0200741# USERS
tiernocf042d32019-06-13 09:06:40 +0000742project_role_mappings = {
743 "title": "list pf projects/roles",
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100744 "$schema": "http://json-schema.org/draft-04/schema#",
tiernocf042d32019-06-13 09:06:40 +0000745 "type": "array",
746 "items": {
747 "type": "object",
748 "properties": {
749 "project": shortname_schema,
750 "role": shortname_schema
751 },
752 "required": ["project", "role"],
753 "additionalProperties": False
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100754 },
tiernocf042d32019-06-13 09:06:40 +0000755 "minItems": 1
756}
757project_role_mappings_optional = {
758 "title": "list of projects/roles or projects only",
759 "$schema": "http://json-schema.org/draft-04/schema#",
760 "type": "array",
761 "items": {
762 "type": "object",
763 "properties": {
764 "project": shortname_schema,
765 "role": shortname_schema
766 },
767 "required": ["project"],
768 "additionalProperties": False
769 },
770 "minItems": 1
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100771}
tiernocd54a4a2018-09-12 16:40:35 +0200772user_new_schema = {
773 "$schema": "http://json-schema.org/draft-04/schema#",
774 "title": "New user schema",
775 "type": "object",
776 "properties": {
tiernofd160572019-01-21 10:41:37 +0000777 "username": shortname_schema,
tiernoad6d5332020-02-19 14:29:49 +0000778 "domain_name": shortname_schema,
tiernocd54a4a2018-09-12 16:40:35 +0200779 "password": passwd_schema,
tiernocb83c942018-09-24 17:28:13 +0200780 "projects": nameshort_list_schema,
tiernocf042d32019-06-13 09:06:40 +0000781 "project_role_mappings": project_role_mappings,
tiernocd54a4a2018-09-12 16:40:35 +0200782 },
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100783 "required": ["username", "password"],
tiernocd54a4a2018-09-12 16:40:35 +0200784 "additionalProperties": False
785}
786user_edit_schema = {
787 "$schema": "http://json-schema.org/draft-04/schema#",
788 "title": "User edit schema for administrators",
789 "type": "object",
790 "properties": {
791 "password": passwd_schema,
delacruzramoc061f562019-04-05 11:00:02 +0200792 "username": shortname_schema, # To allow User Name modification
tiernocd54a4a2018-09-12 16:40:35 +0200793 "projects": {
garciadeblas84bdd552018-11-30 22:59:45 +0100794 "oneOf": [
tiernocb83c942018-09-24 17:28:13 +0200795 nameshort_list_schema,
tiernocd54a4a2018-09-12 16:40:35 +0200796 array_edition_schema
797 ]
798 },
tiernocf042d32019-06-13 09:06:40 +0000799 "project_role_mappings": project_role_mappings,
800 "add_project_role_mappings": project_role_mappings,
801 "remove_project_role_mappings": project_role_mappings_optional,
tiernocb83c942018-09-24 17:28:13 +0200802 },
803 "minProperties": 1,
804 "additionalProperties": False
tiernocd54a4a2018-09-12 16:40:35 +0200805}
806
807# PROJECTS
delacruzramofe598fe2019-10-23 18:25:11 +0200808topics_with_quota = ["vnfds", "nsds", "nsts", "pdus", "nsrs", "nsis", "vim_accounts", "wim_accounts", "sdns",
809 "k8sclusters", "k8srepos"]
tiernocd54a4a2018-09-12 16:40:35 +0200810project_new_schema = {
811 "$schema": "http://json-schema.org/draft-04/schema#",
812 "title": "New project schema for administrators",
813 "type": "object",
814 "properties": {
tiernofd160572019-01-21 10:41:37 +0000815 "name": shortname_schema,
tiernocd54a4a2018-09-12 16:40:35 +0200816 "admin": bool_schema,
tiernoad6d5332020-02-19 14:29:49 +0000817 "domain_name": shortname_schema,
delacruzramo32bab472019-09-13 12:24:22 +0200818 "quotas": {
819 "type": "object",
820 "properties": {topic: integer0_schema for topic in topics_with_quota},
821 "additionalProperties": False
822 },
tiernocd54a4a2018-09-12 16:40:35 +0200823 },
824 "required": ["name"],
825 "additionalProperties": False
826}
827project_edit_schema = {
828 "$schema": "http://json-schema.org/draft-04/schema#",
829 "title": "Project edit schema for administrators",
830 "type": "object",
831 "properties": {
832 "admin": bool_schema,
delacruzramoc061f562019-04-05 11:00:02 +0200833 "name": shortname_schema, # To allow Project Name modification
delacruzramo32bab472019-09-13 12:24:22 +0200834 "quotas": {
835 "type": "object",
836 "properties": {topic: {"oneOf": [integer0_schema, null_schema]} for topic in topics_with_quota},
837 "additionalProperties": False
838 },
tiernocd54a4a2018-09-12 16:40:35 +0200839 },
840 "additionalProperties": False,
841 "minProperties": 1
842}
843
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100844# ROLES
845roles_new_schema = {
846 "$schema": "http://json-schema.org/draft-04/schema#",
847 "title": "New role schema for administrators",
848 "type": "object",
849 "properties": {
850 "name": shortname_schema,
tierno1f029d82019-06-13 22:37:04 +0000851 "permissions": {
852 "type": "object",
853 "patternProperties": {
854 ".": bool_schema,
855 },
856 # "minProperties": 1,
857 }
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100858 },
tierno1f029d82019-06-13 22:37:04 +0000859 "required": ["name"],
860 "additionalProperties": False
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100861}
862roles_edit_schema = {
863 "$schema": "http://json-schema.org/draft-04/schema#",
864 "title": "Roles edit schema for administrators",
865 "type": "object",
866 "properties": {
tierno1f029d82019-06-13 22:37:04 +0000867 "name": shortname_schema,
868 "permissions": {
869 "type": "object",
870 "patternProperties": {
871 ".": {
872 "oneOf": [bool_schema, null_schema]
873 }
874 },
875 # "minProperties": 1,
876 }
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100877 },
tierno1f029d82019-06-13 22:37:04 +0000878 "additionalProperties": False,
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100879 "minProperties": 1
880}
881
tiernocd54a4a2018-09-12 16:40:35 +0200882# GLOBAL SCHEMAS
tierno0f98af52018-03-19 10:28:22 +0100883
884nbi_new_input_schemas = {
tiernocd54a4a2018-09-12 16:40:35 +0200885 "users": user_new_schema,
886 "projects": project_new_schema,
tierno09c073e2018-04-26 13:36:48 +0200887 "vim_accounts": vim_account_new_schema,
tierno65acb4d2018-04-06 16:42:40 +0200888 "sdns": sdn_new_schema,
889 "ns_instantiate": ns_instantiate,
890 "ns_action": ns_action,
tiernocb83c942018-09-24 17:28:13 +0200891 "ns_scale": ns_scale,
892 "pdus": pdu_new_schema,
tierno0f98af52018-03-19 10:28:22 +0100893}
894
895nbi_edit_input_schemas = {
tiernocd54a4a2018-09-12 16:40:35 +0200896 "users": user_edit_schema,
897 "projects": project_edit_schema,
tierno09c073e2018-04-26 13:36:48 +0200898 "vim_accounts": vim_account_edit_schema,
tiernocb83c942018-09-24 17:28:13 +0200899 "sdns": sdn_edit_schema,
900 "pdus": pdu_edit_schema,
tierno0f98af52018-03-19 10:28:22 +0100901}
902
Felipe Vicens07f31722018-10-29 15:16:44 +0100903# NETSLICE SCHEMAS
tierno032916c2019-03-22 13:27:12 +0000904nsi_subnet_instantiate = deepcopy(ns_instantiate)
905nsi_subnet_instantiate["title"] = "netslice subnet instantiation params input schema"
906nsi_subnet_instantiate["properties"]["id"] = name_schema
907del nsi_subnet_instantiate["required"]
garciadeblasdaf8cc52018-11-30 14:17:20 +0100908
909nsi_vld_instantiate = {
910 "title": "netslice vld instantiation params input schema",
911 "$schema": "http://json-schema.org/draft-04/schema#",
912 "type": "object",
913 "properties": {
914 "name": string_schema,
915 "vim-network-name": {"OneOf": [string_schema, object_schema]},
gcalvino17d5b732018-12-17 16:26:21 +0100916 "vim-network-id": {"OneOf": [string_schema, object_schema]},
garciadeblasdaf8cc52018-11-30 14:17:20 +0100917 "ip-profile": object_schema,
918 },
delacruzramoc061f562019-04-05 11:00:02 +0200919 "required": ["name"],
garciadeblasdaf8cc52018-11-30 14:17:20 +0100920 "additionalProperties": False
921}
922
Felipe Vicens07f31722018-10-29 15:16:44 +0100923nsi_instantiate = {
924 "title": "netslice action instantiate input schema",
925 "$schema": "http://json-schema.org/draft-04/schema#",
926 "type": "object",
927 "properties": {
928 "lcmOperationType": string_schema,
Felipe Vicens126af572019-06-05 19:13:04 +0200929 "netsliceInstanceId": id_schema,
Felipe Vicens07f31722018-10-29 15:16:44 +0100930 "nsiName": name_schema,
tierno4f9d4ae2019-03-20 17:24:11 +0000931 "nsiDescription": {"oneOf": [description_schema, null_schema]},
tierno9e5eea32018-11-29 09:42:09 +0000932 "nstId": string_schema,
Felipe Vicens07f31722018-10-29 15:16:44 +0100933 "vimAccountId": id_schema,
tiernoa8186a52020-01-14 15:54:48 +0000934 "timeout_nsi_deploy": integer1_schema,
Felipe Vicens07f31722018-10-29 15:16:44 +0100935 "ssh_keys": {"type": "string"},
936 "nsi_id": id_schema,
tierno032916c2019-03-22 13:27:12 +0000937 "additionalParamsForNsi": object_schema,
garciadeblasdaf8cc52018-11-30 14:17:20 +0100938 "netslice-subnet": {
Felipe Vicens07f31722018-10-29 15:16:44 +0100939 "type": "array",
940 "minItems": 1,
tierno032916c2019-03-22 13:27:12 +0000941 "items": nsi_subnet_instantiate
garciadeblasdaf8cc52018-11-30 14:17:20 +0100942 },
943 "netslice-vld": {
944 "type": "array",
945 "minItems": 1,
946 "items": nsi_vld_instantiate
Felipe Vicens07f31722018-10-29 15:16:44 +0100947 },
948 },
Felipe Vicensc8bbaaa2018-12-01 04:42:40 +0100949 "required": ["nsiName", "nstId", "vimAccountId"],
Felipe Vicens07f31722018-10-29 15:16:44 +0100950 "additionalProperties": False
951}
952
953nsi_action = {
954
955}
956
957nsi_terminate = {
delacruzramoc061f562019-04-05 11:00:02 +0200958
Felipe Vicens07f31722018-10-29 15:16:44 +0100959}
960
tierno0f98af52018-03-19 10:28:22 +0100961
962class ValidationError(Exception):
tierno36ec8602018-11-02 17:27:11 +0100963 def __init__(self, message, http_code=HTTPStatus.UNPROCESSABLE_ENTITY):
964 self.http_code = http_code
965 Exception.__init__(self, message)
tierno0f98af52018-03-19 10:28:22 +0100966
967
tiernob24258a2018-10-04 18:39:49 +0200968def validate_input(indata, schema_to_use):
tierno0f98af52018-03-19 10:28:22 +0100969 """
tiernocd54a4a2018-09-12 16:40:35 +0200970 Validates input data against json schema
tierno0f98af52018-03-19 10:28:22 +0100971 :param indata: user input data. Should be a dictionary
tiernob24258a2018-10-04 18:39:49 +0200972 :param schema_to_use: jsonschema to test
973 :return: None if ok, raises ValidationError exception on error
tierno0f98af52018-03-19 10:28:22 +0100974 """
975 try:
tierno0f98af52018-03-19 10:28:22 +0100976 if schema_to_use:
977 js_v(indata, schema_to_use)
978 return None
979 except js_e.ValidationError as e:
980 if e.path:
tierno0da52252018-06-27 15:47:22 +0200981 error_pos = "at '" + ":".join(map(str, e.path)) + "'"
tierno0f98af52018-03-19 10:28:22 +0100982 else:
983 error_pos = ""
tierno441dbbf2018-07-10 12:52:48 +0200984 raise ValidationError("Format error {} '{}' ".format(error_pos, e.message))
tierno36ec8602018-11-02 17:27:11 +0100985 except js_e.SchemaError:
986 raise ValidationError("Bad json schema {}".format(schema_to_use), http_code=HTTPStatus.INTERNAL_SERVER_ERROR)
delacruzramoc061f562019-04-05 11:00:02 +0200987
988
989def is_valid_uuid(x):
990 """
991 Test for a valid UUID
992 :param x: string to test
993 :return: True if x is a valid uuid, False otherwise
994 """
995 try:
996 if UUID(x):
997 return True
tiernobdebce92019-07-01 15:36:49 +0000998 except (TypeError, ValueError, AttributeError):
delacruzramoc061f562019-04-05 11:00:02 +0200999 return False