1
|
|
|
<?php |
2
|
|
|
namespace PSFS\base; |
3
|
|
|
|
4
|
|
|
use PSFS\base\types\traits\SingletonTrait; |
5
|
|
|
|
6
|
|
|
/** |
7
|
|
|
* Class Request |
8
|
|
|
* @package PSFS |
9
|
|
|
*/ |
10
|
|
|
class Request |
11
|
|
|
{ |
12
|
|
|
use SingletonTrait; |
13
|
|
|
protected $server; |
14
|
|
|
protected $cookies; |
15
|
|
|
protected $upload; |
16
|
|
|
protected $header; |
17
|
|
|
protected $data; |
18
|
|
|
protected $raw = []; |
19
|
|
|
protected $query; |
20
|
|
|
private $isLoaded = false; |
21
|
|
|
|
22
|
2 |
|
public function init() |
|
|
|
|
23
|
|
|
{ |
24
|
2 |
|
$this->server = $_SERVER or []; |
|
|
|
|
25
|
2 |
|
$this->cookies = $_COOKIE or []; |
|
|
|
|
26
|
2 |
|
$this->upload = $_FILES or []; |
|
|
|
|
27
|
2 |
|
$this->header = $this->parseHeaders(); |
28
|
2 |
|
$this->data = $_REQUEST or []; |
|
|
|
|
29
|
2 |
|
$this->query = $_GET or []; |
|
|
|
|
30
|
2 |
|
$this->raw = json_decode(file_get_contents("php://input"), true) ?: []; |
31
|
2 |
|
$this->isLoaded = true; |
32
|
2 |
|
} |
33
|
|
|
|
34
|
|
|
/** |
35
|
|
|
* @return bool |
36
|
|
|
*/ |
37
|
1 |
|
public function isLoaded() { |
38
|
1 |
|
return $this->isLoaded; |
39
|
|
|
} |
40
|
|
|
|
41
|
|
|
/** |
42
|
|
|
* Método que devuelve las cabeceras de la petición |
43
|
|
|
* @return array |
44
|
|
|
*/ |
45
|
2 |
|
private function parseHeaders() |
46
|
|
|
{ |
47
|
2 |
|
return getallheaders(); |
48
|
|
|
} |
49
|
|
|
|
50
|
|
|
/** |
51
|
|
|
* Método que verifica si existe una cabecera concreta |
52
|
|
|
* @param $header |
53
|
|
|
* |
54
|
|
|
* @return boolean |
55
|
|
|
*/ |
56
|
2 |
|
public function hasHeader($header) |
57
|
|
|
{ |
58
|
2 |
|
return array_key_exists($header, $this->header); |
59
|
|
|
} |
60
|
|
|
|
61
|
|
|
|
62
|
|
|
/** |
63
|
|
|
* Método que indica si una petición tiene cookies |
64
|
|
|
* @return boolean |
65
|
|
|
*/ |
66
|
1 |
|
public function hasCookies() |
67
|
|
|
{ |
68
|
1 |
|
return (null !== $this->cookies && 0 !== count($this->cookies)); |
69
|
|
|
} |
70
|
|
|
|
71
|
|
|
/** |
72
|
|
|
* Método que indica si una petición tiene cookies |
73
|
|
|
* @return boolean |
74
|
|
|
*/ |
75
|
1 |
|
public function hasUpload() |
76
|
|
|
{ |
77
|
1 |
|
return (null !== $this->upload && 0 !== count($this->upload)); |
78
|
|
|
} |
79
|
|
|
|
80
|
|
|
/** |
81
|
|
|
* Método que devuelve el TimeStamp de la petición |
82
|
|
|
* |
83
|
|
|
* @param boolean $formatted |
84
|
|
|
* |
85
|
|
|
* @return string |
86
|
|
|
*/ |
87
|
|
|
public static function ts($formatted = false) |
88
|
|
|
{ |
89
|
|
|
return self::getInstance()->getTs($formatted); |
90
|
|
|
} |
91
|
|
|
|
92
|
1 |
|
public function getTs($formatted = false) |
|
|
|
|
93
|
|
|
{ |
94
|
1 |
|
return ($formatted) ? date('Y-m-d H:i:s', $this->server['REQUEST_TIME_FLOAT']) : $this->server['REQUEST_TIME_FLOAT']; |
|
|
|
|
95
|
|
|
} |
96
|
|
|
|
97
|
|
|
/** |
98
|
|
|
* Método que devuelve el Método HTTP utilizado |
99
|
|
|
* @return string |
100
|
|
|
*/ |
101
|
3 |
|
public function getMethod() |
102
|
|
|
{ |
103
|
3 |
|
return (array_key_exists('REQUEST_METHOD', $this->server)) ? strtoupper($this->server['REQUEST_METHOD']) : 'GET'; |
|
|
|
|
104
|
|
|
} |
105
|
|
|
|
106
|
|
|
/** |
107
|
|
|
* Método que devuelve una cabecera de la petición si existe |
108
|
|
|
* @param string $name |
109
|
|
|
* @param string $default |
|
|
|
|
110
|
|
|
* |
111
|
|
|
* @return string|null |
112
|
|
|
*/ |
113
|
1 |
|
public static function header($name, $default = null) |
114
|
|
|
{ |
115
|
1 |
|
return self::getInstance()->getHeader($name, $default); |
116
|
|
|
} |
117
|
|
|
|
118
|
|
|
/** |
119
|
|
|
* @param string $name |
120
|
|
|
* @param string $default |
|
|
|
|
121
|
|
|
* @return string|null |
122
|
|
|
*/ |
123
|
1 |
|
public function getHeader($name, $default = null) |
124
|
|
|
{ |
125
|
1 |
|
$header = null; |
126
|
1 |
|
if ($this->hasHeader($name)) { |
127
|
|
|
$header = $this->header[$name]; |
128
|
1 |
|
} else if(array_key_exists('h_' . strtolower($name), $this->query)) { |
129
|
|
|
$header = $this->query['h_' . strtolower($name)]; |
130
|
|
|
} |
131
|
1 |
|
return $header ?: $default; |
132
|
|
|
} |
133
|
|
|
|
134
|
|
|
/** |
135
|
|
|
* Método que devuelve la url solicitada |
136
|
|
|
* @return string|null |
137
|
|
|
*/ |
138
|
1 |
|
public static function requestUri() |
139
|
|
|
{ |
140
|
1 |
|
return self::getInstance()->getRequestUri(); |
141
|
|
|
} |
142
|
|
|
|
143
|
|
|
/** |
144
|
|
|
* @return string |
145
|
|
|
*/ |
146
|
8 |
|
public function getRequestUri() |
147
|
|
|
{ |
148
|
8 |
|
return array_key_exists('REQUEST_URI', $this->server) ? $this->server['REQUEST_URI'] : ''; |
149
|
|
|
} |
150
|
|
|
|
151
|
|
|
/** |
152
|
|
|
* Método que devuelve el idioma de la petición |
153
|
|
|
* @return string |
154
|
|
|
*/ |
155
|
|
|
public function getLanguage() |
156
|
|
|
{ |
157
|
|
|
return array_key_exists('HTTP_ACCEPT_LANGUAGE', $this->server) ? $this->server['HTTP_ACCEPT_LANGUAGE'] : 'es_ES'; |
|
|
|
|
158
|
|
|
} |
159
|
|
|
|
160
|
|
|
/** |
161
|
|
|
* Método que determina si se ha solicitado un fichero |
162
|
|
|
* @return boolean |
163
|
|
|
*/ |
164
|
4 |
|
public function isFile() |
165
|
|
|
{ |
166
|
4 |
|
$file = (preg_match('/\.[a-z0-9]{2,4}$/', $this->getRequestUri()) !== 0); |
167
|
4 |
|
return $file; |
168
|
|
|
} |
169
|
|
|
|
170
|
|
|
/** |
171
|
|
|
* Get query params |
172
|
|
|
* |
173
|
|
|
* @param string $queryParams |
174
|
|
|
* |
175
|
|
|
* @return mixed |
176
|
|
|
*/ |
177
|
|
|
public function getQuery($queryParams) |
178
|
|
|
{ |
179
|
|
|
return (array_key_exists($queryParams, $this->query)) ? $this->query[$queryParams] : null; |
180
|
|
|
} |
181
|
|
|
|
182
|
|
|
/** |
183
|
|
|
* Get all query params |
184
|
|
|
* |
185
|
|
|
* @return mixed |
186
|
|
|
*/ |
187
|
2 |
|
public function getQueryParams() |
188
|
|
|
{ |
189
|
2 |
|
return $this->query; |
190
|
|
|
} |
191
|
|
|
|
192
|
|
|
/** |
193
|
|
|
* Método que devuelve un parámetro de la solicitud |
194
|
|
|
* @param string $param |
195
|
|
|
* |
196
|
|
|
* @return string|null |
197
|
|
|
*/ |
198
|
|
|
public function get($param) |
199
|
|
|
{ |
200
|
|
|
return (array_key_exists($param, $this->data)) ? $this->data[$param] : null; |
201
|
|
|
} |
202
|
|
|
|
203
|
|
|
/** |
204
|
|
|
* Método que devuelve todos los datos del Request |
205
|
|
|
* @return array |
206
|
|
|
*/ |
207
|
1 |
|
public function getData() |
208
|
|
|
{ |
209
|
1 |
|
return array_merge($this->data, $this->raw); |
210
|
|
|
} |
211
|
|
|
|
212
|
|
|
/** |
213
|
|
|
* @return array |
214
|
|
|
*/ |
215
|
|
|
public function getRawData() { |
216
|
|
|
return $this->raw; |
217
|
|
|
} |
218
|
|
|
|
219
|
|
|
/** |
220
|
|
|
* Método que realiza una redirección a la url dada |
221
|
|
|
* @param string $url |
222
|
|
|
*/ |
223
|
|
|
public function redirect($url = null) |
224
|
|
|
{ |
225
|
|
|
if (null === $url) $url = $this->getServer('HTTP_ORIGIN'); |
226
|
|
|
ob_start(); |
227
|
|
|
header('Location: ' . $url); |
228
|
|
|
ob_end_clean(); |
229
|
|
|
Security::getInstance()->updateSession(); |
230
|
|
|
exit(_("Redireccionando...")); |
231
|
|
|
} |
232
|
|
|
|
233
|
|
|
/** |
234
|
|
|
* Devuelve un parámetro de $_SERVER |
235
|
|
|
* @param string $param |
236
|
|
|
* |
237
|
|
|
* @return string|null |
238
|
|
|
*/ |
239
|
3 |
|
public function getServer($param) |
240
|
|
|
{ |
241
|
3 |
|
return array_key_exists($param, $this->server) ? $this->server[$param] : null; |
242
|
|
|
} |
243
|
|
|
|
244
|
|
|
/** |
245
|
|
|
* Devuelve el nombre del servidor |
246
|
|
|
* @return string|null |
247
|
|
|
*/ |
248
|
|
|
public function getServerName() |
249
|
|
|
{ |
250
|
|
|
return $this->getServer("SERVER_NAME"); |
251
|
|
|
} |
252
|
|
|
|
253
|
|
|
/** |
254
|
|
|
* Devuelve el protocolo de la conexión |
255
|
|
|
* @return string |
256
|
|
|
*/ |
257
|
|
|
public function getProtocol() |
258
|
|
|
{ |
259
|
|
|
return ($this->getServer("HTTPS") || $this->getServer("https")) ? 'https://' : 'http://'; |
260
|
|
|
} |
261
|
|
|
|
262
|
|
|
/** |
263
|
|
|
* Devuelve la url completa de base |
264
|
|
|
* @param boolean $protocol |
265
|
|
|
* @return string |
266
|
|
|
*/ |
267
|
|
|
public function getRootUrl($protocol = true) |
268
|
|
|
{ |
269
|
|
|
$host = $this->getServerName(); |
270
|
|
|
$protocol = $protocol ? $this->getProtocol() : ''; |
271
|
|
|
$url = ''; |
272
|
|
|
if (!empty($host) && !empty($protocol)) $url = $protocol . $host; |
273
|
|
|
if (!in_array($this->getServer('SERVER_PORT'), [80, 443])) { |
274
|
|
|
$url .= ':' . $this->getServer('SERVER_PORT'); |
275
|
|
|
} |
276
|
|
|
return $url; |
277
|
|
|
} |
278
|
|
|
|
279
|
|
|
/** |
280
|
|
|
* Método que devuelve el valor de una cookie en caso de que exista |
281
|
|
|
* @param string $name |
282
|
|
|
* |
283
|
|
|
* @return string |
284
|
|
|
*/ |
285
|
1 |
|
public function getCookie($name) |
286
|
|
|
{ |
287
|
1 |
|
return array_key_exists($name, $this->cookies) ? $this->cookies[$name] : null; |
288
|
|
|
} |
289
|
|
|
|
290
|
|
|
/** |
291
|
|
|
* Método que devuelve los files subidos por POST |
292
|
|
|
* @param $name |
293
|
|
|
* |
294
|
|
|
* @return array |
295
|
|
|
*/ |
296
|
|
|
public function getFile($name) |
297
|
|
|
{ |
298
|
|
|
return array_key_exists($name, $this->upload) ? $this->upload[$name] : array(); |
299
|
|
|
} |
300
|
|
|
|
301
|
|
|
/** |
302
|
|
|
* Método que devuelve si la petición es ajax o no |
303
|
|
|
* @return boolean |
304
|
|
|
*/ |
305
|
1 |
|
public function isAjax() |
306
|
|
|
{ |
307
|
1 |
|
$requested = $this->getServer("HTTP_X_REQUESTED_WITH"); |
308
|
1 |
|
return (null !== $requested && strtolower($requested) == 'xmlhttprequest'); |
309
|
|
|
} |
310
|
|
|
|
311
|
|
|
} |
312
|
|
|
|
Instead of super-globals, we recommend to explicitly inject the dependencies of your class. This makes your code less dependent on global state and it becomes generally more testable: