forked from avdg/ppi-framework-old
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRequest.php
473 lines (419 loc) · 10.2 KB
/
Request.php
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
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
<?php
/**
*
* @author Paul Dragoonis <dragoonis@php.net>
* @license http://opensource.org/licenses/mit-license.php MIT
* @package Core
* @link www.ppiframework.com
*
*/
class PPI_Request {
/**
* The COOKIE data
*
* @var null|object
*/
protected $_cookie = null;
/**
* The URI variables. eg: www.domain.com/some/uri/variables/here
*
* @var null|object
*/
protected $_get = null;
/**
* The POST data
*
* @var null|object
*/
protected $_post = null;
/**
* The SESSION data
*
* @var null|object
*/
protected $_session = null;
/**
* The SERVER data
*
* @var null|object
*/
protected $_server = null;
/**
* The query string data. eg: www.domain.com?query=string&data=here
*
* @var null|object
*/
protected $_getQuery = null;
/**
* Remote vars cache for the getRemove() function
*
* @var array
*/
protected $_remoteVars = array(
'ip' => '',
'userAgent' => '',
'browser' => '',
'browserVersion' => '',
'browserAndVersion' => ''
);
/**
* Vars cache for the is() function
*
* @var array
*/
protected $_isVars = array(
'ajax' => null,
'mobile' => null,
'ssl' => null
);
/**
* Mapping fields for get_browser()
*
* @var array
*/
protected $_userAgentMap = array(
'browser' => 'browser',
'browserVersion' => 'version',
'browserAndVersion' => 'parent'
);
/**
* The browser data from
*
* @var array|null
*/
protected $_userAgentInfo = null;
/**
* The request method
*
* @var null|string
*/
protected $_requestMethod = null;
/**
* The protocol being used
*
* @var null|string
*/
protected $_protocol = null;
/**
* The full url including the protocol
*
* @var null|string
*/
protected $_url = null;
/**
* The URI after the base url
*
* @var null|string
*/
protected $_uri = null;
/**
* The quick keyval lookup array for URI parameters
*
* @var array
*/
protected $_uriParams = array();
/**
* Constructor
*
* By default, it takes environment variables cookie, env, get, post, server and session
* from data collectors (PPI_Request_*)
*
* However, any of these can be overriden by an array or by an object that extends their
* representing PPI_Request_* class
*
* @param array $env Change environment variables
*/
function __construct(array $env = array()) {
if (isset($env['session']) && (is_array($env['session']) || $env['session'] instanceof PPI_Request_Session)) {
$this->_session = $env['session'];
} else {
$this->_session = new PPI_Request_Session();
}
if (isset($env['server']) && (is_array($env['server']) || $env['server'] instanceof PPI_Request_Server)) {
$this->_server = $env['server'];
} else {
$this->_server = new PPI_Request_Server();
}
if (isset($env['cookie']) && (is_array($env['cookie'] || $env['cookie'] instanceof PPI_Request_Cookie))) {
$this->_cookie = $env['cookie'];
} else {
$this->_cookie = new PPI_Request_Cookie();
}
if (isset($env['get']) && (is_array($env['get']) || $env['get'] instanceof PPI_Request_Url)) {
$this->_get = $env['get'];
} else {
if(isset($env['uri'])) {
$this->setUri($env['uri']);
}
$this->_get = new PPI_Request_Url($this->getUri());
}
if (isset($env['getQuery']) && (is_array($env['getQuery']) || $env['getQuery'] instanceof PPI_Request_Get)) {
$this->_getQuery = $env['getQuery'];
} else {
$this->_getQuery = new PPI_Request_Get();
}
if (isset($env['post']) && (is_array($env['post']) || $env['post'] instanceof PPI_Request_Post)) {
$this->_post = $env['post'];
} else {
$this->_post = new PPI_Request_Post();
}
}
/**
* Obtain a url segments value pair by specifying the key.
* eg: /key/val/key2/val2 - by specifying key, you get val, by specifying key2, you get val2.
*
* @param string $key
* @param mixed $default
* @return mixed
*/
function get($key = null, $default = null) {
if($key === null) {
return $this->_get->all();
}
return isset($this->_get[$key]) ? $this->_get[$key] : $default;
}
/**
* Get variables from the Query String.
* eg: www.domain.com?foo=bar. Asking for 'foo' will return you 'bar'
*
* @param string $key The Key
* @param null $default The default value is $key doesn't exist.
* @return mixed
*/
function getQuery($key = null, $default = null) {
if($key === null) {
return $this->_getQuery->all();
}
return isset($this->_getQuery[$key]) ? $this->_getQuery[$key] : $default; }
/**
* Retrieve information passed via the $_POST array.
* Can specify a key and return that, else return the whole $_POST array
*
* @param string $key Specific $_POST key
* @param mixed $default null if not specified, mixed otherwise
* @return string|array Depending if you passed in a value for $p_sIndex
*/
function post($key = null, $default = null) {
if($key === null) {
return $this->_post->all();
}
return isset($this->_post[$key]) ? $this->_post[$key] : $default;
}
/**
* Get a value from the SERVER.
*
* @param string $key
* @param mixed $default
* @return array|null
*/
function server($key = null, $default = null) {
if($key === null) {
return $this->_server->all();
}
return isset($this->_server[$key]) ? $this->_server[$key] : $default;
}
/**
* Retrieve all $_POST elements that have a specific prefix
*
* @param string $sPrefix The prefix to get values with
* @return array
*/
function stripPost($p_sPrefix = '') {
$aValues = array();
if ($p_sPrefix !== '' && $this->is('post')) {
$aPost = $this->post();
$aPrefixKeys = preg_grep("/{$p_sPrefix}/", array_keys($aPost));
foreach ($aPrefixKeys as $prefixKey) {
$aValues[$prefixKey] = $aPost[$prefixKey];
}
}
return $aValues;
}
/**
* Check whether a value has been submitted via post
*
* @param string $p_sKey The $_POST key
* @return boolean
*/
function hasPost($p_sKey) {
return array_key_exists($p_sKey, $this->_post);
}
/**
* Remove a value from the $_POST superglobal.
*
* @param string $p_sKey The key to remove
* @return boolean True if the value existed, false if not.
*/
function removePost($p_sKey) {
if (isset($this->_post[$p_sKey])) {
unset($this->_post[$p_sKey]);
return true;
}
return false;
}
/**
* Add a value to the $_POST superglobal
*
* @param string $p_sKey The key
* @param mixed $p_mValue The value to set the key with
* @return void
*/
function addPost($p_sKey, $p_mValue) {
$this->_post[$p_sKey] = $p_mValue;
}
/**
* Wipe the $_POST superglobal
*
* @return void
*/
function emptyPost() {
$_POST = array();
}
/**
* Series of request related boolean checks
*
* @param string $var
* @return bool
*/
function is($var) {
$var = strtolower($var);
switch ($var) {
case 'ajax':
if ($this->_isVars['ajax'] === null) {
$this->_isVars['ajax'] = isset($this->_server['HTTP_X_REQUESTED_WITH'])
&& strtolower($this->_server['HTTP_X_REQUESTED_WITH']) === 'xmlhttprequest';
}
return $this->_isVars['ajax'];
case 'post':
case 'get':
case 'put':
case 'delete':
case 'head':
return strtolower($this->getRequestMethod()) === $var;
case 'mobile':
if ($this->_isVars['mobile'] === null) {
$this->_isVars['mobile'] = $this->isRequestMobile();
}
return $this->_isVars['mobile'];
case 'https':
case 'ssl':
if ($this->_isVars['ssl'] === null) {
$this->_isVars['ssl'] = $this->getProtocol() === 'https';
}
return $this->_isVars['ssl'];
}
return false; // So that all paths return a val
}
/**
* Get a value from the remote requesting user/browser
*
* @param string $var
* @return string
*/
function getRemote($var) {
switch ($var) {
case 'ip':
return isset($this->_server['REMOTE_ADDR']) ? $this->_server['REMOTE_ADDR'] : '0.0.0.0';
case 'referer':
case 'referrer':
return isset($this->_server['HTTP_REFERER']) ? $this->_server['HTTP_REFERER'] : '';
case 'userAgent':
return isset($this->_server['HTTP_USER_AGENT']) ? $this->_server['HTTP_USER_AGENT'] : '';
case 'domain':
$url = parse_url($this->getUrl());
return ifset($uri['host'], '');
break;
case 'subdomain':
throw new PPI_Exception('Not yet developed');
break;
case 'browser':
case 'browserVersion':
case 'browserAndVersion':
// @tbc
break;
}
return ''; // So all code paths return a value
}
/**
* Get the current request uri
*
* @todo substr the baseurl
* @return string
*/
function getUri() {
if (null === $this->_uri) {
$this->_uri = $this->_server['REQUEST_URI'];
}
return $this->_uri;
}
/**
* Set the uri
*
* @param string $uri
* @return void
*/
function setUri($uri) {
$this->_uri = $uri;
}
/**
* Get the current protocol
*
* @return string
*/
function getProtocol() {
if (null === $this->_protocol) {
$this->_protocol = isset($this->_server['HTTPS']) && $this->_server['HTTPS'] == 'on' ? 'https' : 'http';
}
return $this->_protocol;
}
/**
* Get the current url
*
* @return string
*/
function getUrl() {
if ($this->_url === null) {
$this->_url = $this->getProtocol() . '://' . $this->_server['HTTP_HOST'] . $this->_server['REQUEST_URI'];
}
return $this->_url;
}
/**
* Is the current request a mobile request
*
* @todo see if there is an array based func to do the foreach and strpos
* @return boolean
*/
protected function isRequestMobile() {
$mobileUserAgents = array(
'iPhone', 'MIDP', 'AvantGo', 'BlackBerry', 'J2ME', 'Opera Mini', 'DoCoMo', 'NetFront',
'Nokia', 'PalmOS', 'PalmSource', 'portalmmm', 'Plucker', 'ReqwirelessWeb', 'iPod', 'iPad',
'SonyEricsson', 'Symbian', 'UP\.Browser', 'Windows CE', 'Xiino', 'Android'
);
$currentUserAgent = $this->getRemote('userAgent');
foreach ($mobileUserAgents as $userAgent) {
if (strpos($currentUserAgent, $userAgent) !== false) {
return true;
}
}
return false;
}
/**
* Get the current request method
*
* @return string
*/
protected function getRequestMethod() {
if (null === $this->_requestMethod) {
$this->_requestMethod = $this->_server['REQUEST_METHOD'];
}
return $this->_requestMethod;
}
/**
* Get the is vars
*
* @return array
*/
public function getIsVars() {
return $this->_isVars;
}
}