forked from zaphpa/zaphpa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
zaphpa.lib.php
755 lines (616 loc) · 22.1 KB
/
zaphpa.lib.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
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
<?php
/** Invalid path exception **/
class Zaphpa_InvalidPathException extends Exception {}
/** Non existant middleware class **/
class Zaphpa_InvalidMiddlewareClass extends Exception {}
/** File not found exception **/
class Zaphpa_CallbackFileNotFoundException extends Exception {}
/** Invalid callback exception **/
class Zaphpa_InvalidCallbackException extends Exception {}
/** Invalid URI Parameter exception **/
class Zaphpa_InvalidURIParameterException extends Exception {}
/** Invalid State of HTTP Response exception **/
class Zaphpa_InvalidResponseStateException extends Exception {}
/** Invalid HTTP Response Code exception **/
class Zaphpa_InvalidResponseCodeException extends Exception {}
/* Enable auto-loading of plugins */
require_once(__DIR__ . '/autoloader.php');
/**
* Handy regexp patterns for common types of URI parameters.
* @see: http://zaphpa.org/doc.html#Pre-defined_Validator_Types
*/
final class Zaphpa_Constants {
const PATTERN_ARGS = '?(?P<%s>(?:/.+)+)';
const PATTERN_ARGS_ALPHA = '?(?P<%s>(?:/[-\w]+)+)';
const PATTERN_WILD_CARD = '(?P<%s>.*)';
const PATTERN_ANY = '(?P<%s>(?:/?[^/]*))';
const PATTERN_ALPHA = '(?P<%s>(?:/?[-\w]+))';
const PATTERN_NUM = '(?P<%s>\d+)';
const PATTERN_DIGIT = '(?P<%s>\d+)';
const PATTERN_YEAR = '(?P<%s>\d{4})';
const PATTERN_MONTH = '(?P<%s>\d{1,2})';
const PATTERN_DAY = '(?P<%s>\d{1,2})';
const PATTERN_MD5 = '(?P<%s>[a-z0-9]{32})';
}
/**
* Callback class for route-processing.
*/
class Zaphpa_Callback_Util {
private static function loadFile($file) {
if (file_exists($file)) {
include_once($file);
} else {
throw new Zaphpa_CallbackFileNotFoundException('Controller file not found');
}
}
public static function getCallback($callback, $file = null) {
if ($file) {
self::loadFile($file);
}
if (is_array($callback)) {
$originalClass = array_shift($callback);
$method = new ReflectionMethod($originalClass, array_shift($callback));
if ($method->isPublic()) {
if ($method->isStatic()) {
$callback = array($originalClass, $method->name);
} else {
$callback = array(new $originalClass, $method->name);
}
}
}
if (is_callable($callback)) {
return $callback;
}
throw new Zaphpa_InvalidCallbackException('Invalid callback');
}
}
/**
* Generic URI matcher and parser implementation.
*/
class Zaphpa_Template {
private static $globalQueryParams = array();
private $patterns = array();
private $template = null;
private $params = array();
private $callbacks = array();
public function __construct($path) {
if ($path{0} != '/') {
$path = "/$path";
}
$this->template = rtrim($path, '\/');
}
public function getTemplate() {
return $this->template;
}
public function getExpression() {
$expression = $this->template;
if (preg_match_all('~(?P<match>\{(?P<name>.+?)\})~', $expression, $matches)) {
$expressions = array_map(array($this, 'pattern'), $matches['name']);
$expression = str_replace($matches['match'], $expressions, $expression);
}
return sprintf('~^%s$~', $expression);
}
public function pattern($token, $pattern = null) {
if ($pattern) {
if (!isset($this->patterns[$token])) {
$this->patterns[$token] = $pattern;
}
} else {
if (isset($this->patterns[$token])) {
$pattern = $this->patterns[$token];
} else {
$pattern = Zaphpa_Constants::PATTERN_ANY;
}
if ((is_string($pattern) && is_callable($pattern)) || is_array($pattern)) {
$this->callbacks[$token] = $pattern;
$this->patterns[$token] = $pattern = Zaphpa_Constants::PATTERN_ANY;
}
return sprintf($pattern, $token);
}
}
public function addQueryParam($name, $pattern = '', $defaultValue = null) {
if (!$pattern) {
$pattern = Zaphpa_Constants::PATTERN_ANY;
}
$this->params[$name] = (object) array(
'pattern' => sprintf($pattern, $name),
'value' => $defaultValue
);
}
public static function addGlobalQueryParam($name, $pattern = '', $defaultValue = null) {
if (!$pattern) {
$pattern = Zaphpa_Constants::PATTERN_ANY;
}
self::$globalQueryParams[$name] = (object) array(
'pattern' => sprintf($pattern, $name),
'value' => $defaultValue
);
}
public function match($uri) {
try {
$uri = rtrim($uri, '\/');
if (preg_match($this->getExpression(), $uri, $matches)) {
foreach($matches as $k => $v) {
if (is_numeric($k)) {
unset($matches[$k]);
} else {
if (isset($this->callbacks[$k])) {
$callback = Zaphpa_Callback_Util::getCallback($this->callbacks[$k]);
$value = call_user_func($callback, $v);
if ($value) {
$matches[$k] = $value;
} else {
throw new Zaphpa_InvalidURIParameterException('Invalid parameters detected');
}
}
if (strpos($v, '/') !== false) {
$matches[$k] = explode('/', trim($v, '\/'));
}
}
}
$params = array_merge(self::$globalQueryParams, $this->params);
if (!empty($params)) {
$matched = false;
foreach($params as $name=>$param) {
if (!isset($_GET[$name]) && $param->value) {
$_GET[$name] = $param->value;
$matched = true;
} else if ($param->pattern && isset($_GET[$name])) {
$result = preg_match(sprintf('~^%s$~', $param->pattern), $_GET[$name]);
if (!$result && $param->value) {
$_GET[$name] = $param->value;
$result = true;
}
$matched = $result;
} else {
$matched = false;
}
if ($matched == false) {
throw new Exception('Request does not match');
}
}
}
return $matches;
}
} catch(Exception $ex) {
throw $ex;
}
}
public static function regex($pattern) {
return "(?P<%s>$pattern)";
}
}
/**
* Response class
*/
class Zaphpa_Response {
/** Ordered chunks of the output buffer **/
public $chunks = array();
public $code = 200;
private $format;
private $req;
private $headers = array();
/** Public constructor **/
function __construct($request = null) {
$this->req = $request;
}
/**
* Add string to output buffer.
*/
public function add($out) {
$this->chunks[] = $out;
}
/**
* Flush output buffer to http client and end request
*
* @param $code
* HTTP response Code. Defaults to 200
* @param $format
* Output mime type. Defaults to request format
*/
public function send($code = null, $format = null) {
$this->flush($code, $format);
exit(); //prevent any further output
}
/**
* Send output to client without ending the script
*
* @param $code
* HTTP response Code. Defaults to 200
* @param $format
* Output mime type. Defaults to request format
*
* @return current respons eobject, so you can chain method calls on a response object.
*/
public function flush($code = null, $format = null) {
if (!empty($code)) {
if (headers_sent()) {
throw new Zaphpa_InvalidResponseStateException("Response code already sent: {$this->code}");
}
$codes = $this->codes();
if (array_key_exists($code, $codes)) {
$resp_text = $codes[$code];
$protocol = $this->req->protocol;
$this->code = $code;
} else {
throw new Zaphpa_InvalidResponseCodeException("Invalid Response Code: $code");
}
}
// If no format was set explicitely, use the request format for response.
if (!empty($format)) {
if (headers_sent()) {
throw new Zaphpa_InvalidResponseStateException("Response format already sent: {$this->format}");
}
$this->setFormat($format);
}
// Set default values (200 and request format) if nothing was set explicitely
if (empty($this->format)) { $this->format = $this->req->format; }
if (empty($this->code)) { $this->code = 200; }
$this->sendHeaders();
/* Call preprocessors on each middleware impl */
foreach (Zaphpa_Router::$middleware as $m) {
if ($m->shouldRun('prerender')) {
$m->prerender($this->chunks);
}
}
$out = implode('', $this->chunks);
$this->chunks = array(); // reset
echo ($out);
return $this;
}
/**
* Set output format. Common aliases like: xml, json, html and txt are supported and
* automatically converted to proper HTTP content type definitions.
*/
public function setFormat($format) {
$aliases = $this->req->common_aliases();
if (array_key_exists($format, $aliases)) {
$format = $aliases[$format];
}
$this->format = $format;
}
public function getFormat() {
return $this->format;
}
/**
* Send headers to instruct browser not to cache this content
* See http://stackoverflow.com/a/2068407
*/
public function disableBrowserCache() {
$this->headers[] = 'Cache-Control: no-cache, no-store, must-revalidate'; // HTTP 1.1.
$this->headers[] = 'Pragma: no-cache'; // HTTP 1.0.
$this->headers[] = 'Expires: Thu, 26 Feb 1970 20:00:00 GMT'; // Proxies.
}
/**
* Send entire collection of headers if they haven't already been sent
*/
private function sendHeaders() {
if (!headers_sent()) {
foreach ($this->headers as $header) {
header($header);
}
header("Content-Type: $this->format;", true, $this->code);
}
}
private function codes() {
return array(
'100' => 'Continue',
'101' => 'Switching Protocols',
'200' => 'OK',
'201' => 'Created',
'202' => 'Accepted',
'203' => 'Non-Authoritative Information',
'204' => 'No Content',
'205' => 'Reset Content',
'206' => 'Partial Content',
'300' => 'Multiple Choices',
'301' => 'Moved Permanently',
'302' => 'Found',
'303' => 'See Other',
'304' => 'Not Modified',
'305' => 'Use Proxy',
'307' => 'Temporary Redirect',
'400' => 'Bad Request',
'401' => 'Unauthorized',
'402' => 'Payment Required',
'403' => 'Forbidden',
'404' => 'Not Found',
'405' => 'Method Not Allowed',
'406' => 'Not Acceptable',
'407' => 'Proxy Authentication Required',
'408' => 'Request Timeout',
'409' => 'Conflict',
'410' => 'Gone',
'411' => 'Length Required',
'412' => 'Precondition Failed',
'413' => 'Request Entity Too Large',
'414' => 'Request-URI Too Long',
'415' => 'Unsupported Media Type',
'416' => 'Requested Range Not Satisfiable',
'417' => 'Expectation Failed',
'500' => 'Internal Server Error',
'501' => 'Not Implemented',
'502' => 'Bad Gateway',
'503' => 'Service Unavailable',
'504' => 'Gateway Timeout',
'505' => 'HTTP Version Not Supported',
);
}
} // end Zaphpa_Request
/**
* HTTP Request class
*/
class Zaphpa_Request {
public $params;
public $data;
public $format;
public $accepted_formats;
public $encodings;
public $charsets;
public $languages;
public $version;
public $method;
public $clientIP;
public $userAgent;
public $protocol;
function __construct() {
$this->method = Zaphpa_Router::getRequestMethod();
$this->clientIP = !empty($_SERVER['HTTP_X_FORWARDED_FOR']) ? $_SERVER['HTTP_X_FORWARDED_FOR'] : '';
$this->clientIP = (empty($this->clientIP) && !empty($_SERVER['REMOTE_ADDR'])) ? $_SERVER['REMOTE_ADDR'] : '';
$this->userAgent = empty($_SERVER['HTTP_USER_AGENT']) ? '' : $_SERVER['HTTP_USER_AGENT'];
$this->protocol = !empty($_SERVER['SERVER_PROTOCOL']) ? $_SERVER['SERVER_PROTOCOL'] : null;
$this->parse_special('encodings', 'HTTP_ACCEPT_ENCODING', array('utf-8'));
$this->parse_special('charsets', 'HTTP_ACCEPT_CHARSET', array('text/html'));
$this->parse_special('accepted_formats', 'HTTP_ACCEPT');
$this->parse_special('languages', 'HTTP_ACCEPT_LANGUAGE', array('en-US'));
// Caution: this piece of code assumes that both $_GET and $_POST are empty arrays when the request type is not GET or POST
// This is true for current versions of PHP, but it is PHP so it's subject to change
switch ($this->method) {
case "GET":
$this->data = $_GET;
break;
default:
$contents = file_get_contents('php://input');
$parsed_contents = null;
// @TODO: considering $_SERVER['HTTP_CONTENT_TYPE'] == 'application/x-www-form-urlencoded' could help here
parse_str($contents, $parsed_contents);
$this->data = $_GET + $_POST + $parsed_contents; // people do use query params with POST, PUT, and DELETE
$this->data['_RAW_HTTP_DATA'] = $contents;
}
// Requested output format, if any.
// Format in the URL request string takes priority over the one in HTTP headers, defaults to HTML.
if (!empty($this->data['format'])) {
$this->format = $this->data['format'];
$aliases = $this->common_aliases();
if (array_key_exists($this->format, $aliases)) {
$this->format = $aliases[$this->format];
}
unset($this->data['format']);
} elseif (!empty($this->accepted_formats[0])) {
$this->format = $this->accepted_formats[0];
unset ($this->data['format']);
}
}
/**
* Covenience method that checks is data item is empty to avoid notice-level warnings
*
* @param $idx
* name o the data variable (either request var or HTTP body var).
*/
public function get_var($idx) {
return (is_array($this->data) && isset($this->data[$idx])) ? $this->data[$idx] : null;
}
/**
* Subclass this function if you need a different set!
*/
public function common_aliases() {
return array(
'html' => 'text/html',
'txt' => 'text/plain',
'css' => 'text/css',
'js' => 'application/x-javascript',
'xml' => 'application/xml',
'rss' => 'application/rss+xml',
'atom' => 'application/atom+xml',
'json' => 'application/json',
'jsonp' => 'text/javascript',
);
}
/**
* Parses some packed $_SERVER variables into more useful arrays.
*/
private function parse_special($varname, $argname, $default=array()) {
$this->$varname = $default;
if (!empty($_SERVER[$argname])) {
// parse before the first ";" character
$truncated = substr($_SERVER[$argname], 0, strpos($_SERVER[$argname], ";", 0));
$truncated = !empty($truncated) ? $truncated : $_SERVER[$argname];
$this->$varname = explode(",", $truncated);
}
}
} // end Zaphpa_Request
abstract class Zaphpa_Middleware {
const ALL_METHODS = '*';
public $scope = array();
public static $context = array();
public static $routes = array();
/**
* Restrict a middleware hook to certain paths and HTTP methods.
*
* No actual restriction takes place in this method.
* We simply place the $methods array into $this->scope, keyed by its $hook.
*
* @param string $hook
* A middleware hook, expecting either 'preroute' or 'prerender'.
* @param array $rules
* An associative array of paths and their allowed methods:
* - path: A URL route string, the same as are used in $router->addRoute().
* - methods: An array of HTTP methods that are allowed, or an '*' to match all methods.
*
* @return Zaphpa_Middlware
* The current middleware object, to allow for chaining a la jQuery.
*/
public function restrict($hook, $methods, $route) {
$this->scope[$hook][$route] = $methods;
return $this;
}
/**
* Determine whether the current route has any route restrictions for this middleware.
*
* If the middleware has restrictions for a given $hook, we check for the current route.
* If the current route is in the list of allowed paths, we check that the
* request method is also allowed. Otherwise, the current route needn't run the $hook.
*
* @param string $hook
* A middleware hook, expecting either 'preroute' or 'prerender'.
*
* @return bool
* Whether the current route should run $hook.
*/
public function shouldRun($hook) {
if (isset($this->scope[$hook])) {
if (array_key_exists(self::$context['pattern'], $this->scope[$hook])) {
$methods = $this->scope[$hook][self::$context['pattern']];
if ($methods == self::ALL_METHODS) {
return true;
}
if (!is_array($methods)) {
return false;
}
if (!in_array(self::$context['http_method'], array_map('strtolower', $methods))) {
return false;
}
} else {
return false;
}
}
return true;
}
/** Preprocess. This is where you'd add new routes **/
public function preprocess(&$router) {}
/** Preroute. This is where you would aler request, or implement things like: security etc. **/
public function preroute(&$req, &$res) {}
/** This is your chance to override output. It can be called multiple times for each ->flush() invocation! **/
public function prerender(&$buffer) {}
} // end Zaphpa_Middleware
class Zaphpa_Router {
protected $routes = array();
public static $middleware = array();
/** Allowed HTTP Methods. Restricted to only common ones, for security reasons. **/
protected static $methods = array('get', 'post', 'put', 'patch', 'delete', 'head', 'options');
/**
* Add a new route to the configured list of routes
*/
public function addRoute($params) {
if (!empty($params['path'])) {
$template = new Zaphpa_Template($params['path']);
if (!empty($params['handlers'])) {
foreach ($params['handlers'] as $key => $pattern) {
$template->pattern($key, $pattern);
}
}
$methods = array_intersect(self::$methods, array_keys($params));
foreach ($methods as $method) {
$this->routes[$method][$params['path']] = array(
'template' => $template,
'callback' => $params[$method],
'file' => !empty($params['file']) ? $params['file'] : '',
);
Zaphpa_Middleware::$routes[$method][$params['path']] = $this->routes[$method][$params['path']];
}
}
}
/**
* Add a new middleware to the list of middlewares
*/
public function attach() {
$args = func_get_args();
$className = array_shift($args);
if (!is_subclass_of($className, 'Zaphpa_Middleware')) {
throw new Zaphpa_InvalidMiddlewareClass("Middleware class: '$className' does not exist or is not a sub-class of Zaphpa_Middleware" );
}
// convert args array to parameter list
$rc = new ReflectionClass($className);
$instance = $rc->newInstanceArgs($args);
self::$middleware[] = $instance;
return $instance;
}
/**
* Get lower-cased representation of current HTTP Request method
*/
public static function getRequestMethod() {
return strtolower($_SERVER['REQUEST_METHOD']);
}
/**
* Please note this method is performance-optimized to only return routes for
* current type of HTTP method
*/
private function getRoutes($all = false) {
if ($all) {
return $this->routes;
}
$method = self::getRequestMethod();
$routes = empty($this->routes[$method]) ? array() : $this->routes[$method];
return $routes;
}
public function route($uri = null) {
if (empty($uri)) {
// CAUTION: parse_url does not work reliably with relative URIs, it is intended for fully qualified URLs.
// Using parse_url with URI can cause bugs like this: https://github.com/zaphpa/zaphpa/issues/13
// We have URI and we could really use parse_url however, so let's pretend we have a full URL by prepending
// our URI with a meaningless scheme/domain.
$tokens = parse_url('http://foo.com' . $_SERVER['REQUEST_URI']);
$uri = rawurldecode($tokens['path']);
}
/* Call preprocessors on each middleware impl */
foreach (self::$middleware as $m) {
$m->preprocess($this);
}
$routes = $this->getRoutes();
foreach ($routes as $route) {
$params = $route['template']->match($uri);
if (!is_null($params)) {
Zaphpa_Middleware::$context['pattern'] = $route['template']->getTemplate();
Zaphpa_Middleware::$context['http_method'] = self::getRequestMethod();
Zaphpa_Middleware::$context['callback'] = $route['callback'];
$callback = Zaphpa_Callback_Util::getCallback($route['callback'], $route['file']);
return $this->invoke_callback($callback, $params);
}
}
if (strcasecmp(Zaphpa_Router::getRequestMethod(), "options") == 0)
{
return $this->invoke_options();
}
throw new Zaphpa_InvalidPathException('Invalid path');
}
/**
* Main reason this is a separate function is: in case library users want to change
* invokation logic, without having to copy/paste rest of the logic in the route() function.
*/
protected function invoke_callback($callback, $params) {
$req = new Zaphpa_Request();
$req->params = $params;
$res = new Zaphpa_Response($req);
/* Call preprocessors on each middleware impl */
foreach (self::$middleware as $m) {
if ($m->shouldRun('preroute')) {
$m->preroute($req,$res);
}
}
return call_user_func($callback, $req, $res);
}
protected function invoke_options() {
$req = new Zaphpa_Request();
$res = new Zaphpa_Response($req);
/* Call preprocessors on each middleware impl */
foreach (self::$middleware as $m) {
if ($m->shouldRun('preroute')) {
$m->preroute($req,$res);
}
}
$res->setFormat("httpd/unix-directory");
header("Allow: " . implode(",", array_map('strtoupper',Zaphpa_Router::$methods)));
$res->send(200);
return true;
}
} // end Zaphpa_Router