| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 1 | #!/usr/bin/python3 |
| 2 | # -*- coding: utf-8 -*- |
| 3 | |
| tierno | d125caf | 2018-11-22 16:05:54 +0000 | [diff] [blame] | 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or |
| 13 | # implied. |
| 14 | # See the License for the specific language governing permissions and |
| 15 | # limitations under the License. |
| 16 | |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 17 | import cherrypy |
| 18 | import time |
| 19 | import json |
| 20 | import yaml |
| tierno | 9c63011 | 2019-08-29 14:21:41 +0000 | [diff] [blame] | 21 | import osm_nbi.html_out as html |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 22 | import logging |
| tierno | f5298be | 2018-05-16 14:43:57 +0200 | [diff] [blame] | 23 | import logging.handlers |
| 24 | import getopt |
| 25 | import sys |
| Eduardo Sousa | 2f98821 | 2018-07-26 01:04:11 +0100 | [diff] [blame] | 26 | |
| tierno | 9c63011 | 2019-08-29 14:21:41 +0000 | [diff] [blame] | 27 | from osm_nbi.authconn import AuthException, AuthconnException |
| 28 | from osm_nbi.auth import Authenticator |
| 29 | from osm_nbi.engine import Engine, EngineException |
| 30 | from osm_nbi.subscriptions import SubscriptionThread |
| 31 | from osm_nbi.validation import ValidationError |
| tierno | a8d6363 | 2018-05-10 13:12:32 +0200 | [diff] [blame] | 32 | from osm_common.dbbase import DbException |
| 33 | from osm_common.fsbase import FsException |
| 34 | from osm_common.msgbase import MsgException |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 35 | from http import HTTPStatus |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 36 | from codecs import getreader |
| tierno | f5298be | 2018-05-16 14:43:57 +0200 | [diff] [blame] | 37 | from os import environ, path |
| tierno | b2e48bd | 2020-02-04 15:47:18 +0000 | [diff] [blame] | 38 | from osm_nbi import version as nbi_version, version_date as nbi_version_date |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 39 | |
| 40 | __author__ = "Alfonso Tierno <alfonso.tiernosepulveda@telefonica.com>" |
| tierno | dfe0957 | 2018-04-24 10:41:10 +0200 | [diff] [blame] | 41 | |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 42 | __version__ = "0.1.3" # file version, not NBI version |
| tierno | 9c63011 | 2019-08-29 14:21:41 +0000 | [diff] [blame] | 43 | version_date = "Aug 2019" |
| 44 | |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 45 | database_version = "1.2" |
| 46 | auth_database_version = "1.0" |
| 47 | nbi_server = None # instance of Server class |
| tierno | 932499c | 2019-01-28 17:28:10 +0000 | [diff] [blame] | 48 | subscription_thread = None # instance of SubscriptionThread class |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 49 | |
| 50 | """ |
| tierno | f27c79b | 2018-03-12 17:08:42 +0100 | [diff] [blame] | 51 | North Bound Interface (O: OSM specific; 5,X: SOL005 not implemented yet; O5: SOL005 implemented) |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 52 | URL: /osm GET POST PUT DELETE PATCH |
| garciadeblas | 9750c5a | 2018-10-15 16:20:35 +0200 | [diff] [blame] | 53 | /nsd/v1 |
| tierno | 2236d20 | 2018-05-16 19:05:16 +0200 | [diff] [blame] | 54 | /ns_descriptors_content O O |
| 55 | /<nsdInfoId> O O O O |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 56 | /ns_descriptors O5 O5 |
| 57 | /<nsdInfoId> O5 O5 5 |
| 58 | /nsd_content O5 O5 |
| tierno | f27c79b | 2018-03-12 17:08:42 +0100 | [diff] [blame] | 59 | /nsd O |
| 60 | /artifacts[/<artifactPath>] O |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 61 | /pnf_descriptors 5 5 |
| 62 | /<pnfdInfoId> 5 5 5 |
| 63 | /pnfd_content 5 5 |
| tierno | f27c79b | 2018-03-12 17:08:42 +0100 | [diff] [blame] | 64 | /subscriptions 5 5 |
| 65 | /<subscriptionId> 5 X |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 66 | |
| 67 | /vnfpkgm/v1 |
| tierno | 55945e7 | 2018-04-06 16:40:27 +0200 | [diff] [blame] | 68 | /vnf_packages_content O O |
| tierno | 2236d20 | 2018-05-16 19:05:16 +0200 | [diff] [blame] | 69 | /<vnfPkgId> O O |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 70 | /vnf_packages O5 O5 |
| 71 | /<vnfPkgId> O5 O5 5 |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 72 | /package_content O5 O5 |
| 73 | /upload_from_uri X |
| tierno | f27c79b | 2018-03-12 17:08:42 +0100 | [diff] [blame] | 74 | /vnfd O5 |
| 75 | /artifacts[/<artifactPath>] O5 |
| 76 | /subscriptions X X |
| 77 | /<subscriptionId> X X |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 78 | |
| 79 | /nslcm/v1 |
| tierno | f27c79b | 2018-03-12 17:08:42 +0100 | [diff] [blame] | 80 | /ns_instances_content O O |
| tierno | 2236d20 | 2018-05-16 19:05:16 +0200 | [diff] [blame] | 81 | /<nsInstanceId> O O |
| tierno | f27c79b | 2018-03-12 17:08:42 +0100 | [diff] [blame] | 82 | /ns_instances 5 5 |
| tierno | 9569244 | 2018-05-24 18:05:28 +0200 | [diff] [blame] | 83 | /<nsInstanceId> O5 O5 |
| tierno | 65acb4d | 2018-04-06 16:42:40 +0200 | [diff] [blame] | 84 | instantiate O5 |
| 85 | terminate O5 |
| 86 | action O |
| 87 | scale O5 |
| elumalai | 8e3806c | 2022-04-28 17:26:24 +0530 | [diff] [blame] | 88 | migrate O |
| aticig | 544a2ae | 2022-04-05 09:00:17 +0300 | [diff] [blame] | 89 | update 05 |
| garciadeblas | 0964edf | 2022-02-11 00:43:44 +0100 | [diff] [blame] | 90 | heal O5 |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 91 | /ns_lcm_op_occs 5 5 |
| 92 | /<nsLcmOpOccId> 5 5 5 |
| 93 | TO BE COMPLETED 5 5 |
| tierno | f759d82 | 2018-06-11 18:54:54 +0200 | [diff] [blame] | 94 | /vnf_instances (also vnfrs for compatibility) O |
| 95 | /<vnfInstanceId> O |
| tierno | f27c79b | 2018-03-12 17:08:42 +0100 | [diff] [blame] | 96 | /subscriptions 5 5 |
| 97 | /<subscriptionId> 5 X |
| garciadeblas | 9750c5a | 2018-10-15 16:20:35 +0200 | [diff] [blame] | 98 | |
| tierno | cb83c94 | 2018-09-24 17:28:13 +0200 | [diff] [blame] | 99 | /pdu/v1 |
| tierno | 032916c | 2019-03-22 13:27:12 +0000 | [diff] [blame] | 100 | /pdu_descriptors O O |
| tierno | cb83c94 | 2018-09-24 17:28:13 +0200 | [diff] [blame] | 101 | /<id> O O O O |
| garciadeblas | 9750c5a | 2018-10-15 16:20:35 +0200 | [diff] [blame] | 102 | |
| tierno | f27c79b | 2018-03-12 17:08:42 +0100 | [diff] [blame] | 103 | /admin/v1 |
| 104 | /tokens O O |
| tierno | 2236d20 | 2018-05-16 19:05:16 +0200 | [diff] [blame] | 105 | /<id> O O |
| tierno | f27c79b | 2018-03-12 17:08:42 +0100 | [diff] [blame] | 106 | /users O O |
| tierno | cd54a4a | 2018-09-12 16:40:35 +0200 | [diff] [blame] | 107 | /<id> O O O O |
| tierno | f27c79b | 2018-03-12 17:08:42 +0100 | [diff] [blame] | 108 | /projects O O |
| tierno | 2236d20 | 2018-05-16 19:05:16 +0200 | [diff] [blame] | 109 | /<id> O O |
| tierno | 55ba2e6 | 2018-12-11 17:22:22 +0000 | [diff] [blame] | 110 | /vim_accounts (also vims for compatibility) O O |
| 111 | /<id> O O O |
| 112 | /wim_accounts O O |
| tierno | 2236d20 | 2018-05-16 19:05:16 +0200 | [diff] [blame] | 113 | /<id> O O O |
| tierno | 0f98af5 | 2018-03-19 10:28:22 +0100 | [diff] [blame] | 114 | /sdns O O |
| tierno | 2236d20 | 2018-05-16 19:05:16 +0200 | [diff] [blame] | 115 | /<id> O O O |
| delacruzramo | fe598fe | 2019-10-23 18:25:11 +0200 | [diff] [blame] | 116 | /k8sclusters O O |
| 117 | /<id> O O O |
| 118 | /k8srepos O O |
| 119 | /<id> O O |
| Felipe Vicens | b66b041 | 2020-05-06 10:11:00 +0200 | [diff] [blame] | 120 | /osmrepos O O |
| 121 | /<id> O O |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 122 | |
| garciadeblas | 9750c5a | 2018-10-15 16:20:35 +0200 | [diff] [blame] | 123 | /nst/v1 O O |
| 124 | /netslice_templates_content O O |
| 125 | /<nstInfoId> O O O O |
| 126 | /netslice_templates O O |
| 127 | /<nstInfoId> O O O |
| 128 | /nst_content O O |
| 129 | /nst O |
| 130 | /artifacts[/<artifactPath>] O |
| 131 | /subscriptions X X |
| 132 | /<subscriptionId> X X |
| 133 | |
| 134 | /nsilcm/v1 |
| 135 | /netslice_instances_content O O |
| 136 | /<SliceInstanceId> O O |
| 137 | /netslice_instances O O |
| 138 | /<SliceInstanceId> O O |
| 139 | instantiate O |
| 140 | terminate O |
| 141 | action O |
| 142 | /nsi_lcm_op_occs O O |
| 143 | /<nsiLcmOpOccId> O O O |
| 144 | /subscriptions X X |
| 145 | /<subscriptionId> X X |
| 146 | |
| tierno | 2236d20 | 2018-05-16 19:05:16 +0200 | [diff] [blame] | 147 | query string: |
| 148 | Follows SOL005 section 4.3.2 It contains extra METHOD to override http method, FORCE to force. |
| tierno | 36ec860 | 2018-11-02 17:27:11 +0100 | [diff] [blame] | 149 | simpleFilterExpr := <attrName>["."<attrName>]*["."<op>]"="<value>[","<value>]* |
| 150 | filterExpr := <simpleFilterExpr>["&"<simpleFilterExpr>]* |
| 151 | op := "eq" | "neq" (or "ne") | "gt" | "lt" | "gte" | "lte" | "cont" | "ncont" |
| 152 | attrName := string |
| tierno | 2236d20 | 2018-05-16 19:05:16 +0200 | [diff] [blame] | 153 | For filtering inside array, it must select the element of the array, or add ANYINDEX to apply the filtering over any |
| 154 | item of the array, that is, pass if any item of the array pass the filter. |
| 155 | It allows both ne and neq for not equal |
| 156 | TODO: 4.3.3 Attribute selectors |
| 157 | all_fields, fields=x,y,.., exclude_default, exclude_fields=x,y,... |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 158 | (none) … same as “exclude_default” |
| 159 | all_fields … all attributes. |
| tierno | 2236d20 | 2018-05-16 19:05:16 +0200 | [diff] [blame] | 160 | fields=<list> … all attributes except all complex attributes with minimum cardinality of zero that are not |
| 161 | conditionally mandatory, and that are not provided in <list>. |
| 162 | exclude_fields=<list> … all attributes except those complex attributes with a minimum cardinality of zero that |
| 163 | are not conditionally mandatory, and that are provided in <list>. |
| 164 | exclude_default … all attributes except those complex attributes with a minimum cardinality of zero that are not |
| 165 | conditionally mandatory, and that are part of the "default exclude set" defined in the present specification for |
| 166 | the particular resource |
| 167 | exclude_default and include=<list> … all attributes except those complex attributes with a minimum cardinality |
| 168 | of zero that are not conditionally mandatory and that are part of the "default exclude set" defined in the |
| 169 | present specification for the particular resource, but that are not part of <list> |
| tierno | 65ca36d | 2019-02-12 19:27:52 +0100 | [diff] [blame] | 170 | Additionally it admits some administrator values: |
| 171 | FORCE: To force operations skipping dependency checkings |
| 172 | ADMIN: To act as an administrator or a different project |
| 173 | PUBLIC: To get public descriptors or set a descriptor as public |
| 174 | SET_PROJECT: To make a descriptor available for other project |
| beierlm | bc5a524 | 2022-05-17 21:25:29 -0400 | [diff] [blame] | 175 | |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 176 | Header field name Reference Example Descriptions |
| 177 | Accept IETF RFC 7231 [19] application/json Content-Types that are acceptable for the response. |
| 178 | This header field shall be present if the response is expected to have a non-empty message body. |
| 179 | Content-Type IETF RFC 7231 [19] application/json The MIME type of the body of the request. |
| 180 | This header field shall be present if the request has a non-empty message body. |
| tierno | 2236d20 | 2018-05-16 19:05:16 +0200 | [diff] [blame] | 181 | Authorization IETF RFC 7235 [22] Bearer mF_9.B5f-4.1JqM The authorization token for the request. |
| 182 | Details are specified in clause 4.5.3. |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 183 | Range IETF RFC 7233 [21] 1000-2000 Requested range of bytes from a file |
| 184 | Header field name Reference Example Descriptions |
| 185 | Content-Type IETF RFC 7231 [19] application/json The MIME type of the body of the response. |
| 186 | This header field shall be present if the response has a non-empty message body. |
| tierno | 2236d20 | 2018-05-16 19:05:16 +0200 | [diff] [blame] | 187 | Location IETF RFC 7231 [19] http://www.example.com/vnflcm/v1/vnf_instances/123 Used in redirection, or when a |
| 188 | new resource has been created. |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 189 | This header field shall be present if the response status code is 201 or 3xx. |
| tierno | 2236d20 | 2018-05-16 19:05:16 +0200 | [diff] [blame] | 190 | In the present document this header field is also used if the response status code is 202 and a new resource was |
| 191 | created. |
| 192 | WWW-Authenticate IETF RFC 7235 [22] Bearer realm="example" Challenge if the corresponding HTTP request has not |
| 193 | provided authorization, or error details if the corresponding HTTP request has provided an invalid authorization |
| 194 | token. |
| 195 | Accept-Ranges IETF RFC 7233 [21] bytes Used by the Server to signal whether or not it supports ranges for |
| 196 | certain resources. |
| 197 | Content-Range IETF RFC 7233 [21] bytes 21010-47021/ 47022 Signals the byte range that is contained in the |
| 198 | response, and the total length of the file. |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 199 | Retry-After IETF RFC 7231 [19] Fri, 31 Dec 1999 23:59:59 GMT |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 200 | """ |
| 201 | |
| tierno | 701018c | 2019-06-25 11:13:14 +0000 | [diff] [blame] | 202 | valid_query_string = ("ADMIN", "SET_PROJECT", "FORCE", "PUBLIC") |
| 203 | # ^ Contains possible administrative query string words: |
| 204 | # ADMIN=True(by default)|Project|Project-list: See all elements, or elements of a project |
| 205 | # (not owned by my session project). |
| 206 | # PUBLIC=True(by default)|False: See/hide public elements. Set/Unset a topic to be public |
| 207 | # FORCE=True(by default)|False: Force edition/deletion operations |
| 208 | # SET_PROJECT=Project|Project-list: Add/Delete the topic to the projects portfolio |
| 209 | |
| 210 | valid_url_methods = { |
| 211 | # contains allowed URL and methods, and the role_permission name |
| 212 | "admin": { |
| 213 | "v1": { |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 214 | "tokens": { |
| 215 | "METHODS": ("GET", "POST", "DELETE"), |
| 216 | "ROLE_PERMISSION": "tokens:", |
| 217 | "<ID>": {"METHODS": ("GET", "DELETE"), "ROLE_PERMISSION": "tokens:id:"}, |
| 218 | }, |
| 219 | "users": { |
| 220 | "METHODS": ("GET", "POST"), |
| 221 | "ROLE_PERMISSION": "users:", |
| 222 | "<ID>": { |
| 223 | "METHODS": ("GET", "DELETE", "PATCH"), |
| 224 | "ROLE_PERMISSION": "users:id:", |
| 225 | }, |
| 226 | }, |
| 227 | "projects": { |
| 228 | "METHODS": ("GET", "POST"), |
| 229 | "ROLE_PERMISSION": "projects:", |
| 230 | "<ID>": { |
| 231 | "METHODS": ("GET", "DELETE", "PATCH"), |
| 232 | "ROLE_PERMISSION": "projects:id:", |
| 233 | }, |
| 234 | }, |
| 235 | "roles": { |
| 236 | "METHODS": ("GET", "POST"), |
| 237 | "ROLE_PERMISSION": "roles:", |
| 238 | "<ID>": { |
| 239 | "METHODS": ("GET", "DELETE", "PATCH"), |
| 240 | "ROLE_PERMISSION": "roles:id:", |
| 241 | }, |
| 242 | }, |
| 243 | "vims": { |
| 244 | "METHODS": ("GET", "POST"), |
| 245 | "ROLE_PERMISSION": "vims:", |
| 246 | "<ID>": { |
| 247 | "METHODS": ("GET", "DELETE", "PATCH"), |
| 248 | "ROLE_PERMISSION": "vims:id:", |
| 249 | }, |
| 250 | }, |
| 251 | "vim_accounts": { |
| 252 | "METHODS": ("GET", "POST"), |
| 253 | "ROLE_PERMISSION": "vim_accounts:", |
| 254 | "<ID>": { |
| 255 | "METHODS": ("GET", "DELETE", "PATCH"), |
| 256 | "ROLE_PERMISSION": "vim_accounts:id:", |
| 257 | }, |
| 258 | }, |
| 259 | "wim_accounts": { |
| 260 | "METHODS": ("GET", "POST"), |
| 261 | "ROLE_PERMISSION": "wim_accounts:", |
| 262 | "<ID>": { |
| 263 | "METHODS": ("GET", "DELETE", "PATCH"), |
| 264 | "ROLE_PERMISSION": "wim_accounts:id:", |
| 265 | }, |
| 266 | }, |
| 267 | "sdns": { |
| 268 | "METHODS": ("GET", "POST"), |
| 269 | "ROLE_PERMISSION": "sdn_controllers:", |
| 270 | "<ID>": { |
| 271 | "METHODS": ("GET", "DELETE", "PATCH"), |
| 272 | "ROLE_PERMISSION": "sdn_controllers:id:", |
| 273 | }, |
| 274 | }, |
| 275 | "k8sclusters": { |
| 276 | "METHODS": ("GET", "POST"), |
| 277 | "ROLE_PERMISSION": "k8sclusters:", |
| 278 | "<ID>": { |
| 279 | "METHODS": ("GET", "DELETE", "PATCH"), |
| 280 | "ROLE_PERMISSION": "k8sclusters:id:", |
| 281 | }, |
| 282 | }, |
| 283 | "vca": { |
| 284 | "METHODS": ("GET", "POST"), |
| 285 | "ROLE_PERMISSION": "vca:", |
| 286 | "<ID>": { |
| 287 | "METHODS": ("GET", "DELETE", "PATCH"), |
| 288 | "ROLE_PERMISSION": "vca:id:", |
| 289 | }, |
| 290 | }, |
| 291 | "k8srepos": { |
| 292 | "METHODS": ("GET", "POST"), |
| 293 | "ROLE_PERMISSION": "k8srepos:", |
| 294 | "<ID>": { |
| 295 | "METHODS": ("GET", "DELETE"), |
| 296 | "ROLE_PERMISSION": "k8srepos:id:", |
| 297 | }, |
| 298 | }, |
| 299 | "osmrepos": { |
| 300 | "METHODS": ("GET", "POST"), |
| 301 | "ROLE_PERMISSION": "osmrepos:", |
| 302 | "<ID>": { |
| 303 | "METHODS": ("GET", "DELETE", "PATCH"), |
| 304 | "ROLE_PERMISSION": "osmrepos:id:", |
| 305 | }, |
| 306 | }, |
| 307 | "domains": { |
| 308 | "METHODS": ("GET",), |
| 309 | "ROLE_PERMISSION": "domains:", |
| 310 | }, |
| tierno | 701018c | 2019-06-25 11:13:14 +0000 | [diff] [blame] | 311 | } |
| 312 | }, |
| 313 | "pdu": { |
| 314 | "v1": { |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 315 | "pdu_descriptors": { |
| 316 | "METHODS": ("GET", "POST"), |
| 317 | "ROLE_PERMISSION": "pduds:", |
| 318 | "<ID>": { |
| 319 | "METHODS": ("GET", "POST", "DELETE", "PATCH", "PUT"), |
| 320 | "ROLE_PERMISSION": "pduds:id:", |
| 321 | }, |
| 322 | }, |
| tierno | 701018c | 2019-06-25 11:13:14 +0000 | [diff] [blame] | 323 | } |
| 324 | }, |
| 325 | "nsd": { |
| 326 | "v1": { |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 327 | "ns_descriptors_content": { |
| 328 | "METHODS": ("GET", "POST"), |
| 329 | "ROLE_PERMISSION": "nsds:", |
| 330 | "<ID>": { |
| 331 | "METHODS": ("GET", "PUT", "DELETE"), |
| 332 | "ROLE_PERMISSION": "nsds:id:", |
| 333 | }, |
| 334 | }, |
| 335 | "ns_descriptors": { |
| 336 | "METHODS": ("GET", "POST"), |
| 337 | "ROLE_PERMISSION": "nsds:", |
| 338 | "<ID>": { |
| 339 | "METHODS": ("GET", "DELETE", "PATCH"), |
| 340 | "ROLE_PERMISSION": "nsds:id:", |
| 341 | "nsd_content": { |
| 342 | "METHODS": ("GET", "PUT"), |
| 343 | "ROLE_PERMISSION": "nsds:id:content:", |
| 344 | }, |
| 345 | "nsd": { |
| 346 | "METHODS": ("GET",), # descriptor inside package |
| 347 | "ROLE_PERMISSION": "nsds:id:content:", |
| 348 | }, |
| 349 | "artifacts": { |
| 350 | "METHODS": ("GET",), |
| 351 | "ROLE_PERMISSION": "nsds:id:nsd_artifact:", |
| 352 | "*": None, |
| 353 | }, |
| 354 | }, |
| 355 | }, |
| 356 | "pnf_descriptors": { |
| 357 | "TODO": ("GET", "POST"), |
| 358 | "<ID>": { |
| 359 | "TODO": ("GET", "DELETE", "PATCH"), |
| 360 | "pnfd_content": {"TODO": ("GET", "PUT")}, |
| 361 | }, |
| 362 | }, |
| 363 | "subscriptions": { |
| 364 | "TODO": ("GET", "POST"), |
| 365 | "<ID>": {"TODO": ("GET", "DELETE")}, |
| 366 | }, |
| tierno | 701018c | 2019-06-25 11:13:14 +0000 | [diff] [blame] | 367 | } |
| 368 | }, |
| 369 | "vnfpkgm": { |
| 370 | "v1": { |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 371 | "vnf_packages_content": { |
| 372 | "METHODS": ("GET", "POST"), |
| 373 | "ROLE_PERMISSION": "vnfds:", |
| 374 | "<ID>": { |
| 375 | "METHODS": ("GET", "PUT", "DELETE"), |
| 376 | "ROLE_PERMISSION": "vnfds:id:", |
| 377 | }, |
| 378 | }, |
| 379 | "vnf_packages": { |
| 380 | "METHODS": ("GET", "POST"), |
| 381 | "ROLE_PERMISSION": "vnfds:", |
| 382 | "<ID>": { |
| 383 | "METHODS": ("GET", "DELETE", "PATCH"), # GET: vnfPkgInfo |
| 384 | "ROLE_PERMISSION": "vnfds:id:", |
| 385 | "package_content": { |
| 386 | "METHODS": ("GET", "PUT"), # package |
| 387 | "ROLE_PERMISSION": "vnfds:id:", |
| 388 | "upload_from_uri": { |
| 389 | "METHODS": (), |
| 390 | "TODO": ("POST",), |
| 391 | "ROLE_PERMISSION": "vnfds:id:upload:", |
| 392 | }, |
| 393 | }, |
| 394 | "vnfd": { |
| 395 | "METHODS": ("GET",), # descriptor inside package |
| 396 | "ROLE_PERMISSION": "vnfds:id:content:", |
| 397 | }, |
| 398 | "artifacts": { |
| 399 | "METHODS": ("GET",), |
| 400 | "ROLE_PERMISSION": "vnfds:id:vnfd_artifact:", |
| 401 | "*": None, |
| 402 | }, |
| 403 | "action": { |
| 404 | "METHODS": ("POST",), |
| 405 | "ROLE_PERMISSION": "vnfds:id:action:", |
| 406 | }, |
| 407 | }, |
| 408 | }, |
| 409 | "subscriptions": { |
| 410 | "TODO": ("GET", "POST"), |
| 411 | "<ID>": {"TODO": ("GET", "DELETE")}, |
| 412 | }, |
| 413 | "vnfpkg_op_occs": { |
| 414 | "METHODS": ("GET",), |
| 415 | "ROLE_PERMISSION": "vnfds:vnfpkgops:", |
| 416 | "<ID>": {"METHODS": ("GET",), "ROLE_PERMISSION": "vnfds:vnfpkgops:id:"}, |
| 417 | }, |
| tierno | 701018c | 2019-06-25 11:13:14 +0000 | [diff] [blame] | 418 | } |
| 419 | }, |
| 420 | "nslcm": { |
| 421 | "v1": { |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 422 | "ns_instances_content": { |
| 423 | "METHODS": ("GET", "POST"), |
| 424 | "ROLE_PERMISSION": "ns_instances:", |
| 425 | "<ID>": { |
| 426 | "METHODS": ("GET", "DELETE"), |
| 427 | "ROLE_PERMISSION": "ns_instances:id:", |
| 428 | }, |
| 429 | }, |
| 430 | "ns_instances": { |
| 431 | "METHODS": ("GET", "POST"), |
| 432 | "ROLE_PERMISSION": "ns_instances:", |
| 433 | "<ID>": { |
| 434 | "METHODS": ("GET", "DELETE"), |
| 435 | "ROLE_PERMISSION": "ns_instances:id:", |
| garciadeblas | 0964edf | 2022-02-11 00:43:44 +0100 | [diff] [blame] | 436 | "heal": { |
| 437 | "METHODS": ("POST",), |
| 438 | "ROLE_PERMISSION": "ns_instances:id:heal:", |
| 439 | }, |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 440 | "scale": { |
| 441 | "METHODS": ("POST",), |
| 442 | "ROLE_PERMISSION": "ns_instances:id:scale:", |
| 443 | }, |
| 444 | "terminate": { |
| 445 | "METHODS": ("POST",), |
| 446 | "ROLE_PERMISSION": "ns_instances:id:terminate:", |
| 447 | }, |
| 448 | "instantiate": { |
| 449 | "METHODS": ("POST",), |
| 450 | "ROLE_PERMISSION": "ns_instances:id:instantiate:", |
| 451 | }, |
| elumalai | 8e3806c | 2022-04-28 17:26:24 +0530 | [diff] [blame] | 452 | "migrate": { |
| 453 | "METHODS": ("POST",), |
| 454 | "ROLE_PERMISSION": "ns_instances:id:migrate:", |
| 455 | }, |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 456 | "action": { |
| 457 | "METHODS": ("POST",), |
| 458 | "ROLE_PERMISSION": "ns_instances:id:action:", |
| 459 | }, |
| aticig | 544a2ae | 2022-04-05 09:00:17 +0300 | [diff] [blame] | 460 | "update": { |
| 461 | "METHODS": ("POST",), |
| 462 | "ROLE_PERMISSION": "ns_instances:id:update:", |
| 463 | }, |
| govindarajul | 519da48 | 2022-04-29 19:05:22 +0530 | [diff] [blame] | 464 | "verticalscale": { |
| 465 | "METHODS": ("POST",), |
| 466 | "ROLE_PERMISSION": "ns_instances:id:verticalscale:" |
| 467 | }, |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 468 | }, |
| 469 | }, |
| 470 | "ns_lcm_op_occs": { |
| 471 | "METHODS": ("GET",), |
| 472 | "ROLE_PERMISSION": "ns_instances:opps:", |
| 473 | "<ID>": { |
| 474 | "METHODS": ("GET",), |
| 475 | "ROLE_PERMISSION": "ns_instances:opps:id:", |
| 476 | }, |
| 477 | }, |
| 478 | "vnfrs": { |
| 479 | "METHODS": ("GET",), |
| 480 | "ROLE_PERMISSION": "vnf_instances:", |
| 481 | "<ID>": {"METHODS": ("GET",), "ROLE_PERMISSION": "vnf_instances:id:"}, |
| 482 | }, |
| 483 | "vnf_instances": { |
| 484 | "METHODS": ("GET",), |
| 485 | "ROLE_PERMISSION": "vnf_instances:", |
| 486 | "<ID>": {"METHODS": ("GET",), "ROLE_PERMISSION": "vnf_instances:id:"}, |
| 487 | }, |
| 488 | "subscriptions": { |
| 489 | "METHODS": ("GET", "POST"), |
| 490 | "ROLE_PERMISSION": "ns_subscriptions:", |
| 491 | "<ID>": { |
| 492 | "METHODS": ("GET", "DELETE"), |
| 493 | "ROLE_PERMISSION": "ns_subscriptions:id:", |
| 494 | }, |
| 495 | }, |
| tierno | 701018c | 2019-06-25 11:13:14 +0000 | [diff] [blame] | 496 | } |
| 497 | }, |
| almagia | e47b913 | 2022-05-17 14:12:22 +0200 | [diff] [blame] | 498 | "vnflcm": { |
| 499 | "v1": { |
| 500 | "vnf_instances": {"METHODS": ("GET", "POST"), |
| 501 | "ROLE_PERMISSION": "vnflcm_instances:", |
| 502 | "<ID>": {"METHODS": ("GET", "DELETE"), |
| 503 | "ROLE_PERMISSION": "vnflcm_instances:id:", |
| 504 | "scale": {"METHODS": ("POST",), |
| 505 | "ROLE_PERMISSION": "vnflcm_instances:id:scale:" |
| 506 | }, |
| 507 | "terminate": {"METHODS": ("POST",), |
| 508 | "ROLE_PERMISSION": "vnflcm_instances:id:terminate:" |
| 509 | }, |
| 510 | "instantiate": {"METHODS": ("POST",), |
| 511 | "ROLE_PERMISSION": "vnflcm_instances:id:instantiate:" |
| 512 | }, |
| 513 | } |
| 514 | }, |
| 515 | "vnf_lcm_op_occs": {"METHODS": ("GET",), |
| 516 | "ROLE_PERMISSION": "vnf_instances:opps:", |
| 517 | "<ID>": {"METHODS": ("GET",), |
| 518 | "ROLE_PERMISSION": "vnf_instances:opps:id:" |
| 519 | }, |
| 520 | }, |
| selvi.j | f100459 | 2022-04-29 05:42:35 +0000 | [diff] [blame] | 521 | "subscriptions": {"METHODS": ("GET", "POST"), |
| 522 | "ROLE_PERMISSION": "vnflcm_subscriptions:", |
| 523 | "<ID>": {"METHODS": ("GET", "DELETE"), |
| 524 | "ROLE_PERMISSION": "vnflcm_subscriptions:id:" |
| 525 | } |
| 526 | }, |
| almagia | e47b913 | 2022-05-17 14:12:22 +0200 | [diff] [blame] | 527 | } |
| 528 | }, |
| tierno | 701018c | 2019-06-25 11:13:14 +0000 | [diff] [blame] | 529 | "nst": { |
| 530 | "v1": { |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 531 | "netslice_templates_content": { |
| 532 | "METHODS": ("GET", "POST"), |
| 533 | "ROLE_PERMISSION": "slice_templates:", |
| 534 | "<ID>": { |
| 535 | "METHODS": ("GET", "PUT", "DELETE"), |
| 536 | "ROLE_PERMISSION": "slice_templates:id:", |
| 537 | }, |
| 538 | }, |
| 539 | "netslice_templates": { |
| 540 | "METHODS": ("GET", "POST"), |
| 541 | "ROLE_PERMISSION": "slice_templates:", |
| 542 | "<ID>": { |
| 543 | "METHODS": ("GET", "DELETE"), |
| 544 | "TODO": ("PATCH",), |
| 545 | "ROLE_PERMISSION": "slice_templates:id:", |
| 546 | "nst_content": { |
| 547 | "METHODS": ("GET", "PUT"), |
| 548 | "ROLE_PERMISSION": "slice_templates:id:content:", |
| 549 | }, |
| 550 | "nst": { |
| 551 | "METHODS": ("GET",), # descriptor inside package |
| 552 | "ROLE_PERMISSION": "slice_templates:id:content:", |
| 553 | }, |
| 554 | "artifacts": { |
| 555 | "METHODS": ("GET",), |
| 556 | "ROLE_PERMISSION": "slice_templates:id:content:", |
| 557 | "*": None, |
| 558 | }, |
| 559 | }, |
| 560 | }, |
| 561 | "subscriptions": { |
| 562 | "TODO": ("GET", "POST"), |
| 563 | "<ID>": {"TODO": ("GET", "DELETE")}, |
| 564 | }, |
| tierno | 701018c | 2019-06-25 11:13:14 +0000 | [diff] [blame] | 565 | } |
| 566 | }, |
| 567 | "nsilcm": { |
| 568 | "v1": { |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 569 | "netslice_instances_content": { |
| 570 | "METHODS": ("GET", "POST"), |
| 571 | "ROLE_PERMISSION": "slice_instances:", |
| 572 | "<ID>": { |
| 573 | "METHODS": ("GET", "DELETE"), |
| 574 | "ROLE_PERMISSION": "slice_instances:id:", |
| 575 | }, |
| 576 | }, |
| 577 | "netslice_instances": { |
| 578 | "METHODS": ("GET", "POST"), |
| 579 | "ROLE_PERMISSION": "slice_instances:", |
| 580 | "<ID>": { |
| 581 | "METHODS": ("GET", "DELETE"), |
| 582 | "ROLE_PERMISSION": "slice_instances:id:", |
| 583 | "terminate": { |
| 584 | "METHODS": ("POST",), |
| 585 | "ROLE_PERMISSION": "slice_instances:id:terminate:", |
| 586 | }, |
| 587 | "instantiate": { |
| 588 | "METHODS": ("POST",), |
| 589 | "ROLE_PERMISSION": "slice_instances:id:instantiate:", |
| 590 | }, |
| 591 | "action": { |
| 592 | "METHODS": ("POST",), |
| 593 | "ROLE_PERMISSION": "slice_instances:id:action:", |
| 594 | }, |
| 595 | }, |
| 596 | }, |
| 597 | "nsi_lcm_op_occs": { |
| 598 | "METHODS": ("GET",), |
| 599 | "ROLE_PERMISSION": "slice_instances:opps:", |
| 600 | "<ID>": { |
| 601 | "METHODS": ("GET",), |
| 602 | "ROLE_PERMISSION": "slice_instances:opps:id:", |
| 603 | }, |
| 604 | }, |
| tierno | 701018c | 2019-06-25 11:13:14 +0000 | [diff] [blame] | 605 | } |
| 606 | }, |
| 607 | "nspm": { |
| 608 | "v1": { |
| 609 | "pm_jobs": { |
| 610 | "<ID>": { |
| 611 | "reports": { |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 612 | "<ID>": { |
| 613 | "METHODS": ("GET",), |
| 614 | "ROLE_PERMISSION": "reports:id:", |
| 615 | } |
| tierno | 701018c | 2019-06-25 11:13:14 +0000 | [diff] [blame] | 616 | } |
| 617 | }, |
| 618 | }, |
| 619 | }, |
| 620 | }, |
| Atul Agarwal | b6480fc | 2021-03-18 08:19:32 +0000 | [diff] [blame] | 621 | "nsfm": { |
| 622 | "v1": { |
| 623 | "alarms": {"METHODS": ("GET", "PATCH"), |
| 624 | "ROLE_PERMISSION": "alarms:", |
| 625 | "<ID>": {"METHODS": ("GET", "PATCH"), |
| 626 | "ROLE_PERMISSION": "alarms:id:", |
| 627 | }, |
| 628 | } |
| 629 | }, |
| 630 | }, |
| tierno | 701018c | 2019-06-25 11:13:14 +0000 | [diff] [blame] | 631 | } |
| 632 | |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 633 | |
| 634 | class NbiException(Exception): |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 635 | def __init__(self, message, http_code=HTTPStatus.METHOD_NOT_ALLOWED): |
| 636 | Exception.__init__(self, message) |
| 637 | self.http_code = http_code |
| 638 | |
| 639 | |
| 640 | class Server(object): |
| 641 | instance = 0 |
| 642 | # to decode bytes to str |
| 643 | reader = getreader("utf-8") |
| 644 | |
| 645 | def __init__(self): |
| 646 | self.instance += 1 |
| tierno | 701018c | 2019-06-25 11:13:14 +0000 | [diff] [blame] | 647 | self.authenticator = Authenticator(valid_url_methods, valid_query_string) |
| delacruzramo | ad682a5 | 2019-12-10 16:26:34 +0100 | [diff] [blame] | 648 | self.engine = Engine(self.authenticator) |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 649 | |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 650 | def _format_in(self, kwargs): |
| 651 | try: |
| 652 | indata = None |
| 653 | if cherrypy.request.body.length: |
| 654 | error_text = "Invalid input format " |
| 655 | |
| 656 | if "Content-Type" in cherrypy.request.headers: |
| 657 | if "application/json" in cherrypy.request.headers["Content-Type"]: |
| 658 | error_text = "Invalid json format " |
| 659 | indata = json.load(self.reader(cherrypy.request.body)) |
| gcalvino | de4adfe | 2018-10-30 11:46:09 +0100 | [diff] [blame] | 660 | cherrypy.request.headers.pop("Content-File-MD5", None) |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 661 | elif "application/yaml" in cherrypy.request.headers["Content-Type"]: |
| 662 | error_text = "Invalid yaml format " |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 663 | indata = yaml.load( |
| 664 | cherrypy.request.body, Loader=yaml.SafeLoader |
| 665 | ) |
| gcalvino | de4adfe | 2018-10-30 11:46:09 +0100 | [diff] [blame] | 666 | cherrypy.request.headers.pop("Content-File-MD5", None) |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 667 | elif ( |
| 668 | "application/binary" in cherrypy.request.headers["Content-Type"] |
| 669 | or "application/gzip" |
| 670 | in cherrypy.request.headers["Content-Type"] |
| 671 | or "application/zip" in cherrypy.request.headers["Content-Type"] |
| 672 | or "text/plain" in cherrypy.request.headers["Content-Type"] |
| 673 | ): |
| tierno | f27c79b | 2018-03-12 17:08:42 +0100 | [diff] [blame] | 674 | indata = cherrypy.request.body # .read() |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 675 | elif ( |
| 676 | "multipart/form-data" |
| 677 | in cherrypy.request.headers["Content-Type"] |
| 678 | ): |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 679 | if "descriptor_file" in kwargs: |
| 680 | filecontent = kwargs.pop("descriptor_file") |
| 681 | if not filecontent.file: |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 682 | raise NbiException( |
| 683 | "empty file or content", HTTPStatus.BAD_REQUEST |
| 684 | ) |
| tierno | f27c79b | 2018-03-12 17:08:42 +0100 | [diff] [blame] | 685 | indata = filecontent.file # .read() |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 686 | if filecontent.content_type.value: |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 687 | cherrypy.request.headers[ |
| 688 | "Content-Type" |
| 689 | ] = filecontent.content_type.value |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 690 | else: |
| 691 | # raise cherrypy.HTTPError(HTTPStatus.Not_Acceptable, |
| 692 | # "Only 'Content-Type' of type 'application/json' or |
| 693 | # 'application/yaml' for input format are available") |
| 694 | error_text = "Invalid yaml format " |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 695 | indata = yaml.load( |
| 696 | cherrypy.request.body, Loader=yaml.SafeLoader |
| 697 | ) |
| gcalvino | de4adfe | 2018-10-30 11:46:09 +0100 | [diff] [blame] | 698 | cherrypy.request.headers.pop("Content-File-MD5", None) |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 699 | else: |
| 700 | error_text = "Invalid yaml format " |
| delacruzramo | b19cadc | 2019-10-08 10:18:02 +0200 | [diff] [blame] | 701 | indata = yaml.load(cherrypy.request.body, Loader=yaml.SafeLoader) |
| gcalvino | de4adfe | 2018-10-30 11:46:09 +0100 | [diff] [blame] | 702 | cherrypy.request.headers.pop("Content-File-MD5", None) |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 703 | if not indata: |
| 704 | indata = {} |
| 705 | |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 706 | format_yaml = False |
| 707 | if cherrypy.request.headers.get("Query-String-Format") == "yaml": |
| 708 | format_yaml = True |
| 709 | |
| 710 | for k, v in kwargs.items(): |
| 711 | if isinstance(v, str): |
| 712 | if v == "": |
| 713 | kwargs[k] = None |
| 714 | elif format_yaml: |
| 715 | try: |
| delacruzramo | b19cadc | 2019-10-08 10:18:02 +0200 | [diff] [blame] | 716 | kwargs[k] = yaml.load(v, Loader=yaml.SafeLoader) |
| tierno | e128118 | 2018-05-22 12:24:36 +0200 | [diff] [blame] | 717 | except Exception: |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 718 | pass |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 719 | elif ( |
| 720 | k.endswith(".gt") |
| 721 | or k.endswith(".lt") |
| 722 | or k.endswith(".gte") |
| 723 | or k.endswith(".lte") |
| 724 | ): |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 725 | try: |
| 726 | kwargs[k] = int(v) |
| tierno | e128118 | 2018-05-22 12:24:36 +0200 | [diff] [blame] | 727 | except Exception: |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 728 | try: |
| 729 | kwargs[k] = float(v) |
| tierno | e128118 | 2018-05-22 12:24:36 +0200 | [diff] [blame] | 730 | except Exception: |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 731 | pass |
| 732 | elif v.find(",") > 0: |
| 733 | kwargs[k] = v.split(",") |
| 734 | elif isinstance(v, (list, tuple)): |
| 735 | for index in range(0, len(v)): |
| 736 | if v[index] == "": |
| 737 | v[index] = None |
| 738 | elif format_yaml: |
| 739 | try: |
| delacruzramo | b19cadc | 2019-10-08 10:18:02 +0200 | [diff] [blame] | 740 | v[index] = yaml.load(v[index], Loader=yaml.SafeLoader) |
| tierno | e128118 | 2018-05-22 12:24:36 +0200 | [diff] [blame] | 741 | except Exception: |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 742 | pass |
| 743 | |
| tierno | f27c79b | 2018-03-12 17:08:42 +0100 | [diff] [blame] | 744 | return indata |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 745 | except (ValueError, yaml.YAMLError) as exc: |
| 746 | raise NbiException(error_text + str(exc), HTTPStatus.BAD_REQUEST) |
| 747 | except KeyError as exc: |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 748 | raise NbiException( |
| 749 | "Query string error: " + str(exc), HTTPStatus.BAD_REQUEST |
| 750 | ) |
| tierno | b92094f | 2018-05-11 13:44:22 +0200 | [diff] [blame] | 751 | except Exception as exc: |
| 752 | raise NbiException(error_text + str(exc), HTTPStatus.BAD_REQUEST) |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 753 | |
| 754 | @staticmethod |
| tierno | 701018c | 2019-06-25 11:13:14 +0000 | [diff] [blame] | 755 | def _format_out(data, token_info=None, _format=None): |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 756 | """ |
| 757 | return string of dictionary data according to requested json, yaml, xml. By default json |
| tierno | f27c79b | 2018-03-12 17:08:42 +0100 | [diff] [blame] | 758 | :param data: response to be sent. Can be a dict, text or file |
| tierno | 701018c | 2019-06-25 11:13:14 +0000 | [diff] [blame] | 759 | :param token_info: Contains among other username and project |
| tierno | 5792d7d | 2019-08-30 15:37:12 +0000 | [diff] [blame] | 760 | :param _format: The format to be set as Content-Type if data is a file |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 761 | :return: None |
| 762 | """ |
| tierno | 0f98af5 | 2018-03-19 10:28:22 +0100 | [diff] [blame] | 763 | accept = cherrypy.request.headers.get("Accept") |
| tierno | f27c79b | 2018-03-12 17:08:42 +0100 | [diff] [blame] | 764 | if data is None: |
| tierno | 0f98af5 | 2018-03-19 10:28:22 +0100 | [diff] [blame] | 765 | if accept and "text/html" in accept: |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 766 | return html.format( |
| 767 | data, cherrypy.request, cherrypy.response, token_info |
| 768 | ) |
| tierno | 09c073e | 2018-04-26 13:36:48 +0200 | [diff] [blame] | 769 | # cherrypy.response.status = HTTPStatus.NO_CONTENT.value |
| tierno | f27c79b | 2018-03-12 17:08:42 +0100 | [diff] [blame] | 770 | return |
| 771 | elif hasattr(data, "read"): # file object |
| 772 | if _format: |
| 773 | cherrypy.response.headers["Content-Type"] = _format |
| 774 | elif "b" in data.mode: # binariy asssumig zip |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 775 | cherrypy.response.headers["Content-Type"] = "application/zip" |
| tierno | f27c79b | 2018-03-12 17:08:42 +0100 | [diff] [blame] | 776 | else: |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 777 | cherrypy.response.headers["Content-Type"] = "text/plain" |
| tierno | f27c79b | 2018-03-12 17:08:42 +0100 | [diff] [blame] | 778 | # TODO check that cherrypy close file. If not implement pending things to close per thread next |
| 779 | return data |
| tierno | 0f98af5 | 2018-03-19 10:28:22 +0100 | [diff] [blame] | 780 | if accept: |
| Frank Bryden | 02e700c | 2020-06-03 13:34:16 +0000 | [diff] [blame] | 781 | if "text/html" in accept: |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 782 | return html.format( |
| 783 | data, cherrypy.request, cherrypy.response, token_info |
| 784 | ) |
| Frank Bryden | b5422da | 2020-08-10 11:44:11 +0000 | [diff] [blame] | 785 | elif "application/yaml" in accept or "*/*" in accept: |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 786 | pass |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 787 | elif "application/json" in accept or ( |
| 788 | cherrypy.response.status and cherrypy.response.status >= 300 |
| 789 | ): |
| 790 | cherrypy.response.headers[ |
| 791 | "Content-Type" |
| 792 | ] = "application/json; charset=utf-8" |
| Frank Bryden | 02e700c | 2020-06-03 13:34:16 +0000 | [diff] [blame] | 793 | a = json.dumps(data, indent=4) + "\n" |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 794 | return a.encode("utf8") |
| 795 | cherrypy.response.headers["Content-Type"] = "application/yaml" |
| 796 | return yaml.safe_dump( |
| 797 | data, |
| 798 | explicit_start=True, |
| 799 | indent=4, |
| 800 | default_flow_style=False, |
| 801 | tags=False, |
| 802 | encoding="utf-8", |
| 803 | allow_unicode=True, |
| 804 | ) # , canonical=True, default_style='"' |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 805 | |
| 806 | @cherrypy.expose |
| 807 | def index(self, *args, **kwargs): |
| tierno | 701018c | 2019-06-25 11:13:14 +0000 | [diff] [blame] | 808 | token_info = None |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 809 | try: |
| 810 | if cherrypy.request.method == "GET": |
| tierno | 701018c | 2019-06-25 11:13:14 +0000 | [diff] [blame] | 811 | token_info = self.authenticator.authorize() |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 812 | outdata = token_info # Home page |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 813 | else: |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 814 | raise cherrypy.HTTPError( |
| 815 | HTTPStatus.METHOD_NOT_ALLOWED.value, |
| 816 | "Method {} not allowed for tokens".format(cherrypy.request.method), |
| 817 | ) |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 818 | |
| tierno | 701018c | 2019-06-25 11:13:14 +0000 | [diff] [blame] | 819 | return self._format_out(outdata, token_info) |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 820 | |
| Eduardo Sousa | 819d34c | 2018-07-31 01:20:02 +0100 | [diff] [blame] | 821 | except (EngineException, AuthException) as e: |
| tierno | 701018c | 2019-06-25 11:13:14 +0000 | [diff] [blame] | 822 | # cherrypy.log("index Exception {}".format(e)) |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 823 | cherrypy.response.status = e.http_code.value |
| tierno | 701018c | 2019-06-25 11:13:14 +0000 | [diff] [blame] | 824 | return self._format_out("Welcome to OSM!", token_info) |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 825 | |
| 826 | @cherrypy.expose |
| tierno | 55945e7 | 2018-04-06 16:40:27 +0200 | [diff] [blame] | 827 | def version(self, *args, **kwargs): |
| tierno | dfe0957 | 2018-04-24 10:41:10 +0200 | [diff] [blame] | 828 | # TODO consider to remove and provide version using the static version file |
| tierno | 55945e7 | 2018-04-06 16:40:27 +0200 | [diff] [blame] | 829 | try: |
| 830 | if cherrypy.request.method != "GET": |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 831 | raise NbiException( |
| 832 | "Only method GET is allowed", HTTPStatus.METHOD_NOT_ALLOWED |
| 833 | ) |
| tierno | 55945e7 | 2018-04-06 16:40:27 +0200 | [diff] [blame] | 834 | elif args or kwargs: |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 835 | raise NbiException( |
| 836 | "Invalid URL or query string for version", |
| 837 | HTTPStatus.METHOD_NOT_ALLOWED, |
| 838 | ) |
| tierno | 9c63011 | 2019-08-29 14:21:41 +0000 | [diff] [blame] | 839 | # TODO include version of other modules, pick up from some kafka admin message |
| tierno | 5792d7d | 2019-08-30 15:37:12 +0000 | [diff] [blame] | 840 | osm_nbi_version = {"version": nbi_version, "date": nbi_version_date} |
| 841 | return self._format_out(osm_nbi_version) |
| tierno | 55945e7 | 2018-04-06 16:40:27 +0200 | [diff] [blame] | 842 | except NbiException as e: |
| 843 | cherrypy.response.status = e.http_code.value |
| 844 | problem_details = { |
| 845 | "code": e.http_code.name, |
| 846 | "status": e.http_code.value, |
| 847 | "detail": str(e), |
| 848 | } |
| 849 | return self._format_out(problem_details, None) |
| 850 | |
| tierno | 12eac3c | 2020-03-19 23:22:08 +0000 | [diff] [blame] | 851 | def domain(self): |
| 852 | try: |
| 853 | domains = { |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 854 | "user_domain_name": cherrypy.tree.apps["/osm"] |
| 855 | .config["authentication"] |
| 856 | .get("user_domain_name"), |
| 857 | "project_domain_name": cherrypy.tree.apps["/osm"] |
| 858 | .config["authentication"] |
| 859 | .get("project_domain_name"), |
| 860 | } |
| tierno | 12eac3c | 2020-03-19 23:22:08 +0000 | [diff] [blame] | 861 | return self._format_out(domains) |
| 862 | except NbiException as e: |
| 863 | cherrypy.response.status = e.http_code.value |
| 864 | problem_details = { |
| 865 | "code": e.http_code.name, |
| 866 | "status": e.http_code.value, |
| 867 | "detail": str(e), |
| 868 | } |
| 869 | return self._format_out(problem_details, None) |
| 870 | |
| tierno | a503570 | 2019-07-29 08:54:42 +0000 | [diff] [blame] | 871 | @staticmethod |
| 872 | def _format_login(token_info): |
| 873 | """ |
| 874 | Changes cherrypy.request.login to include username/project_name;session so that cherrypy access log will |
| 875 | log this information |
| 876 | :param token_info: Dictionary with token content |
| 877 | :return: None |
| 878 | """ |
| 879 | cherrypy.request.login = token_info.get("username", "-") |
| 880 | if token_info.get("project_name"): |
| 881 | cherrypy.request.login += "/" + token_info["project_name"] |
| 882 | if token_info.get("id"): |
| 883 | cherrypy.request.login += ";session=" + token_info["id"][0:12] |
| 884 | |
| Atul Agarwal | b6480fc | 2021-03-18 08:19:32 +0000 | [diff] [blame] | 885 | # NS Fault Management |
| 886 | @cherrypy.expose |
| 887 | def nsfm(self, version=None, topic=None, uuid=None, project_name=None, ns_id=None, *args, **kwargs): |
| 888 | if topic == 'alarms': |
| 889 | try: |
| 890 | method = cherrypy.request.method |
| 891 | role_permission = self._check_valid_url_method(method, "nsfm", version, topic, None, None, *args) |
| 892 | query_string_operations = self._extract_query_string_operations(kwargs, method) |
| 893 | |
| 894 | self.authenticator.authorize(role_permission, query_string_operations, None) |
| 895 | |
| 896 | # to handle get request |
| 897 | if cherrypy.request.method == 'GET': |
| 898 | # if request is on basis of uuid |
| 899 | if uuid and uuid != 'None': |
| 900 | try: |
| 901 | alarm = self.engine.db.get_one("alarms", {"uuid": uuid}) |
| 902 | alarm_action = self.engine.db.get_one("alarms_action", {"uuid": uuid}) |
| 903 | alarm.update(alarm_action) |
| 904 | vnf = self.engine.db.get_one("vnfrs", {"nsr-id-ref": alarm["tags"]["ns_id"]}) |
| 905 | alarm["vnf-id"] = vnf["_id"] |
| 906 | return self._format_out(str(alarm)) |
| 907 | except Exception: |
| 908 | return self._format_out("Please provide valid alarm uuid") |
| 909 | elif ns_id and ns_id != 'None': |
| 910 | # if request is on basis of ns_id |
| 911 | try: |
| 912 | alarms = self.engine.db.get_list("alarms", {"tags.ns_id": ns_id}) |
| 913 | for alarm in alarms: |
| 914 | alarm_action = self.engine.db.get_one("alarms_action", {"uuid": alarm['uuid']}) |
| 915 | alarm.update(alarm_action) |
| 916 | return self._format_out(str(alarms)) |
| 917 | except Exception: |
| 918 | return self._format_out("Please provide valid ns id") |
| 919 | else: |
| 920 | # to return only alarm which are related to given project |
| 921 | project = self.engine.db.get_one("projects", {"name": project_name}) |
| 922 | project_id = project.get('_id') |
| 923 | ns_list = self.engine.db.get_list("nsrs", {"_admin.projects_read": project_id}) |
| 924 | ns_ids = [] |
| 925 | for ns in ns_list: |
| 926 | ns_ids.append(ns.get("_id")) |
| 927 | alarms = self.engine.db.get_list("alarms") |
| 928 | alarm_list = [alarm for alarm in alarms if alarm["tags"]["ns_id"] in ns_ids] |
| 929 | for alrm in alarm_list: |
| 930 | action = self.engine.db.get_one("alarms_action", {"uuid": alrm.get("uuid")}) |
| 931 | alrm.update(action) |
| 932 | return self._format_out(str(alarm_list)) |
| 933 | # to handle patch request for alarm update |
| 934 | elif cherrypy.request.method == 'PATCH': |
| 935 | data = yaml.load(cherrypy.request.body, Loader=yaml.SafeLoader) |
| 936 | try: |
| 937 | # check if uuid is valid |
| 938 | self.engine.db.get_one("alarms", {"uuid": data.get("uuid")}) |
| 939 | except Exception: |
| 940 | return self._format_out("Please provide valid alarm uuid.") |
| 941 | if data.get("is_enable") is not None: |
| 942 | if data.get("is_enable"): |
| 943 | alarm_status = 'ok' |
| 944 | else: |
| 945 | alarm_status = 'disabled' |
| 946 | self.engine.db.set_one("alarms", {"uuid": data.get("uuid")}, |
| 947 | {"alarm_status": alarm_status}) |
| 948 | else: |
| 949 | self.engine.db.set_one("alarms", {"uuid": data.get("uuid")}, |
| 950 | {"threshold": data.get("threshold")}) |
| 951 | return self._format_out("Alarm updated") |
| 952 | except Exception as e: |
| 953 | cherrypy.response.status = e.http_code.value |
| 954 | if isinstance(e, (NbiException, EngineException, DbException, FsException, MsgException, AuthException, |
| 955 | ValidationError, AuthconnException)): |
| 956 | http_code_value = cherrypy.response.status = e.http_code.value |
| 957 | http_code_name = e.http_code.name |
| 958 | cherrypy.log("Exception {}".format(e)) |
| 959 | else: |
| 960 | http_code_value = cherrypy.response.status = HTTPStatus.BAD_REQUEST.value # INTERNAL_SERVER_ERROR |
| 961 | cherrypy.log("CRITICAL: Exception {}".format(e), traceback=True) |
| 962 | http_code_name = HTTPStatus.BAD_REQUEST.name |
| 963 | problem_details = { |
| 964 | "code": http_code_name, |
| 965 | "status": http_code_value, |
| 966 | "detail": str(e), |
| 967 | } |
| 968 | return self._format_out(problem_details) |
| 969 | |
| tierno | 55945e7 | 2018-04-06 16:40:27 +0200 | [diff] [blame] | 970 | @cherrypy.expose |
| tierno | f27c79b | 2018-03-12 17:08:42 +0100 | [diff] [blame] | 971 | def token(self, method, token_id=None, kwargs=None): |
| tierno | 701018c | 2019-06-25 11:13:14 +0000 | [diff] [blame] | 972 | token_info = None |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 973 | # self.engine.load_dbase(cherrypy.request.app.config) |
| tierno | f27c79b | 2018-03-12 17:08:42 +0100 | [diff] [blame] | 974 | indata = self._format_in(kwargs) |
| 975 | if not isinstance(indata, dict): |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 976 | raise NbiException( |
| 977 | "Expected application/yaml or application/json Content-Type", |
| 978 | HTTPStatus.BAD_REQUEST, |
| 979 | ) |
| tierno | a503570 | 2019-07-29 08:54:42 +0000 | [diff] [blame] | 980 | |
| 981 | if method == "GET": |
| 982 | token_info = self.authenticator.authorize() |
| 983 | # for logging |
| 984 | self._format_login(token_info) |
| 985 | if token_id: |
| 986 | outdata = self.authenticator.get_token(token_info, token_id) |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 987 | else: |
| tierno | a503570 | 2019-07-29 08:54:42 +0000 | [diff] [blame] | 988 | outdata = self.authenticator.get_token_list(token_info) |
| 989 | elif method == "POST": |
| 990 | try: |
| 991 | token_info = self.authenticator.authorize() |
| 992 | except Exception: |
| 993 | token_info = None |
| 994 | if kwargs: |
| 995 | indata.update(kwargs) |
| 996 | # This is needed to log the user when authentication fails |
| 997 | cherrypy.request.login = "{}".format(indata.get("username", "-")) |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 998 | outdata = token_info = self.authenticator.new_token( |
| 999 | token_info, indata, cherrypy.request.remote |
| 1000 | ) |
| 1001 | cherrypy.session["Authorization"] = outdata["_id"] |
| tierno | a503570 | 2019-07-29 08:54:42 +0000 | [diff] [blame] | 1002 | self._set_location_header("admin", "v1", "tokens", outdata["_id"]) |
| 1003 | # for logging |
| 1004 | self._format_login(token_info) |
| selvi.j | a9a1fc8 | 2022-04-04 06:54:30 +0000 | [diff] [blame] | 1005 | # password expiry check |
| 1006 | if self.authenticator.check_password_expiry(outdata): |
| 1007 | outdata = {"id": outdata["id"], |
| 1008 | "message": "change_password", |
| 1009 | "user_id": outdata["user_id"] |
| 1010 | } |
| tierno | a503570 | 2019-07-29 08:54:42 +0000 | [diff] [blame] | 1011 | # cherrypy.response.cookie["Authorization"] = outdata["id"] |
| 1012 | # cherrypy.response.cookie["Authorization"]['expires'] = 3600 |
| 1013 | elif method == "DELETE": |
| 1014 | if not token_id and "id" in kwargs: |
| 1015 | token_id = kwargs["id"] |
| 1016 | elif not token_id: |
| 1017 | token_info = self.authenticator.authorize() |
| 1018 | # for logging |
| 1019 | self._format_login(token_info) |
| 1020 | token_id = token_info["_id"] |
| 1021 | outdata = self.authenticator.del_token(token_id) |
| 1022 | token_info = None |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1023 | cherrypy.session["Authorization"] = "logout" |
| tierno | a503570 | 2019-07-29 08:54:42 +0000 | [diff] [blame] | 1024 | # cherrypy.response.cookie["Authorization"] = token_id |
| 1025 | # cherrypy.response.cookie["Authorization"]['expires'] = 0 |
| 1026 | else: |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1027 | raise NbiException( |
| 1028 | "Method {} not allowed for token".format(method), |
| 1029 | HTTPStatus.METHOD_NOT_ALLOWED, |
| 1030 | ) |
| tierno | a503570 | 2019-07-29 08:54:42 +0000 | [diff] [blame] | 1031 | return self._format_out(outdata, token_info) |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 1032 | |
| 1033 | @cherrypy.expose |
| 1034 | def test(self, *args, **kwargs): |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1035 | if not cherrypy.config.get("server.enable_test") or ( |
| 1036 | isinstance(cherrypy.config["server.enable_test"], str) |
| 1037 | and cherrypy.config["server.enable_test"].lower() == "false" |
| 1038 | ): |
| tierno | 4836bac | 2020-01-15 14:41:48 +0000 | [diff] [blame] | 1039 | cherrypy.response.status = HTTPStatus.METHOD_NOT_ALLOWED.value |
| 1040 | return "test URL is disabled" |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 1041 | thread_info = None |
| tierno | f27c79b | 2018-03-12 17:08:42 +0100 | [diff] [blame] | 1042 | if args and args[0] == "help": |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1043 | return ( |
| 1044 | "<html><pre>\ninit\nfile/<name> download file\ndb-clear/table\nfs-clear[/folder]\nlogin\nlogin2\n" |
| 1045 | "sleep/<time>\nmessage/topic\n</pre></html>" |
| 1046 | ) |
| tierno | f27c79b | 2018-03-12 17:08:42 +0100 | [diff] [blame] | 1047 | |
| 1048 | elif args and args[0] == "init": |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 1049 | try: |
| 1050 | # self.engine.load_dbase(cherrypy.request.app.config) |
| 1051 | self.engine.create_admin() |
| 1052 | return "Done. User 'admin', password 'admin' created" |
| 1053 | except Exception: |
| 1054 | cherrypy.response.status = HTTPStatus.FORBIDDEN.value |
| 1055 | return self._format_out("Database already initialized") |
| tierno | f27c79b | 2018-03-12 17:08:42 +0100 | [diff] [blame] | 1056 | elif args and args[0] == "file": |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1057 | return cherrypy.lib.static.serve_file( |
| 1058 | cherrypy.tree.apps["/osm"].config["storage"]["path"] + "/" + args[1], |
| 1059 | "text/plain", |
| 1060 | "attachment", |
| 1061 | ) |
| tierno | f27c79b | 2018-03-12 17:08:42 +0100 | [diff] [blame] | 1062 | elif args and args[0] == "file2": |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1063 | f_path = ( |
| 1064 | cherrypy.tree.apps["/osm"].config["storage"]["path"] + "/" + args[1] |
| 1065 | ) |
| tierno | f27c79b | 2018-03-12 17:08:42 +0100 | [diff] [blame] | 1066 | f = open(f_path, "r") |
| 1067 | cherrypy.response.headers["Content-type"] = "text/plain" |
| tierno | f27c79b | 2018-03-12 17:08:42 +0100 | [diff] [blame] | 1068 | return f |
| tierno | 55945e7 | 2018-04-06 16:40:27 +0200 | [diff] [blame] | 1069 | |
| tierno | f27c79b | 2018-03-12 17:08:42 +0100 | [diff] [blame] | 1070 | elif len(args) == 2 and args[0] == "db-clear": |
| tierno | f717cbe | 2018-12-03 16:35:42 +0000 | [diff] [blame] | 1071 | deleted_info = self.engine.db.del_list(args[1], kwargs) |
| 1072 | return "{} {} deleted\n".format(deleted_info["deleted"], args[1]) |
| 1073 | elif len(args) and args[0] == "fs-clear": |
| 1074 | if len(args) >= 2: |
| 1075 | folders = (args[1],) |
| 1076 | else: |
| 1077 | folders = self.engine.fs.dir_ls(".") |
| 1078 | for folder in folders: |
| 1079 | self.engine.fs.file_delete(folder) |
| 1080 | return ",".join(folders) + " folders deleted\n" |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 1081 | elif args and args[0] == "login": |
| 1082 | if not cherrypy.request.headers.get("Authorization"): |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1083 | cherrypy.response.headers[ |
| 1084 | "WWW-Authenticate" |
| 1085 | ] = 'Basic realm="Access to OSM site", charset="UTF-8"' |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 1086 | cherrypy.response.status = HTTPStatus.UNAUTHORIZED.value |
| 1087 | elif args and args[0] == "login2": |
| 1088 | if not cherrypy.request.headers.get("Authorization"): |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1089 | cherrypy.response.headers[ |
| 1090 | "WWW-Authenticate" |
| 1091 | ] = 'Bearer realm="Access to OSM site"' |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 1092 | cherrypy.response.status = HTTPStatus.UNAUTHORIZED.value |
| 1093 | elif args and args[0] == "sleep": |
| 1094 | sleep_time = 5 |
| 1095 | try: |
| 1096 | sleep_time = int(args[1]) |
| 1097 | except Exception: |
| 1098 | cherrypy.response.status = HTTPStatus.FORBIDDEN.value |
| 1099 | return self._format_out("Database already initialized") |
| 1100 | thread_info = cherrypy.thread_data |
| 1101 | print(thread_info) |
| 1102 | time.sleep(sleep_time) |
| 1103 | # thread_info |
| 1104 | elif len(args) >= 2 and args[0] == "message": |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 1105 | main_topic = args[1] |
| 1106 | return_text = "<html><pre>{} ->\n".format(main_topic) |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 1107 | try: |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1108 | if cherrypy.request.method == "POST": |
| delacruzramo | b19cadc | 2019-10-08 10:18:02 +0200 | [diff] [blame] | 1109 | to_send = yaml.load(cherrypy.request.body, Loader=yaml.SafeLoader) |
| tierno | 55945e7 | 2018-04-06 16:40:27 +0200 | [diff] [blame] | 1110 | for k, v in to_send.items(): |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 1111 | self.engine.msg.write(main_topic, k, v) |
| tierno | 55945e7 | 2018-04-06 16:40:27 +0200 | [diff] [blame] | 1112 | return_text += " {}: {}\n".format(k, v) |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1113 | elif cherrypy.request.method == "GET": |
| tierno | 55945e7 | 2018-04-06 16:40:27 +0200 | [diff] [blame] | 1114 | for k, v in kwargs.items(): |
| tierno | f1509b2 | 2020-05-12 14:32:37 +0000 | [diff] [blame] | 1115 | v_dict = yaml.load(v, Loader=yaml.SafeLoader) |
| 1116 | self.engine.msg.write(main_topic, k, v_dict) |
| 1117 | return_text += " {}: {}\n".format(k, v_dict) |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 1118 | except Exception as e: |
| tierno | 55945e7 | 2018-04-06 16:40:27 +0200 | [diff] [blame] | 1119 | return_text += "Error: " + str(e) |
| 1120 | return_text += "</pre></html>\n" |
| 1121 | return return_text |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 1122 | |
| 1123 | return_text = ( |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1124 | "<html><pre>\nheaders:\n args: {}\n".format(args) |
| 1125 | + " kwargs: {}\n".format(kwargs) |
| 1126 | + " headers: {}\n".format(cherrypy.request.headers) |
| 1127 | + " path_info: {}\n".format(cherrypy.request.path_info) |
| 1128 | + " query_string: {}\n".format(cherrypy.request.query_string) |
| 1129 | + " session: {}\n".format(cherrypy.session) |
| 1130 | + " cookie: {}\n".format(cherrypy.request.cookie) |
| 1131 | + " method: {}\n".format(cherrypy.request.method) |
| 1132 | + " session: {}\n".format(cherrypy.session.get("fieldname")) |
| 1133 | + " body:\n" |
| 1134 | ) |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 1135 | return_text += " length: {}\n".format(cherrypy.request.body.length) |
| 1136 | if cherrypy.request.body.length: |
| 1137 | return_text += " content: {}\n".format( |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1138 | str( |
| 1139 | cherrypy.request.body.read( |
| 1140 | int(cherrypy.request.headers.get("Content-Length", 0)) |
| 1141 | ) |
| 1142 | ) |
| 1143 | ) |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 1144 | if thread_info: |
| 1145 | return_text += "thread: {}\n".format(thread_info) |
| 1146 | return_text += "</pre></html>" |
| 1147 | return return_text |
| 1148 | |
| tierno | 701018c | 2019-06-25 11:13:14 +0000 | [diff] [blame] | 1149 | @staticmethod |
| 1150 | def _check_valid_url_method(method, *args): |
| tierno | f27c79b | 2018-03-12 17:08:42 +0100 | [diff] [blame] | 1151 | if len(args) < 3: |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1152 | raise NbiException( |
| 1153 | "URL must contain at least 'main_topic/version/topic'", |
| 1154 | HTTPStatus.METHOD_NOT_ALLOWED, |
| 1155 | ) |
| tierno | f27c79b | 2018-03-12 17:08:42 +0100 | [diff] [blame] | 1156 | |
| tierno | 701018c | 2019-06-25 11:13:14 +0000 | [diff] [blame] | 1157 | reference = valid_url_methods |
| tierno | f27c79b | 2018-03-12 17:08:42 +0100 | [diff] [blame] | 1158 | for arg in args: |
| 1159 | if arg is None: |
| 1160 | break |
| 1161 | if not isinstance(reference, dict): |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1162 | raise NbiException( |
| 1163 | "URL contains unexpected extra items '{}'".format(arg), |
| 1164 | HTTPStatus.METHOD_NOT_ALLOWED, |
| 1165 | ) |
| tierno | f27c79b | 2018-03-12 17:08:42 +0100 | [diff] [blame] | 1166 | |
| 1167 | if arg in reference: |
| 1168 | reference = reference[arg] |
| 1169 | elif "<ID>" in reference: |
| 1170 | reference = reference["<ID>"] |
| 1171 | elif "*" in reference: |
| tierno | 74b5358 | 2020-06-18 10:52:37 +0000 | [diff] [blame] | 1172 | # if there is content |
| 1173 | if reference["*"]: |
| 1174 | reference = reference["*"] |
| tierno | f27c79b | 2018-03-12 17:08:42 +0100 | [diff] [blame] | 1175 | break |
| 1176 | else: |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1177 | raise NbiException( |
| 1178 | "Unexpected URL item {}".format(arg), HTTPStatus.METHOD_NOT_ALLOWED |
| 1179 | ) |
| tierno | f27c79b | 2018-03-12 17:08:42 +0100 | [diff] [blame] | 1180 | if "TODO" in reference and method in reference["TODO"]: |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1181 | raise NbiException( |
| 1182 | "Method {} not supported yet for this URL".format(method), |
| 1183 | HTTPStatus.NOT_IMPLEMENTED, |
| 1184 | ) |
| tierno | 2236d20 | 2018-05-16 19:05:16 +0200 | [diff] [blame] | 1185 | elif "METHODS" in reference and method not in reference["METHODS"]: |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1186 | raise NbiException( |
| 1187 | "Method {} not supported for this URL".format(method), |
| 1188 | HTTPStatus.METHOD_NOT_ALLOWED, |
| 1189 | ) |
| tierno | 701018c | 2019-06-25 11:13:14 +0000 | [diff] [blame] | 1190 | return reference["ROLE_PERMISSION"] + method.lower() |
| tierno | f27c79b | 2018-03-12 17:08:42 +0100 | [diff] [blame] | 1191 | |
| 1192 | @staticmethod |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 1193 | def _set_location_header(main_topic, version, topic, id): |
| tierno | f27c79b | 2018-03-12 17:08:42 +0100 | [diff] [blame] | 1194 | """ |
| 1195 | Insert response header Location with the URL of created item base on URL params |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 1196 | :param main_topic: |
| tierno | f27c79b | 2018-03-12 17:08:42 +0100 | [diff] [blame] | 1197 | :param version: |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 1198 | :param topic: |
| tierno | f27c79b | 2018-03-12 17:08:42 +0100 | [diff] [blame] | 1199 | :param id: |
| 1200 | :return: None |
| 1201 | """ |
| 1202 | # Use cherrypy.request.base for absoluted path and make use of request.header HOST just in case behind aNAT |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1203 | cherrypy.response.headers["Location"] = "/osm/{}/{}/{}/{}".format( |
| 1204 | main_topic, version, topic, id |
| 1205 | ) |
| tierno | f27c79b | 2018-03-12 17:08:42 +0100 | [diff] [blame] | 1206 | return |
| 1207 | |
| tierno | 65ca36d | 2019-02-12 19:27:52 +0100 | [diff] [blame] | 1208 | @staticmethod |
| tierno | 701018c | 2019-06-25 11:13:14 +0000 | [diff] [blame] | 1209 | def _extract_query_string_operations(kwargs, method): |
| 1210 | """ |
| 1211 | |
| 1212 | :param kwargs: |
| 1213 | :return: |
| 1214 | """ |
| 1215 | query_string_operations = [] |
| 1216 | if kwargs: |
| 1217 | for qs in ("FORCE", "PUBLIC", "ADMIN", "SET_PROJECT"): |
| 1218 | if qs in kwargs and kwargs[qs].lower() != "false": |
| 1219 | query_string_operations.append(qs.lower() + ":" + method.lower()) |
| 1220 | return query_string_operations |
| 1221 | |
| 1222 | @staticmethod |
| 1223 | def _manage_admin_query(token_info, kwargs, method, _id): |
| tierno | 65ca36d | 2019-02-12 19:27:52 +0100 | [diff] [blame] | 1224 | """ |
| 1225 | Processes the administrator query inputs (if any) of FORCE, ADMIN, PUBLIC, SET_PROJECT |
| 1226 | Check that users has rights to use them and returs the admin_query |
| tierno | 701018c | 2019-06-25 11:13:14 +0000 | [diff] [blame] | 1227 | :param token_info: token_info rights obtained by token |
| tierno | 65ca36d | 2019-02-12 19:27:52 +0100 | [diff] [blame] | 1228 | :param kwargs: query string input. |
| 1229 | :param method: http method: GET, POSST, PUT, ... |
| 1230 | :param _id: |
| 1231 | :return: admin_query dictionary with keys: |
| 1232 | public: True, False or None |
| 1233 | force: True or False |
| 1234 | project_id: tuple with projects used for accessing an element |
| 1235 | set_project: tuple with projects that a created element will belong to |
| 1236 | method: show, list, delete, write |
| 1237 | """ |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1238 | admin_query = { |
| 1239 | "force": False, |
| 1240 | "project_id": (token_info["project_id"],), |
| 1241 | "username": token_info["username"], |
| 1242 | "admin": token_info["admin"], |
| 1243 | "public": None, |
| 1244 | "allow_show_user_project_role": token_info["allow_show_user_project_role"], |
| 1245 | } |
| tierno | 65ca36d | 2019-02-12 19:27:52 +0100 | [diff] [blame] | 1246 | if kwargs: |
| 1247 | # FORCE |
| 1248 | if "FORCE" in kwargs: |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1249 | if ( |
| 1250 | kwargs["FORCE"].lower() != "false" |
| 1251 | ): # if None or True set force to True |
| tierno | 65ca36d | 2019-02-12 19:27:52 +0100 | [diff] [blame] | 1252 | admin_query["force"] = True |
| 1253 | del kwargs["FORCE"] |
| 1254 | # PUBLIC |
| 1255 | if "PUBLIC" in kwargs: |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1256 | if ( |
| 1257 | kwargs["PUBLIC"].lower() != "false" |
| 1258 | ): # if None or True set public to True |
| tierno | 65ca36d | 2019-02-12 19:27:52 +0100 | [diff] [blame] | 1259 | admin_query["public"] = True |
| 1260 | else: |
| 1261 | admin_query["public"] = False |
| 1262 | del kwargs["PUBLIC"] |
| 1263 | # ADMIN |
| 1264 | if "ADMIN" in kwargs: |
| 1265 | behave_as = kwargs.pop("ADMIN") |
| 1266 | if behave_as.lower() != "false": |
| tierno | 701018c | 2019-06-25 11:13:14 +0000 | [diff] [blame] | 1267 | if not token_info["admin"]: |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1268 | raise NbiException( |
| 1269 | "Only admin projects can use 'ADMIN' query string", |
| 1270 | HTTPStatus.UNAUTHORIZED, |
| 1271 | ) |
| 1272 | if ( |
| 1273 | not behave_as or behave_as.lower() == "true" |
| 1274 | ): # convert True, None to empty list |
| tierno | 65ca36d | 2019-02-12 19:27:52 +0100 | [diff] [blame] | 1275 | admin_query["project_id"] = () |
| 1276 | elif isinstance(behave_as, (list, tuple)): |
| 1277 | admin_query["project_id"] = behave_as |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1278 | else: # isinstance(behave_as, str) |
| 1279 | admin_query["project_id"] = (behave_as,) |
| tierno | 65ca36d | 2019-02-12 19:27:52 +0100 | [diff] [blame] | 1280 | if "SET_PROJECT" in kwargs: |
| 1281 | set_project = kwargs.pop("SET_PROJECT") |
| 1282 | if not set_project: |
| 1283 | admin_query["set_project"] = list(admin_query["project_id"]) |
| 1284 | else: |
| 1285 | if isinstance(set_project, str): |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1286 | set_project = (set_project,) |
| tierno | 65ca36d | 2019-02-12 19:27:52 +0100 | [diff] [blame] | 1287 | if admin_query["project_id"]: |
| 1288 | for p in set_project: |
| 1289 | if p not in admin_query["project_id"]: |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1290 | raise NbiException( |
| 1291 | "Unauthorized for 'SET_PROJECT={p}'. Try with 'ADMIN=True' or " |
| 1292 | "'ADMIN='{p}'".format(p=p), |
| 1293 | HTTPStatus.UNAUTHORIZED, |
| 1294 | ) |
| tierno | 65ca36d | 2019-02-12 19:27:52 +0100 | [diff] [blame] | 1295 | admin_query["set_project"] = set_project |
| 1296 | |
| 1297 | # PROJECT_READ |
| 1298 | # if "PROJECT_READ" in kwargs: |
| 1299 | # admin_query["project"] = kwargs.pop("project") |
| tierno | 701018c | 2019-06-25 11:13:14 +0000 | [diff] [blame] | 1300 | # if admin_query["project"] == token_info["project_id"]: |
| tierno | 65ca36d | 2019-02-12 19:27:52 +0100 | [diff] [blame] | 1301 | if method == "GET": |
| 1302 | if _id: |
| 1303 | admin_query["method"] = "show" |
| 1304 | else: |
| 1305 | admin_query["method"] = "list" |
| 1306 | elif method == "DELETE": |
| 1307 | admin_query["method"] = "delete" |
| 1308 | else: |
| 1309 | admin_query["method"] = "write" |
| 1310 | return admin_query |
| 1311 | |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 1312 | @cherrypy.expose |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1313 | def default( |
| 1314 | self, |
| 1315 | main_topic=None, |
| 1316 | version=None, |
| 1317 | topic=None, |
| 1318 | _id=None, |
| 1319 | item=None, |
| 1320 | *args, |
| 1321 | **kwargs |
| 1322 | ): |
| tierno | 701018c | 2019-06-25 11:13:14 +0000 | [diff] [blame] | 1323 | token_info = None |
| tierno | f27c79b | 2018-03-12 17:08:42 +0100 | [diff] [blame] | 1324 | outdata = None |
| 1325 | _format = None |
| tierno | 0f98af5 | 2018-03-19 10:28:22 +0100 | [diff] [blame] | 1326 | method = "DONE" |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 1327 | engine_topic = None |
| tierno | db9dc58 | 2018-06-20 17:27:29 +0200 | [diff] [blame] | 1328 | rollback = [] |
| tierno | 701018c | 2019-06-25 11:13:14 +0000 | [diff] [blame] | 1329 | engine_session = None |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 1330 | try: |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 1331 | if not main_topic or not version or not topic: |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1332 | raise NbiException( |
| 1333 | "URL must contain at least 'main_topic/version/topic'", |
| 1334 | HTTPStatus.METHOD_NOT_ALLOWED, |
| 1335 | ) |
| 1336 | if main_topic not in ( |
| 1337 | "admin", |
| 1338 | "vnfpkgm", |
| 1339 | "nsd", |
| 1340 | "nslcm", |
| 1341 | "pdu", |
| 1342 | "nst", |
| 1343 | "nsilcm", |
| 1344 | "nspm", |
| almagia | e47b913 | 2022-05-17 14:12:22 +0200 | [diff] [blame] | 1345 | "vnflcm", |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1346 | ): |
| 1347 | raise NbiException( |
| 1348 | "URL main_topic '{}' not supported".format(main_topic), |
| 1349 | HTTPStatus.METHOD_NOT_ALLOWED, |
| 1350 | ) |
| 1351 | if version != "v1": |
| 1352 | raise NbiException( |
| 1353 | "URL version '{}' not supported".format(version), |
| 1354 | HTTPStatus.METHOD_NOT_ALLOWED, |
| 1355 | ) |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 1356 | |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1357 | if ( |
| 1358 | kwargs |
| 1359 | and "METHOD" in kwargs |
| 1360 | and kwargs["METHOD"] in ("PUT", "POST", "DELETE", "GET", "PATCH") |
| 1361 | ): |
| tierno | f27c79b | 2018-03-12 17:08:42 +0100 | [diff] [blame] | 1362 | method = kwargs.pop("METHOD") |
| 1363 | else: |
| 1364 | method = cherrypy.request.method |
| tierno | 65ca36d | 2019-02-12 19:27:52 +0100 | [diff] [blame] | 1365 | |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1366 | role_permission = self._check_valid_url_method( |
| 1367 | method, main_topic, version, topic, _id, item, *args |
| 1368 | ) |
| 1369 | query_string_operations = self._extract_query_string_operations( |
| 1370 | kwargs, method |
| 1371 | ) |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 1372 | if main_topic == "admin" and topic == "tokens": |
| tierno | f27c79b | 2018-03-12 17:08:42 +0100 | [diff] [blame] | 1373 | return self.token(method, _id, kwargs) |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1374 | token_info = self.authenticator.authorize( |
| 1375 | role_permission, query_string_operations, _id |
| 1376 | ) |
| tierno | 12eac3c | 2020-03-19 23:22:08 +0000 | [diff] [blame] | 1377 | if main_topic == "admin" and topic == "domains": |
| 1378 | return self.domain() |
| tierno | 701018c | 2019-06-25 11:13:14 +0000 | [diff] [blame] | 1379 | engine_session = self._manage_admin_query(token_info, kwargs, method, _id) |
| tierno | f27c79b | 2018-03-12 17:08:42 +0100 | [diff] [blame] | 1380 | indata = self._format_in(kwargs) |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 1381 | engine_topic = topic |
| preethika.p | 329b818 | 2020-04-22 12:25:39 +0530 | [diff] [blame] | 1382 | |
| vijay.r | 35ef2f7 | 2019-04-30 17:55:49 +0530 | [diff] [blame] | 1383 | if item and topic != "pm_jobs": |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 1384 | engine_topic = item |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 1385 | |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 1386 | if main_topic == "nsd": |
| 1387 | engine_topic = "nsds" |
| 1388 | elif main_topic == "vnfpkgm": |
| 1389 | engine_topic = "vnfds" |
| delacruzramo | 271d200 | 2019-12-02 21:00:37 +0100 | [diff] [blame] | 1390 | if topic == "vnfpkg_op_occs": |
| 1391 | engine_topic = "vnfpkgops" |
| 1392 | if topic == "vnf_packages" and item == "action": |
| 1393 | engine_topic = "vnfpkgops" |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 1394 | elif main_topic == "nslcm": |
| 1395 | engine_topic = "nsrs" |
| 1396 | if topic == "ns_lcm_op_occs": |
| 1397 | engine_topic = "nslcmops" |
| 1398 | if topic == "vnfrs" or topic == "vnf_instances": |
| 1399 | engine_topic = "vnfrs" |
| almagia | e47b913 | 2022-05-17 14:12:22 +0200 | [diff] [blame] | 1400 | elif main_topic == "vnflcm": |
| 1401 | if topic == "vnf_lcm_op_occs": |
| 1402 | engine_topic = "vnflcmops" |
| garciadeblas | 9750c5a | 2018-10-15 16:20:35 +0200 | [diff] [blame] | 1403 | elif main_topic == "nst": |
| 1404 | engine_topic = "nsts" |
| 1405 | elif main_topic == "nsilcm": |
| 1406 | engine_topic = "nsis" |
| 1407 | if topic == "nsi_lcm_op_occs": |
| delacruzramo | c061f56 | 2019-04-05 11:00:02 +0200 | [diff] [blame] | 1408 | engine_topic = "nsilcmops" |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 1409 | elif main_topic == "pdu": |
| 1410 | engine_topic = "pdus" |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1411 | if ( |
| 1412 | engine_topic == "vims" |
| 1413 | ): # TODO this is for backward compatibility, it will be removed in the future |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 1414 | engine_topic = "vim_accounts" |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 1415 | |
| preethika.p | 329b818 | 2020-04-22 12:25:39 +0530 | [diff] [blame] | 1416 | if topic == "subscriptions": |
| 1417 | engine_topic = main_topic + "_" + topic |
| 1418 | |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 1419 | if method == "GET": |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1420 | if item in ( |
| 1421 | "nsd_content", |
| 1422 | "package_content", |
| 1423 | "artifacts", |
| 1424 | "vnfd", |
| 1425 | "nsd", |
| 1426 | "nst", |
| 1427 | "nst_content", |
| 1428 | ): |
| garciadeblas | 9750c5a | 2018-10-15 16:20:35 +0200 | [diff] [blame] | 1429 | if item in ("vnfd", "nsd", "nst"): |
| tierno | f27c79b | 2018-03-12 17:08:42 +0100 | [diff] [blame] | 1430 | path = "$DESCRIPTOR" |
| 1431 | elif args: |
| 1432 | path = args |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 1433 | elif item == "artifacts": |
| tierno | f27c79b | 2018-03-12 17:08:42 +0100 | [diff] [blame] | 1434 | path = () |
| 1435 | else: |
| 1436 | path = None |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1437 | file, _format = self.engine.get_file( |
| 1438 | engine_session, |
| 1439 | engine_topic, |
| 1440 | _id, |
| 1441 | path, |
| 1442 | cherrypy.request.headers.get("Accept"), |
| 1443 | ) |
| tierno | f27c79b | 2018-03-12 17:08:42 +0100 | [diff] [blame] | 1444 | outdata = file |
| 1445 | elif not _id: |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1446 | outdata = self.engine.get_item_list( |
| 1447 | engine_session, engine_topic, kwargs, api_req=True |
| 1448 | ) |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 1449 | else: |
| vijay.r | 35ef2f7 | 2019-04-30 17:55:49 +0530 | [diff] [blame] | 1450 | if item == "reports": |
| 1451 | # TODO check that project_id (_id in this context) has permissions |
| 1452 | _id = args[0] |
| K Sai Kiran | 5758955 | 2021-01-27 21:38:34 +0530 | [diff] [blame] | 1453 | filter_q = None |
| 1454 | if "vcaStatusRefresh" in kwargs: |
| 1455 | filter_q = {"vcaStatusRefresh": kwargs["vcaStatusRefresh"]} |
| 1456 | outdata = self.engine.get_item(engine_session, engine_topic, _id, filter_q, True) |
| delacruzramo | 271d200 | 2019-12-02 21:00:37 +0100 | [diff] [blame] | 1457 | |
| tierno | f27c79b | 2018-03-12 17:08:42 +0100 | [diff] [blame] | 1458 | elif method == "POST": |
| tierno | bdebce9 | 2019-07-01 15:36:49 +0000 | [diff] [blame] | 1459 | cherrypy.response.status = HTTPStatus.CREATED.value |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1460 | if topic in ( |
| 1461 | "ns_descriptors_content", |
| 1462 | "vnf_packages_content", |
| 1463 | "netslice_templates_content", |
| 1464 | ): |
| tierno | f27c79b | 2018-03-12 17:08:42 +0100 | [diff] [blame] | 1465 | _id = cherrypy.request.headers.get("Transaction-Id") |
| 1466 | if not _id: |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1467 | _id, _ = self.engine.new_item( |
| 1468 | rollback, |
| 1469 | engine_session, |
| 1470 | engine_topic, |
| 1471 | {}, |
| 1472 | None, |
| 1473 | cherrypy.request.headers, |
| 1474 | ) |
| 1475 | completed = self.engine.upload_content( |
| 1476 | engine_session, |
| 1477 | engine_topic, |
| 1478 | _id, |
| 1479 | indata, |
| 1480 | kwargs, |
| 1481 | cherrypy.request.headers, |
| 1482 | ) |
| tierno | f27c79b | 2018-03-12 17:08:42 +0100 | [diff] [blame] | 1483 | if completed: |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 1484 | self._set_location_header(main_topic, version, topic, _id) |
| tierno | f27c79b | 2018-03-12 17:08:42 +0100 | [diff] [blame] | 1485 | else: |
| 1486 | cherrypy.response.headers["Transaction-Id"] = _id |
| 1487 | outdata = {"id": _id} |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 1488 | elif topic == "ns_instances_content": |
| 1489 | # creates NSR |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1490 | _id, _ = self.engine.new_item( |
| 1491 | rollback, engine_session, engine_topic, indata, kwargs |
| 1492 | ) |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 1493 | # creates nslcmop |
| 1494 | indata["lcmOperationType"] = "instantiate" |
| 1495 | indata["nsInstanceId"] = _id |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1496 | nslcmop_id, _ = self.engine.new_item( |
| 1497 | rollback, engine_session, "nslcmops", indata, None |
| 1498 | ) |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 1499 | self._set_location_header(main_topic, version, topic, _id) |
| kuuse | 078f55e | 2019-05-16 19:24:21 +0200 | [diff] [blame] | 1500 | outdata = {"id": _id, "nslcmop_id": nslcmop_id} |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 1501 | elif topic == "ns_instances" and item: |
| 1502 | indata["lcmOperationType"] = item |
| 1503 | indata["nsInstanceId"] = _id |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1504 | _id, _ = self.engine.new_item( |
| 1505 | rollback, engine_session, "nslcmops", indata, kwargs |
| 1506 | ) |
| 1507 | self._set_location_header( |
| 1508 | main_topic, version, "ns_lcm_op_occs", _id |
| 1509 | ) |
| tierno | 65acb4d | 2018-04-06 16:42:40 +0200 | [diff] [blame] | 1510 | outdata = {"id": _id} |
| 1511 | cherrypy.response.status = HTTPStatus.ACCEPTED.value |
| garciadeblas | 9750c5a | 2018-10-15 16:20:35 +0200 | [diff] [blame] | 1512 | elif topic == "netslice_instances_content": |
| Felipe Vicens | 07f3172 | 2018-10-29 15:16:44 +0100 | [diff] [blame] | 1513 | # creates NetSlice_Instance_record (NSIR) |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1514 | _id, _ = self.engine.new_item( |
| 1515 | rollback, engine_session, engine_topic, indata, kwargs |
| 1516 | ) |
| Felipe Vicens | 07f3172 | 2018-10-29 15:16:44 +0100 | [diff] [blame] | 1517 | self._set_location_header(main_topic, version, topic, _id) |
| garciadeblas | 9750c5a | 2018-10-15 16:20:35 +0200 | [diff] [blame] | 1518 | indata["lcmOperationType"] = "instantiate" |
| Felipe Vicens | 126af57 | 2019-06-05 19:13:04 +0200 | [diff] [blame] | 1519 | indata["netsliceInstanceId"] = _id |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1520 | nsilcmop_id, _ = self.engine.new_item( |
| 1521 | rollback, engine_session, "nsilcmops", indata, kwargs |
| 1522 | ) |
| kuuse | 078f55e | 2019-05-16 19:24:21 +0200 | [diff] [blame] | 1523 | outdata = {"id": _id, "nsilcmop_id": nsilcmop_id} |
| garciadeblas | 9750c5a | 2018-10-15 16:20:35 +0200 | [diff] [blame] | 1524 | elif topic == "netslice_instances" and item: |
| 1525 | indata["lcmOperationType"] = item |
| Felipe Vicens | 126af57 | 2019-06-05 19:13:04 +0200 | [diff] [blame] | 1526 | indata["netsliceInstanceId"] = _id |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1527 | _id, _ = self.engine.new_item( |
| 1528 | rollback, engine_session, "nsilcmops", indata, kwargs |
| 1529 | ) |
| 1530 | self._set_location_header( |
| 1531 | main_topic, version, "nsi_lcm_op_occs", _id |
| 1532 | ) |
| garciadeblas | 9750c5a | 2018-10-15 16:20:35 +0200 | [diff] [blame] | 1533 | outdata = {"id": _id} |
| 1534 | cherrypy.response.status = HTTPStatus.ACCEPTED.value |
| delacruzramo | 271d200 | 2019-12-02 21:00:37 +0100 | [diff] [blame] | 1535 | elif topic == "vnf_packages" and item == "action": |
| 1536 | indata["lcmOperationType"] = item |
| 1537 | indata["vnfPkgId"] = _id |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1538 | _id, _ = self.engine.new_item( |
| 1539 | rollback, engine_session, "vnfpkgops", indata, kwargs |
| 1540 | ) |
| 1541 | self._set_location_header( |
| 1542 | main_topic, version, "vnfpkg_op_occs", _id |
| 1543 | ) |
| delacruzramo | 271d200 | 2019-12-02 21:00:37 +0100 | [diff] [blame] | 1544 | outdata = {"id": _id} |
| 1545 | cherrypy.response.status = HTTPStatus.ACCEPTED.value |
| preethika.p | 329b818 | 2020-04-22 12:25:39 +0530 | [diff] [blame] | 1546 | elif topic == "subscriptions": |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1547 | _id, _ = self.engine.new_item( |
| 1548 | rollback, engine_session, engine_topic, indata, kwargs |
| 1549 | ) |
| preethika.p | 329b818 | 2020-04-22 12:25:39 +0530 | [diff] [blame] | 1550 | self._set_location_header(main_topic, version, topic, _id) |
| 1551 | link = {} |
| 1552 | link["self"] = cherrypy.response.headers["Location"] |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1553 | outdata = { |
| 1554 | "id": _id, |
| 1555 | "filter": indata["filter"], |
| 1556 | "callbackUri": indata["CallbackUri"], |
| 1557 | "_links": link, |
| 1558 | } |
| preethika.p | 329b818 | 2020-04-22 12:25:39 +0530 | [diff] [blame] | 1559 | cherrypy.response.status = HTTPStatus.CREATED.value |
| almagia | e47b913 | 2022-05-17 14:12:22 +0200 | [diff] [blame] | 1560 | elif topic == "vnf_instances" and item: |
| 1561 | indata["lcmOperationType"] = item |
| 1562 | indata["vnfInstanceId"] = _id |
| 1563 | _id, _ = self.engine.new_item(rollback, engine_session, "vnflcmops", indata, kwargs) |
| 1564 | self._set_location_header(main_topic, version, "vnf_lcm_op_occs", _id) |
| 1565 | outdata = {"id": _id} |
| 1566 | cherrypy.response.status = HTTPStatus.ACCEPTED.value |
| tierno | f27c79b | 2018-03-12 17:08:42 +0100 | [diff] [blame] | 1567 | else: |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1568 | _id, op_id = self.engine.new_item( |
| 1569 | rollback, |
| 1570 | engine_session, |
| 1571 | engine_topic, |
| 1572 | indata, |
| 1573 | kwargs, |
| 1574 | cherrypy.request.headers, |
| 1575 | ) |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 1576 | self._set_location_header(main_topic, version, topic, _id) |
| tierno | f27c79b | 2018-03-12 17:08:42 +0100 | [diff] [blame] | 1577 | outdata = {"id": _id} |
| tierno | bdebce9 | 2019-07-01 15:36:49 +0000 | [diff] [blame] | 1578 | if op_id: |
| 1579 | outdata["op_id"] = op_id |
| 1580 | cherrypy.response.status = HTTPStatus.ACCEPTED.value |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 1581 | # TODO form NsdInfo when topic in ("ns_descriptors", "vnf_packages") |
| tierno | 09c073e | 2018-04-26 13:36:48 +0200 | [diff] [blame] | 1582 | |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 1583 | elif method == "DELETE": |
| 1584 | if not _id: |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1585 | outdata = self.engine.del_item_list( |
| 1586 | engine_session, engine_topic, kwargs |
| 1587 | ) |
| tierno | 09c073e | 2018-04-26 13:36:48 +0200 | [diff] [blame] | 1588 | cherrypy.response.status = HTTPStatus.OK.value |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 1589 | else: # len(args) > 1 |
| tierno | 2257743 | 2020-04-08 15:16:57 +0000 | [diff] [blame] | 1590 | # for NS NSI generate an operation |
| 1591 | op_id = None |
| tierno | 701018c | 2019-06-25 11:13:14 +0000 | [diff] [blame] | 1592 | if topic == "ns_instances_content" and not engine_session["force"]: |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 1593 | nslcmop_desc = { |
| 1594 | "lcmOperationType": "terminate", |
| 1595 | "nsInstanceId": _id, |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1596 | "autoremove": True, |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 1597 | } |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1598 | op_id, _ = self.engine.new_item( |
| 1599 | rollback, engine_session, "nslcmops", nslcmop_desc, kwargs |
| 1600 | ) |
| tierno | 2257743 | 2020-04-08 15:16:57 +0000 | [diff] [blame] | 1601 | if op_id: |
| 1602 | outdata = {"_id": op_id} |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1603 | elif ( |
| 1604 | topic == "netslice_instances_content" |
| 1605 | and not engine_session["force"] |
| 1606 | ): |
| garciadeblas | 9750c5a | 2018-10-15 16:20:35 +0200 | [diff] [blame] | 1607 | nsilcmop_desc = { |
| 1608 | "lcmOperationType": "terminate", |
| Felipe Vicens | 126af57 | 2019-06-05 19:13:04 +0200 | [diff] [blame] | 1609 | "netsliceInstanceId": _id, |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1610 | "autoremove": True, |
| garciadeblas | 9750c5a | 2018-10-15 16:20:35 +0200 | [diff] [blame] | 1611 | } |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1612 | op_id, _ = self.engine.new_item( |
| 1613 | rollback, engine_session, "nsilcmops", nsilcmop_desc, None |
| 1614 | ) |
| tierno | 2257743 | 2020-04-08 15:16:57 +0000 | [diff] [blame] | 1615 | if op_id: |
| 1616 | outdata = {"_id": op_id} |
| 1617 | # if there is not any deletion in process, delete |
| 1618 | if not op_id: |
| 1619 | op_id = self.engine.del_item(engine_session, engine_topic, _id) |
| 1620 | if op_id: |
| 1621 | outdata = {"op_id": op_id} |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1622 | cherrypy.response.status = ( |
| 1623 | HTTPStatus.ACCEPTED.value |
| 1624 | if op_id |
| 1625 | else HTTPStatus.NO_CONTENT.value |
| 1626 | ) |
| tierno | 09c073e | 2018-04-26 13:36:48 +0200 | [diff] [blame] | 1627 | |
| tierno | 7ae1011 | 2018-05-18 14:36:02 +0200 | [diff] [blame] | 1628 | elif method in ("PUT", "PATCH"): |
| tierno | bdebce9 | 2019-07-01 15:36:49 +0000 | [diff] [blame] | 1629 | op_id = None |
| tierno | 701018c | 2019-06-25 11:13:14 +0000 | [diff] [blame] | 1630 | if not indata and not kwargs and not engine_session.get("set_project"): |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1631 | raise NbiException( |
| 1632 | "Nothing to update. Provide payload and/or query string", |
| 1633 | HTTPStatus.BAD_REQUEST, |
| 1634 | ) |
| 1635 | if ( |
| 1636 | item in ("nsd_content", "package_content", "nst_content") |
| 1637 | and method == "PUT" |
| 1638 | ): |
| 1639 | completed = self.engine.upload_content( |
| 1640 | engine_session, |
| 1641 | engine_topic, |
| 1642 | _id, |
| 1643 | indata, |
| 1644 | kwargs, |
| 1645 | cherrypy.request.headers, |
| 1646 | ) |
| tierno | f27c79b | 2018-03-12 17:08:42 +0100 | [diff] [blame] | 1647 | if not completed: |
| 1648 | cherrypy.response.headers["Transaction-Id"] = id |
| tierno | f27c79b | 2018-03-12 17:08:42 +0100 | [diff] [blame] | 1649 | else: |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1650 | op_id = self.engine.edit_item( |
| 1651 | engine_session, engine_topic, _id, indata, kwargs |
| 1652 | ) |
| tierno | bdebce9 | 2019-07-01 15:36:49 +0000 | [diff] [blame] | 1653 | |
| 1654 | if op_id: |
| 1655 | cherrypy.response.status = HTTPStatus.ACCEPTED.value |
| 1656 | outdata = {"op_id": op_id} |
| 1657 | else: |
| 1658 | cherrypy.response.status = HTTPStatus.NO_CONTENT.value |
| 1659 | outdata = None |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 1660 | else: |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1661 | raise NbiException( |
| 1662 | "Method {} not allowed".format(method), |
| 1663 | HTTPStatus.METHOD_NOT_ALLOWED, |
| 1664 | ) |
| tierno | a6bb45d | 2019-06-14 09:45:39 +0000 | [diff] [blame] | 1665 | |
| 1666 | # if Role information changes, it is needed to reload the information of roles |
| 1667 | if topic == "roles" and method != "GET": |
| 1668 | self.authenticator.load_operation_to_allowed_roles() |
| delacruzramo | ad682a5 | 2019-12-10 16:26:34 +0100 | [diff] [blame] | 1669 | |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1670 | if ( |
| 1671 | topic == "projects" |
| 1672 | and method == "DELETE" |
| 1673 | or topic in ["users", "roles"] |
| 1674 | and method in ["PUT", "PATCH", "DELETE"] |
| 1675 | ): |
| delacruzramo | ad682a5 | 2019-12-10 16:26:34 +0100 | [diff] [blame] | 1676 | self.authenticator.remove_token_from_cache() |
| 1677 | |
| tierno | 701018c | 2019-06-25 11:13:14 +0000 | [diff] [blame] | 1678 | return self._format_out(outdata, token_info, _format) |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 1679 | except Exception as e: |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1680 | if isinstance( |
| 1681 | e, |
| 1682 | ( |
| 1683 | NbiException, |
| 1684 | EngineException, |
| 1685 | DbException, |
| 1686 | FsException, |
| 1687 | MsgException, |
| 1688 | AuthException, |
| 1689 | ValidationError, |
| 1690 | AuthconnException, |
| 1691 | ), |
| 1692 | ): |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 1693 | http_code_value = cherrypy.response.status = e.http_code.value |
| 1694 | http_code_name = e.http_code.name |
| 1695 | cherrypy.log("Exception {}".format(e)) |
| 1696 | else: |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1697 | http_code_value = ( |
| 1698 | cherrypy.response.status |
| 1699 | ) = HTTPStatus.BAD_REQUEST.value # INTERNAL_SERVER_ERROR |
| Felipe Vicens | e36ab85 | 2018-11-23 14:12:09 +0100 | [diff] [blame] | 1700 | cherrypy.log("CRITICAL: Exception {}".format(e), traceback=True) |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 1701 | http_code_name = HTTPStatus.BAD_REQUEST.name |
| tierno | 3ace63c | 2018-05-03 17:51:43 +0200 | [diff] [blame] | 1702 | if hasattr(outdata, "close"): # is an open file |
| 1703 | outdata.close() |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 1704 | error_text = str(e) |
| 1705 | rollback.reverse() |
| tierno | db9dc58 | 2018-06-20 17:27:29 +0200 | [diff] [blame] | 1706 | for rollback_item in rollback: |
| tierno | 3ace63c | 2018-05-03 17:51:43 +0200 | [diff] [blame] | 1707 | try: |
| tierno | cc10343 | 2018-10-19 14:10:35 +0200 | [diff] [blame] | 1708 | if rollback_item.get("operation") == "set": |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1709 | self.engine.db.set_one( |
| 1710 | rollback_item["topic"], |
| 1711 | {"_id": rollback_item["_id"]}, |
| 1712 | rollback_item["content"], |
| 1713 | fail_on_empty=False, |
| 1714 | ) |
| preethika.p | 329b818 | 2020-04-22 12:25:39 +0530 | [diff] [blame] | 1715 | elif rollback_item.get("operation") == "del_list": |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1716 | self.engine.db.del_list( |
| 1717 | rollback_item["topic"], |
| 1718 | rollback_item["filter"], |
| 1719 | fail_on_empty=False, |
| 1720 | ) |
| tierno | cc10343 | 2018-10-19 14:10:35 +0200 | [diff] [blame] | 1721 | else: |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1722 | self.engine.db.del_one( |
| 1723 | rollback_item["topic"], |
| 1724 | {"_id": rollback_item["_id"]}, |
| 1725 | fail_on_empty=False, |
| 1726 | ) |
| tierno | 3ace63c | 2018-05-03 17:51:43 +0200 | [diff] [blame] | 1727 | except Exception as e2: |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1728 | rollback_error_text = "Rollback Exception {}: {}".format( |
| 1729 | rollback_item, e2 |
| 1730 | ) |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 1731 | cherrypy.log(rollback_error_text) |
| 1732 | error_text += ". " + rollback_error_text |
| 1733 | # if isinstance(e, MsgException): |
| 1734 | # error_text = "{} has been '{}' but other modules cannot be informed because an error on bus".format( |
| 1735 | # engine_topic[:-1], method, error_text) |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 1736 | problem_details = { |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 1737 | "code": http_code_name, |
| 1738 | "status": http_code_value, |
| 1739 | "detail": error_text, |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 1740 | } |
| tierno | 701018c | 2019-06-25 11:13:14 +0000 | [diff] [blame] | 1741 | return self._format_out(problem_details, token_info) |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 1742 | # raise cherrypy.HTTPError(e.http_code.value, str(e)) |
| tierno | a503570 | 2019-07-29 08:54:42 +0000 | [diff] [blame] | 1743 | finally: |
| 1744 | if token_info: |
| 1745 | self._format_login(token_info) |
| 1746 | if method in ("PUT", "PATCH", "POST") and isinstance(outdata, dict): |
| 1747 | for logging_id in ("id", "op_id", "nsilcmop_id", "nslcmop_id"): |
| 1748 | if outdata.get(logging_id): |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1749 | cherrypy.request.login += ";{}={}".format( |
| 1750 | logging_id, outdata[logging_id][:36] |
| 1751 | ) |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 1752 | |
| 1753 | |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 1754 | def _start_service(): |
| 1755 | """ |
| 1756 | Callback function called when cherrypy.engine starts |
| 1757 | Override configuration with env variables |
| 1758 | Set database, storage, message configuration |
| 1759 | Init database with admin/admin user password |
| 1760 | """ |
| tierno | 932499c | 2019-01-28 17:28:10 +0000 | [diff] [blame] | 1761 | global nbi_server |
| 1762 | global subscription_thread |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 1763 | cherrypy.log.error("Starting osm_nbi") |
| 1764 | # update general cherrypy configuration |
| 1765 | update_dict = {} |
| 1766 | |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1767 | engine_config = cherrypy.tree.apps["/osm"].config |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 1768 | for k, v in environ.items(): |
| 1769 | if not k.startswith("OSMNBI_"): |
| 1770 | continue |
| tierno | e128118 | 2018-05-22 12:24:36 +0200 | [diff] [blame] | 1771 | k1, _, k2 = k[7:].lower().partition("_") |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 1772 | if not k2: |
| 1773 | continue |
| 1774 | try: |
| 1775 | # update static configuration |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1776 | if k == "OSMNBI_STATIC_DIR": |
| 1777 | engine_config["/static"]["tools.staticdir.dir"] = v |
| 1778 | engine_config["/static"]["tools.staticdir.on"] = True |
| 1779 | elif k == "OSMNBI_SOCKET_PORT" or k == "OSMNBI_SERVER_PORT": |
| 1780 | update_dict["server.socket_port"] = int(v) |
| 1781 | elif k == "OSMNBI_SOCKET_HOST" or k == "OSMNBI_SERVER_HOST": |
| 1782 | update_dict["server.socket_host"] = v |
| tierno | f5298be | 2018-05-16 14:43:57 +0200 | [diff] [blame] | 1783 | elif k1 in ("server", "test", "auth", "log"): |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1784 | update_dict[k1 + "." + k2] = v |
| Eduardo Sousa | 819d34c | 2018-07-31 01:20:02 +0100 | [diff] [blame] | 1785 | elif k1 in ("message", "database", "storage", "authentication"): |
| tierno | f5298be | 2018-05-16 14:43:57 +0200 | [diff] [blame] | 1786 | # k2 = k2.replace('_', '.') |
| Eduardo Sousa | 819d34c | 2018-07-31 01:20:02 +0100 | [diff] [blame] | 1787 | if k2 in ("port", "db_port"): |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 1788 | engine_config[k1][k2] = int(v) |
| 1789 | else: |
| 1790 | engine_config[k1][k2] = v |
| Eduardo Sousa | 819d34c | 2018-07-31 01:20:02 +0100 | [diff] [blame] | 1791 | |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 1792 | except ValueError as e: |
| 1793 | cherrypy.log.error("Ignoring environ '{}': " + str(e)) |
| 1794 | except Exception as e: |
| 1795 | cherrypy.log.warn("skipping environ '{}' on exception '{}'".format(k, e)) |
| 1796 | |
| 1797 | if update_dict: |
| 1798 | cherrypy.config.update(update_dict) |
| tierno | f5298be | 2018-05-16 14:43:57 +0200 | [diff] [blame] | 1799 | engine_config["global"].update(update_dict) |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 1800 | |
| 1801 | # logging cherrypy |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1802 | log_format_simple = ( |
| 1803 | "%(asctime)s %(levelname)s %(name)s %(filename)s:%(lineno)s %(message)s" |
| 1804 | ) |
| 1805 | log_formatter_simple = logging.Formatter( |
| 1806 | log_format_simple, datefmt="%Y-%m-%dT%H:%M:%S" |
| 1807 | ) |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 1808 | logger_server = logging.getLogger("cherrypy.error") |
| 1809 | logger_access = logging.getLogger("cherrypy.access") |
| 1810 | logger_cherry = logging.getLogger("cherrypy") |
| 1811 | logger_nbi = logging.getLogger("nbi") |
| 1812 | |
| tierno | f5298be | 2018-05-16 14:43:57 +0200 | [diff] [blame] | 1813 | if "log.file" in engine_config["global"]: |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1814 | file_handler = logging.handlers.RotatingFileHandler( |
| 1815 | engine_config["global"]["log.file"], maxBytes=100e6, backupCount=9, delay=0 |
| 1816 | ) |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 1817 | file_handler.setFormatter(log_formatter_simple) |
| 1818 | logger_cherry.addHandler(file_handler) |
| 1819 | logger_nbi.addHandler(file_handler) |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 1820 | # log always to standard output |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1821 | for format_, logger in { |
| 1822 | "nbi.server %(filename)s:%(lineno)s": logger_server, |
| 1823 | "nbi.access %(filename)s:%(lineno)s": logger_access, |
| 1824 | "%(name)s %(filename)s:%(lineno)s": logger_nbi, |
| 1825 | }.items(): |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 1826 | log_format_cherry = "%(asctime)s %(levelname)s {} %(message)s".format(format_) |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1827 | log_formatter_cherry = logging.Formatter( |
| 1828 | log_format_cherry, datefmt="%Y-%m-%dT%H:%M:%S" |
| 1829 | ) |
| tierno | b24258a | 2018-10-04 18:39:49 +0200 | [diff] [blame] | 1830 | str_handler = logging.StreamHandler() |
| 1831 | str_handler.setFormatter(log_formatter_cherry) |
| 1832 | logger.addHandler(str_handler) |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 1833 | |
| tierno | f5298be | 2018-05-16 14:43:57 +0200 | [diff] [blame] | 1834 | if engine_config["global"].get("log.level"): |
| 1835 | logger_cherry.setLevel(engine_config["global"]["log.level"]) |
| 1836 | logger_nbi.setLevel(engine_config["global"]["log.level"]) |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 1837 | |
| 1838 | # logging other modules |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1839 | for k1, logname in { |
| 1840 | "message": "nbi.msg", |
| 1841 | "database": "nbi.db", |
| 1842 | "storage": "nbi.fs", |
| 1843 | }.items(): |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 1844 | engine_config[k1]["logger_name"] = logname |
| 1845 | logger_module = logging.getLogger(logname) |
| 1846 | if "logfile" in engine_config[k1]: |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1847 | file_handler = logging.handlers.RotatingFileHandler( |
| 1848 | engine_config[k1]["logfile"], maxBytes=100e6, backupCount=9, delay=0 |
| 1849 | ) |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 1850 | file_handler.setFormatter(log_formatter_simple) |
| 1851 | logger_module.addHandler(file_handler) |
| 1852 | if "loglevel" in engine_config[k1]: |
| 1853 | logger_module.setLevel(engine_config[k1]["loglevel"]) |
| 1854 | # TODO add more entries, e.g.: storage |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1855 | cherrypy.tree.apps["/osm"].root.engine.start(engine_config) |
| 1856 | cherrypy.tree.apps["/osm"].root.authenticator.start(engine_config) |
| 1857 | cherrypy.tree.apps["/osm"].root.engine.init_db(target_version=database_version) |
| 1858 | cherrypy.tree.apps["/osm"].root.authenticator.init_db( |
| 1859 | target_version=auth_database_version |
| 1860 | ) |
| tierno | bee508e | 2019-01-21 11:21:49 +0000 | [diff] [blame] | 1861 | |
| tierno | 932499c | 2019-01-28 17:28:10 +0000 | [diff] [blame] | 1862 | # start subscriptions thread: |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1863 | subscription_thread = SubscriptionThread( |
| 1864 | config=engine_config, engine=nbi_server.engine |
| 1865 | ) |
| tierno | 932499c | 2019-01-28 17:28:10 +0000 | [diff] [blame] | 1866 | subscription_thread.start() |
| 1867 | # Do not capture except SubscriptionException |
| 1868 | |
| tierno | b2e48bd | 2020-02-04 15:47:18 +0000 | [diff] [blame] | 1869 | backend = engine_config["authentication"]["backend"] |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1870 | cherrypy.log.error( |
| 1871 | "Starting OSM NBI Version '{} {}' with '{}' authentication backend".format( |
| 1872 | nbi_version, nbi_version_date, backend |
| 1873 | ) |
| 1874 | ) |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 1875 | |
| 1876 | |
| 1877 | def _stop_service(): |
| 1878 | """ |
| 1879 | Callback function called when cherrypy.engine stops |
| 1880 | TODO: Ending database connections. |
| 1881 | """ |
| tierno | 932499c | 2019-01-28 17:28:10 +0000 | [diff] [blame] | 1882 | global subscription_thread |
| tierno | 65ca36d | 2019-02-12 19:27:52 +0100 | [diff] [blame] | 1883 | if subscription_thread: |
| 1884 | subscription_thread.terminate() |
| tierno | 932499c | 2019-01-28 17:28:10 +0000 | [diff] [blame] | 1885 | subscription_thread = None |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1886 | cherrypy.tree.apps["/osm"].root.engine.stop() |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 1887 | cherrypy.log.error("Stopping osm_nbi") |
| 1888 | |
| tierno | 2236d20 | 2018-05-16 19:05:16 +0200 | [diff] [blame] | 1889 | |
| tierno | f5298be | 2018-05-16 14:43:57 +0200 | [diff] [blame] | 1890 | def nbi(config_file): |
| tierno | 932499c | 2019-01-28 17:28:10 +0000 | [diff] [blame] | 1891 | global nbi_server |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 1892 | # conf = { |
| 1893 | # '/': { |
| 1894 | # #'request.dispatch': cherrypy.dispatch.MethodDispatcher(), |
| 1895 | # 'tools.sessions.on': True, |
| 1896 | # 'tools.response_headers.on': True, |
| 1897 | # # 'tools.response_headers.headers': [('Content-Type', 'text/plain')], |
| 1898 | # } |
| 1899 | # } |
| 1900 | # cherrypy.Server.ssl_module = 'builtin' |
| 1901 | # cherrypy.Server.ssl_certificate = "http/cert.pem" |
| 1902 | # cherrypy.Server.ssl_private_key = "http/privkey.pem" |
| 1903 | # cherrypy.Server.thread_pool = 10 |
| 1904 | # cherrypy.config.update({'Server.socket_port': config["port"], 'Server.socket_host': config["host"]}) |
| 1905 | |
| 1906 | # cherrypy.config.update({'tools.auth_basic.on': True, |
| 1907 | # 'tools.auth_basic.realm': 'localhost', |
| 1908 | # 'tools.auth_basic.checkpassword': validate_password}) |
| tierno | 932499c | 2019-01-28 17:28:10 +0000 | [diff] [blame] | 1909 | nbi_server = Server() |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1910 | cherrypy.engine.subscribe("start", _start_service) |
| 1911 | cherrypy.engine.subscribe("stop", _stop_service) |
| 1912 | cherrypy.quickstart(nbi_server, "/osm", config_file) |
| tierno | f5298be | 2018-05-16 14:43:57 +0200 | [diff] [blame] | 1913 | |
| 1914 | |
| 1915 | def usage(): |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1916 | print( |
| 1917 | """Usage: {} [options] |
| tierno | f5298be | 2018-05-16 14:43:57 +0200 | [diff] [blame] | 1918 | -c|--config [configuration_file]: loads the configuration file (default: ./nbi.cfg) |
| 1919 | -h|--help: shows this help |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1920 | """.format( |
| 1921 | sys.argv[0] |
| 1922 | ) |
| 1923 | ) |
| tierno | 2236d20 | 2018-05-16 19:05:16 +0200 | [diff] [blame] | 1924 | # --log-socket-host HOST: send logs to this host") |
| 1925 | # --log-socket-port PORT: send logs using this port (default: 9022)") |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 1926 | |
| 1927 | |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1928 | if __name__ == "__main__": |
| tierno | f5298be | 2018-05-16 14:43:57 +0200 | [diff] [blame] | 1929 | try: |
| 1930 | # load parameters and configuration |
| 1931 | opts, args = getopt.getopt(sys.argv[1:], "hvc:", ["config=", "help"]) |
| 1932 | # TODO add "log-socket-host=", "log-socket-port=", "log-file=" |
| 1933 | config_file = None |
| 1934 | for o, a in opts: |
| 1935 | if o in ("-h", "--help"): |
| 1936 | usage() |
| 1937 | sys.exit() |
| 1938 | elif o in ("-c", "--config"): |
| 1939 | config_file = a |
| 1940 | # elif o == "--log-socket-port": |
| 1941 | # log_socket_port = a |
| 1942 | # elif o == "--log-socket-host": |
| 1943 | # log_socket_host = a |
| 1944 | # elif o == "--log-file": |
| 1945 | # log_file = a |
| 1946 | else: |
| 1947 | assert False, "Unhandled option" |
| 1948 | if config_file: |
| 1949 | if not path.isfile(config_file): |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1950 | print( |
| 1951 | "configuration file '{}' that not exist".format(config_file), |
| 1952 | file=sys.stderr, |
| 1953 | ) |
| tierno | f5298be | 2018-05-16 14:43:57 +0200 | [diff] [blame] | 1954 | exit(1) |
| 1955 | else: |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1956 | for config_file in ( |
| 1957 | __file__[: __file__.rfind(".")] + ".cfg", |
| 1958 | "./nbi.cfg", |
| 1959 | "/etc/osm/nbi.cfg", |
| 1960 | ): |
| tierno | f5298be | 2018-05-16 14:43:57 +0200 | [diff] [blame] | 1961 | if path.isfile(config_file): |
| 1962 | break |
| 1963 | else: |
| garciadeblas | 4568a37 | 2021-03-24 09:19:48 +0100 | [diff] [blame] | 1964 | print( |
| 1965 | "No configuration file 'nbi.cfg' found neither at local folder nor at /etc/osm/", |
| 1966 | file=sys.stderr, |
| 1967 | ) |
| tierno | f5298be | 2018-05-16 14:43:57 +0200 | [diff] [blame] | 1968 | exit(1) |
| 1969 | nbi(config_file) |
| 1970 | except getopt.GetoptError as e: |
| 1971 | print(str(e), file=sys.stderr) |
| 1972 | # usage() |
| 1973 | exit(1) |