| tierno | c3dfbfb | 2019-05-22 09:56:05 +0000 | [diff] [blame] | 1 | # -*- coding: utf-8 -*- |
| 2 | ## |
| 3 | # Copyright 2018 Telefonica |
| 4 | # All Rights Reserved. |
| 5 | # |
| 6 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 7 | # you may not use this file except in compliance with the License. |
| 8 | # You may obtain a copy of the License at |
| 9 | # |
| 10 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | # |
| 12 | # Unless required by applicable law or agreed to in writing, software |
| 13 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or |
| 15 | # implied. |
| 16 | # See the License for the specific language governing permissions and |
| 17 | # limitations under the License. |
| 18 | |
| 19 | """ |
| 20 | This WIM does nothing and allows using it for testing and when no WIM is needed |
| 21 | """ |
| 22 | |
| sousaedu | 049cbb1 | 2022-01-05 11:39:35 +0000 | [diff] [blame] | 23 | from http import HTTPStatus |
| tierno | c3dfbfb | 2019-05-22 09:56:05 +0000 | [diff] [blame] | 24 | import logging |
| 25 | from uuid import uuid4 |
| sousaedu | 049cbb1 | 2022-01-05 11:39:35 +0000 | [diff] [blame] | 26 | |
| tierno | 7277486 | 2020-05-04 11:44:15 +0000 | [diff] [blame] | 27 | from osm_ro_plugin.sdnconn import SdnConnectorBase, SdnConnectorError |
| sousaedu | 049cbb1 | 2022-01-05 11:39:35 +0000 | [diff] [blame] | 28 | |
| sousaedu | 80135b9 | 2021-02-17 15:05:18 +0100 | [diff] [blame] | 29 | |
| tierno | c3dfbfb | 2019-05-22 09:56:05 +0000 | [diff] [blame] | 30 | __author__ = "Alfonso Tierno <alfonso.tiernosepulveda@telefonica.com>" |
| 31 | |
| 32 | |
| tierno | 7277486 | 2020-05-04 11:44:15 +0000 | [diff] [blame] | 33 | class SdnDummyConnector(SdnConnectorBase): |
| tierno | c3dfbfb | 2019-05-22 09:56:05 +0000 | [diff] [blame] | 34 | """Abstract base class for all the WIM connectors |
| 35 | |
| 36 | Arguments: |
| 37 | wim (dict): WIM record, as stored in the database |
| 38 | wim_account (dict): WIM account record, as stored in the database |
| 39 | config (dict): optional persistent information related to an specific |
| 40 | connector. Inside this dict, a special key, |
| 41 | ``service_endpoint_mapping`` provides the internal endpoint |
| 42 | mapping. |
| 43 | logger (logging.Logger): optional logger object. If none is passed |
| 44 | ``openmano.wim.wimconn`` is used. |
| 45 | |
| 46 | The arguments of the constructor are converted to object attributes. |
| 47 | An extra property, ``service_endpoint_mapping`` is created from ``config``. |
| 48 | """ |
| sousaedu | 80135b9 | 2021-02-17 15:05:18 +0100 | [diff] [blame] | 49 | |
| tierno | c3dfbfb | 2019-05-22 09:56:05 +0000 | [diff] [blame] | 50 | def __init__(self, wim, wim_account, config=None, logger=None): |
| sousaedu | 80135b9 | 2021-02-17 15:05:18 +0100 | [diff] [blame] | 51 | self.logger = logger or logging.getLogger("ro.sdn.dummy") |
| tierno | 7277486 | 2020-05-04 11:44:15 +0000 | [diff] [blame] | 52 | super(SdnDummyConnector, self).__init__(wim, wim_account, config, self.logger) |
| tierno | c3dfbfb | 2019-05-22 09:56:05 +0000 | [diff] [blame] | 53 | self.logger.debug("__init: wim='{}' wim_account='{}'".format(wim, wim_account)) |
| 54 | self.connections = {} |
| 55 | self.counter = 0 |
| 56 | |
| 57 | def check_credentials(self): |
| 58 | """Check if the connector itself can access the WIM. |
| 59 | |
| 60 | Raises: |
| tierno | ed3e4d4 | 2019-10-21 15:31:27 +0000 | [diff] [blame] | 61 | SdnConnectorError: Issues regarding authorization, access to |
| tierno | c3dfbfb | 2019-05-22 09:56:05 +0000 | [diff] [blame] | 62 | external URLs, etc are detected. |
| 63 | """ |
| 64 | self.logger.debug("check_credentials") |
| sousaedu | 80135b9 | 2021-02-17 15:05:18 +0100 | [diff] [blame] | 65 | |
| tierno | c3dfbfb | 2019-05-22 09:56:05 +0000 | [diff] [blame] | 66 | return None |
| 67 | |
| 68 | def get_connectivity_service_status(self, service_uuid, conn_info=None): |
| 69 | """Monitor the status of the connectivity service established |
| 70 | |
| 71 | Arguments: |
| 72 | service_uuid (str): UUID of the connectivity service |
| 73 | conn_info (dict or None): Information returned by the connector |
| 74 | during the service creation/edition and subsequently stored in |
| 75 | the database. |
| 76 | |
| 77 | Returns: |
| 78 | dict: JSON/YAML-serializable dict that contains a mandatory key |
| tierno | ed3e4d4 | 2019-10-21 15:31:27 +0000 | [diff] [blame] | 79 | ``sdn_status`` associated with one of the following values:: |
| tierno | c3dfbfb | 2019-05-22 09:56:05 +0000 | [diff] [blame] | 80 | |
| tierno | ed3e4d4 | 2019-10-21 15:31:27 +0000 | [diff] [blame] | 81 | Additionally ``error_msg``(**str**) and ``sdn_info``(**dict**) |
| tierno | c3dfbfb | 2019-05-22 09:56:05 +0000 | [diff] [blame] | 82 | keys can be used to provide additional status explanation or |
| 83 | new information available for the connectivity service. |
| 84 | """ |
| sousaedu | 80135b9 | 2021-02-17 15:05:18 +0100 | [diff] [blame] | 85 | self.logger.debug( |
| 86 | "get_connectivity_service_status: service_uuid='{}' conn_info='{}'".format( |
| 87 | service_uuid, conn_info |
| 88 | ) |
| 89 | ) |
| tierno | c3dfbfb | 2019-05-22 09:56:05 +0000 | [diff] [blame] | 90 | |
| sousaedu | 80135b9 | 2021-02-17 15:05:18 +0100 | [diff] [blame] | 91 | return {"sdn_status": "ACTIVE", "sdn_info": self.connections.get(service_uuid)} |
| tierno | c3dfbfb | 2019-05-22 09:56:05 +0000 | [diff] [blame] | 92 | |
| sousaedu | 80135b9 | 2021-02-17 15:05:18 +0100 | [diff] [blame] | 93 | def create_connectivity_service(self, service_type, connection_points, **kwargs): |
| 94 | """Establish WAN connectivity between the endpoints""" |
| 95 | self.logger.debug( |
| 96 | "create_connectivity_service: service_type='{}' connection_points='{}', kwargs='{}'".format( |
| 97 | service_type, connection_points, kwargs |
| 98 | ) |
| 99 | ) |
| tierno | c3dfbfb | 2019-05-22 09:56:05 +0000 | [diff] [blame] | 100 | _id = str(uuid4()) |
| tierno | ed3e4d4 | 2019-10-21 15:31:27 +0000 | [diff] [blame] | 101 | self.connections[_id] = connection_points.copy() |
| tierno | c3dfbfb | 2019-05-22 09:56:05 +0000 | [diff] [blame] | 102 | self.counter += 1 |
| sousaedu | 80135b9 | 2021-02-17 15:05:18 +0100 | [diff] [blame] | 103 | |
| tierno | ed3e4d4 | 2019-10-21 15:31:27 +0000 | [diff] [blame] | 104 | return _id, None |
| tierno | c3dfbfb | 2019-05-22 09:56:05 +0000 | [diff] [blame] | 105 | |
| 106 | def delete_connectivity_service(self, service_uuid, conn_info=None): |
| sousaedu | 80135b9 | 2021-02-17 15:05:18 +0100 | [diff] [blame] | 107 | """Disconnect multi-site endpoints previously connected""" |
| 108 | self.logger.debug( |
| 109 | "delete_connectivity_service: service_uuid='{}' conn_info='{}'".format( |
| 110 | service_uuid, conn_info |
| 111 | ) |
| 112 | ) |
| tierno | c3dfbfb | 2019-05-22 09:56:05 +0000 | [diff] [blame] | 113 | |
| tierno | ed3e4d4 | 2019-10-21 15:31:27 +0000 | [diff] [blame] | 114 | if service_uuid not in self.connections: |
| sousaedu | 80135b9 | 2021-02-17 15:05:18 +0100 | [diff] [blame] | 115 | raise SdnConnectorError( |
| 116 | "connectivity {} not found".format(service_uuid), |
| 117 | http_code=HTTPStatus.NOT_FOUND.value, |
| 118 | ) |
| 119 | |
| tierno | ed3e4d4 | 2019-10-21 15:31:27 +0000 | [diff] [blame] | 120 | self.connections.pop(service_uuid, None) |
| sousaedu | 80135b9 | 2021-02-17 15:05:18 +0100 | [diff] [blame] | 121 | |
| tierno | c3dfbfb | 2019-05-22 09:56:05 +0000 | [diff] [blame] | 122 | return None |
| 123 | |
| sousaedu | 80135b9 | 2021-02-17 15:05:18 +0100 | [diff] [blame] | 124 | def edit_connectivity_service( |
| 125 | self, service_uuid, conn_info=None, connection_points=None, **kwargs |
| 126 | ): |
| tierno | c3dfbfb | 2019-05-22 09:56:05 +0000 | [diff] [blame] | 127 | """Change an existing connectivity service. |
| 128 | |
| 129 | This method's arguments and return value follow the same convention as |
| 130 | :meth:`~.create_connectivity_service`. |
| 131 | """ |
| sousaedu | 80135b9 | 2021-02-17 15:05:18 +0100 | [diff] [blame] | 132 | self.logger.debug( |
| 133 | "edit_connectivity_service: service_uuid='{}' conn_info='{}', connection_points='{}'" |
| 134 | "kwargs='{}'".format(service_uuid, conn_info, connection_points, kwargs) |
| 135 | ) |
| 136 | |
| tierno | ed3e4d4 | 2019-10-21 15:31:27 +0000 | [diff] [blame] | 137 | if service_uuid not in self.connections: |
| sousaedu | 80135b9 | 2021-02-17 15:05:18 +0100 | [diff] [blame] | 138 | raise SdnConnectorError( |
| 139 | "connectivity {} not found".format(service_uuid), |
| 140 | http_code=HTTPStatus.NOT_FOUND.value, |
| 141 | ) |
| 142 | |
| tierno | ed3e4d4 | 2019-10-21 15:31:27 +0000 | [diff] [blame] | 143 | self.connections[service_uuid] = connection_points.copy() |
| sousaedu | 80135b9 | 2021-02-17 15:05:18 +0100 | [diff] [blame] | 144 | |
| tierno | c3dfbfb | 2019-05-22 09:56:05 +0000 | [diff] [blame] | 145 | return None |
| 146 | |
| 147 | def clear_all_connectivity_services(self): |
| 148 | """Delete all WAN Links in a WIM. |
| 149 | |
| 150 | This method is intended for debugging only, and should delete all the |
| 151 | connections controlled by the WIM, not only the WIM connections that |
| 152 | a specific RO is aware of. |
| 153 | |
| 154 | """ |
| 155 | self.logger.debug("clear_all_connectivity_services") |
| tierno | ed3e4d4 | 2019-10-21 15:31:27 +0000 | [diff] [blame] | 156 | self.connections.clear() |
| sousaedu | 80135b9 | 2021-02-17 15:05:18 +0100 | [diff] [blame] | 157 | |
| tierno | c3dfbfb | 2019-05-22 09:56:05 +0000 | [diff] [blame] | 158 | return None |
| 159 | |
| 160 | def get_all_active_connectivity_services(self): |
| 161 | """Provide information about all active connections provisioned by a |
| 162 | WIM. |
| 163 | |
| 164 | Raises: |
| tierno | ed3e4d4 | 2019-10-21 15:31:27 +0000 | [diff] [blame] | 165 | SdnConnectorException: In case of error. |
| tierno | c3dfbfb | 2019-05-22 09:56:05 +0000 | [diff] [blame] | 166 | """ |
| 167 | self.logger.debug("get_all_active_connectivity_services") |
| sousaedu | 80135b9 | 2021-02-17 15:05:18 +0100 | [diff] [blame] | 168 | |
| tierno | ed3e4d4 | 2019-10-21 15:31:27 +0000 | [diff] [blame] | 169 | return self.connections |