forked from prolificinteractive/mabi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Middleware.php
executable file
·79 lines (67 loc) · 1.61 KB
/
Middleware.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
<?php
namespace MABI;
include_once __DIR__ . '/Controller.php';
abstract class Middleware {
/**
* @var \MABI\Controller
*/
protected $controller;
/**
* @var \MABI\Middleware Reference to the next downstream middleware
*/
protected $next;
/**
* todo: docs
*
* @param \MABI\Controller $controller
*/
public function setController($controller) {
$this->controller = $controller;
}
public function getRouteCallable() {
return $this->getController()->getApp()->getSlim()->router()->getCurrentRoute()->getCallable();
}
public function getApp() {
return $this->getController()->getApp();
}
/**
* todo: docs
*
* @return \MABI\Controller
*/
public function getController() {
return $this->controller;
}
/**
* Set next middleware
*
* This method injects the next downstream middleware into
* this middleware so that it may optionally be called
* when appropriate.
*
* @param \MABI\Middleware $nextMiddleware
*/
public function setNextMiddleware($nextMiddleware) {
$this->next = $nextMiddleware;
}
/**
* Get next middleware
*
* This method retrieves the next downstream middleware
* previously injected into this middleware.
*
* @return \MABI\Middleware
*/
public function getNextMiddleware() {
return $this->next;
}
public function documentMethod(\ReflectionClass $rClass, \ReflectionMethod $rMethod, array &$methodDoc) {
}
/**
* Call
*
* Perform actions specific to this middleware and optionally
* call the next downstream middleware.
*/
abstract public function call();
}