EndpointRegionHelperTrait.php 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. <?php
  2. namespace Aws\S3;
  3. use Aws\Api\Service;
  4. use Aws\Arn\ArnInterface;
  5. use Aws\Arn\S3\OutpostsArnInterface;
  6. use Aws\Endpoint\PartitionEndpointProvider;
  7. use Aws\Exception\InvalidRegionException;
  8. /**
  9. * @internal
  10. */
  11. trait EndpointRegionHelperTrait
  12. {
  13. /** @var array */
  14. private $config;
  15. /** @var PartitionEndpointProvider */
  16. private $partitionProvider;
  17. /** @var string */
  18. private $region;
  19. /** @var Service */
  20. private $service;
  21. private function getPartitionSuffix(
  22. ArnInterface $arn,
  23. PartitionEndpointProvider $provider
  24. ) {
  25. $partition = $provider->getPartition(
  26. $arn->getRegion(),
  27. $arn->getService()
  28. );
  29. return $partition->getDnsSuffix();
  30. }
  31. private function getSigningRegion(
  32. $region,
  33. $service,
  34. PartitionEndpointProvider $provider
  35. ) {
  36. $partition = $provider->getPartition($region, $service);
  37. $data = $partition->toArray();
  38. if (isset($data['services'][$service]['endpoints'][$region]['credentialScope']['region'])) {
  39. return $data['services'][$service]['endpoints'][$region]['credentialScope']['region'];
  40. }
  41. return $region;
  42. }
  43. private function isMatchingSigningRegion(
  44. $arnRegion,
  45. $clientRegion,
  46. $service,
  47. PartitionEndpointProvider $provider
  48. ) {
  49. $arnRegion = \Aws\strip_fips_pseudo_regions(strtolower($arnRegion));
  50. $clientRegion = strtolower($clientRegion);
  51. if ($arnRegion === $clientRegion) {
  52. return true;
  53. }
  54. if ($this->getSigningRegion($clientRegion, $service, $provider) === $arnRegion) {
  55. return true;
  56. }
  57. return false;
  58. }
  59. private function validateFipsConfigurations(ArnInterface $arn)
  60. {
  61. $useFipsEndpoint = !empty($this->config['use_fips_endpoint']);
  62. if ($arn instanceof OutpostsArnInterface) {
  63. if (empty($this->config['use_arn_region'])
  64. || !($this->config['use_arn_region']->isUseArnRegion())
  65. ) {
  66. $region = $this->region;
  67. } else {
  68. $region = $arn->getRegion();
  69. }
  70. if (\Aws\is_fips_pseudo_region($region)) {
  71. throw new InvalidRegionException(
  72. 'Fips is currently not supported with S3 Outposts access'
  73. . ' points. Please provide a non-fips region or do not supply an'
  74. . ' access point ARN.');
  75. }
  76. }
  77. }
  78. private function validateMatchingRegion(ArnInterface $arn)
  79. {
  80. if (!($this->isMatchingSigningRegion(
  81. $arn->getRegion(),
  82. $this->region,
  83. $this->service->getEndpointPrefix(),
  84. $this->partitionProvider)
  85. )) {
  86. if (empty($this->config['use_arn_region'])
  87. || !($this->config['use_arn_region']->isUseArnRegion())
  88. ) {
  89. throw new InvalidRegionException('The region'
  90. . " specified in the ARN (" . $arn->getRegion()
  91. . ") does not match the client region ("
  92. . "{$this->region}).");
  93. }
  94. }
  95. }
  96. }