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