forked from illuminate/routing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathController.php
260 lines (229 loc) · 5 KB
/
Controller.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
<?php namespace Illuminate\Routing;
use Closure;
abstract class Controller {
/**
* The middleware registered on the controller.
*
* @var array
*/
protected $middleware = [];
/**
* The "before" filters registered on the controller.
*
* @var array
*/
protected $beforeFilters = array();
/**
* The "after" filters registered on the controller.
*
* @var array
*/
protected $afterFilters = array();
/**
* The router instance.
*
* @var \Illuminate\Routing\Router
*/
protected static $router;
/**
* Register middleware on the controller.
*
* @param string $middleware
* @param array $options
* @return void
*/
public function middleware($middleware, array $options = array())
{
$this->middleware[$middleware] = $options;
}
/**
* Register a "before" filter on the controller.
*
* @param \Closure|string $filter
* @param array $options
* @return void
*/
public function beforeFilter($filter, array $options = array())
{
$this->beforeFilters[] = $this->parseFilter($filter, $options);
}
/**
* Register an "after" filter on the controller.
*
* @param \Closure|string $filter
* @param array $options
* @return void
*/
public function afterFilter($filter, array $options = array())
{
$this->afterFilters[] = $this->parseFilter($filter, $options);
}
/**
* Parse the given filter and options.
*
* @param \Closure|string $filter
* @param array $options
* @return array
*/
protected function parseFilter($filter, array $options)
{
$parameters = array();
$original = $filter;
if ($filter instanceof Closure)
{
$filter = $this->registerClosureFilter($filter);
}
elseif ($this->isInstanceFilter($filter))
{
$filter = $this->registerInstanceFilter($filter);
}
else
{
list($filter, $parameters) = Route::parseFilter($filter);
}
return compact('original', 'filter', 'parameters', 'options');
}
/**
* Register an anonymous controller filter Closure.
*
* @param \Closure $filter
* @return string
*/
protected function registerClosureFilter(Closure $filter)
{
$this->getRouter()->filter($name = spl_object_hash($filter), $filter);
return $name;
}
/**
* Register a controller instance method as a filter.
*
* @param string $filter
* @return string
*/
protected function registerInstanceFilter($filter)
{
$this->getRouter()->filter($filter, array($this, substr($filter, 1)));
return $filter;
}
/**
* Determine if a filter is a local method on the controller.
*
* @param mixed $filter
* @return bool
*
* @throws \InvalidArgumentException
*/
protected function isInstanceFilter($filter)
{
if (is_string($filter) && starts_with($filter, '@'))
{
if (method_exists($this, substr($filter, 1))) return true;
throw new \InvalidArgumentException("Filter method [$filter] does not exist.");
}
return false;
}
/**
* Remove the given before filter.
*
* @param string $filter
* @return void
*/
public function forgetBeforeFilter($filter)
{
$this->beforeFilters = $this->removeFilter($filter, $this->getBeforeFilters());
}
/**
* Remove the given after filter.
*
* @param string $filter
* @return void
*/
public function forgetAfterFilter($filter)
{
$this->afterFilters = $this->removeFilter($filter, $this->getAfterFilters());
}
/**
* Remove the given controller filter from the provided filter array.
*
* @param string $removing
* @param array $current
* @return array
*/
protected function removeFilter($removing, $current)
{
return array_filter($current, function($filter) use ($removing)
{
return $filter['original'] != $removing;
});
}
/**
* Get the middleware assigned to the controller.
*
* @return array
*/
public function getMiddleware()
{
return $this->middleware;
}
/**
* Get the registered "before" filters.
*
* @return array
*/
public function getBeforeFilters()
{
return $this->beforeFilters;
}
/**
* Get the registered "after" filters.
*
* @return array
*/
public function getAfterFilters()
{
return $this->afterFilters;
}
/**
* Get the router instance.
*
* @return \Illuminate\Routing\Router
*/
public static function getRouter()
{
return static::$router;
}
/**
* Set the router instance.
*
* @param \Illuminate\Routing\Router $router
* @return void
*/
public static function setRouter(Router $router)
{
static::$router = $router;
}
/**
* Execute an action on the controller.
*
* @param string $method
* @param array $parameters
* @return \Symfony\Component\HttpFoundation\Response
*/
public function callAction($method, $parameters)
{
return call_user_func_array(array($this, $method), $parameters);
}
/**
* Handle calls to missing methods on the controller.
*
* @param string $method
* @param array $parameters
* @return mixed
*
* @throws \BadMethodCallException
*/
public function __call($method, $parameters)
{
throw new \BadMethodCallException("Method [$method] does not exist.");
}
}