Command.php 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. <?php
  2. namespace Aws;
  3. /**
  4. * AWS command object.
  5. */
  6. class Command implements CommandInterface
  7. {
  8. use HasDataTrait;
  9. /** @var string */
  10. private $name;
  11. /** @var HandlerList */
  12. private $handlerList;
  13. /** @var Array */
  14. private $authSchemes;
  15. /**
  16. * Accepts an associative array of command options, including:
  17. *
  18. * - @http: (array) Associative array of transfer options.
  19. *
  20. * @param string $name Name of the command
  21. * @param array $args Arguments to pass to the command
  22. * @param HandlerList $list Handler list
  23. */
  24. public function __construct($name, array $args = [], HandlerList $list = null)
  25. {
  26. $this->name = $name;
  27. $this->data = $args;
  28. $this->handlerList = $list ?: new HandlerList();
  29. if (!isset($this->data['@http'])) {
  30. $this->data['@http'] = [];
  31. }
  32. if (!isset($this->data['@context'])) {
  33. $this->data['@context'] = [];
  34. }
  35. }
  36. public function __clone()
  37. {
  38. $this->handlerList = clone $this->handlerList;
  39. }
  40. public function getName()
  41. {
  42. return $this->name;
  43. }
  44. public function hasParam($name)
  45. {
  46. return array_key_exists($name, $this->data);
  47. }
  48. public function getHandlerList()
  49. {
  50. return $this->handlerList;
  51. }
  52. /**
  53. * For overriding auth schemes on a per endpoint basis when using
  54. * EndpointV2 provider. Intended for internal use only.
  55. *
  56. * @param array $authSchemes
  57. *
  58. * @deprecated In favor of using the @context property bag.
  59. * Auth Schemes are now accessible via the `signature_version` key
  60. * in a Command's context, if applicable. Auth Schemes set using
  61. * This method are no longer consumed.
  62. *
  63. * @internal
  64. */
  65. public function setAuthSchemes(array $authSchemes)
  66. {
  67. trigger_error(__METHOD__ . ' is deprecated. Auth schemes '
  68. . 'resolved using the service `auth` trait or via endpoint resolution '
  69. . 'are now set in the command `@context` property.`'
  70. , E_USER_WARNING
  71. );
  72. $this->authSchemes = $authSchemes;
  73. }
  74. /**
  75. * Get auth schemes added to command as required
  76. * for endpoint resolution
  77. *
  78. * @returns array
  79. *
  80. * @deprecated In favor of using the @context property bag.
  81. * Auth schemes are now accessible via the `signature_version` key
  82. * in a Command's context, if applicable.
  83. */
  84. public function getAuthSchemes()
  85. {
  86. trigger_error(__METHOD__ . ' is deprecated. Auth schemes '
  87. . 'resolved using the service `auth` trait or via endpoint resolution '
  88. . 'can now be found in the command `@context` property.`'
  89. , E_USER_WARNING
  90. );
  91. return $this->authSchemes ?: [];
  92. }
  93. /** @deprecated */
  94. public function get($name)
  95. {
  96. return $this[$name];
  97. }
  98. }