2024-01-27 19:38:09 +00:00

375 lines
13 KiB
Python

import string
from typing import Any, Dict, Iterable, List, Optional
from moto.core.base_backend import BackendDict, BaseBackend
from moto.core.common_models import BaseModel
from moto.core.utils import unix_time
from moto.moto_api._internal import mock_random as random
from moto.utilities.tagging_service import TaggingService
from .exceptions import (
ConflictingDomainExists,
NamespaceNotFound,
OperationNotFound,
ServiceNotFound,
)
def random_id(size: int) -> str:
return "".join(
[random.choice(string.ascii_lowercase + string.digits) for _ in range(size)]
)
class Namespace(BaseModel):
def __init__(
self,
account_id: str,
region: str,
name: str,
ns_type: str,
creator_request_id: str,
description: str,
dns_properties: Dict[str, Any],
http_properties: Dict[str, Any],
vpc: Optional[str] = None,
):
self.id = f"ns-{random_id(20)}"
self.arn = f"arn:aws:servicediscovery:{region}:{account_id}:namespace/{self.id}"
self.name = name
self.type = ns_type
self.creator_request_id = creator_request_id
self.description = description
self.dns_properties = dns_properties
self.http_properties = http_properties
self.vpc = vpc
self.created = unix_time()
self.updated = unix_time()
def to_json(self) -> Dict[str, Any]:
return {
"Arn": self.arn,
"Id": self.id,
"Name": self.name,
"Description": self.description,
"Type": self.type,
"Properties": {
"DnsProperties": self.dns_properties,
"HttpProperties": self.http_properties,
},
"CreateDate": self.created,
"UpdateDate": self.updated,
"CreatorRequestId": self.creator_request_id,
}
class Service(BaseModel):
def __init__(
self,
account_id: str,
region: str,
name: str,
namespace_id: str,
description: str,
creator_request_id: str,
dns_config: Dict[str, Any],
health_check_config: Dict[str, Any],
health_check_custom_config: Dict[str, int],
service_type: str,
):
self.id = f"srv-{random_id(8)}"
self.arn = f"arn:aws:servicediscovery:{region}:{account_id}:service/{self.id}"
self.name = name
self.namespace_id = namespace_id
self.description = description
self.creator_request_id = creator_request_id
self.dns_config: Optional[Dict[str, Any]] = dns_config
self.health_check_config = health_check_config
self.health_check_custom_config = health_check_custom_config
self.service_type = service_type
self.created = unix_time()
def update(self, details: Dict[str, Any]) -> None:
if "Description" in details:
self.description = details["Description"]
if "DnsConfig" in details:
if self.dns_config is None:
self.dns_config = {}
self.dns_config["DnsRecords"] = details["DnsConfig"]["DnsRecords"]
else:
# From the docs:
# If you omit any existing DnsRecords or HealthCheckConfig configurations from an UpdateService request,
# the configurations are deleted from the service.
self.dns_config = None
if "HealthCheckConfig" in details:
self.health_check_config = details["HealthCheckConfig"]
def to_json(self) -> Dict[str, Any]:
return {
"Arn": self.arn,
"Id": self.id,
"Name": self.name,
"NamespaceId": self.namespace_id,
"CreateDate": self.created,
"Description": self.description,
"CreatorRequestId": self.creator_request_id,
"DnsConfig": self.dns_config,
"HealthCheckConfig": self.health_check_config,
"HealthCheckCustomConfig": self.health_check_custom_config,
"Type": self.service_type,
}
class Operation(BaseModel):
def __init__(self, operation_type: str, targets: Dict[str, str]):
super().__init__()
self.id = f"{random_id(32)}-{random_id(8)}"
self.status = "SUCCESS"
self.operation_type = operation_type
self.created = unix_time()
self.updated = unix_time()
self.targets = targets
def to_json(self, short: bool = False) -> Dict[str, Any]:
if short:
return {"Id": self.id, "Status": self.status}
else:
return {
"Id": self.id,
"Status": self.status,
"Type": self.operation_type,
"CreateDate": self.created,
"UpdateDate": self.updated,
"Targets": self.targets,
}
class ServiceDiscoveryBackend(BaseBackend):
"""Implementation of ServiceDiscovery APIs."""
def __init__(self, region_name: str, account_id: str):
super().__init__(region_name, account_id)
self.operations: Dict[str, Operation] = dict()
self.namespaces: Dict[str, Namespace] = dict()
self.services: Dict[str, Service] = dict()
self.tagger = TaggingService()
def list_namespaces(self) -> Iterable[Namespace]:
"""
Pagination or the Filters-parameter is not yet implemented
"""
return self.namespaces.values()
def create_http_namespace(
self,
name: str,
creator_request_id: str,
description: str,
tags: List[Dict[str, str]],
) -> str:
namespace = Namespace(
account_id=self.account_id,
region=self.region_name,
name=name,
ns_type="HTTP",
creator_request_id=creator_request_id,
description=description,
dns_properties={"SOA": {}},
http_properties={"HttpName": name},
)
self.namespaces[namespace.id] = namespace
if tags:
self.tagger.tag_resource(namespace.arn, tags)
operation_id = self._create_operation(
"CREATE_NAMESPACE", targets={"NAMESPACE": namespace.id}
)
return operation_id
def _create_operation(self, op_type: str, targets: Dict[str, str]) -> str:
operation = Operation(operation_type=op_type, targets=targets)
self.operations[operation.id] = operation
return operation.id
def delete_namespace(self, namespace_id: str) -> str:
if namespace_id not in self.namespaces:
raise NamespaceNotFound(namespace_id)
del self.namespaces[namespace_id]
operation_id = self._create_operation(
op_type="DELETE_NAMESPACE", targets={"NAMESPACE": namespace_id}
)
return operation_id
def get_namespace(self, namespace_id: str) -> Namespace:
if namespace_id not in self.namespaces:
raise NamespaceNotFound(namespace_id)
return self.namespaces[namespace_id]
def list_operations(self) -> Iterable[Operation]:
"""
Pagination or the Filters-argument is not yet implemented
"""
# Operations for namespaces will only be listed as long as namespaces exist
self.operations = {
op_id: op
for op_id, op in self.operations.items()
if op.targets.get("NAMESPACE") in self.namespaces
}
return self.operations.values()
def get_operation(self, operation_id: str) -> Operation:
if operation_id not in self.operations:
raise OperationNotFound()
return self.operations[operation_id]
def tag_resource(self, resource_arn: str, tags: List[Dict[str, str]]) -> None:
self.tagger.tag_resource(resource_arn, tags)
def untag_resource(self, resource_arn: str, tag_keys: List[str]) -> None:
self.tagger.untag_resource_using_names(resource_arn, tag_keys)
def list_tags_for_resource(
self, resource_arn: str
) -> Dict[str, List[Dict[str, str]]]:
return self.tagger.list_tags_for_resource(resource_arn)
def create_private_dns_namespace(
self,
name: str,
creator_request_id: str,
description: str,
vpc: str,
tags: List[Dict[str, str]],
properties: Dict[str, Any],
) -> str:
for namespace in self.namespaces.values():
if namespace.vpc == vpc:
raise ConflictingDomainExists(vpc)
dns_properties = (properties or {}).get("DnsProperties", {})
dns_properties["HostedZoneId"] = "hzi"
namespace = Namespace(
account_id=self.account_id,
region=self.region_name,
name=name,
ns_type="DNS_PRIVATE",
creator_request_id=creator_request_id,
description=description,
dns_properties=dns_properties,
http_properties={},
vpc=vpc,
)
self.namespaces[namespace.id] = namespace
if tags:
self.tagger.tag_resource(namespace.arn, tags)
operation_id = self._create_operation(
"CREATE_NAMESPACE", targets={"NAMESPACE": namespace.id}
)
return operation_id
def create_public_dns_namespace(
self,
name: str,
creator_request_id: str,
description: str,
tags: List[Dict[str, str]],
properties: Dict[str, Any],
) -> str:
dns_properties = (properties or {}).get("DnsProperties", {})
dns_properties["HostedZoneId"] = "hzi"
namespace = Namespace(
account_id=self.account_id,
region=self.region_name,
name=name,
ns_type="DNS_PUBLIC",
creator_request_id=creator_request_id,
description=description,
dns_properties=dns_properties,
http_properties={},
)
self.namespaces[namespace.id] = namespace
if tags:
self.tagger.tag_resource(namespace.arn, tags)
operation_id = self._create_operation(
"CREATE_NAMESPACE", targets={"NAMESPACE": namespace.id}
)
return operation_id
def create_service(
self,
name: str,
namespace_id: str,
creator_request_id: str,
description: str,
dns_config: Dict[str, Any],
health_check_config: Dict[str, Any],
health_check_custom_config: Dict[str, Any],
tags: List[Dict[str, str]],
service_type: str,
) -> Service:
service = Service(
account_id=self.account_id,
region=self.region_name,
name=name,
namespace_id=namespace_id,
description=description,
creator_request_id=creator_request_id,
dns_config=dns_config,
health_check_config=health_check_config,
health_check_custom_config=health_check_custom_config,
service_type=service_type,
)
self.services[service.id] = service
if tags:
self.tagger.tag_resource(service.arn, tags)
return service
def get_service(self, service_id: str) -> Service:
if service_id not in self.services:
raise ServiceNotFound(service_id)
return self.services[service_id]
def delete_service(self, service_id: str) -> None:
self.services.pop(service_id, None)
def list_services(self) -> Iterable[Service]:
"""
Pagination or the Filters-argument is not yet implemented
"""
return self.services.values()
def update_service(self, service_id: str, details: Dict[str, Any]) -> str:
service = self.get_service(service_id)
service.update(details=details)
operation_id = self._create_operation(
"UPDATE_SERVICE", targets={"SERVICE": service.id}
)
return operation_id
def update_private_dns_namespace(
self, _id: str, description: str, properties: Dict[str, Any]
) -> str:
namespace = self.get_namespace(namespace_id=_id)
if description is not None:
namespace.description = description
if properties is not None:
namespace.dns_properties = properties
operation_id = self._create_operation(
"UPDATE_NAMESPACE", targets={"NAMESPACE": namespace.id}
)
return operation_id
def update_public_dns_namespace(
self, _id: str, description: str, properties: Dict[str, Any]
) -> str:
namespace = self.get_namespace(namespace_id=_id)
if description is not None:
namespace.description = description
if properties is not None:
namespace.dns_properties = properties
operation_id = self._create_operation(
"UPDATE_NAMESPACE", targets={"NAMESPACE": namespace.id}
)
return operation_id
servicediscovery_backends = BackendDict(ServiceDiscoveryBackend, "servicediscovery")