1
|
|
|
<?php |
2
|
|
|
|
|
|
|
|
3
|
|
|
namespace Jaxon\Request\Factory; |
4
|
|
|
|
5
|
|
|
/** |
|
|
|
|
6
|
|
|
* Factory.php |
7
|
|
|
* |
8
|
|
|
* Gives access to the factories. |
9
|
|
|
* |
10
|
|
|
* @package jaxon-core |
11
|
|
|
* @author Thierry Feuzeu <[email protected]> |
12
|
|
|
* @copyright 2022 Thierry Feuzeu <[email protected]> |
13
|
|
|
* @license https://opensource.org/licenses/BSD-3-Clause BSD 3-Clause License |
14
|
|
|
* @link https://github.com/jaxon-php/jaxon-core |
15
|
|
|
*/ |
16
|
|
|
|
17
|
|
|
use Jaxon\App\Dialog\DialogManager; |
18
|
|
|
use Jaxon\Exception\SetupException; |
19
|
|
|
use Jaxon\Plugin\Request\CallableClass\CallableRegistry; |
20
|
|
|
|
21
|
|
|
use function trim; |
22
|
|
|
|
23
|
|
|
class Factory |
|
|
|
|
24
|
|
|
{ |
25
|
|
|
/** |
26
|
|
|
* @var CallableRegistry |
27
|
|
|
*/ |
28
|
|
|
private $xCallableRegistry; |
|
|
|
|
29
|
|
|
|
30
|
|
|
/** |
31
|
|
|
* @var DialogManager |
32
|
|
|
*/ |
33
|
|
|
protected $xDialogManager; |
34
|
|
|
|
35
|
|
|
/** |
36
|
|
|
* @var ParameterFactory |
37
|
|
|
*/ |
38
|
|
|
protected $xParameterFactory; |
39
|
|
|
|
40
|
|
|
/** |
41
|
|
|
* @var JsCallFactory |
42
|
|
|
*/ |
43
|
|
|
protected $xRqFunctionFactory; |
44
|
|
|
|
45
|
|
|
/** |
46
|
|
|
* @var JsCallFactory |
47
|
|
|
*/ |
48
|
|
|
protected $xJsFunctionFactory; |
49
|
|
|
|
50
|
|
|
/** |
51
|
|
|
* The constructor. |
52
|
|
|
* |
53
|
|
|
* @param CallableRegistry $xCallableRegistry |
|
|
|
|
54
|
|
|
* @param DialogManager $xDialogManager |
|
|
|
|
55
|
|
|
* @param ParameterFactory $xParameterFactory |
|
|
|
|
56
|
|
|
* @param string $sFunctionPrefix |
|
|
|
|
57
|
|
|
*/ |
58
|
|
|
public function __construct(CallableRegistry $xCallableRegistry, |
|
|
|
|
59
|
|
|
DialogManager $xDialogManager, ParameterFactory $xParameterFactory, string $sFunctionPrefix) |
60
|
|
|
{ |
61
|
|
|
$this->xCallableRegistry = $xCallableRegistry; |
62
|
|
|
$this->xDialogManager = $xDialogManager; |
|
|
|
|
63
|
|
|
$this->xParameterFactory = $xParameterFactory; |
64
|
|
|
// Factory for registered functions |
65
|
|
|
$this->xRqFunctionFactory = new JsCallFactory($sFunctionPrefix, $this->xDialogManager); |
66
|
|
|
// Factory for Js functions |
67
|
|
|
$this->xJsFunctionFactory = new JsCallFactory($sFunctionPrefix, $this->xDialogManager); |
68
|
|
|
} |
|
|
|
|
69
|
|
|
|
70
|
|
|
/** |
71
|
|
|
* Get the js call factory. |
72
|
|
|
* |
73
|
|
|
* @param string $sClassName |
|
|
|
|
74
|
|
|
* |
75
|
|
|
* @return JsCallFactory|null |
76
|
|
|
* @throws SetupException |
77
|
|
|
*/ |
78
|
|
|
public function rq(string $sClassName = ''): ?JsCallFactory |
79
|
|
|
{ |
80
|
|
|
$sClassName = trim($sClassName); |
81
|
|
|
// There is a single request factory for all callable functions, |
82
|
|
|
// while each callable class has it own request factory. |
83
|
|
|
return !$sClassName ? $this->xRqFunctionFactory : |
|
|
|
|
84
|
|
|
$this->xCallableRegistry->getJsCallFactory($sClassName); |
85
|
|
|
} |
|
|
|
|
86
|
|
|
|
87
|
|
|
/** |
88
|
|
|
* Get the js call factory. |
89
|
|
|
* |
90
|
|
|
* @param string $sClassName |
|
|
|
|
91
|
|
|
* |
92
|
|
|
* @return JsCallFactory|null |
93
|
|
|
*/ |
94
|
|
|
public function js(string $sClassName = ''): ?JsCallFactory |
95
|
|
|
{ |
96
|
|
|
$sClassName = trim($sClassName); |
97
|
|
|
// There is a single request factory for all js functions, |
98
|
|
|
// while each js object has it own request factory. |
99
|
|
|
return !$sClassName ? $this->xJsFunctionFactory : |
|
|
|
|
100
|
|
|
new JsCallFactory($sClassName . '.', $this->xDialogManager); |
101
|
|
|
} |
|
|
|
|
102
|
|
|
|
103
|
|
|
/** |
104
|
|
|
* Get the js call parameter factory. |
105
|
|
|
* |
106
|
|
|
* @return ParameterFactory |
107
|
|
|
*/ |
108
|
|
|
public function pm(): ParameterFactory |
109
|
|
|
{ |
110
|
|
|
return $this->xParameterFactory; |
111
|
|
|
} |
|
|
|
|
112
|
|
|
} |
113
|
|
|
|