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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
|
<?php
/**
* MINZ - Copyright 2011 Marien Fressinaud
* Sous licence AGPL3 <http://www.gnu.org/licenses/>
*/
/**
* Request représente la requête http
*/
class Minz_Request {
private static $controller_name = '';
private static $action_name = '';
private static $params = array();
private static $default_controller_name = 'index';
private static $default_action_name = 'index';
/**
* Getteurs
*/
public static function controllerName() {
return self::$controller_name;
}
public static function actionName() {
return self::$action_name;
}
public static function params() {
return self::$params;
}
public static function param($key, $default = false, $specialchars = false) {
if (isset(self::$params[$key])) {
$p = self::$params[$key];
if (is_object($p) || $specialchars) {
return $p;
} else {
return Minz_Helper::htmlspecialchars_utf8($p);
}
} else {
return $default;
}
}
public static function paramTernary($key) {
if (isset(self::$params[$key])) {
$p = self::$params[$key];
$tp = trim($p);
if ($p === null || $tp === '' || $tp === 'null') {
return null;
} elseif ($p == false || $tp == '0' || $tp === 'false' || $tp === 'no') {
return false;
}
return true;
}
return null;
}
public static function paramBoolean($key) {
if (null === $value = self::paramTernary($key)) {
return false;
}
return $value;
}
public static function defaultControllerName() {
return self::$default_controller_name;
}
public static function defaultActionName() {
return self::$default_action_name;
}
public static function currentRequest() {
return array(
'c' => self::$controller_name,
'a' => self::$action_name,
'params' => self::$params,
);
}
/**
* Setteurs
*/
public static function _controllerName($controller_name) {
self::$controller_name = $controller_name;
}
public static function _actionName($action_name) {
self::$action_name = $action_name;
}
public static function _params($params) {
if (!is_array($params)) {
$params = array($params);
}
self::$params = $params;
}
public static function _param($key, $value = false) {
if ($value === false) {
unset(self::$params[$key]);
} else {
self::$params[$key] = $value;
}
}
/**
* Initialise la Request
*/
public static function init() {
self::initJSON();
}
public static function is($controller_name, $action_name) {
return (
self::$controller_name === $controller_name &&
self::$action_name === $action_name
);
}
/**
* Return true if the request is over HTTPS, false otherwise (HTTP)
*
* @return boolean
*/
public static function isHttps() {
$header = static::getHeader('HTTP_X_FORWARDED_PROTO');
if (null !== $header) {
return 'https' === strtolower($header);
}
return 'on' === static::getHeader('HTTPS');
}
/**
* Try to guess the base URL from $_SERVER information
*
* @return the base url (e.g. http://example.com/)
*/
public static function guessBaseUrl() {
$protocol = static::extractProtocol();
$host = static::extractHost();
$port = static::extractPortForUrl();
$prefix = static::extractPrefix();
$path = static::extractPath();
return filter_var("{$protocol}://{$host}{$port}{$prefix}{$path}", FILTER_SANITIZE_URL);
}
/**
* @return string
*/
private static function extractProtocol() {
if (static::isHttps()) {
return 'https';
}
return 'http';
}
/**
* @return string
*/
private static function extractHost() {
if (null !== $host = static::getHeader('HTTP_X_FORWARDED_HOST')) {
return parse_url("http://{$host}", PHP_URL_HOST);
}
if (null !== $host = static::getHeader('HTTP_HOST')) {
// Might contain a port number, and mind IPv6 addresses
return parse_url("http://{$host}", PHP_URL_HOST);
}
if (null !== $host = static::getHeader('SERVER_NAME')) {
return $host;
}
return 'localhost';
}
/**
* @return integer
*/
private static function extractPort() {
if (null !== $port = static::getHeader('HTTP_X_FORWARDED_PORT')) {
return intval($port);
}
if (null !== $proto = static::getHeader('HTTP_X_FORWARDED_PROTO')) {
return 'https' === strtolower($proto) ? 443 : 80;
}
if (null !== $port = static::getHeader('SERVER_PORT')) {
return intval($port);
}
return static::isHttps() ? 443 : 80;
}
/**
* @return string
*/
private static function extractPortForUrl() {
if (static::isHttps() && 443 !== $port = static::extractPort()) {
return ":{$port}";
}
if (!static::isHttps() && 80 !== $port = static::extractPort()) {
return ":{$port}";
}
return '';
}
/**
* @return string
*/
private static function extractPrefix() {
if (null !== $prefix = static::getHeader('HTTP_X_FORWARDED_PREFIX')) {
return rtrim($prefix, '/ ');
}
return '';
}
/**
* @return string
*/
private static function extractPath() {
if (null !== $path = static::getHeader('REQUEST_URI')) {
return '/' === substr($path, -1) ? substr($path, 0, -1) : dirname($path);
}
return '';
}
/**
* Return the base_url from configuration and add a suffix if given.
*
* @return the base_url with a suffix.
*/
public static function getBaseUrl() {
$conf = Minz_Configuration::get('system');
$url = rtrim($conf->base_url, '/\\');
return filter_var($url, FILTER_SANITIZE_URL);
}
/**
* Test if a given server address is publicly accessible.
*
* Note: for the moment it tests only if address is corresponding to a
* localhost address.
*
* @param $address the address to test, can be an IP or a URL.
* @return true if server is accessible, false otherwise.
* @todo improve test with a more valid technique (e.g. test with an external server?)
*/
public static function serverIsPublic($address) {
if (strlen($address) < strlen('http://a.bc')) {
return false;
}
$host = parse_url($address, PHP_URL_HOST);
if (!$host) {
return false;
}
$is_public = !in_array($host, array(
'localhost',
'localhost.localdomain',
'[::1]',
'ip6-localhost',
'localhost6',
'localhost6.localdomain6',
));
if ($is_public) {
$is_public &= !preg_match('/^(10|127|172[.]16|192[.]168)[.]/', $host);
$is_public &= !preg_match('/^(\[)?(::1$|fc00::|fe80::)/i', $host);
}
return (bool)$is_public;
}
/**
* Relance une requête
* @param $url l'url vers laquelle est relancée la requête
* @param $redirect si vrai, force la redirection http
* > sinon, le dispatcher recharge en interne
*/
public static function forward($url = array(), $redirect = false) {
if (!is_array($url)) {
header('Location: ' . $url);
exit();
}
$url = Minz_Url::checkUrl($url);
if ($redirect) {
header('Location: ' . Minz_Url::display($url, 'php'));
exit();
} else {
self::_controllerName($url['c']);
self::_actionName($url['a']);
self::_params(array_merge(
self::$params,
$url['params']
));
Minz_Dispatcher::reset();
}
}
/**
* Wrappers good notifications + redirection
* @param $msg notification content
* @param $url url array to where we should be forwarded
*/
public static function good($msg, $url = array()) {
Minz_Session::_param('notification', array(
'type' => 'good',
'content' => $msg
));
Minz_Request::forward($url, true);
}
public static function bad($msg, $url = array()) {
Minz_Session::_param('notification', array(
'type' => 'bad',
'content' => $msg
));
Minz_Request::forward($url, true);
}
/**
* Permet de récupérer une variable de type $_GET
* @param $param nom de la variable
* @param $default valeur par défaut à attribuer à la variable
* @return $_GET[$param]
* $_GET si $param = false
* $default si $_GET[$param] n'existe pas
*/
public static function fetchGET($param = false, $default = false) {
if (false === $param) {
return $_GET;
}
if (isset($_GET[$param])) {
return $_GET[$param];
}
return $default;
}
/**
* Allows receiving POST data as application/json
*/
private static function initJSON() {
if ('application/json' !== static::extractContentType()) {
return;
}
if ('' === $ORIGINAL_INPUT = file_get_contents('php://input', false, null, 0, 1048576)) {
return;
}
if (null === $json = json_decode($ORIGINAL_INPUT, true)) {
return;
}
foreach ($json as $k => $v) {
if (!isset($_POST[$k])) {
$_POST[$k] = $v;
}
}
}
/**
* @return string
*/
private static function extractContentType() {
return strtolower(trim(static::getHeader('CONTENT_TYPE')));
}
/**
* Permet de récupérer une variable de type $_POST
* @param $param nom de la variable
* @param $default valeur par défaut à attribuer à la variable
* @return $_POST[$param]
* $_POST si $param = false
* $default si $_POST[$param] n'existe pas
*/
public static function fetchPOST($param = false, $default = false) {
if (false === $param) {
return $_POST;
}
if (isset($_POST[$param])) {
return $_POST[$param];
}
return $default;
}
/**
* @return mixed
*/
public static function getHeader($header, $default = null) {
return isset($_SERVER[$header]) ? $_SERVER[$header] : $default;
}
/**
* @return boolean
*/
public static function isPost() {
return 'POST' === static::getHeader('REQUEST_METHOD');
}
/**
* @return array
*/
public static function getPreferredLanguage() {
if (preg_match_all('/(^|,)\s*(?P<lang>[^;,]+)/', static::getHeader('HTTP_ACCEPT_LANGUAGE'), $matches)) {
return $matches['lang'];
}
return array('en');
}
}
|