AuthSelectionMiddleware.php 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. <?php
  2. namespace Aws\Auth;
  3. use Aws\Api\Service;
  4. use Aws\CommandInterface;
  5. use Closure;
  6. use GuzzleHttp\Promise\Promise;
  7. /**
  8. * Handles auth scheme resolution. If a service models and auth scheme using
  9. * the `auth` trait and the operation or metadata levels, this middleware will
  10. * attempt to select the first compatible auth scheme it encounters and apply its
  11. * signature version to the command's `@context` property bag.
  12. *
  13. * IMPORTANT: this middleware must be added to the "build" step.
  14. *
  15. * @internal
  16. */
  17. class AuthSelectionMiddleware
  18. {
  19. /** @var callable */
  20. private $nextHandler;
  21. /** @var AuthSchemeResolverInterface */
  22. private $authResolver;
  23. /** @var Service */
  24. private $api;
  25. /**
  26. * Create a middleware wrapper function
  27. *
  28. * @param AuthSchemeResolverInterface $authResolver
  29. * @param Service $api
  30. * @return Closure
  31. */
  32. public static function wrap(
  33. AuthSchemeResolverInterface $authResolver,
  34. Service $api
  35. ): Closure
  36. {
  37. return function (callable $handler) use ($authResolver, $api) {
  38. return new self($handler, $authResolver, $api);
  39. };
  40. }
  41. /**
  42. * @param callable $nextHandler
  43. * @param $authResolver
  44. * @param callable $identityProvider
  45. * @param Service $api
  46. */
  47. public function __construct(
  48. callable $nextHandler,
  49. AuthSchemeResolverInterface $authResolver,
  50. Service $api
  51. )
  52. {
  53. $this->nextHandler = $nextHandler;
  54. $this->authResolver = $authResolver;
  55. $this->api = $api;
  56. }
  57. /**
  58. * @param CommandInterface $command
  59. *
  60. * @return Promise
  61. */
  62. public function __invoke(CommandInterface $command)
  63. {
  64. $nextHandler = $this->nextHandler;
  65. $serviceAuth = $this->api->getMetadata('auth') ?: [];
  66. $operation = $this->api->getOperation($command->getName());
  67. $operationAuth = $operation['auth'] ?? [];
  68. $unsignedPayload = $operation['unsignedpayload'] ?? false;
  69. $resolvableAuth = $operationAuth ?: $serviceAuth;
  70. if (!empty($resolvableAuth)) {
  71. if (isset($command['@context']['auth_scheme_resolver'])
  72. && $command['@context']['auth_scheme_resolver'] instanceof AuthSchemeResolverInterface
  73. ){
  74. $resolver = $command['@context']['auth_scheme_resolver'];
  75. } else {
  76. $resolver = $this->authResolver;
  77. }
  78. $selectedAuthScheme = $resolver->selectAuthScheme(
  79. $resolvableAuth,
  80. ['unsigned_payload' => $unsignedPayload]
  81. );
  82. if (!empty($selectedAuthScheme)) {
  83. $command['@context']['signature_version'] = $selectedAuthScheme;
  84. }
  85. }
  86. return $nextHandler($command);
  87. }
  88. }