summaryrefslogtreecommitdiff
path: root/src/Http
diff options
context:
space:
mode:
authorIgor Scheller <igor.scheller@igorshp.de>2018-11-21 12:17:28 +0100
committermsquare <msquare@notrademark.de>2019-06-12 10:21:20 +0200
commit2e51fbff9d8472a0e98af39aff52d30f0b67706b (patch)
treea41eaf8fa3296fb2892b97fde1074edc566be4c3 /src/Http
parente948091066e4893b1b823fc80db1c1ebba174b53 (diff)
Added / route with redirects
Diffstat (limited to 'src/Http')
-rw-r--r--src/Http/Exceptions/HttpPermanentRedirect.php17
-rw-r--r--src/Http/Exceptions/HttpRedirect.php23
-rw-r--r--src/Http/Exceptions/HttpTemporaryRedirect.php17
3 files changed, 57 insertions, 0 deletions
diff --git a/src/Http/Exceptions/HttpPermanentRedirect.php b/src/Http/Exceptions/HttpPermanentRedirect.php
new file mode 100644
index 00000000..a1aa986f
--- /dev/null
+++ b/src/Http/Exceptions/HttpPermanentRedirect.php
@@ -0,0 +1,17 @@
+<?php
+
+namespace Engelsystem\Http\Exceptions;
+
+class HttpPermanentRedirect extends HttpRedirect
+{
+ /**
+ * @param string $url
+ * @param array $headers
+ */
+ public function __construct(
+ string $url,
+ array $headers = []
+ ) {
+ parent::__construct($url, 301, $headers);
+ }
+}
diff --git a/src/Http/Exceptions/HttpRedirect.php b/src/Http/Exceptions/HttpRedirect.php
new file mode 100644
index 00000000..0e7d0250
--- /dev/null
+++ b/src/Http/Exceptions/HttpRedirect.php
@@ -0,0 +1,23 @@
+<?php
+
+namespace Engelsystem\Http\Exceptions;
+
+class HttpRedirect extends HttpException
+{
+ /**
+ * @param string $url
+ * @param int $statusCode
+ * @param array $headers
+ */
+ public function __construct(
+ string $url,
+ int $statusCode = 302,
+ array $headers = []
+ ) {
+ $headers = array_merge([
+ 'Location' => $url,
+ ], $headers);
+
+ parent::__construct($statusCode, '', $headers);
+ }
+}
diff --git a/src/Http/Exceptions/HttpTemporaryRedirect.php b/src/Http/Exceptions/HttpTemporaryRedirect.php
new file mode 100644
index 00000000..ece8d607
--- /dev/null
+++ b/src/Http/Exceptions/HttpTemporaryRedirect.php
@@ -0,0 +1,17 @@
+<?php
+
+namespace Engelsystem\Http\Exceptions;
+
+class HttpTemporaryRedirect extends HttpRedirect
+{
+ /**
+ * @param string $url
+ * @param array $headers
+ */
+ public function __construct(
+ string $url,
+ array $headers = []
+ ) {
+ parent::__construct($url, 302, $headers);
+ }
+}