RoaRequest.php 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335
  1. <?php
  2. namespace AlibabaCloud\Client\Request;
  3. use Exception;
  4. use Stringy\Stringy;
  5. use RuntimeException;
  6. use AlibabaCloud\Client\SDK;
  7. use AlibabaCloud\Client\Encode;
  8. use AlibabaCloud\Client\Accept;
  9. use AlibabaCloud\Client\Support\Path;
  10. use AlibabaCloud\Client\Support\Sign;
  11. use AlibabaCloud\Client\Filter\Filter;
  12. use AlibabaCloud\Client\Support\Arrays;
  13. use AlibabaCloud\Client\Filter\ApiFilter;
  14. use AlibabaCloud\Client\Credentials\StsCredential;
  15. use AlibabaCloud\Client\Exception\ClientException;
  16. use AlibabaCloud\Client\Exception\ServerException;
  17. use AlibabaCloud\Client\Credentials\AccessKeyCredential;
  18. use AlibabaCloud\Client\Credentials\BearerTokenCredential;
  19. use AlibabaCloud\Client\Request\Traits\DeprecatedRoaTrait;
  20. /**
  21. * RESTful ROA Request.
  22. *
  23. * @package AlibabaCloud\Client\Request
  24. * @method setParameter()
  25. */
  26. class RoaRequest extends Request
  27. {
  28. use DeprecatedRoaTrait;
  29. /**
  30. * @var string
  31. */
  32. public $pathPattern = '/';
  33. /**
  34. * @var array
  35. */
  36. public $pathParameters = [];
  37. /**
  38. * @var string
  39. */
  40. private $dateTimeFormat = "D, d M Y H:i:s \G\M\T";
  41. /**
  42. * Resolve request parameter.
  43. *
  44. * @throws ClientException
  45. * @throws Exception
  46. */
  47. public function resolveParameter()
  48. {
  49. $this->resolveQuery();
  50. $this->resolveHeaders();
  51. $this->resolveBody();
  52. $this->resolveUri();
  53. $this->resolveSignature();
  54. }
  55. private function resolveQuery()
  56. {
  57. if (!isset($this->options['query']['Version'])) {
  58. $this->options['query']['Version'] = $this->version;
  59. }
  60. }
  61. private function resolveBody()
  62. {
  63. // If the body has already been specified, it will not be resolved.
  64. if (isset($this->options['body'])) {
  65. return;
  66. }
  67. if (!isset($this->options['form_params'])) {
  68. return;
  69. }
  70. // Merge data, compatible with parameters set from constructor.
  71. $params = Arrays::merge(
  72. [
  73. $this->data,
  74. $this->options['form_params']
  75. ]
  76. );
  77. $this->encodeBody($params);
  78. unset($this->options['form_params']);
  79. }
  80. /**
  81. * Determine the body format based on the Content-Type and calculate the MD5 value.
  82. *
  83. * @param array $params
  84. */
  85. private function encodeBody(array $params)
  86. {
  87. $stringy = Stringy::create($this->options['headers']['Content-Type']);
  88. if ($stringy->contains('application/json', false)) {
  89. $this->options['body'] = json_encode($params);
  90. $this->options['headers']['Content-MD5'] = base64_encode(md5($this->options['body'], true));
  91. return;
  92. }
  93. $this->options['body'] = Encode::create($params)->ksort()->toString();
  94. $this->options['headers']['Content-MD5'] = base64_encode(md5($this->options['body'], true));
  95. $this->options['headers']['Content-Type'] = 'application/x-www-form-urlencoded; charset=UTF-8';
  96. }
  97. /**
  98. * @throws ClientException
  99. * @throws ServerException
  100. * @throws Exception
  101. */
  102. private function resolveHeaders()
  103. {
  104. $this->options['headers']['x-acs-version'] = $this->version;
  105. $this->options['headers']['x-acs-region-id'] = $this->realRegionId();
  106. $this->options['headers']['Date'] = gmdate($this->dateTimeFormat);
  107. $signature = $this->httpClient()->getSignature();
  108. $this->options['headers']['x-acs-signature-method'] = $signature->getMethod();
  109. $this->options['headers']['x-acs-signature-nonce'] = Sign::uuid($this->product . $this->action);
  110. $this->options['headers']['x-acs-signature-version'] = $signature->getVersion();
  111. if ($signature->getType()) {
  112. $this->options['headers']['x-acs-signature-type'] = $signature->getType();
  113. }
  114. $this->resolveAccept();
  115. $this->resolveContentType();
  116. $this->resolveSecurityToken();
  117. $this->resolveBearerToken();
  118. }
  119. /**
  120. * @throws ClientException
  121. * @throws Exception
  122. */
  123. private function resolveSignature()
  124. {
  125. $this->options['headers']['Authorization'] = $this->signature();
  126. }
  127. /**
  128. * If accept is not specified, it is determined by format.
  129. */
  130. private function resolveAccept()
  131. {
  132. if (!isset($this->options['headers']['Accept'])) {
  133. $this->options['headers']['Accept'] = Accept::create($this->format)->toString();
  134. }
  135. }
  136. /**
  137. * If the Content-Type is not specified, it is determined according to accept.
  138. */
  139. private function resolveContentType()
  140. {
  141. if (!isset($this->options['headers']['Content-Type'])) {
  142. $this->options['headers']['Content-Type'] = "{$this->options['headers']['Accept']}; charset=utf-8";
  143. }
  144. }
  145. /**
  146. * @throws ClientException
  147. * @throws ServerException
  148. */
  149. private function resolveSecurityToken()
  150. {
  151. if (!$this->credential() instanceof StsCredential) {
  152. return;
  153. }
  154. if (!$this->credential()->getSecurityToken()) {
  155. return;
  156. }
  157. $this->options['headers']['x-acs-security-token'] = $this->credential()->getSecurityToken();
  158. }
  159. /**
  160. * @throws ClientException
  161. * @throws ServerException
  162. */
  163. private function resolveBearerToken()
  164. {
  165. if ($this->credential() instanceof BearerTokenCredential) {
  166. $this->options['headers']['x-acs-bearer-token'] = $this->credential()->getBearerToken();
  167. }
  168. }
  169. /**
  170. * Sign the request message.
  171. *
  172. * @return string
  173. * @throws ClientException
  174. * @throws ServerException
  175. */
  176. private function signature()
  177. {
  178. /**
  179. * @var AccessKeyCredential $credential
  180. */
  181. $credential = $this->credential();
  182. $access_key_id = $credential->getAccessKeyId();
  183. $signature = $this->httpClient()
  184. ->getSignature()
  185. ->sign(
  186. $this->stringToSign(),
  187. $credential->getAccessKeySecret()
  188. );
  189. return "acs $access_key_id:$signature";
  190. }
  191. /**
  192. * @return void
  193. */
  194. private function resolveUri()
  195. {
  196. $path = Path::assign($this->pathPattern, $this->pathParameters);
  197. $this->uri = $this->uri->withPath($path)
  198. ->withQuery(
  199. $this->queryString()
  200. );
  201. }
  202. /**
  203. * @return string
  204. */
  205. public function stringToSign()
  206. {
  207. $request = new \GuzzleHttp\Psr7\Request(
  208. $this->method,
  209. $this->uri,
  210. $this->options['headers']
  211. );
  212. return Sign::roaString($request);
  213. }
  214. /**
  215. * @return bool|string
  216. */
  217. private function queryString()
  218. {
  219. $query = isset($this->options['query'])
  220. ? $this->options['query']
  221. : [];
  222. return Encode::create($query)->ksort()->toString();
  223. }
  224. /**
  225. * Set path parameter by name.
  226. *
  227. * @param string $name
  228. * @param string $value
  229. *
  230. * @return RoaRequest
  231. * @throws ClientException
  232. */
  233. public function pathParameter($name, $value)
  234. {
  235. Filter::name($name);
  236. if ($value === '') {
  237. throw new ClientException(
  238. 'Value cannot be empty',
  239. SDK::INVALID_ARGUMENT
  240. );
  241. }
  242. $this->pathParameters[$name] = $value;
  243. return $this;
  244. }
  245. /**
  246. * Set path pattern.
  247. *
  248. * @param string $pattern
  249. *
  250. * @return self
  251. * @throws ClientException
  252. */
  253. public function pathPattern($pattern)
  254. {
  255. ApiFilter::pattern($pattern);
  256. $this->pathPattern = $pattern;
  257. return $this;
  258. }
  259. /**
  260. * Magic method for set or get request parameters.
  261. *
  262. * @param string $name
  263. * @param mixed $arguments
  264. *
  265. * @return $this
  266. */
  267. public function __call($name, $arguments)
  268. {
  269. if (strncmp($name, 'get', 3) === 0) {
  270. $parameter_name = \mb_strcut($name, 3);
  271. return $this->__get($parameter_name);
  272. }
  273. if (strncmp($name, 'with', 4) === 0) {
  274. $parameter_name = \mb_strcut($name, 4);
  275. $this->__set($parameter_name, $arguments[0]);
  276. $this->pathParameters[$parameter_name] = $arguments[0];
  277. return $this;
  278. }
  279. if (strncmp($name, 'set', 3) === 0) {
  280. $parameter_name = \mb_strcut($name, 3);
  281. $with_method = "with$parameter_name";
  282. throw new RuntimeException("Please use $with_method instead of $name");
  283. }
  284. throw new RuntimeException('Call to undefined method ' . __CLASS__ . '::' . $name . '()');
  285. }
  286. }