JsonLocation.php 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. <?php
  2. namespace GuzzleHttp\Command\Guzzle\RequestLocation;
  3. use GuzzleHttp\Command\CommandInterface;
  4. use GuzzleHttp\Command\Guzzle\Operation;
  5. use GuzzleHttp\Command\Guzzle\Parameter;
  6. use GuzzleHttp\Psr7;
  7. use GuzzleHttp\Utils;
  8. use Psr\Http\Message\MessageInterface;
  9. use Psr\Http\Message\RequestInterface;
  10. /**
  11. * Creates a JSON document
  12. */
  13. class JsonLocation extends AbstractLocation
  14. {
  15. /** @var string Whether or not to add a Content-Type header when JSON is found */
  16. private $jsonContentType;
  17. /** @var array */
  18. private $jsonData;
  19. /**
  20. * @param string $locationName Name of the location
  21. * @param string $contentType Content-Type header to add to the request if
  22. * JSON is added to the body. Pass an empty string to omit.
  23. */
  24. public function __construct($locationName = 'json', $contentType = 'application/json')
  25. {
  26. parent::__construct($locationName);
  27. $this->jsonContentType = $contentType;
  28. }
  29. /**
  30. * @param CommandInterface $command
  31. * @param RequestInterface $request
  32. * @param Parameter $param
  33. *
  34. * @return RequestInterface
  35. */
  36. public function visit(
  37. CommandInterface $command,
  38. RequestInterface $request,
  39. Parameter $param
  40. ) {
  41. $this->jsonData[$param->getWireName()] = $this->prepareValue(
  42. $command[$param->getName()],
  43. $param
  44. );
  45. return $request->withBody(Psr7\Utils::streamFor(Utils::jsonEncode($this->jsonData)));
  46. }
  47. /**
  48. * @param CommandInterface $command
  49. * @param RequestInterface $request
  50. * @param Operation $operation
  51. *
  52. * @return MessageInterface
  53. */
  54. public function after(
  55. CommandInterface $command,
  56. RequestInterface $request,
  57. Operation $operation
  58. ) {
  59. $data = $this->jsonData;
  60. $this->jsonData = [];
  61. // Add additional parameters to the JSON document
  62. $additional = $operation->getAdditionalParameters();
  63. if ($additional && ($additional->getLocation() === $this->locationName)) {
  64. foreach ($command->toArray() as $key => $value) {
  65. if (!$operation->hasParam($key)) {
  66. $data[$key] = $this->prepareValue($value, $additional);
  67. }
  68. }
  69. }
  70. // Don't overwrite the Content-Type if one is set
  71. if ($this->jsonContentType && !$request->hasHeader('Content-Type')) {
  72. $request = $request->withHeader('Content-Type', $this->jsonContentType);
  73. }
  74. return $request->withBody(Psr7\Utils::streamFor(Utils::jsonEncode($data)));
  75. }
  76. }