blob: 5b6cce19b75b652ea940914960050372dc1605a5 [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}$"}
K Sai Kiran990ac462020-05-20 12:25:12 +053046http_schema = {"type": "string", "pattern": "^(https?|http)://[^'\"=]+$"}
tierno0f98af52018-03-19 10:28:22 +010047bandwidth_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,
tierno195a36c2020-09-18 14:18:55 +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,
tierno195a36c2020-09-18 14:18:55 +0000331 "vim-network-name": {"oneOf": [string_schema, object_schema]},
332 "vim-network-id": {"oneOf": [string_schema, object_schema]},
Felipe Vicens09e65422019-01-22 15:06:46 +0100333 "ns-net": object_schema,
tierno195a36c2020-09-18 14:18:55 +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
Felipe Vicensb66b0412020-05-06 10:11:00 +0200660# OSM Repos
661osmrepo_types = {"enum": ["osm"]}
662osmrepo_properties = {
663 "name": name_schema,
664 "description": description_schema,
665 "type": osmrepo_types,
666 "url": description_schema
667 # "user": shortname_schema,
668 # "password": passwd_schema
669}
670osmrepo_new_schema = {
671 "title": "osm repo creation input schema",
672 "$schema": "http://json-schema.org/draft-04/schema#",
673 "type": "object",
674 "properties": osmrepo_properties,
675 "required": ["name", "type", "url"],
676 "additionalProperties": False
677}
678osmrepo_edit_schema = {
679 "title": "osm repo edit input schema",
680 "$schema": "http://json-schema.org/draft-04/schema#",
681 "type": "object",
682 "properties": osmrepo_properties,
683 "additionalProperties": False
684}
685
tiernocb83c942018-09-24 17:28:13 +0200686# PDUs
687pdu_interface = {
688 "type": "object",
689 "properties": {
tiernofd160572019-01-21 10:41:37 +0000690 "name": shortname_schema,
tiernocb83c942018-09-24 17:28:13 +0200691 "mgmt": bool_schema,
692 "type": {"enum": ["overlay", 'underlay']},
tierno36ec8602018-11-02 17:27:11 +0100693 "ip-address": ip_schema,
tiernocb83c942018-09-24 17:28:13 +0200694 # TODO, add user, password, ssh-key
tierno36ec8602018-11-02 17:27:11 +0100695 "mac-address": mac_schema,
tiernofd160572019-01-21 10:41:37 +0000696 "vim-network-name": shortname_schema, # interface is connected to one vim network, or switch port
697 "vim-network-id": shortname_schema,
tierno36ec8602018-11-02 17:27:11 +0100698 # # provide this in case SDN assist must deal with this interface
699 # "switch-dpid": dpid_Schema,
tiernofd160572019-01-21 10:41:37 +0000700 # "switch-port": shortname_schema,
701 # "switch-mac": shortname_schema,
tierno36ec8602018-11-02 17:27:11 +0100702 # "switch-vlan": vlan_schema,
tiernocb83c942018-09-24 17:28:13 +0200703 },
tierno36ec8602018-11-02 17:27:11 +0100704 "required": ["name", "mgmt", "ip-address"],
tiernocb83c942018-09-24 17:28:13 +0200705 "additionalProperties": False
tiernocd54a4a2018-09-12 16:40:35 +0200706}
tiernocb83c942018-09-24 17:28:13 +0200707pdu_new_schema = {
708 "title": "pdu creation input schema",
709 "$schema": "http://json-schema.org/draft-04/schema#",
710 "type": "object",
711 "properties": {
tiernofd160572019-01-21 10:41:37 +0000712 "name": shortname_schema,
713 "type": shortname_schema,
tiernocb83c942018-09-24 17:28:13 +0200714 "description": description_schema,
715 "shared": bool_schema,
716 "vims": nameshort_list_schema,
717 "vim_accounts": nameshort_list_schema,
718 "interfaces": {
719 "type": "array",
tierno36ec8602018-11-02 17:27:11 +0100720 "items": pdu_interface,
tiernocb83c942018-09-24 17:28:13 +0200721 "minItems": 1
722 }
723 },
724 "required": ["name", "type", "interfaces"],
725 "additionalProperties": False
726}
tiernocb83c942018-09-24 17:28:13 +0200727pdu_edit_schema = {
728 "title": "pdu edit input schema",
729 "$schema": "http://json-schema.org/draft-04/schema#",
730 "type": "object",
731 "properties": {
tiernofd160572019-01-21 10:41:37 +0000732 "name": shortname_schema,
733 "type": shortname_schema,
tiernocb83c942018-09-24 17:28:13 +0200734 "description": description_schema,
735 "shared": bool_schema,
garciadeblas84bdd552018-11-30 22:59:45 +0100736 "vims": {"oneOf": [array_edition_schema, nameshort_list_schema]},
737 "vim_accounts": {"oneOf": [array_edition_schema, nameshort_list_schema]},
738 "interfaces": {"oneOf": [
tiernocb83c942018-09-24 17:28:13 +0200739 array_edition_schema,
740 {
741 "type": "array",
tierno36ec8602018-11-02 17:27:11 +0100742 "items": pdu_interface,
tiernocb83c942018-09-24 17:28:13 +0200743 "minItems": 1
744 }
745 ]}
746 },
747 "additionalProperties": False,
748 "minProperties": 1
749}
750
delacruzramo271d2002019-12-02 21:00:37 +0100751# VNF PKG OPERATIONS
752vnfpkgop_new_schema = {
753 "title": "VNF PKG operation creation input schema",
754 "$schema": "http://json-schema.org/draft-04/schema#",
755 "type": "object",
756 "properties": {
757 "lcmOperationType": string_schema,
758 "vnfPkgId": id_schema,
759 "kdu_name": name_schema,
760 "primitive": name_schema,
761 "primitive_params": {"type": "object"},
762 },
763 "required": ["lcmOperationType", "vnfPkgId", "kdu_name", "primitive", "primitive_params"],
764 "additionalProperties": False
765}
766
tiernocb83c942018-09-24 17:28:13 +0200767# USERS
tiernocf042d32019-06-13 09:06:40 +0000768project_role_mappings = {
769 "title": "list pf projects/roles",
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100770 "$schema": "http://json-schema.org/draft-04/schema#",
tiernocf042d32019-06-13 09:06:40 +0000771 "type": "array",
772 "items": {
773 "type": "object",
774 "properties": {
775 "project": shortname_schema,
776 "role": shortname_schema
777 },
778 "required": ["project", "role"],
779 "additionalProperties": False
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100780 },
tiernocf042d32019-06-13 09:06:40 +0000781 "minItems": 1
782}
783project_role_mappings_optional = {
784 "title": "list of projects/roles or projects only",
785 "$schema": "http://json-schema.org/draft-04/schema#",
786 "type": "array",
787 "items": {
788 "type": "object",
789 "properties": {
790 "project": shortname_schema,
791 "role": shortname_schema
792 },
793 "required": ["project"],
794 "additionalProperties": False
795 },
796 "minItems": 1
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100797}
tiernocd54a4a2018-09-12 16:40:35 +0200798user_new_schema = {
799 "$schema": "http://json-schema.org/draft-04/schema#",
800 "title": "New user schema",
801 "type": "object",
802 "properties": {
tiernofd160572019-01-21 10:41:37 +0000803 "username": shortname_schema,
tiernoad6d5332020-02-19 14:29:49 +0000804 "domain_name": shortname_schema,
tiernocd54a4a2018-09-12 16:40:35 +0200805 "password": passwd_schema,
tiernocb83c942018-09-24 17:28:13 +0200806 "projects": nameshort_list_schema,
tiernocf042d32019-06-13 09:06:40 +0000807 "project_role_mappings": project_role_mappings,
tiernocd54a4a2018-09-12 16:40:35 +0200808 },
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100809 "required": ["username", "password"],
tiernocd54a4a2018-09-12 16:40:35 +0200810 "additionalProperties": False
811}
812user_edit_schema = {
813 "$schema": "http://json-schema.org/draft-04/schema#",
814 "title": "User edit schema for administrators",
815 "type": "object",
816 "properties": {
817 "password": passwd_schema,
delacruzramoc061f562019-04-05 11:00:02 +0200818 "username": shortname_schema, # To allow User Name modification
tiernocd54a4a2018-09-12 16:40:35 +0200819 "projects": {
garciadeblas84bdd552018-11-30 22:59:45 +0100820 "oneOf": [
tiernocb83c942018-09-24 17:28:13 +0200821 nameshort_list_schema,
tiernocd54a4a2018-09-12 16:40:35 +0200822 array_edition_schema
823 ]
824 },
tiernocf042d32019-06-13 09:06:40 +0000825 "project_role_mappings": project_role_mappings,
826 "add_project_role_mappings": project_role_mappings,
827 "remove_project_role_mappings": project_role_mappings_optional,
tiernocb83c942018-09-24 17:28:13 +0200828 },
829 "minProperties": 1,
830 "additionalProperties": False
tiernocd54a4a2018-09-12 16:40:35 +0200831}
832
833# PROJECTS
tierno6b02b052020-06-02 10:07:41 +0000834topics_with_quota = ["vnfds", "nsds", "slice_templates", "pduds", "ns_instances", "slice_instances", "vim_accounts",
preethika.p329b8182020-04-22 12:25:39 +0530835 "wim_accounts", "sdn_controllers", "k8sclusters", "k8srepos", "osmrepos", "ns_subscriptions"]
tiernocd54a4a2018-09-12 16:40:35 +0200836project_new_schema = {
837 "$schema": "http://json-schema.org/draft-04/schema#",
838 "title": "New project schema for administrators",
839 "type": "object",
840 "properties": {
tiernofd160572019-01-21 10:41:37 +0000841 "name": shortname_schema,
tiernocd54a4a2018-09-12 16:40:35 +0200842 "admin": bool_schema,
tiernoad6d5332020-02-19 14:29:49 +0000843 "domain_name": shortname_schema,
delacruzramo32bab472019-09-13 12:24:22 +0200844 "quotas": {
845 "type": "object",
846 "properties": {topic: integer0_schema for topic in topics_with_quota},
847 "additionalProperties": False
848 },
tiernocd54a4a2018-09-12 16:40:35 +0200849 },
850 "required": ["name"],
851 "additionalProperties": False
852}
853project_edit_schema = {
854 "$schema": "http://json-schema.org/draft-04/schema#",
855 "title": "Project edit schema for administrators",
856 "type": "object",
857 "properties": {
858 "admin": bool_schema,
delacruzramoc061f562019-04-05 11:00:02 +0200859 "name": shortname_schema, # To allow Project Name modification
delacruzramo32bab472019-09-13 12:24:22 +0200860 "quotas": {
861 "type": "object",
862 "properties": {topic: {"oneOf": [integer0_schema, null_schema]} for topic in topics_with_quota},
863 "additionalProperties": False
864 },
tiernocd54a4a2018-09-12 16:40:35 +0200865 },
866 "additionalProperties": False,
867 "minProperties": 1
868}
869
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100870# ROLES
871roles_new_schema = {
872 "$schema": "http://json-schema.org/draft-04/schema#",
873 "title": "New role schema for administrators",
874 "type": "object",
875 "properties": {
876 "name": shortname_schema,
tierno1f029d82019-06-13 22:37:04 +0000877 "permissions": {
878 "type": "object",
879 "patternProperties": {
880 ".": bool_schema,
881 },
882 # "minProperties": 1,
883 }
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100884 },
tierno1f029d82019-06-13 22:37:04 +0000885 "required": ["name"],
886 "additionalProperties": False
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100887}
888roles_edit_schema = {
889 "$schema": "http://json-schema.org/draft-04/schema#",
890 "title": "Roles edit schema for administrators",
891 "type": "object",
892 "properties": {
tierno1f029d82019-06-13 22:37:04 +0000893 "name": shortname_schema,
894 "permissions": {
895 "type": "object",
896 "patternProperties": {
897 ".": {
898 "oneOf": [bool_schema, null_schema]
899 }
900 },
901 # "minProperties": 1,
902 }
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100903 },
tierno1f029d82019-06-13 22:37:04 +0000904 "additionalProperties": False,
Eduardo Sousa5c01e192019-05-08 02:35:47 +0100905 "minProperties": 1
906}
907
tiernocd54a4a2018-09-12 16:40:35 +0200908# GLOBAL SCHEMAS
tierno0f98af52018-03-19 10:28:22 +0100909
910nbi_new_input_schemas = {
tiernocd54a4a2018-09-12 16:40:35 +0200911 "users": user_new_schema,
912 "projects": project_new_schema,
tierno09c073e2018-04-26 13:36:48 +0200913 "vim_accounts": vim_account_new_schema,
tierno65acb4d2018-04-06 16:42:40 +0200914 "sdns": sdn_new_schema,
915 "ns_instantiate": ns_instantiate,
916 "ns_action": ns_action,
tiernocb83c942018-09-24 17:28:13 +0200917 "ns_scale": ns_scale,
918 "pdus": pdu_new_schema,
tierno0f98af52018-03-19 10:28:22 +0100919}
920
921nbi_edit_input_schemas = {
tiernocd54a4a2018-09-12 16:40:35 +0200922 "users": user_edit_schema,
923 "projects": project_edit_schema,
tierno09c073e2018-04-26 13:36:48 +0200924 "vim_accounts": vim_account_edit_schema,
tiernocb83c942018-09-24 17:28:13 +0200925 "sdns": sdn_edit_schema,
926 "pdus": pdu_edit_schema,
tierno0f98af52018-03-19 10:28:22 +0100927}
928
Felipe Vicens07f31722018-10-29 15:16:44 +0100929# NETSLICE SCHEMAS
tierno032916c2019-03-22 13:27:12 +0000930nsi_subnet_instantiate = deepcopy(ns_instantiate)
931nsi_subnet_instantiate["title"] = "netslice subnet instantiation params input schema"
932nsi_subnet_instantiate["properties"]["id"] = name_schema
933del nsi_subnet_instantiate["required"]
garciadeblasdaf8cc52018-11-30 14:17:20 +0100934
935nsi_vld_instantiate = {
936 "title": "netslice vld instantiation params input schema",
937 "$schema": "http://json-schema.org/draft-04/schema#",
938 "type": "object",
939 "properties": {
940 "name": string_schema,
tierno195a36c2020-09-18 14:18:55 +0000941 "vim-network-name": {"oneOf": [string_schema, object_schema]},
942 "vim-network-id": {"oneOf": [string_schema, object_schema]},
garciadeblasdaf8cc52018-11-30 14:17:20 +0100943 "ip-profile": object_schema,
944 },
delacruzramoc061f562019-04-05 11:00:02 +0200945 "required": ["name"],
garciadeblasdaf8cc52018-11-30 14:17:20 +0100946 "additionalProperties": False
947}
948
Felipe Vicens07f31722018-10-29 15:16:44 +0100949nsi_instantiate = {
950 "title": "netslice action instantiate input schema",
951 "$schema": "http://json-schema.org/draft-04/schema#",
952 "type": "object",
953 "properties": {
954 "lcmOperationType": string_schema,
Felipe Vicens126af572019-06-05 19:13:04 +0200955 "netsliceInstanceId": id_schema,
Felipe Vicens07f31722018-10-29 15:16:44 +0100956 "nsiName": name_schema,
tierno4f9d4ae2019-03-20 17:24:11 +0000957 "nsiDescription": {"oneOf": [description_schema, null_schema]},
tierno9e5eea32018-11-29 09:42:09 +0000958 "nstId": string_schema,
Felipe Vicens07f31722018-10-29 15:16:44 +0100959 "vimAccountId": id_schema,
tiernoa8186a52020-01-14 15:54:48 +0000960 "timeout_nsi_deploy": integer1_schema,
Felipe Vicens26202bb2020-05-24 18:57:33 +0200961 "ssh_keys": {"type": "array", "items": {"type": "string"}},
Felipe Vicens07f31722018-10-29 15:16:44 +0100962 "nsi_id": id_schema,
tierno032916c2019-03-22 13:27:12 +0000963 "additionalParamsForNsi": object_schema,
garciadeblasdaf8cc52018-11-30 14:17:20 +0100964 "netslice-subnet": {
Felipe Vicens07f31722018-10-29 15:16:44 +0100965 "type": "array",
966 "minItems": 1,
tierno032916c2019-03-22 13:27:12 +0000967 "items": nsi_subnet_instantiate
garciadeblasdaf8cc52018-11-30 14:17:20 +0100968 },
969 "netslice-vld": {
970 "type": "array",
971 "minItems": 1,
972 "items": nsi_vld_instantiate
Felipe Vicens07f31722018-10-29 15:16:44 +0100973 },
974 },
Felipe Vicensc8bbaaa2018-12-01 04:42:40 +0100975 "required": ["nsiName", "nstId", "vimAccountId"],
Felipe Vicens07f31722018-10-29 15:16:44 +0100976 "additionalProperties": False
977}
978
979nsi_action = {
980
981}
982
983nsi_terminate = {
delacruzramoc061f562019-04-05 11:00:02 +0200984
Felipe Vicens07f31722018-10-29 15:16:44 +0100985}
986
preethika.p329b8182020-04-22 12:25:39 +0530987nsinstancesubscriptionfilter_schema = {
988 "title": "instance identifier schema",
989 "$schema": "http://json-schema.org/draft-07/schema#",
990 "type": "object",
991 "properties": {
992 "nsdIds": {"type": "array"},
993 "vnfdIds": {"type": "array"},
994 "pnfdIds": {"type": "array"},
995 "nsInstanceIds": {"type": "array"},
996 "nsInstanceNames": {"type": "array"},
997 },
998}
999
1000nslcmsub_schema = {
1001 "title": "nslcmsubscription input schema",
1002 "$schema": "http://json-schema.org/draft-07/schema#",
1003 "type": "object",
1004 "properties": {
1005 "nsInstanceSubscriptionFilter": nsinstancesubscriptionfilter_schema,
1006 "notificationTypes": {
1007 "type": "array",
1008 "items": {
1009 "enum": ['NsLcmOperationOccurrenceNotification', 'NsChangeNotification',
1010 'NsIdentifierCreationNotification', 'NsIdentifierDeletionNotification']
1011 }
1012 },
1013 "operationTypes": {
1014 "type": "array",
1015 "items": {
1016 "enum": ['INSTANTIATE', 'SCALE', 'TERMINATE', 'UPDATE', 'HEAL']
1017 }
1018 },
1019 "operationStates": {
1020 "type": "array",
1021 "items": {
1022 "enum": ['PROCESSING', 'COMPLETED', 'PARTIALLY_COMPLETED', 'FAILED',
1023 'FAILED_TEMP', 'ROLLING_BACK', 'ROLLED_BACK']
1024 }
1025 },
1026 "nsComponentTypes": {
1027 "type": "array",
1028 "items": {
1029 "enum": ['VNF', 'NS', 'PNF']
1030 }
1031 },
1032 "lcmOpNameImpactingNsComponent": {
1033 "type": "array",
1034 "items": {
1035 "enum": ['VNF_INSTANTIATE', 'VNF_SCALE', 'VNF_SCALE_TO_LEVEL', 'VNF_CHANGE_FLAVOUR',
1036 'VNF_TERMINATE', 'VNF_HEAL', 'VNF_OPERATE', 'VNF_CHANGE_EXT_CONN', 'VNF_MODIFY_INFO',
1037 'NS_INSTANTIATE', 'NS_SCALE', 'NS_UPDATE', 'NS_TERMINATE', 'NS_HEAL']
1038 }
1039 },
1040 "lcmOpOccStatusImpactingNsComponent": {
1041 "type": "array",
1042 "items": {
1043 "enum": ['START', 'COMPLETED', 'PARTIALLY_COMPLETED', 'FAILED', 'ROLLED_BACK']
1044 }
1045 },
1046 },
1047 "allOf": [
1048 {
1049 "if": {
1050 "properties": {
1051 "notificationTypes": {
1052 "contains": {"const": "NsLcmOperationOccurrenceNotification"}
1053 }
1054 },
1055 },
1056 "then": {
1057 "anyOf": [
1058 {"required": ["operationTypes"]},
1059 {"required": ["operationStates"]},
1060 ]
1061 }
1062 },
1063 {
1064 "if": {
1065 "properties": {
1066 "notificationTypes": {
1067 "contains": {"const": "NsChangeNotification"}
1068 }
1069 },
1070 },
1071 "then": {
1072 "anyOf": [
1073 {"required": ["nsComponentTypes"]},
1074 {"required": ["lcmOpNameImpactingNsComponent"]},
1075 {"required": ["lcmOpOccStatusImpactingNsComponent"]},
1076 ]
1077 }
1078 }
1079 ]
1080}
1081
1082authentication_schema = {
1083 "title": "authentication schema for subscription",
1084 "$schema": "http://json-schema.org/draft-07/schema#",
1085 "type": "object",
1086 "properties": {
1087 "authType": {"enum": ["basic"]},
1088 "paramsBasic": {
1089 "type": "object",
1090 "properties": {
1091 "userName": shortname_schema,
1092 "password": passwd_schema,
1093 },
1094 },
1095 },
1096}
1097
1098subscription = {
1099 "title": "subscription input schema",
1100 "$schema": "http://json-schema.org/draft-07/schema#",
1101 "type": "object",
1102 "properties": {
1103 "filter": nslcmsub_schema,
1104 "CallbackUri": description_schema,
1105 "authentication": authentication_schema
1106 },
1107 "required": ["CallbackUri"],
1108}
1109
tierno0f98af52018-03-19 10:28:22 +01001110
1111class ValidationError(Exception):
tierno36ec8602018-11-02 17:27:11 +01001112 def __init__(self, message, http_code=HTTPStatus.UNPROCESSABLE_ENTITY):
1113 self.http_code = http_code
1114 Exception.__init__(self, message)
tierno0f98af52018-03-19 10:28:22 +01001115
1116
tiernob24258a2018-10-04 18:39:49 +02001117def validate_input(indata, schema_to_use):
tierno0f98af52018-03-19 10:28:22 +01001118 """
tiernocd54a4a2018-09-12 16:40:35 +02001119 Validates input data against json schema
tierno0f98af52018-03-19 10:28:22 +01001120 :param indata: user input data. Should be a dictionary
tiernob24258a2018-10-04 18:39:49 +02001121 :param schema_to_use: jsonschema to test
1122 :return: None if ok, raises ValidationError exception on error
tierno0f98af52018-03-19 10:28:22 +01001123 """
1124 try:
tierno0f98af52018-03-19 10:28:22 +01001125 if schema_to_use:
1126 js_v(indata, schema_to_use)
1127 return None
1128 except js_e.ValidationError as e:
1129 if e.path:
tierno0da52252018-06-27 15:47:22 +02001130 error_pos = "at '" + ":".join(map(str, e.path)) + "'"
tierno0f98af52018-03-19 10:28:22 +01001131 else:
1132 error_pos = ""
tierno441dbbf2018-07-10 12:52:48 +02001133 raise ValidationError("Format error {} '{}' ".format(error_pos, e.message))
tierno36ec8602018-11-02 17:27:11 +01001134 except js_e.SchemaError:
1135 raise ValidationError("Bad json schema {}".format(schema_to_use), http_code=HTTPStatus.INTERNAL_SERVER_ERROR)
delacruzramoc061f562019-04-05 11:00:02 +02001136
1137
1138def is_valid_uuid(x):
1139 """
1140 Test for a valid UUID
1141 :param x: string to test
1142 :return: True if x is a valid uuid, False otherwise
1143 """
1144 try:
1145 if UUID(x):
1146 return True
tiernobdebce92019-07-01 15:36:49 +00001147 except (TypeError, ValueError, AttributeError):
delacruzramoc061f562019-04-05 11:00:02 +02001148 return False