Operation.php 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. <?php
  2. namespace Aws\Api;
  3. /**
  4. * Represents an API operation.
  5. */
  6. class Operation extends AbstractModel
  7. {
  8. private $input;
  9. private $output;
  10. private $errors;
  11. private $staticContextParams = [];
  12. private $contextParams;
  13. public function __construct(array $definition, ShapeMap $shapeMap)
  14. {
  15. $definition['type'] = 'structure';
  16. if (!isset($definition['http']['method'])) {
  17. $definition['http']['method'] = 'POST';
  18. }
  19. if (!isset($definition['http']['requestUri'])) {
  20. $definition['http']['requestUri'] = '/';
  21. }
  22. if (isset($definition['staticContextParams'])) {
  23. $this->staticContextParams = $definition['staticContextParams'];
  24. }
  25. parent::__construct($definition, $shapeMap);
  26. $this->contextParams = $this->setContextParams();
  27. }
  28. /**
  29. * Returns an associative array of the HTTP attribute of the operation:
  30. *
  31. * - method: HTTP method of the operation
  32. * - requestUri: URI of the request (can include URI template placeholders)
  33. *
  34. * @return array
  35. */
  36. public function getHttp()
  37. {
  38. return $this->definition['http'];
  39. }
  40. /**
  41. * Get the input shape of the operation.
  42. *
  43. * @return StructureShape
  44. */
  45. public function getInput()
  46. {
  47. if (!$this->input) {
  48. if ($input = $this['input']) {
  49. $this->input = $this->shapeFor($input);
  50. } else {
  51. $this->input = new StructureShape([], $this->shapeMap);
  52. }
  53. }
  54. return $this->input;
  55. }
  56. /**
  57. * Get the output shape of the operation.
  58. *
  59. * @return StructureShape
  60. */
  61. public function getOutput()
  62. {
  63. if (!$this->output) {
  64. if ($output = $this['output']) {
  65. $this->output = $this->shapeFor($output);
  66. } else {
  67. $this->output = new StructureShape([], $this->shapeMap);
  68. }
  69. }
  70. return $this->output;
  71. }
  72. /**
  73. * Get an array of operation error shapes.
  74. *
  75. * @return Shape[]
  76. */
  77. public function getErrors()
  78. {
  79. if ($this->errors === null) {
  80. if ($errors = $this['errors']) {
  81. foreach ($errors as $key => $error) {
  82. $errors[$key] = $this->shapeFor($error);
  83. }
  84. $this->errors = $errors;
  85. } else {
  86. $this->errors = [];
  87. }
  88. }
  89. return $this->errors;
  90. }
  91. /**
  92. * Gets static modeled static values used for
  93. * endpoint resolution.
  94. *
  95. * @return array
  96. */
  97. public function getStaticContextParams()
  98. {
  99. return $this->staticContextParams;
  100. }
  101. /**
  102. * Gets definition of modeled dynamic values used
  103. * for endpoint resolution
  104. *
  105. * @return array
  106. */
  107. public function getContextParams()
  108. {
  109. return $this->contextParams;
  110. }
  111. private function setContextParams()
  112. {
  113. $members = $this->getInput()->getMembers();
  114. $contextParams = [];
  115. foreach($members as $name => $shape) {
  116. if (!empty($contextParam = $shape->getContextParam())) {
  117. $contextParams[$contextParam['name']] = [
  118. 'shape' => $name,
  119. 'type' => $shape->getType()
  120. ];
  121. }
  122. }
  123. return $contextParams;
  124. }
  125. }