No Description

JsonResponse.php 5.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Symfony\Component\HttpFoundation;
  11. /**
  12. * Response represents an HTTP response in JSON format.
  13. *
  14. * Note that this class does not force the returned JSON content to be an
  15. * object. It is however recommended that you do return an object as it
  16. * protects yourself against XSSI and JSON-JavaScript Hijacking.
  17. *
  18. * @see https://www.owasp.org/index.php/OWASP_AJAX_Security_Guidelines#Always_return_JSON_with_an_Object_on_the_outside
  19. *
  20. * @author Igor Wiedler <igor@wiedler.ch>
  21. */
  22. class JsonResponse extends Response
  23. {
  24. protected $data;
  25. protected $callback;
  26. protected $encodingOptions;
  27. /**
  28. * Constructor.
  29. *
  30. * @param mixed $data The response data
  31. * @param int $status The response status code
  32. * @param array $headers An array of response headers
  33. */
  34. public function __construct($data = null, $status = 200, $headers = array())
  35. {
  36. parent::__construct('', $status, $headers);
  37. if (null === $data) {
  38. $data = new \ArrayObject();
  39. }
  40. // Encode <, >, ', &, and " for RFC4627-compliant JSON, which may also be embedded into HTML.
  41. $this->encodingOptions = JSON_HEX_TAG | JSON_HEX_APOS | JSON_HEX_AMP | JSON_HEX_QUOT;
  42. $this->setData($data);
  43. }
  44. /**
  45. * {@inheritdoc}
  46. */
  47. public static function create($data = null, $status = 200, $headers = array())
  48. {
  49. return new static($data, $status, $headers);
  50. }
  51. /**
  52. * Sets the JSONP callback.
  53. *
  54. * @param string|null $callback The JSONP callback or null to use none
  55. *
  56. * @return JsonResponse
  57. *
  58. * @throws \InvalidArgumentException When the callback name is not valid
  59. */
  60. public function setCallback($callback = null)
  61. {
  62. if (null !== $callback) {
  63. // taken from http://www.geekality.net/2011/08/03/valid-javascript-identifier/
  64. $pattern = '/^[$_\p{L}][$_\p{L}\p{Mn}\p{Mc}\p{Nd}\p{Pc}\x{200C}\x{200D}]*+$/u';
  65. $parts = explode('.', $callback);
  66. foreach ($parts as $part) {
  67. if (!preg_match($pattern, $part)) {
  68. throw new \InvalidArgumentException('The callback name is not valid.');
  69. }
  70. }
  71. }
  72. $this->callback = $callback;
  73. return $this->update();
  74. }
  75. /**
  76. * Sets the data to be sent as JSON.
  77. *
  78. * @param mixed $data
  79. *
  80. * @return JsonResponse
  81. *
  82. * @throws \InvalidArgumentException
  83. */
  84. public function setData($data = array())
  85. {
  86. $errorHandler = null;
  87. $errorHandler = set_error_handler(function () use (&$errorHandler) {
  88. if (JSON_ERROR_NONE !== json_last_error()) {
  89. return;
  90. }
  91. if ($errorHandler) {
  92. call_user_func_array($errorHandler, func_get_args());
  93. }
  94. });
  95. try {
  96. // Clear json_last_error()
  97. json_encode(null);
  98. $this->data = json_encode($data, $this->encodingOptions);
  99. restore_error_handler();
  100. } catch (\Exception $exception) {
  101. restore_error_handler();
  102. throw $exception;
  103. }
  104. if (JSON_ERROR_NONE !== json_last_error()) {
  105. throw new \InvalidArgumentException($this->transformJsonError());
  106. }
  107. return $this->update();
  108. }
  109. /**
  110. * Returns options used while encoding data to JSON.
  111. *
  112. * @return int
  113. */
  114. public function getEncodingOptions()
  115. {
  116. return $this->encodingOptions;
  117. }
  118. /**
  119. * Sets options used while encoding data to JSON.
  120. *
  121. * @param int $encodingOptions
  122. *
  123. * @return JsonResponse
  124. */
  125. public function setEncodingOptions($encodingOptions)
  126. {
  127. $this->encodingOptions = (int) $encodingOptions;
  128. return $this->setData(json_decode($this->data));
  129. }
  130. /**
  131. * Updates the content and headers according to the JSON data and callback.
  132. *
  133. * @return JsonResponse
  134. */
  135. protected function update()
  136. {
  137. if (null !== $this->callback) {
  138. // Not using application/javascript for compatibility reasons with older browsers.
  139. $this->headers->set('Content-Type', 'text/javascript');
  140. return $this->setContent(sprintf('/**/%s(%s);', $this->callback, $this->data));
  141. }
  142. // Only set the header when there is none or when it equals 'text/javascript' (from a previous update with callback)
  143. // in order to not overwrite a custom definition.
  144. if (!$this->headers->has('Content-Type') || 'text/javascript' === $this->headers->get('Content-Type')) {
  145. $this->headers->set('Content-Type', 'application/json');
  146. }
  147. return $this->setContent($this->data);
  148. }
  149. private function transformJsonError()
  150. {
  151. if (function_exists('json_last_error_msg')) {
  152. return json_last_error_msg();
  153. }
  154. switch (json_last_error()) {
  155. case JSON_ERROR_DEPTH:
  156. return 'Maximum stack depth exceeded.';
  157. case JSON_ERROR_STATE_MISMATCH:
  158. return 'Underflow or the modes mismatch.';
  159. case JSON_ERROR_CTRL_CHAR:
  160. return 'Unexpected control character found.';
  161. case JSON_ERROR_SYNTAX:
  162. return 'Syntax error, malformed JSON.';
  163. case JSON_ERROR_UTF8:
  164. return 'Malformed UTF-8 characters, possibly incorrectly encoded.';
  165. default:
  166. return 'Unknown error.';
  167. }
  168. }
  169. }