1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266
|
from collections import defaultdict
from datetime import datetime
from typing import Any, Optional
from moto.core.base_backend import BackendDict, BaseBackend
from moto.core.common_models import BaseModel
from moto.moto_api._internal import mock_random
from moto.s3.exceptions import (
InvalidPublicAccessBlockConfiguration,
NoSuchPublicAccessBlockConfiguration,
WrongPublicAccessBlockAccountIdError,
)
from moto.s3.models import PublicAccessBlock, S3Backend, s3_backends
from moto.utilities.paginator import paginate
from moto.utilities.tagging_service import TaggingService
from moto.utilities.utils import PARTITION_NAMES, get_partition
from .exceptions import AccessPointNotFound, AccessPointPolicyNotFound
PAGINATION_MODEL = {
"list_storage_lens_configurations": {
"input_token": "next_token",
"limit_default": 100,
"unique_attribute": "id",
},
"list_access_points": {
"input_token": "next_token",
"limit_key": "max_results",
"limit_default": 1000,
"unique_attribute": "name",
},
}
class AccessPoint(BaseModel):
def __init__(
self,
account_id: str,
region_name: str,
name: str,
bucket: str,
vpc_configuration: dict[str, Any],
public_access_block_configuration: dict[str, Any],
):
self.name = name
self.alias = f"{name}-{mock_random.get_random_hex(34)}-s3alias"
self.bucket = bucket
self.created = datetime.now().strftime("%Y-%m-%dT%H:%M:%S.%f")
self.arn = f"arn:{get_partition(region_name)}:s3:us-east-1:{account_id}:accesspoint/{name}"
self.policy: Optional[str] = None
self.network_origin = "VPC" if vpc_configuration else "Internet"
self.vpc_id = (vpc_configuration or {}).get("VpcId")
pubc = public_access_block_configuration or {}
self.pubc = {
"BlockPublicAcls": pubc.get("BlockPublicAcls", "true"),
"IgnorePublicAcls": pubc.get("IgnorePublicAcls", "true"),
"BlockPublicPolicy": pubc.get("BlockPublicPolicy", "true"),
"RestrictPublicBuckets": pubc.get("RestrictPublicBuckets", "true"),
}
def delete_policy(self) -> None:
self.policy = None
def set_policy(self, policy: str) -> None:
self.policy = policy
def has_policy(self) -> bool:
return self.policy is not None
class StorageLensConfiguration(BaseModel):
def __init__(
self,
account_id: str,
config_id: str,
storage_lens_configuration: dict[str, Any],
tags: Optional[dict[str, str]] = None,
):
self.account_id = account_id
self.config_id = config_id
self.config = storage_lens_configuration
self.tags = tags or {}
self.arn = f"arn:{get_partition('us-east-1')}:s3:us-east-1:{account_id}:storage-lens/{config_id}"
class S3ControlBackend(BaseBackend):
def __init__(self, region_name: str, account_id: str):
super().__init__(region_name, account_id)
self.public_access_block: Optional[PublicAccessBlock] = None
self.access_points: dict[str, dict[str, AccessPoint]] = defaultdict(dict)
self.storage_lens_configs: dict[str, StorageLensConfiguration] = {}
self.tagger = TaggingService()
def get_public_access_block(self, account_id: str) -> PublicAccessBlock:
# The account ID should equal the account id that is set for Moto:
if account_id != self.account_id:
raise WrongPublicAccessBlockAccountIdError()
if not self.public_access_block:
raise NoSuchPublicAccessBlockConfiguration()
return self.public_access_block
def delete_public_access_block(self, account_id: str) -> None:
# The account ID should equal the account id that is set for Moto:
if account_id != self.account_id:
raise WrongPublicAccessBlockAccountIdError()
self.public_access_block = None
def put_public_access_block(
self, account_id: str, pub_block_config: dict[str, Any]
) -> None:
# The account ID should equal the account id that is set for Moto:
if account_id != self.account_id:
raise WrongPublicAccessBlockAccountIdError()
if not pub_block_config:
raise InvalidPublicAccessBlockConfiguration()
self.public_access_block = PublicAccessBlock(
pub_block_config.get("BlockPublicAcls"),
pub_block_config.get("IgnorePublicAcls"),
pub_block_config.get("BlockPublicPolicy"),
pub_block_config.get("RestrictPublicBuckets"),
)
def create_access_point(
self,
account_id: str,
name: str,
bucket: str,
vpc_configuration: dict[str, Any],
public_access_block_configuration: dict[str, Any],
) -> AccessPoint:
access_point = AccessPoint(
account_id,
region_name=self.region_name,
name=name,
bucket=bucket,
vpc_configuration=vpc_configuration,
public_access_block_configuration=public_access_block_configuration,
)
self.access_points[account_id][name] = access_point
return access_point
def delete_access_point(self, account_id: str, name: str) -> None:
self.access_points[account_id].pop(name, None)
def get_access_point(self, account_id: str, name: str) -> AccessPoint:
if name not in self.access_points[account_id]:
raise AccessPointNotFound(name)
return self.access_points[account_id][name]
def put_access_point_policy(self, account_id: str, name: str, policy: str) -> None:
access_point = self.get_access_point(account_id, name)
access_point.set_policy(policy)
def get_access_point_policy(self, account_id: str, name: str) -> str:
access_point = self.get_access_point(account_id, name)
if access_point.has_policy():
return access_point.policy # type: ignore[return-value]
raise AccessPointPolicyNotFound(name)
def delete_access_point_policy(self, account_id: str, name: str) -> None:
access_point = self.get_access_point(account_id, name)
access_point.delete_policy()
def get_access_point_policy_status(self, account_id: str, name: str) -> bool:
"""
We assume the policy status is always public
"""
self.get_access_point_policy(account_id, name)
return True
def put_storage_lens_configuration(
self,
config_id: str,
account_id: str,
storage_lens_configuration: dict[str, Any],
tags: Optional[dict[str, str]] = None,
) -> None:
# The account ID should equal the account id that is set for Moto:
if account_id != self.account_id:
raise WrongPublicAccessBlockAccountIdError()
# Create a new Storage Lens configuration
storage_lens = StorageLensConfiguration(
account_id=account_id,
config_id=config_id,
storage_lens_configuration=storage_lens_configuration,
tags=tags,
)
self.storage_lens_configs[config_id] = storage_lens
def get_storage_lens_configuration(
self, config_id: str, account_id: str
) -> StorageLensConfiguration:
if config_id not in self.storage_lens_configs:
raise AccessPointNotFound(config_id)
storage_lens_configuration = self.storage_lens_configs[config_id]
return storage_lens_configuration
@paginate(pagination_model=PAGINATION_MODEL)
def list_storage_lens_configurations(
self, account_id: str
) -> list[StorageLensConfiguration]:
storage_lens_configuration_list = list(self.storage_lens_configs.values())
return storage_lens_configuration_list
@paginate(pagination_model=PAGINATION_MODEL)
def list_access_points(
self,
account_id: str,
bucket: Optional[str] = None,
max_results: Optional[int] = None,
next_token: Optional[str] = None,
) -> list[AccessPoint]:
account_access_points = self.access_points.get(account_id, {})
all_access_points = list(account_access_points.values())
if bucket:
return [ap for ap in all_access_points if ap.bucket == bucket]
return all_access_points
def put_storage_lens_configuration_tagging(
self, config_id: str, account_id: str, tags: dict[str, str]
) -> None:
# The account ID should equal the account id that is set for Moto:
if account_id != self.account_id:
raise WrongPublicAccessBlockAccountIdError()
if config_id not in self.storage_lens_configs:
raise AccessPointNotFound(config_id)
self.storage_lens_configs[config_id].tags = tags
def get_storage_lens_configuration_tagging(
self, config_id: str, account_id: str
) -> dict[str, str]:
if account_id != self.account_id:
raise WrongPublicAccessBlockAccountIdError()
if config_id not in self.storage_lens_configs:
raise AccessPointNotFound(config_id)
return self.storage_lens_configs[config_id].tags
def list_tags_for_resource(self, resource_arn: str) -> list[dict[str, str]]:
backend: S3Backend = s3_backends[self.account_id][self.partition]
return backend.tagger.list_tags_for_resource(resource_arn)["Tags"]
def tag_resource(self, resource_arn: str, tags: list[dict[str, str]]) -> None:
backend: S3Backend = s3_backends[self.account_id][self.partition]
backend.tagger.tag_resource(resource_arn, tags=tags)
def untag_resource(self, resource_arn: str, tag_keys: list[str]) -> None:
backend: S3Backend = s3_backends[self.account_id][self.partition]
backend.tagger.untag_resource_using_names(resource_arn, tag_names=tag_keys)
s3control_backends = BackendDict(
S3ControlBackend,
"s3control",
use_boto3_regions=False,
additional_regions=PARTITION_NAMES,
)
|