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 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482
|
from __future__ import annotations
import hashlib
import json
import re
import threading
from collections import namedtuple
from collections.abc import Iterable
from datetime import datetime, timezone
from enum import Enum
from typing import Any, Literal, Optional
from botocore.exceptions import ParamValidationError
from moto.core.base_backend import BackendDict, BaseBackend
from moto.core.common_models import BaseModel, CloudFormationModel
from moto.core.utils import iso_8601_datetime_without_milliseconds, utcnow
from moto.ecr.exceptions import (
ImageAlreadyExistsException,
ImageNotFoundException,
InvalidParameterException,
LifecyclePolicyNotFoundException,
LimitExceededException,
RegistryPolicyNotFoundException,
RepositoryAlreadyExistsException,
RepositoryNotEmptyException,
RepositoryNotFoundException,
RepositoryPolicyNotFoundException,
ScanNotFoundException,
ValidationException,
)
from moto.ecr.policy_validation import EcrLifecyclePolicyValidator
from moto.iam.exceptions import MalformedPolicyDocument
from moto.iam.policy_validation import IAMPolicyDocumentValidator
from moto.moto_api._internal import mock_random as random
from moto.utilities.tagging_service import TaggingService
from moto.utilities.utils import get_partition
ECR_REPOSITORY_ARN_PATTERN = "^arn:(?P<partition>[^:]+):ecr:(?P<region>[^:]+):(?P<account_id>[^:]+):repository/(?P<repo_name>.*)$"
ECR_REPOSITORY_NAME_PATTERN = (
"(?:[a-z0-9]+(?:[._-][a-z0-9]+)*/)*[a-z0-9]+(?:[._-][a-z0-9]+)*"
)
EcrRepositoryArn = namedtuple(
"EcrRepositoryArn", ["partition", "region", "account_id", "repo_name"]
)
ImageTagMutabilityExclusionFilterT = dict[Literal["filter", "filterType"], str]
class RepoTagMutability(str, Enum):
MUTABLE = "MUTABLE"
IMMUTABLE = "IMMUTABLE"
MUTABLE_WITH_EXCLUSION = "MUTABLE_WITH_EXCLUSION"
IMMUTABLE_WITH_EXCLUSION = "IMMUTABLE_WITH_EXCLUSION"
class RepositoryUpdateProperty(str, Enum):
IMAGE_TAG_MUTABILITY = "ImageTagMutability"
IMAGE_SCANNING_CONFIGURATION = "ImageScanningConfiguration"
class Repository(CloudFormationModel, BaseModel):
def __init__(
self,
account_id: str,
region_name: str,
repository_name: str,
registry_id: Optional[str],
encryption_config: Optional[dict[str, str]],
image_scan_config: str,
image_tag_mutability: str,
image_tag_mutability_exclusion_filters: Optional[
list[ImageTagMutabilityExclusionFilterT]
] = None,
):
self.account_id = account_id
self.region_name = region_name
self.registry_id = registry_id or account_id
self.arn = f"arn:{get_partition(region_name)}:ecr:{region_name}:{self.registry_id}:repository/{repository_name}"
self.name = repository_name
self.created_at = utcnow()
self.uri = (
f"{self.registry_id}.dkr.ecr.{region_name}.amazonaws.com/{repository_name}"
)
self.image_tag_mutability_exclusion_filters = (
image_tag_mutability_exclusion_filters
)
self.image_tag_mutability = self._determine_image_tag_mutability(
image_tag_mutability
)
self.image_scanning_configuration = image_scan_config or {"scanOnPush": False}
self.encryption_configuration = self._determine_encryption_config(
encryption_config
)
self.policy: Optional[str] = None
self.lifecycle_policy: Optional[str] = None
self.images: list[Image] = []
self.scanning_config = {
"repositoryArn": self.arn,
"repositoryName": self.name,
"scanOnPush": False,
"scanFrequency": "MANUAL",
"appliedScanFilters": [],
}
def _determine_encryption_config(
self, encryption_config: Optional[dict[str, str]]
) -> dict[str, str]:
if not encryption_config:
return {"encryptionType": "AES256"}
if encryption_config == {"encryptionType": "KMS"}:
encryption_config["kmsKey"] = (
f"arn:{get_partition(self.region_name)}:kms:{self.region_name}:{self.account_id}:key/{random.uuid4()}"
)
return encryption_config
def _determine_image_tag_mutability(
self, image_tag_mutability: Optional[str]
) -> str:
if not image_tag_mutability:
return RepoTagMutability.MUTABLE
elif image_tag_mutability == RepoTagMutability.MUTABLE_WITH_EXCLUSION or (
image_tag_mutability == RepoTagMutability.MUTABLE
and self.image_tag_mutability_exclusion_filters
):
return RepoTagMutability.MUTABLE_WITH_EXCLUSION
elif image_tag_mutability == RepoTagMutability.IMMUTABLE_WITH_EXCLUSION or (
image_tag_mutability == RepoTagMutability.IMMUTABLE
and self.image_tag_mutability_exclusion_filters
):
return RepoTagMutability.IMMUTABLE_WITH_EXCLUSION
else:
return image_tag_mutability
def is_tag_immutable(self) -> bool:
return self.image_tag_mutability in [
RepoTagMutability.IMMUTABLE,
RepoTagMutability.IMMUTABLE_WITH_EXCLUSION,
]
def _get_image(
self, image_tag: Optional[str], image_digest: Optional[str]
) -> Image:
# you can either search for one or both
image = next(
(
i
for i in self.images
if (not image_tag or image_tag in i.image_tags)
and (not image_digest or image_digest == i.get_image_digest())
),
None,
)
if not image:
idigest = image_digest or "null"
itag = image_tag or "null"
image_id_rep = f"{{imageDigest:'{idigest}', imageTag:'{itag}'}}"
raise ImageNotFoundException(
image_id=image_id_rep,
repository_name=self.name,
registry_id=self.registry_id,
)
return image
@property
def physical_resource_id(self) -> str:
return self.name
def _update_image_tag_mutability(
self,
image_tag_mutability: Optional[str],
image_tag_mutability_exclusion_filters: Optional[
list[ImageTagMutabilityExclusionFilterT]
],
) -> None:
self.image_tag_mutability_exclusion_filters = (
image_tag_mutability_exclusion_filters
)
self.image_tag_mutability = self._determine_image_tag_mutability(
image_tag_mutability
)
def _update_image_scanning_configuration(
self, image_scanning_configuration: Optional[dict[str, bool]]
) -> None:
if image_scanning_configuration:
self.image_scanning_configuration = image_scanning_configuration
def update(
self,
property_type: str,
**kwargs: Any,
) -> None:
if property_type == RepositoryUpdateProperty.IMAGE_SCANNING_CONFIGURATION:
self._update_image_scanning_configuration(
image_scanning_configuration=kwargs.get("image_scanning_configuration")
)
elif property_type == RepositoryUpdateProperty.IMAGE_TAG_MUTABILITY:
self._update_image_tag_mutability(
image_tag_mutability=kwargs.get("image_tag_mutability"),
image_tag_mutability_exclusion_filters=kwargs.get(
"image_tag_mutability_exclusion_filters"
),
)
def delete(self, account_id: str, region_name: str) -> None:
ecr_backend = ecr_backends[account_id][region_name]
ecr_backend.delete_repository(self.name)
@classmethod
def has_cfn_attr(cls, attr: str) -> bool:
return attr in ["Arn", "RepositoryUri"]
def get_cfn_attribute(self, attribute_name: str) -> str:
from moto.cloudformation.exceptions import UnformattedGetAttTemplateException
if attribute_name == "Arn":
return self.arn
elif attribute_name == "RepositoryUri":
return self.uri
raise UnformattedGetAttTemplateException()
@staticmethod
def cloudformation_name_type() -> str:
return "RepositoryName"
@staticmethod
def cloudformation_type() -> str:
# https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html
return "AWS::ECR::Repository"
@classmethod
def create_from_cloudformation_json( # type: ignore[misc]
cls,
resource_name: str,
cloudformation_json: Any,
account_id: str,
region_name: str,
**kwargs: Any,
) -> Repository:
ecr_backend = ecr_backends[account_id][region_name]
properties = cloudformation_json["Properties"]
encryption_config = properties.get("EncryptionConfiguration")
image_scan_config = properties.get("ImageScanningConfiguration")
image_tag_mutability = properties.get("ImageTagMutability")
image_tag_mutability_exclusion_filters = properties.get(
"ImageTagMutabilityExclusionFilters"
)
tags = properties.get("Tags", [])
# Validations around imageTagMutability properties
ecr_backend.validate_image_tag_mutability_params_compatibility(
image_tag_mutability, image_tag_mutability_exclusion_filters
)
image_tag_mutability_exclusion_filters = (
cls._convert_cfn_mutability_exclusion_filters(
properties.get("ImageTagMutabilityExclusionFilters", [])
)
)
return ecr_backend.create_repository(
# RepositoryName is optional in CloudFormation, thus create a random
# name if necessary
repository_name=resource_name,
registry_id=None,
encryption_config=encryption_config,
image_scan_config=image_scan_config,
image_tag_mutability=image_tag_mutability,
image_tag_mutability_exclusion_filters=image_tag_mutability_exclusion_filters,
tags=tags,
)
@classmethod
def update_from_cloudformation_json( # type: ignore[misc]
cls,
original_resource: Any,
new_resource_name: str,
cloudformation_json: Any,
account_id: str,
region_name: str,
) -> Repository:
ecr_backend = ecr_backends[account_id][region_name]
properties = cloudformation_json["Properties"]
encryption_configuration = properties.get(
"EncryptionConfiguration", {"encryptionType": "AES256"}
)
if (
new_resource_name == original_resource.name
and encryption_configuration == original_resource.encryption_configuration
):
image_tag_mutability = properties.get("ImageTagMutability")
image_tag_mutability_exclusion_filters = properties.get(
"ImageTagMutabilityExclusionFilters"
)
ecr_backend.validate_image_tag_mutability_params_compatibility(
image_tag_mutability, image_tag_mutability_exclusion_filters
)
original_resource.update(
RepositoryUpdateProperty.IMAGE_SCANNING_CONFIGURATION,
image_scanning_configuration=properties.get(
"ImageScanningConfiguration"
),
)
original_resource.update(
RepositoryUpdateProperty.IMAGE_TAG_MUTABILITY,
image_tag_mutability=image_tag_mutability,
image_tag_mutability_exclusion_filters=cls._convert_cfn_mutability_exclusion_filters(
image_tag_mutability_exclusion_filters
),
)
ecr_backend.tagger.tag_resource(
original_resource.arn, properties.get("Tags", [])
)
return original_resource
else:
original_resource.delete(account_id, region_name)
return cls.create_from_cloudformation_json(
new_resource_name, cloudformation_json, account_id, region_name
)
@classmethod
def _convert_cfn_mutability_exclusion_filters(
cls,
exclusion_filters: Optional[list[dict[str, str]]],
) -> Optional[list[ImageTagMutabilityExclusionFilterT]]:
if not exclusion_filters:
return None
image_tag_mutability_exclusion_filters: list[
ImageTagMutabilityExclusionFilterT
] = []
for exclusion_filter in exclusion_filters:
image_tag_mutability_exclusion_filters.append(
{
"filterType": exclusion_filter[
"ImageTagMutabilityExclusionFilterType"
],
"filter": exclusion_filter[
"ImageTagMutabilityExclusionFilterValue"
],
}
)
return image_tag_mutability_exclusion_filters
class Image(BaseModel):
def __init__(
self,
account_id: str,
tag: str,
manifest: str,
repository: str,
image_manifest_mediatype: Optional[str] = None,
digest: Optional[str] = None,
registry_id: Optional[str] = None,
):
self.image_tag = tag
self.image_tags = [tag] if tag is not None else []
self.image_manifest = manifest
self.image_manifest_media_type = image_manifest_mediatype
self.repository_name = repository
self.registry_id = registry_id or account_id
self._image_digest = digest
self.image_pushed_at = int(datetime.now(timezone.utc).timestamp())
self.last_scan: Optional[datetime] = None
self.scan_finding_results_queue: list[Any] = []
self.scan_finding_results: dict[str, Any] = {}
@property
def image_digest(self) -> str:
return self.get_image_digest()
@property
def image_id(self) -> dict[str, str]:
return {
"imageTag": self.image_tag,
"imageDigest": self.get_image_digest(),
}
@property
def image_size_in_bytes(self) -> int | None:
return self.get_image_size_in_bytes()
def _create_digest(self) -> None:
image_manifest = json.loads(self.image_manifest)
if "layers" in image_manifest:
layer_digests = [layer["digest"] for layer in image_manifest["layers"]]
self._image_digest = (
"sha256:"
+ hashlib.sha256("".join(layer_digests).encode("utf-8")).hexdigest()
)
else:
random_sha = hashlib.sha256(
f"{random.randint(0, 100)}".encode()
).hexdigest()
self._image_digest = f"sha256:{random_sha}"
def get_image_digest(self) -> str:
if not self._image_digest:
self._create_digest()
return self._image_digest # type: ignore[return-value]
def get_image_size_in_bytes(self) -> Optional[int]:
image_manifest = json.loads(self.image_manifest)
if "layers" in image_manifest:
try:
return image_manifest["config"]["size"]
except KeyError:
return 50 * 1024 * 1024
else:
return None
def get_image_manifest(self) -> str:
return self.image_manifest
def remove_tag(self, tag: str) -> None:
if tag is not None and tag in self.image_tags:
self.image_tags.remove(tag)
if self.image_tags:
self.image_tag = self.image_tags[-1]
def update_tag(self, tag: str) -> None:
self.image_tag = tag
if tag not in self.image_tags and tag is not None:
self.image_tags.append(tag)
class ECRBackend(BaseBackend):
def __init__(self, region_name: str, account_id: str):
super().__init__(region_name, account_id)
self.registry_policy: Optional[str] = None
self.replication_config: dict[str, Any] = {"rules": []}
self.repositories: dict[str, Repository] = {}
self.registry_scanning_configuration: dict[str, Any] = {
"scanType": "BASIC",
"rules": [],
}
self.registry_scanning_configuration_update_lock = threading.RLock()
self.tagger = TaggingService(tag_name="tags")
self.scan_finding_results: list[dict[str, Any]] = []
@staticmethod
def default_vpc_endpoint_service( # type: ignore[misc]
service_region: str, zones: list[str]
) -> list[dict[str, Any]]:
"""Default VPC endpoint service."""
docker_endpoint = {
"AcceptanceRequired": False,
"AvailabilityZones": zones,
"BaseEndpointDnsNames": [f"dkr.ecr.{service_region}.vpce.amazonaws.com"],
"ManagesVpcEndpoints": False,
"Owner": "amazon",
"PrivateDnsName": f"*.dkr.ecr.{service_region}.amazonaws.com",
"PrivateDnsNameVerificationState": "verified",
"PrivateDnsNames": [
{"PrivateDnsName": f"*.dkr.ecr.{service_region}.amazonaws.com"}
],
"ServiceId": f"vpce-svc-{BaseBackend.vpce_random_number()}",
"ServiceName": f"com.amazonaws.{service_region}.ecr.dkr",
"ServiceType": [{"ServiceType": "Interface"}],
"Tags": [],
"VpcEndpointPolicySupported": True,
}
return BaseBackend.default_vpc_endpoint_service_factory(
service_region, zones, "api.ecr", special_service_name="ecr.api"
) + [docker_endpoint]
def _get_repository(
self, name: str, registry_id: Optional[str] = None
) -> Repository:
repo = self.repositories.get(name)
reg_id = registry_id or self.account_id
if not repo or repo.registry_id != reg_id:
raise RepositoryNotFoundException(name, reg_id)
return repo
@staticmethod
def _parse_resource_arn(resource_arn: str) -> EcrRepositoryArn: # type: ignore[misc]
match = re.match(ECR_REPOSITORY_ARN_PATTERN, resource_arn)
if not match:
raise InvalidParameterException(
"Invalid parameter at 'resourceArn' failed to satisfy constraint: "
"'Invalid ARN'"
)
return EcrRepositoryArn(**match.groupdict())
def describe_repositories(
self,
registry_id: Optional[str] = None,
repository_names: Optional[list[str]] = None,
) -> list[Repository]:
"""
maxResults and nextToken not implemented
"""
if repository_names:
for repository_name in repository_names:
if repository_name not in self.repositories:
raise RepositoryNotFoundException(
repository_name, registry_id or self.account_id
)
repositories = []
for repository in self.repositories.values():
# If a registry_id was supplied, ensure this repository matches
if registry_id:
if repository.registry_id != registry_id:
continue
# If a list of repository names was supplied, esure this repository
# is in that list
if repository_names:
if repository.name not in repository_names:
continue
repositories.append(repository)
return repositories
def create_repository(
self,
repository_name: str,
registry_id: Optional[str],
encryption_config: dict[str, str],
image_scan_config: Any,
image_tag_mutability: str,
tags: list[dict[str, str]],
image_tag_mutability_exclusion_filters: Optional[
list[ImageTagMutabilityExclusionFilterT]
] = None,
) -> Repository:
if self.repositories.get(repository_name):
raise RepositoryAlreadyExistsException(repository_name, self.account_id)
match = re.fullmatch(ECR_REPOSITORY_NAME_PATTERN, repository_name)
if not match:
raise InvalidParameterException(
f"Invalid parameter at 'repositoryName' failed to satisfy constraint: 'must satisfy regular expression '{ECR_REPOSITORY_NAME_PATTERN}'"
)
# Validate imageTagMutability if provided explicitly
if image_tag_mutability and image_tag_mutability not in list(RepoTagMutability):
raise InvalidParameterException(
"Invalid parameter at 'imageTagMutability' failed to satisfy constraint: "
"must be one of 'MUTABLE', 'IMMUTABLE', 'MUTABLE_WITH_EXCLUSION', 'IMMUTABLE_WITH_EXCLUSION'"
)
# Validate imageTagMutabilityExclusionFilters
errmsg = self._validate_mutability_exclusion_filters(
image_tag_mutability_exclusion_filters
)
if errmsg:
raise InvalidParameterException(
f"Invalid parameter at 'imageTagMutabilityExclusionFilters' failed to satisfy constraint: "
f"{errmsg}"
)
self.validate_image_tag_mutability_params_compatibility(
image_tag_mutability, image_tag_mutability_exclusion_filters
)
repository = Repository(
account_id=self.account_id,
region_name=self.region_name,
repository_name=repository_name,
registry_id=registry_id,
encryption_config=encryption_config,
image_scan_config=image_scan_config,
image_tag_mutability=image_tag_mutability,
image_tag_mutability_exclusion_filters=image_tag_mutability_exclusion_filters,
)
self.repositories[repository_name] = repository
self.tagger.tag_resource(repository.arn, tags)
# check if any of the registry scanning policies applies to the repository
with self.registry_scanning_configuration_update_lock:
for rule in self.registry_scanning_configuration["rules"]:
for repo_filter in rule["repositoryFilters"]:
if self._match_repository_filter(
repo_filter["filter"], repository_name
):
repository.scanning_config["scanFrequency"] = rule[
"scanFrequency"
]
# AWS testing seems to indicate that this is always overwritten
repository.scanning_config["appliedScanFilters"] = [repo_filter]
return repository
def delete_repository(
self,
repository_name: str,
registry_id: Optional[str] = None,
force: bool = False,
) -> Repository:
repo = self._get_repository(repository_name, registry_id)
if repo.images and not force:
raise RepositoryNotEmptyException(
repository_name, registry_id or self.account_id
)
self.tagger.delete_all_tags_for_resource(repo.arn)
return self.repositories.pop(repository_name)
def list_images(
self, repository_name: str, registry_id: Optional[str] = None
) -> list[Image]:
"""
maxResults and filtering not implemented
"""
repository = None
found = False
if repository_name in self.repositories:
repository = self.repositories[repository_name]
if registry_id:
if repository.registry_id == registry_id:
found = True
else:
found = True
if not found:
raise RepositoryNotFoundException(
repository_name, registry_id or self.account_id
)
return list(repository.images) # type: ignore[union-attr]
def describe_images(
self,
repository_name: str,
registry_id: Optional[str] = None,
image_ids: Optional[list[dict[str, str]]] = None,
) -> Iterable[Image]:
repository = self._get_repository(repository_name, registry_id)
if image_ids:
return {
repository._get_image(
image_id.get("imageTag"), image_id.get("imageDigest")
)
for image_id in image_ids
}
else:
return list(repository.images)
def put_image(
self,
repository_name: str,
image_manifest: str,
image_tag: str,
image_manifest_mediatype: Optional[str] = None,
digest: Optional[str] = None,
) -> Image:
if repository_name in self.repositories:
repository = self.repositories[repository_name]
else:
raise Exception(f"{repository_name} is not a repository")
try:
parsed_image_manifest = json.loads(image_manifest)
except json.JSONDecodeError:
raise Exception(
"Invalid parameter at 'ImageManifest' failed to satisfy constraint: 'Invalid JSON syntax'"
)
if image_manifest_mediatype:
parsed_image_manifest["imageManifest"] = image_manifest_mediatype
else:
if "mediaType" not in parsed_image_manifest:
raise InvalidParameterException(
"image manifest mediatype not provided in manifest or parameter"
)
else:
image_manifest_mediatype = parsed_image_manifest["mediaType"]
existing_images_with_matching_manifest = list(
filter(
lambda x: x.image_manifest == image_manifest,
repository.images,
)
)
existing_images_with_matching_tag = self._resolve_image_tag_mutability(
repository, image_tag
)
if not existing_images_with_matching_manifest:
# this image is not in ECR yet
image = Image(
self.account_id,
image_tag,
image_manifest,
repository_name,
image_manifest_mediatype,
digest,
)
if existing_images_with_matching_tag:
self.batch_delete_image(
repository_name=repository_name, image_ids=[{"imageTag": image_tag}]
)
# "Add" this image to the repository after removing the existing ones with the same tag
repository.images.append(image)
return image
else:
# this image is in ECR
image = existing_images_with_matching_manifest[0]
# The same image can have multiple tags. The exception is thrown if we are
# pushing the same image with an existing tag
if image_tag in image.image_tags:
raise ImageAlreadyExistsException(
registry_id=repository.registry_id,
image_tag=image_tag,
digest=image.get_image_digest(),
repository_name=repository_name,
)
else:
self.batch_delete_image(
repository_name=repository_name, image_ids=[{"imageTag": image_tag}]
)
# update existing image
image.update_tag(image_tag)
return image
def _resolve_image_tag_mutability(
self,
repository: Repository,
proposed_image_tag: str,
) -> list[Image]:
"""
The idea is the following:
If exclusion filters are set (irrespective of the base property of imageTagMutability), then we have to check if the current image tag falls under one of those filters.
If they do, then we need to find the existing image that is tagged so, and if we are operating with exclusions on MUTABLE, then we have to block the current push.
Otherwise we have to find images that have the exact same tag, and if we are operating under IMMUTABLE tag properties (with or without exclusions),
that is another case we have to block the current push
"""
existing_images_with_matching_tag: list[Image] = []
try:
if repository.image_tag_mutability_exclusion_filters:
# First check if the proposed image tag is under exclusion filters
matching_filters: list[ImageTagMutabilityExclusionFilterT] = list(
filter(
lambda ef: re.match(ef["filter"], proposed_image_tag),
repository.image_tag_mutability_exclusion_filters,
)
)
if matching_filters:
# If it is, then find images with this tag
existing_images_with_matching_tag = (
self._find_images_with_tags_matching_exclusion_filters(
repository,
proposed_image_tag,
)
)
if (
existing_images_with_matching_tag
and repository.image_tag_mutability
== RepoTagMutability.MUTABLE_WITH_EXCLUSION
):
# Under this mutability setting, this operation is not allowed
raise ImageAlreadyExistsException(
registry_id=repository.registry_id,
image_tag=proposed_image_tag,
digest=existing_images_with_matching_tag[
0
].get_image_digest(),
repository_name=repository.name,
)
if not existing_images_with_matching_tag:
existing_images_with_matching_tag = (
self._find_images_with_tags_matching_exclusion_filters(
repository,
proposed_image_tag,
)
)
# If we are dealing with IMMUTABLE setting and we have existing images with the same tag,
# then this operation is not allowed
if existing_images_with_matching_tag and repository.is_tag_immutable():
raise ImageAlreadyExistsException(
registry_id=repository.registry_id,
image_tag=proposed_image_tag,
digest=existing_images_with_matching_tag[0].get_image_digest(),
repository_name=repository.name,
)
except KeyError:
pass
return existing_images_with_matching_tag
def _find_images_with_tags_matching_exclusion_filters(
self,
repository: Repository,
proposed_image_tag: str,
) -> list[Image]:
return list(
filter(
lambda x: proposed_image_tag in x.image_tags,
repository.images,
)
)
def batch_get_image(
self,
repository_name: str,
registry_id: Optional[str] = None,
image_ids: Optional[list[dict[str, Any]]] = None,
) -> dict[str, Any]:
"""
The parameter AcceptedMediaTypes has not yet been implemented
"""
if repository_name in self.repositories:
repository = self.repositories[repository_name]
else:
raise RepositoryNotFoundException(
repository_name, registry_id or self.account_id
)
if not image_ids:
raise ParamValidationError(
msg='Missing required parameter in input: "imageIds"'
)
response: dict[str, Any] = {"images": [], "failures": []}
for image_id in image_ids:
found = False
for image in repository.images:
if (
"imageDigest" in image_id
and image.get_image_digest() == image_id["imageDigest"]
) or (
"imageTag" in image_id and image_id["imageTag"] in image.image_tags
):
found = True
response["images"].append(image)
if not found:
response["failures"].append(
{
"imageId": {"imageTag": image_id.get("imageTag", "null")},
"failureCode": "ImageNotFound",
"failureReason": "Requested image not found",
}
)
return response
def batch_delete_image(
self,
repository_name: str,
registry_id: Optional[str] = None,
image_ids: Optional[list[dict[str, str]]] = None,
) -> dict[str, Any]:
if repository_name in self.repositories:
repository = self.repositories[repository_name]
else:
raise RepositoryNotFoundException(
repository_name, registry_id or self.account_id
)
if not image_ids:
raise ParamValidationError(
msg='Missing required parameter in input: "imageIds"'
)
class ImageId:
def __init__(self, img: Image):
self.image_digest = img.get_image_digest()
self.image_tag = img.image_tag
response: dict[str, Any] = {"imageIds": [], "failures": []}
for image_id in image_ids:
image_found = False
# Is request missing both digest and tag?
if "imageDigest" not in image_id and "imageTag" not in image_id:
response["failures"].append(
{
"imageId": {},
"failureCode": "MissingDigestAndTag",
"failureReason": "Invalid request parameters: both tag and digest cannot be null",
}
)
continue
# If we have a digest, is it valid?
if "imageDigest" in image_id:
pattern = re.compile(r"^[0-9a-zA-Z_+\.-]+:[0-9a-fA-F]{64}")
if not pattern.match(image_id["imageDigest"]):
response["failures"].append(
{
"imageId": {"imageDigest": image_id["imageDigest"]},
"failureCode": "InvalidImageDigest",
"failureReason": "Invalid request parameters: image digest should satisfy the regex '[a-zA-Z0-9-_+.]+:[a-fA-F0-9]+'",
}
)
continue
for num, image in enumerate(repository.images):
# Search by matching both digest and tag
if "imageDigest" in image_id and "imageTag" in image_id:
if (
image_id["imageDigest"] == image.get_image_digest()
and image_id["imageTag"] in image.image_tags
):
image_found = True
for image_tag in reversed(image.image_tags):
repository.images[num].image_tag = image_tag
response["imageIds"].append(ImageId(image))
repository.images[num].remove_tag(image_tag)
del repository.images[num]
# Search by matching digest
elif (
"imageDigest" in image_id
and image.get_image_digest() == image_id["imageDigest"]
):
image_found = True
for image_tag in reversed(image.image_tags):
repository.images[num].image_tag = image_tag
response["imageIds"].append(ImageId(image))
repository.images[num].remove_tag(image_tag)
del repository.images[num]
# Search by matching tag
elif (
"imageTag" in image_id and image_id["imageTag"] in image.image_tags
):
image_found = True
repository.images[num].image_tag = image_id["imageTag"]
response["imageIds"].append(ImageId(image))
if len(image.image_tags) > 1:
repository.images[num].remove_tag(image_id["imageTag"])
else:
repository.images.remove(image)
if not image_found:
failure_response: dict[str, Any] = {
"imageId": {},
"failureCode": "ImageNotFound",
"failureReason": "Requested image not found",
}
if "imageDigest" in image_id:
failure_response["imageId"]["imageDigest"] = image_id.get(
"imageDigest", "null"
)
if "imageTag" in image_id:
failure_response["imageId"]["imageTag"] = image_id.get(
"imageTag", "null"
)
response["failures"].append(failure_response)
return response
def batch_get_repository_scanning_configuration(
self, names: list[str]
) -> tuple[list[dict[str, Any]], list[str]]:
configs = []
failing = []
for name in names:
try:
configs.append(
self._get_repository(name=name, registry_id=None).scanning_config
)
except RepositoryNotFoundException:
failing.append(name)
return configs, failing
def list_tags_for_resource(self, arn: str) -> dict[str, list[dict[str, str]]]:
resource = self._parse_resource_arn(arn)
repo = self._get_repository(resource.repo_name, resource.account_id)
return self.tagger.list_tags_for_resource(repo.arn)
def tag_resource(self, arn: str, tags: list[dict[str, str]]) -> None:
resource = self._parse_resource_arn(arn)
repo = self._get_repository(resource.repo_name, resource.account_id)
self.tagger.tag_resource(repo.arn, tags)
def untag_resource(self, arn: str, tag_keys: list[str]) -> None:
resource = self._parse_resource_arn(arn)
repo = self._get_repository(resource.repo_name, resource.account_id)
self.tagger.untag_resource_using_names(repo.arn, tag_keys)
def put_image_tag_mutability(
self,
registry_id: str,
repository_name: str,
image_tag_mutability: str,
image_tag_mutability_exclusion_filters: Optional[
list[ImageTagMutabilityExclusionFilterT]
] = None,
) -> dict[str, str]:
if image_tag_mutability not in list(RepoTagMutability):
raise InvalidParameterException(
"Invalid parameter at 'imageTagMutability' failed to satisfy constraint: "
"'Member must satisfy enum value set: [IMMUTABLE, MUTABLE, MUTABLE_WITH_EXCLUSION, IMMUTABLE_WITH_EXCLUSION]'"
)
# Validate Mutability Exclusion Filters parameter
errmsg = self._validate_mutability_exclusion_filters(
image_tag_mutability_exclusion_filters
)
if errmsg:
raise InvalidParameterException(
"Invalid parameter at 'imageTagMutabilityExclusionFilters' failed to satisfy constraint: "
f"{errmsg}"
)
repo = self._get_repository(repository_name, registry_id)
repo.update(
RepositoryUpdateProperty.IMAGE_TAG_MUTABILITY,
image_tag_mutability=image_tag_mutability,
image_tag_mutability_exclusion_filters=image_tag_mutability_exclusion_filters,
)
return {
"registryId": repo.registry_id,
"repositoryName": repository_name,
"imageTagMutability": repo.image_tag_mutability,
}
def put_image_scanning_configuration(
self, registry_id: str, repository_name: str, image_scan_config: dict[str, Any]
) -> dict[str, Any]:
repo = self._get_repository(repository_name, registry_id)
repo.update(
RepositoryUpdateProperty.IMAGE_SCANNING_CONFIGURATION,
image_scanning_configuration=image_scan_config,
)
return {
"registryId": repo.registry_id,
"repositoryName": repository_name,
"imageScanningConfiguration": repo.image_scanning_configuration,
}
def set_repository_policy(
self, registry_id: str, repository_name: str, policy_text: str
) -> dict[str, Any]:
repo = self._get_repository(repository_name, registry_id)
try:
iam_policy_document_validator = IAMPolicyDocumentValidator(policy_text)
# the repository policy can be defined without a resource field
iam_policy_document_validator._validate_resource_exist = lambda: None # type: ignore
# the repository policy can have the old version 2008-10-17
iam_policy_document_validator._validate_version = lambda: None # type: ignore
# ECR does not have uniqueness requirements on Sids
iam_policy_document_validator._validate_sid_uniqueness = lambda: None # type: ignore
iam_policy_document_validator.validate()
except MalformedPolicyDocument:
raise InvalidParameterException(
"Invalid parameter at 'PolicyText' failed to satisfy constraint: "
"'Invalid repository policy provided'"
)
repo.policy = policy_text
return {
"registryId": repo.registry_id,
"repositoryName": repository_name,
"policyText": repo.policy,
}
def get_repository_policy(
self, registry_id: str, repository_name: str
) -> dict[str, Any]:
repo = self._get_repository(repository_name, registry_id)
if not repo.policy:
raise RepositoryPolicyNotFoundException(repository_name, repo.registry_id)
return {
"registryId": repo.registry_id,
"repositoryName": repository_name,
"policyText": repo.policy,
}
def delete_repository_policy(
self, registry_id: str, repository_name: str
) -> dict[str, Any]:
repo = self._get_repository(repository_name, registry_id)
policy = repo.policy
if not policy:
raise RepositoryPolicyNotFoundException(repository_name, repo.registry_id)
repo.policy = None
return {
"registryId": repo.registry_id,
"repositoryName": repository_name,
"policyText": policy,
}
def put_lifecycle_policy(
self, registry_id: str, repository_name: str, lifecycle_policy_text: str
) -> dict[str, Any]:
repo = self._get_repository(repository_name, registry_id)
validator = EcrLifecyclePolicyValidator(lifecycle_policy_text)
validator.validate()
repo.lifecycle_policy = lifecycle_policy_text
return {
"registryId": repo.registry_id,
"repositoryName": repository_name,
"lifecyclePolicyText": repo.lifecycle_policy,
}
def get_lifecycle_policy(
self, registry_id: str, repository_name: str
) -> dict[str, Any]:
repo = self._get_repository(repository_name, registry_id)
if not repo.lifecycle_policy:
raise LifecyclePolicyNotFoundException(repository_name, repo.registry_id)
return {
"registryId": repo.registry_id,
"repositoryName": repository_name,
"lifecyclePolicyText": repo.lifecycle_policy,
"lastEvaluatedAt": iso_8601_datetime_without_milliseconds(utcnow()),
}
def delete_lifecycle_policy(
self, registry_id: str, repository_name: str
) -> dict[str, Any]:
repo = self._get_repository(repository_name, registry_id)
policy = repo.lifecycle_policy
if not policy:
raise LifecyclePolicyNotFoundException(repository_name, repo.registry_id)
repo.lifecycle_policy = None
return {
"registryId": repo.registry_id,
"repositoryName": repository_name,
"lifecyclePolicyText": policy,
"lastEvaluatedAt": iso_8601_datetime_without_milliseconds(utcnow()),
}
def _validate_registry_policy_action(self, policy_text: str) -> None:
# only CreateRepository & ReplicateImage actions are allowed
VALID_ACTIONS = {"ecr:CreateRepository", "ecr:ReplicateImage"}
policy = json.loads(policy_text)
for statement in policy["Statement"]:
action = statement["Action"]
if isinstance(action, str):
action = [action]
if set(action) - VALID_ACTIONS:
raise MalformedPolicyDocument()
def put_registry_policy(self, policy_text: str) -> dict[str, Any]:
try:
iam_policy_document_validator = IAMPolicyDocumentValidator(policy_text)
iam_policy_document_validator.validate()
self._validate_registry_policy_action(policy_text)
except MalformedPolicyDocument:
raise InvalidParameterException(
"Invalid parameter at 'PolicyText' failed to satisfy constraint: "
"'Invalid registry policy provided'"
)
self.registry_policy = policy_text
return {
"registryId": self.account_id,
"policyText": policy_text,
}
def get_registry_policy(self) -> dict[str, Any]:
if not self.registry_policy:
raise RegistryPolicyNotFoundException(self.account_id)
return {
"registryId": self.account_id,
"policyText": self.registry_policy,
}
def delete_registry_policy(self) -> dict[str, Any]:
policy = self.registry_policy
if not policy:
raise RegistryPolicyNotFoundException(self.account_id)
self.registry_policy = None
return {
"registryId": self.account_id,
"policyText": policy,
}
def start_image_scan(
self, registry_id: str, repository_name: str, image_id: dict[str, str]
) -> dict[str, Any]:
repo = self._get_repository(repository_name, registry_id)
image = repo._get_image(image_id.get("imageTag"), image_id.get("imageDigest"))
# scanning an image is only allowed once per day
if image.last_scan and image.last_scan.date() == datetime.today().date():
raise LimitExceededException()
image.last_scan = datetime.today()
return {
"registryId": repo.registry_id,
"repositoryName": repository_name,
"imageId": {
"imageDigest": image.image_digest,
"imageTag": image.image_tag,
},
"imageScanStatus": {"status": "IN_PROGRESS"},
}
def describe_image_scan_findings(
self, registry_id: str, repository_name: str, image_id: dict[str, Any]
) -> dict[str, Any]:
"""
This operation will return a static result by default. It is possible to configure a custom result using the Moto API.
Here is some example code showing how this can be configured:
.. sourcecode:: python
# Dict with the exact response that you want to Moto to return
example_response = {
"imageScanFindings": {
"enhancedFindings": [
],
"findingSeverityCounts": {
"MEDIUM": 1,
"UNTRIAGED": 1
}
},
"registryId": 000000000000,
"repositoryName": "reponame",
"imageId": {
"imageTag": "latest"
},
"imageScanStatus": {
"status": "COMPLETE",
"description": "The scan was completed successfully."
}
}
findings = {
"results": [example_response],
# Specify a region - us-east-1 by default
"region": "us-west-1",
}
resp = requests.post(
"http://motoapi.amazonaws.com/moto-api/static/ecr/scan-finding-results",
json=findings,
)
ecr = boto3.client("ecr", region_name="us-west-1")
# Create an image and start a scan
# ...
# Return the findings for reponame:latest
findings = ecr.describe_image_scan_findings(
repositoryName="reponame", imageId={"imageTag": "latest"}
)
findings.pop("ResponseMetadata")
assert findings == example_response
Note that the repository-name and imageTag/imageDigest should be an exact match. If you call `describe_image_scan_findings` with a repository/imageTag that is not part of any of the custom results, Moto will return a static default response.
"""
repo = self._get_repository(repository_name, registry_id)
image = repo._get_image(image_id.get("imageTag"), image_id.get("imageDigest"))
if not image.last_scan:
idigest = image_id.get("imageDigest") or "null"
itag = image_id.get("imageTag") or "null"
image_id_rep = f"{{imageDigest:'{idigest}', imageTag:'{itag}'}}"
raise ScanNotFoundException(
image_id=image_id_rep,
repository_name=repository_name,
registry_id=repo.registry_id,
)
default_response = {
"registryId": repo.registry_id,
"repositoryName": repository_name,
"imageId": {
"imageDigest": image.image_digest,
"imageTag": image.image_tag,
},
"imageScanStatus": {
"status": "COMPLETE",
"description": "The scan was completed successfully.",
},
"imageScanFindings": {
"imageScanCompletedAt": iso_8601_datetime_without_milliseconds(
image.last_scan
),
"vulnerabilitySourceUpdatedAt": iso_8601_datetime_without_milliseconds(
utcnow()
),
"findings": [
{
"name": "CVE-9999-9999",
"uri": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-9999-9999",
"severity": "HIGH",
"attributes": [
{"key": "package_version", "value": "9.9.9"},
{"key": "package_name", "value": "moto_fake"},
{
"key": "CVSS2_VECTOR",
"value": "AV:N/AC:L/Au:N/C:P/I:P/A:P",
},
{"key": "CVSS2_SCORE", "value": "7.5"},
],
}
],
"findingSeverityCounts": {"HIGH": 1},
},
}
# Process new results, and delegate any results for this particular image
for res in self.scan_finding_results.copy():
no_image = not res["imageId"].get("imageTag") and not res["imageId"].get(
"imageDigest"
)
if repo.name == res["repositoryName"] and (
no_image
or res["imageId"].get("imageTag") == image.image_tag
or res["imageId"].get("imageDigest") == image.image_digest
):
image.scan_finding_results_queue.append(res)
self.scan_finding_results.remove(res)
# Unique key that identifies this invocation
key = f"{json.dumps(image_id)}"
# Get the latest result from the queue, and assign to our key
if image.scan_finding_results_queue and key not in image.scan_finding_results:
image.scan_finding_results[key] = image.scan_finding_results_queue.pop(0)
# Return the result if we've found any
if key in image.scan_finding_results:
return image.scan_finding_results[key]
# Default response. Should no longer be used by people, but is the legacy behaviour
# To remove in Moto v6.0 - users should configure their own expected response
return default_response
def put_replication_configuration(
self, replication_config: dict[str, Any]
) -> dict[str, Any]:
rules = replication_config["rules"]
if len(rules) > 1:
raise ValidationException("This feature is disabled")
if len(rules) == 1:
for dest in rules[0]["destinations"]:
if (
dest["region"] == self.region_name
and dest["registryId"] == self.account_id
):
raise InvalidParameterException(
"Invalid parameter at 'replicationConfiguration' failed to satisfy constraint: "
"'Replication destination cannot be the same as the source registry'"
)
self.replication_config = replication_config
return {"replicationConfiguration": replication_config}
def _match_repository_filter(self, filter: str, repository_name: str) -> bool:
filter_regex = filter.replace("*", ".*")
return filter in repository_name or bool(
re.match(filter_regex, repository_name)
)
def get_registry_scanning_configuration(self) -> dict[str, Any]:
return self.registry_scanning_configuration
def put_registry_scanning_configuration(
self, scan_type: str, rules: list[dict[str, Any]]
) -> None:
# locking here to avoid simultaneous updates which leads to inconsistent state
with self.registry_scanning_configuration_update_lock:
self.registry_scanning_configuration = {
"scanType": scan_type,
"rules": rules,
}
# reset all rules first
for repo in self.repositories.values():
repo.scanning_config["scanFrequency"] = "MANUAL"
repo.scanning_config["appliedScanFilters"] = []
for rule in rules:
for repo_filter in rule["repositoryFilters"]:
for repo in self.repositories.values():
if self._match_repository_filter(
repo_filter["filter"], repo.name
):
repo.scanning_config["scanFrequency"] = rule[
"scanFrequency"
]
# AWS testing seems to indicate that this is always overwritten
repo.scanning_config["appliedScanFilters"] = [repo_filter]
def describe_registry(self) -> dict[str, Any]:
return {
"registryId": self.account_id,
"replicationConfiguration": self.replication_config,
}
def _validate_mutability_exclusion_filters(
self,
image_tag_mutability_exclusion_filters: Optional[
list[ImageTagMutabilityExclusionFilterT]
],
) -> Optional[str]:
if image_tag_mutability_exclusion_filters is None:
# It is not mandatory
return None
# [This is handled by botocore]: The length of this list of filters should be between 1 and 5
# For each exclusion filter specified:
# 1. The only allowed keys are filter and filterType
# 2. [Only this isn't checked by botocore] The only allowed value of filterType is WILDCARD [https://docs.aws.amazon.com/AmazonECR/latest/APIReference/API_ImageTagMutabilityExclusionFilter.html]
# 3. filter should be a regex of this pattern ^[0-9a-zA-Z._*-]{1,128}$
for exclusion_filter in image_tag_mutability_exclusion_filters:
for filter_key, filter_val in exclusion_filter.items():
if filter_key == "filterType" and filter_val != "WILDCARD":
return f"Invalid value for 'filterType' in mutability exclusion filter: {filter_val}"
return None
@staticmethod
def validate_image_tag_mutability_params_compatibility(
image_tag_mutability: str,
image_tag_mutability_exclusion_filters: Optional[
list[ImageTagMutabilityExclusionFilterT]
],
) -> None:
# If imageTagMutabilityExclusionFilters isn't null, then imageTagMutability can only be the _EXCLUSION variant
if image_tag_mutability_exclusion_filters is not None:
if image_tag_mutability not in [
RepoTagMutability.MUTABLE_WITH_EXCLUSION,
RepoTagMutability.IMMUTABLE_WITH_EXCLUSION,
]:
raise InvalidParameterException(
f"Invalid parameter at 'imageTagMutabilityExclusionFilters' failed to satisfy constraint: 'ImageTagMutabilityExclusionFilters can't be null when imageTagMutability is set as {image_tag_mutability}'"
)
else:
# If it is null, then imageTagMutability cannot be the _EXCLUSION variant
if image_tag_mutability in [
RepoTagMutability.MUTABLE_WITH_EXCLUSION,
RepoTagMutability.IMMUTABLE_WITH_EXCLUSION,
]:
raise InvalidParameterException(
f"Invalid parameter at 'imageTagMutabilityExclusionFilters' failed to satisfy constraint: 'ImageTagMutabilityExclusionFilters can't be null when imageTagMutability is set as {image_tag_mutability}'"
)
ecr_backends = BackendDict(ECRBackend, "ecr")
|