CloudSearchDomainClient.php 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. <?php
  2. namespace Aws\CloudSearchDomain;
  3. use Aws\AwsClient;
  4. use Aws\CommandInterface;
  5. use Aws\HandlerList;
  6. use GuzzleHttp\Psr7\Uri;
  7. use Psr\Http\Message\RequestInterface;
  8. use GuzzleHttp\Psr7;
  9. /**
  10. * This client is used to search and upload documents to an **Amazon CloudSearch** Domain.
  11. *
  12. * @method \Aws\Result search(array $args = [])
  13. * @method \GuzzleHttp\Promise\Promise searchAsync(array $args = [])
  14. * @method \Aws\Result suggest(array $args = [])
  15. * @method \GuzzleHttp\Promise\Promise suggestAsync(array $args = [])
  16. * @method \Aws\Result uploadDocuments(array $args = [])
  17. * @method \GuzzleHttp\Promise\Promise uploadDocumentsAsync(array $args = [])
  18. */
  19. class CloudSearchDomainClient extends AwsClient
  20. {
  21. public function __construct(array $args)
  22. {
  23. parent::__construct($args);
  24. $list = $this->getHandlerList();
  25. $list->appendBuild($this->searchByPost(), 'cloudsearchdomain.search_by_POST');
  26. }
  27. public static function getArguments()
  28. {
  29. $args = parent::getArguments();
  30. $args['endpoint']['required'] = true;
  31. $args['region']['default'] = function (array $args) {
  32. // Determine the region from the provided endpoint.
  33. // (e.g. http://search-blah.{region}.cloudsearch.amazonaws.com)
  34. return explode('.', new Uri($args['endpoint']))[1];
  35. };
  36. unset($args['endpoint']['default']);
  37. return $args;
  38. }
  39. /**
  40. * Use POST for search command
  41. *
  42. * Useful when query string is too long
  43. */
  44. private function searchByPost()
  45. {
  46. return static function (callable $handler) {
  47. return function (
  48. CommandInterface $c,
  49. RequestInterface $r = null
  50. ) use ($handler) {
  51. if ($c->getName() !== 'Search') {
  52. return $handler($c, $r);
  53. }
  54. return $handler($c, self::convertGetToPost($r));
  55. };
  56. };
  57. }
  58. /**
  59. * Converts default GET request to a POST request
  60. *
  61. * Avoiding length restriction in query
  62. *
  63. * @param RequestInterface $r GET request to be converted
  64. * @return RequestInterface $req converted POST request
  65. */
  66. public static function convertGetToPost(RequestInterface $r)
  67. {
  68. if ($r->getMethod() === 'POST') {
  69. return $r;
  70. }
  71. $query = $r->getUri()->getQuery();
  72. $req = $r->withMethod('POST')
  73. ->withBody(Psr7\Utils::streamFor($query))
  74. ->withHeader('Content-Length', strlen($query))
  75. ->withHeader('Content-Type', 'application/x-www-form-urlencoded')
  76. ->withUri($r->getUri()->withQuery(''));
  77. return $req;
  78. }
  79. }