| sousaedu | cab58cb | 2020-11-04 18:48:17 +0000 | [diff] [blame] | 1 | #!/usr/bin/env python3 |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 2 | # Copyright 2021 Canonical Ltd. |
| sousaedu | cab58cb | 2020-11-04 18:48:17 +0000 | [diff] [blame] | 3 | # |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); you may |
| 5 | # not use this file except in compliance with the License. You may obtain |
| 6 | # 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, WITHOUT |
| 12 | # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the |
| 13 | # License for the specific language governing permissions and limitations |
| 14 | # under the License. |
| 15 | # |
| 16 | # For those usages not covered by the Apache License, Version 2.0 please |
| 17 | # contact: legal@canonical.com |
| 18 | # |
| 19 | # To get in touch with the maintainers, please contact: |
| 20 | # osm-charmers@lists.launchpad.net |
| 21 | ## |
| 22 | |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 23 | # pylint: disable=E0213 |
| 24 | |
| 25 | |
| sousaedu | cab58cb | 2020-11-04 18:48:17 +0000 | [diff] [blame] | 26 | import logging |
| David Garcia | accf117 | 2021-05-10 12:59:33 +0200 | [diff] [blame] | 27 | import re |
| sousaedu | 996a560 | 2021-05-03 00:22:43 +0200 | [diff] [blame] | 28 | from typing import NoReturn, Optional |
| sousaedu | cab58cb | 2020-11-04 18:48:17 +0000 | [diff] [blame] | 29 | |
| sousaedu | cab58cb | 2020-11-04 18:48:17 +0000 | [diff] [blame] | 30 | from ops.main import main |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 31 | from opslib.osm.charm import CharmedOsmBase, RelationsMissing |
| David Garcia | c753dc5 | 2021-03-17 15:28:47 +0100 | [diff] [blame] | 32 | from opslib.osm.interfaces.kafka import KafkaClient |
| 33 | from opslib.osm.interfaces.mongo import MongoClient |
| David Garcia | accf117 | 2021-05-10 12:59:33 +0200 | [diff] [blame] | 34 | from opslib.osm.interfaces.mysql import MysqlClient |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 35 | from opslib.osm.pod import ( |
| 36 | ContainerV3Builder, |
| 37 | PodSpecV3Builder, |
| 38 | ) |
| David Garcia | c753dc5 | 2021-03-17 15:28:47 +0100 | [diff] [blame] | 39 | from opslib.osm.validator import ModelValidator, validator |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 40 | |
| sousaedu | cab58cb | 2020-11-04 18:48:17 +0000 | [diff] [blame] | 41 | |
| 42 | logger = logging.getLogger(__name__) |
| 43 | |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 44 | PORT = 9999 |
| David Garcia | accf117 | 2021-05-10 12:59:33 +0200 | [diff] [blame] | 45 | DEFAULT_MYSQL_DATABASE = "pol" |
| sousaedu | cab58cb | 2020-11-04 18:48:17 +0000 | [diff] [blame] | 46 | |
| 47 | |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 48 | class ConfigModel(ModelValidator): |
| 49 | log_level: str |
| sousaedu | 996a560 | 2021-05-03 00:22:43 +0200 | [diff] [blame] | 50 | mongodb_uri: Optional[str] |
| David Garcia | accf117 | 2021-05-10 12:59:33 +0200 | [diff] [blame] | 51 | mysql_uri: Optional[str] |
| sousaedu | cab58cb | 2020-11-04 18:48:17 +0000 | [diff] [blame] | 52 | |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 53 | @validator("log_level") |
| 54 | def validate_log_level(cls, v): |
| 55 | if v not in {"INFO", "DEBUG"}: |
| 56 | raise ValueError("value must be INFO or DEBUG") |
| 57 | return v |
| sousaedu | cab58cb | 2020-11-04 18:48:17 +0000 | [diff] [blame] | 58 | |
| sousaedu | 996a560 | 2021-05-03 00:22:43 +0200 | [diff] [blame] | 59 | @validator("mongoddb_uri") |
| 60 | def validate_mongodb_uri(cls, v): |
| 61 | if v and not v.startswith("mongodb://"): |
| 62 | raise ValueError("mongodb_uri is not properly formed") |
| 63 | return v |
| 64 | |
| David Garcia | accf117 | 2021-05-10 12:59:33 +0200 | [diff] [blame] | 65 | @validator("mysql_uri") |
| 66 | def validate_mysql_uri(cls, v): |
| 67 | pattern = re.compile("^mysql:\/\/.*:.*@.*:\d+\/.*$") # noqa: W605 |
| 68 | if v and not pattern.search(v): |
| 69 | raise ValueError("mysql_uri is not properly formed") |
| 70 | return v |
| 71 | |
| sousaedu | cab58cb | 2020-11-04 18:48:17 +0000 | [diff] [blame] | 72 | |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 73 | class PolCharm(CharmedOsmBase): |
| sousaedu | cab58cb | 2020-11-04 18:48:17 +0000 | [diff] [blame] | 74 | def __init__(self, *args) -> NoReturn: |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 75 | super().__init__(*args, oci_image="image") |
| sousaedu | cab58cb | 2020-11-04 18:48:17 +0000 | [diff] [blame] | 76 | |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 77 | self.kafka_client = KafkaClient(self, "kafka") |
| 78 | self.framework.observe(self.on["kafka"].relation_changed, self.configure_pod) |
| 79 | self.framework.observe(self.on["kafka"].relation_broken, self.configure_pod) |
| sousaedu | cab58cb | 2020-11-04 18:48:17 +0000 | [diff] [blame] | 80 | |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 81 | self.mongodb_client = MongoClient(self, "mongodb") |
| 82 | self.framework.observe(self.on["mongodb"].relation_changed, self.configure_pod) |
| 83 | self.framework.observe(self.on["mongodb"].relation_broken, self.configure_pod) |
| sousaedu | cab58cb | 2020-11-04 18:48:17 +0000 | [diff] [blame] | 84 | |
| David Garcia | accf117 | 2021-05-10 12:59:33 +0200 | [diff] [blame] | 85 | self.mysql_client = MysqlClient(self, "mysql") |
| 86 | self.framework.observe(self.on["mysql"].relation_changed, self.configure_pod) |
| 87 | self.framework.observe(self.on["mysql"].relation_broken, self.configure_pod) |
| 88 | |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 89 | def _check_missing_dependencies(self, config: ConfigModel): |
| 90 | missing_relations = [] |
| sousaedu | cab58cb | 2020-11-04 18:48:17 +0000 | [diff] [blame] | 91 | |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 92 | if self.kafka_client.is_missing_data_in_unit(): |
| 93 | missing_relations.append("kafka") |
| sousaedu | 996a560 | 2021-05-03 00:22:43 +0200 | [diff] [blame] | 94 | if not config.mongodb_uri and self.mongodb_client.is_missing_data_in_unit(): |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 95 | missing_relations.append("mongodb") |
| David Garcia | accf117 | 2021-05-10 12:59:33 +0200 | [diff] [blame] | 96 | if not config.mysql_uri and self.mysql_client.is_missing_data_in_unit(): |
| 97 | missing_relations.append("mysql") |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 98 | if missing_relations: |
| 99 | raise RelationsMissing(missing_relations) |
| sousaedu | cab58cb | 2020-11-04 18:48:17 +0000 | [diff] [blame] | 100 | |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 101 | def build_pod_spec(self, image_info): |
| 102 | # Validate config |
| 103 | config = ConfigModel(**dict(self.config)) |
| sousaedu | 996a560 | 2021-05-03 00:22:43 +0200 | [diff] [blame] | 104 | |
| 105 | if config.mongodb_uri and not self.mongodb_client.is_missing_data_in_unit(): |
| 106 | raise Exception("Mongodb data cannot be provided via config and relation") |
| David Garcia | accf117 | 2021-05-10 12:59:33 +0200 | [diff] [blame] | 107 | if config.mysql_uri and not self.mysql_client.is_missing_data_in_unit(): |
| 108 | raise Exception("Mysql data cannot be provided via config and relation") |
| sousaedu | 996a560 | 2021-05-03 00:22:43 +0200 | [diff] [blame] | 109 | |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 110 | # Check relations |
| 111 | self._check_missing_dependencies(config) |
| sousaedu | 996a560 | 2021-05-03 00:22:43 +0200 | [diff] [blame] | 112 | |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 113 | # Create Builder for the PodSpec |
| 114 | pod_spec_builder = PodSpecV3Builder() |
| sousaedu | 996a560 | 2021-05-03 00:22:43 +0200 | [diff] [blame] | 115 | |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 116 | # Build Container |
| 117 | container_builder = ContainerV3Builder(self.app.name, image_info) |
| 118 | container_builder.add_port(name=self.app.name, port=PORT) |
| 119 | container_builder.add_envs( |
| 120 | { |
| 121 | # General configuration |
| 122 | "ALLOW_ANONYMOUS_LOGIN": "yes", |
| 123 | "OSMPOL_GLOBAL_LOGLEVEL": config.log_level, |
| 124 | # Kafka configuration |
| 125 | "OSMPOL_MESSAGE_DRIVER": "kafka", |
| 126 | "OSMPOL_MESSAGE_HOST": self.kafka_client.host, |
| 127 | "OSMPOL_MESSAGE_PORT": self.kafka_client.port, |
| 128 | # Database configuration |
| 129 | "OSMPOL_DATABASE_DRIVER": "mongo", |
| sousaedu | 996a560 | 2021-05-03 00:22:43 +0200 | [diff] [blame] | 130 | "OSMPOL_DATABASE_URI": config.mongodb_uri |
| 131 | or self.mongodb_client.connection_string, |
| David Garcia | accf117 | 2021-05-10 12:59:33 +0200 | [diff] [blame] | 132 | "OSMPOL_SQL_DATABASE_URI": config.mysql_uri |
| 133 | or self.mysql_client.get_root_uri(DEFAULT_MYSQL_DATABASE), |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 134 | } |
| sousaedu | cab58cb | 2020-11-04 18:48:17 +0000 | [diff] [blame] | 135 | ) |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 136 | container = container_builder.build() |
| sousaedu | 996a560 | 2021-05-03 00:22:43 +0200 | [diff] [blame] | 137 | |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 138 | # Add container to pod spec |
| 139 | pod_spec_builder.add_container(container) |
| sousaedu | 996a560 | 2021-05-03 00:22:43 +0200 | [diff] [blame] | 140 | |
| David Garcia | 49379ce | 2021-02-24 13:48:22 +0100 | [diff] [blame] | 141 | return pod_spec_builder.build() |
| sousaedu | cab58cb | 2020-11-04 18:48:17 +0000 | [diff] [blame] | 142 | |
| 143 | |
| 144 | if __name__ == "__main__": |
| 145 | main(PolCharm) |