composer package updates
[openemr.git] / vendor / symfony / http-foundation / RedirectResponse.php
blob23eb04a19fd280b2adf01014a147f95113262850
1 <?php
3 /*
4 * This file is part of the Symfony package.
6 * (c) Fabien Potencier <fabien@symfony.com>
8 * For the full copyright and license information, please view the LICENSE
9 * file that was distributed with this source code.
12 namespace Symfony\Component\HttpFoundation;
14 /**
15 * RedirectResponse represents an HTTP response doing a redirect.
17 * @author Fabien Potencier <fabien@symfony.com>
19 class RedirectResponse extends Response
21 protected $targetUrl;
23 /**
24 * Creates a redirect response so that it conforms to the rules defined for a redirect status code.
26 * @param string $url The URL to redirect to. The URL should be a full URL, with schema etc.,
27 * but practically every browser redirects on paths only as well
28 * @param int $status The status code (302 by default)
29 * @param array $headers The headers (Location is always set to the given URL)
31 * @throws \InvalidArgumentException
33 * @see http://tools.ietf.org/html/rfc2616#section-10.3
35 public function __construct($url, $status = 302, $headers = array())
37 parent::__construct('', $status, $headers);
39 $this->setTargetUrl($url);
41 if (!$this->isRedirect()) {
42 throw new \InvalidArgumentException(sprintf('The HTTP status code is not a redirect ("%s" given).', $status));
46 /**
47 * Factory method for chainability.
49 * @param string $url The url to redirect to
50 * @param int $status The response status code
51 * @param array $headers An array of response headers
53 * @return static
55 public static function create($url = '', $status = 302, $headers = array())
57 return new static($url, $status, $headers);
60 /**
61 * Returns the target URL.
63 * @return string target URL
65 public function getTargetUrl()
67 return $this->targetUrl;
70 /**
71 * Sets the redirect target of this response.
73 * @param string $url The URL to redirect to
75 * @return $this
77 * @throws \InvalidArgumentException
79 public function setTargetUrl($url)
81 if (empty($url)) {
82 throw new \InvalidArgumentException('Cannot redirect to an empty URL.');
85 $this->targetUrl = $url;
87 $this->setContent(
88 sprintf('<!DOCTYPE html>
89 <html>
90 <head>
91 <meta charset="UTF-8" />
92 <meta http-equiv="refresh" content="0;url=%1$s" />
94 <title>Redirecting to %1$s</title>
95 </head>
96 <body>
97 Redirecting to <a href="%1$s">%1$s</a>.
98 </body>
99 </html>', htmlspecialchars($url, ENT_QUOTES, 'UTF-8')));
101 $this->headers->set('Location', $url);
103 return $this;