-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathHttpResponse.php
More file actions
139 lines (120 loc) · 4.65 KB
/
HttpResponse.php
File metadata and controls
139 lines (120 loc) · 4.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<?php
/**
* Copyright (c) 2016 RhubarbPHP.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
namespace Rhubarb\Crown\Http;
use Rhubarb\Crown\Application;
use Rhubarb\Crown\PhpContext;
use Rhubarb\Crown\Request\Request;
class HttpResponse
{
private $headers = [];
private $responseBody = "";
private $responseCode = "";
public function getHeader($header, $defaultValue = null)
{
return (isset($this->headers[$header])) ? $this->headers[$header] : $defaultValue;
}
public function setHeaders($headers)
{
$this->headers = $headers;
}
/**
* @param string $responseBody
*/
public function setResponseBody($responseBody)
{
$this->responseBody = $responseBody;
}
/**
* @return string
*/
public function getResponseBody()
{
return $this->responseBody;
}
/**
* @param string $name Cookie name
* @param string $value Cookie value
* @param int $expirySecondsFromNow Time the cookie should last for in seconds. Defaults to 2 weeks. Pass null to make this a session cookie.
* @param string $path Web path the cookie should be available to - defaults to "/", the whole site
* @param string $domain Domain the cookie should be available to - defaults to current subdomain. Set to ".domain.com" to make available to all subdomains.
* @param bool $secure Indicates that the cookie should only be transmitted via HTTPS - defaults to false
* @param bool $httpOnly Indicates that the cookie should only be transmitted via the HTTP Protocol - defaults to false
* @param string $sameSite Indicates the SameSite attribute of the cookie. Can be "Strict", "Lax" or "None" - defaults to "Lax".
*/
public static function setCookie($name, $value, $expirySecondsFromNow = 1209600, $path = "/", $domain = null, $secure = false, $httpOnly = false, $sameSite = "Lax")
{
if ($expirySecondsFromNow != null){
$expirySecondsFromNow = time() + $expirySecondsFromNow;
} else {
$expirySecondsFromNow = 0;
}
if (!Application::current()->unitTesting) {
setcookie($name, $value, [
'expires' => $expirySecondsFromNow,
'path' => $path,
'domain' => $domain,
'secure' => $secure,
'httponly' => $httpOnly,
'samesite' => $sameSite
]);
}
$request = Request::current();
$request->cookieData[$name] = $value;
}
/**
* @param string $name Cookie name
* @param string $path Web path the cookie should be available to - defaults to "/", the whole site
* @param string $domain Domain the cookie should be available to - defaults to current subdomain. Set to ".domain.com" to make available to all subdomains.
* @param bool $secure Indicates that the cookie should only be transmitted via HTTPS - defaults to false
* @param bool $httpOnly Indicates that the cookie should only be transmitted via the HTTP Protocol - defaults to false
* @param string $sameSite Indicates the SameSite attribute of the cookie. Can be "Strict", "Lax" or "None" - defaults to "Lax".
*/
public static function unsetCookie($name, $path = "/", $domain = null, $secure = false, $httpOnly = false, $sameSite = "Lax")
{
self::setCookie($name, null, -1000, $path, $domain, $secure, $httpOnly, $sameSite);
}
/**
* @return string
*/
public function getResponseCode()
{
return $this->responseCode;
}
/**
* @param string $responseCode
*/
public function setResponseCode($responseCode)
{
$this->responseCode = $responseCode;
}
public function isSuccess()
{
return $this->responseCode >= 200 && $this->responseCode <= 299;
}
public function isRedirect()
{
return $this->responseCode >= 300 && $this->responseCode <= 399;
}
public function isRequestError()
{
return $this->responseCode >= 400 && $this->responseCode <= 499;
}
public function isServerError()
{
return $this->responseCode >= 500 && $this->responseCode <= 599;
}
}