|
1
|
|
|
<?php |
|
2
|
|
|
/** |
|
3
|
|
|
* Copyright (C) 2016 SURFnet. |
|
4
|
|
|
* |
|
5
|
|
|
* This program is free software: you can redistribute it and/or modify |
|
6
|
|
|
* it under the terms of the GNU Affero General Public License as |
|
7
|
|
|
* published by the Free Software Foundation, either version 3 of the |
|
8
|
|
|
* License, or (at your option) any later version. |
|
9
|
|
|
* |
|
10
|
|
|
* This program is distributed in the hope that it will be useful, |
|
11
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
12
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
13
|
|
|
* GNU Affero General Public License for more details. |
|
14
|
|
|
* |
|
15
|
|
|
* You should have received a copy of the GNU Affero General Public License |
|
16
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
17
|
|
|
*/ |
|
18
|
|
|
|
|
19
|
|
|
namespace fkooman\RemoteStorage\Http; |
|
20
|
|
|
|
|
21
|
|
|
class Response |
|
22
|
|
|
{ |
|
23
|
|
|
/** @var int */ |
|
24
|
|
|
private $statusCode; |
|
25
|
|
|
|
|
26
|
|
|
/** @var array */ |
|
27
|
|
|
private $headers; |
|
28
|
|
|
|
|
29
|
|
|
/** @var string */ |
|
30
|
|
|
private $body; |
|
31
|
|
|
|
|
32
|
|
|
public function __construct($statusCode = 200, $contentType = 'text/plain') |
|
33
|
|
|
{ |
|
34
|
|
|
$this->statusCode = $statusCode; |
|
35
|
|
|
$this->headers = [ |
|
36
|
|
|
'Content-Type' => $contentType, |
|
37
|
|
|
]; |
|
38
|
|
|
$this->body = ''; |
|
39
|
|
|
} |
|
40
|
|
|
|
|
41
|
|
|
public function __toString() |
|
42
|
|
|
{ |
|
43
|
|
|
$output = $this->statusCode.PHP_EOL; |
|
44
|
|
|
foreach ($this->headers as $k => $v) { |
|
45
|
|
|
$output .= sprintf('%s: %s', $k, $v).PHP_EOL; |
|
46
|
|
|
} |
|
47
|
|
|
$output .= PHP_EOL; |
|
48
|
|
|
$output .= $this->body; |
|
49
|
|
|
|
|
50
|
|
|
return $output; |
|
51
|
|
|
} |
|
52
|
|
|
|
|
53
|
|
|
public function isOkay() |
|
54
|
|
|
{ |
|
55
|
|
|
return 200 <= $this->statusCode && 300 > $this->statusCode; |
|
56
|
|
|
} |
|
57
|
|
|
|
|
58
|
|
|
public function addHeader($key, $value) |
|
59
|
|
|
{ |
|
60
|
|
|
$this->headers[$key] = $value; |
|
61
|
|
|
} |
|
62
|
|
|
|
|
63
|
|
|
public function getHeader($key) |
|
64
|
|
|
{ |
|
65
|
|
|
if (array_key_exists($key, $this->headers)) { |
|
66
|
|
|
return $this->headers[$key]; |
|
67
|
|
|
} |
|
68
|
|
|
} |
|
69
|
|
|
|
|
70
|
|
|
public function setBody($body) |
|
71
|
|
|
{ |
|
72
|
|
|
$this->body = $body; |
|
73
|
|
|
} |
|
74
|
|
|
|
|
75
|
|
|
public function getStatusCode() |
|
76
|
|
|
{ |
|
77
|
|
|
return $this->statusCode; |
|
78
|
|
|
} |
|
79
|
|
|
|
|
80
|
|
|
public function getBody() |
|
81
|
|
|
{ |
|
82
|
|
|
return $this->body; |
|
83
|
|
|
} |
|
84
|
|
|
|
|
85
|
|
|
public function toArray() |
|
86
|
|
|
{ |
|
87
|
|
|
$output = [$this->statusCode]; |
|
88
|
|
|
foreach ($this->headers as $key => $value) { |
|
89
|
|
|
$output[] = sprintf('%s: %s', $key, $value); |
|
90
|
|
|
} |
|
91
|
|
|
$output[] = ''; |
|
92
|
|
|
$output[] = $this->body; |
|
93
|
|
|
|
|
94
|
|
|
return $output; |
|
95
|
|
|
} |
|
96
|
|
|
|
|
97
|
|
|
public function setFile($fileName) |
|
98
|
|
|
{ |
|
99
|
|
|
$this->addHeader('X-SENDFILE', $fileName); |
|
100
|
|
|
} |
|
101
|
|
|
|
|
102
|
|
|
public function send() |
|
103
|
|
|
{ |
|
104
|
|
|
http_response_code($this->statusCode); |
|
105
|
|
|
foreach ($this->headers as $key => $value) { |
|
106
|
|
|
header(sprintf('%s: %s', $key, $value)); |
|
107
|
|
|
} |
|
108
|
|
|
|
|
109
|
|
|
echo $this->body; |
|
110
|
|
|
} |
|
111
|
|
|
} |
|
112
|
|
|
|