|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
namespace Nip\Controllers\Traits; |
|
4
|
|
|
|
|
5
|
|
|
use Nip\Container\Container; |
|
6
|
|
|
use Nip\Controllers\Controller; |
|
7
|
|
|
use Nip\Dispatcher\Dispatcher; |
|
8
|
|
|
use Nip\Request; |
|
9
|
|
|
|
|
10
|
|
|
/** |
|
11
|
|
|
* Trait DispatcherAwareTrait |
|
12
|
|
|
* @package Nip\Controllers\Traits |
|
13
|
|
|
*/ |
|
14
|
|
|
trait DispatcherAwareTrait |
|
15
|
|
|
{ |
|
16
|
|
|
/** |
|
17
|
|
|
* @return mixed |
|
18
|
|
|
* @throws \Exception |
|
19
|
|
|
*/ |
|
20
|
2 |
|
public function call() |
|
21
|
|
|
{ |
|
22
|
2 |
|
$arguments = func_get_args(); |
|
23
|
2 |
|
if (count($arguments) >= 3) { |
|
24
|
|
|
return $this->callMCA(...$arguments); |
|
|
|
|
|
|
25
|
|
|
} |
|
26
|
|
|
|
|
27
|
2 |
|
if (count($arguments) == 2 && is_array($arguments[1])) { |
|
28
|
1 |
|
if (is_string($arguments[0])) { |
|
29
|
1 |
|
return $this->{$arguments[0]}(...$arguments[1]); |
|
30
|
|
|
} |
|
31
|
|
|
} |
|
32
|
|
|
|
|
33
|
1 |
|
if (count($arguments) == 1) { |
|
34
|
1 |
|
return $this->{$arguments[0]}(); |
|
35
|
|
|
} |
|
36
|
|
|
|
|
37
|
|
|
throw new \Exception("Controller call method invoked with invalid parameters"); |
|
38
|
|
|
} |
|
39
|
|
|
|
|
40
|
|
|
/** |
|
41
|
|
|
* @param bool $action |
|
42
|
|
|
* @param bool $controller |
|
43
|
|
|
* @param bool $module |
|
44
|
|
|
* @param array $params |
|
45
|
|
|
* @return mixed |
|
46
|
|
|
*/ |
|
47
|
|
|
protected function callMCA($action = false, $controller = false, $module = false, $params = []) |
|
48
|
|
|
{ |
|
49
|
|
|
/** @var Request $newRequest */ |
|
50
|
|
|
$newRequest = $this->getRequest()->duplicateWithParams($action, $controller, $module, $params); |
|
|
|
|
|
|
51
|
|
|
|
|
52
|
|
|
/** @noinspection PhpUnhandledExceptionInspection */ |
|
53
|
|
|
return $this->getDispatcher()->callFromRequest($newRequest, $params); |
|
|
|
|
|
|
54
|
|
|
} |
|
55
|
|
|
|
|
56
|
|
|
/** |
|
57
|
|
|
* @param bool $action |
|
58
|
|
|
* @param bool $controller |
|
59
|
|
|
* @param bool $module |
|
60
|
|
|
* @param array $params |
|
61
|
|
|
*/ |
|
62
|
|
|
protected function forward($action = false, $controller = false, $module = false, $params = []) |
|
63
|
|
|
{ |
|
64
|
|
|
$this->getDispatcher()->forward($action, $controller, $module, $params); |
|
65
|
|
|
} |
|
66
|
|
|
|
|
67
|
|
|
/** |
|
68
|
|
|
* @return Dispatcher |
|
69
|
|
|
*/ |
|
70
|
|
|
protected function getDispatcher() |
|
71
|
|
|
{ |
|
72
|
|
|
if (function_exists('app')) { |
|
73
|
|
|
return app('dispatcher'); |
|
74
|
|
|
} |
|
75
|
|
|
|
|
76
|
|
|
return Container::getInstance()->get('dispatcher'); |
|
77
|
|
|
} |
|
78
|
|
|
} |
|
79
|
|
|
|
It seems like the type of the argument is not accepted by the function/method which you are calling.
In some cases, in particular if PHP’s automatic type-juggling kicks in this might be fine. In other cases, however this might be a bug.
We suggest to add an explicit type cast like in the following example: