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