|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
namespace Bavix\Builder; |
|
4
|
|
|
|
|
5
|
|
|
use Bavix\Config\Config; |
|
6
|
|
|
use Bavix\Context\Cookies; |
|
7
|
|
|
use Bavix\Context\Session; |
|
8
|
|
|
use Bavix\Flow\Flow; |
|
9
|
|
|
use Bavix\Http\ServerRequest; |
|
10
|
|
|
use Bavix\Lumper\Bind; |
|
11
|
|
|
use Bavix\Processors\Factory; |
|
12
|
|
|
use Bavix\Router\Router; |
|
13
|
|
|
use Bavix\SDK\Path; |
|
14
|
|
|
use Bavix\Security\Password; |
|
15
|
|
|
use Psr\Http\Message\ServerRequestInterface; |
|
16
|
|
|
|
|
17
|
|
|
class Builder |
|
18
|
|
|
{ |
|
19
|
|
|
|
|
20
|
|
|
/** |
|
21
|
|
|
* @var string |
|
22
|
|
|
*/ |
|
23
|
|
|
protected $root; |
|
24
|
|
|
|
|
25
|
|
|
/** |
|
26
|
|
|
* Builder constructor. |
|
27
|
|
|
* |
|
28
|
|
|
* @param string $root |
|
29
|
|
|
*/ |
|
30
|
8 |
|
public function __construct(string $root) |
|
31
|
|
|
{ |
|
32
|
8 |
|
$this->root = Path::slash($root); |
|
33
|
8 |
|
} |
|
34
|
|
|
|
|
35
|
|
|
/** |
|
36
|
|
|
* @return Config |
|
37
|
|
|
*/ |
|
38
|
|
|
public function config(): Config |
|
39
|
|
|
{ |
|
40
|
7 |
|
return Bind::once(__METHOD__, function () { |
|
41
|
1 |
|
return new Config($this->root . 'etc'); |
|
42
|
7 |
|
}); |
|
43
|
|
|
} |
|
44
|
|
|
|
|
45
|
|
|
/** |
|
46
|
|
|
* @return Router |
|
47
|
|
|
*/ |
|
48
|
|
|
public function router(): Router |
|
49
|
|
|
{ |
|
50
|
1 |
|
return Bind::once(__METHOD__, function () { |
|
51
|
1 |
|
return new Router($this->config()->get('resolver')); |
|
52
|
1 |
|
}); |
|
53
|
|
|
} |
|
54
|
|
|
|
|
55
|
|
|
/** |
|
56
|
|
|
* @return ServerRequestInterface |
|
57
|
|
|
*/ |
|
58
|
1 |
|
private function _request(): ServerRequestInterface |
|
59
|
|
|
{ |
|
60
|
1 |
|
$scheme = filter_input(INPUT_SERVER, 'REQUEST_SCHEME'); |
|
61
|
1 |
|
$host = filter_input(INPUT_SERVER, 'HTTP_HOST'); |
|
62
|
1 |
|
$uri = filter_input(INPUT_SERVER, 'REQUEST_URI'); |
|
63
|
|
|
|
|
64
|
1 |
|
$uriObject = $this->factory()->uri |
|
65
|
1 |
|
->createUri($scheme . '://' . $host . $uri); |
|
66
|
|
|
|
|
67
|
1 |
|
$request = $this->factory()->request->createServerRequest( |
|
68
|
1 |
|
filter_input(INPUT_SERVER, 'REQUEST_METHOD') ?? 'GET', |
|
69
|
1 |
|
$uriObject |
|
70
|
|
|
); |
|
71
|
|
|
|
|
72
|
1 |
|
$query = filter_input_array(INPUT_GET, FILTER_UNSAFE_RAW) ?: []; |
|
73
|
1 |
|
$data = filter_input_array(INPUT_POST, FILTER_UNSAFE_RAW) ?: []; |
|
74
|
|
|
|
|
75
|
|
|
return $request |
|
76
|
1 |
|
->withQueryParams($query) |
|
77
|
1 |
|
->withParsedBody($data) |
|
78
|
1 |
|
->withUploadedFiles($_FILES); |
|
79
|
|
|
} |
|
80
|
|
|
|
|
81
|
|
|
/** |
|
82
|
|
|
* @return ServerRequestInterface |
|
83
|
|
|
*/ |
|
84
|
|
|
public function request(): ServerRequestInterface |
|
85
|
|
|
{ |
|
86
|
2 |
|
return Bind::once(__METHOD__, function () { |
|
87
|
|
|
|
|
88
|
1 |
|
$factory = $this->factory()->request; |
|
89
|
|
|
|
|
90
|
1 |
|
if (method_exists($factory, 'createServerRequestFromGlobals')) |
|
91
|
|
|
{ |
|
92
|
|
|
$request = $factory::createServerRequestFromGlobals(); |
|
93
|
|
|
} |
|
94
|
|
|
else |
|
95
|
|
|
{ |
|
96
|
1 |
|
$request = $this->_request(); |
|
97
|
|
|
} |
|
98
|
|
|
|
|
99
|
1 |
|
if ($request instanceof ServerRequest) |
|
100
|
|
|
{ |
|
101
|
|
|
return $request |
|
|
|
|
|
|
102
|
|
|
->withCookiesContent($this->cookies()) |
|
103
|
|
|
->withSessionContent($this->session()) |
|
104
|
|
|
->withRouter($this->router()); |
|
105
|
|
|
} |
|
106
|
|
|
|
|
107
|
1 |
|
return $request; |
|
108
|
2 |
|
}); |
|
109
|
|
|
} |
|
110
|
|
|
|
|
111
|
|
|
/** |
|
112
|
|
|
* @return Session |
|
113
|
|
|
*/ |
|
114
|
|
View Code Duplication |
public function session(): Session |
|
|
|
|
|
|
115
|
|
|
{ |
|
116
|
1 |
|
return Bind::once(__METHOD__, function () { |
|
117
|
|
|
|
|
118
|
1 |
|
$content = $this->config()->get('content'); |
|
119
|
1 |
|
$slice = $content->getSlice('session'); |
|
120
|
|
|
|
|
121
|
1 |
|
return new Session($slice->getData('password')); |
|
122
|
|
|
|
|
123
|
1 |
|
}); |
|
124
|
|
|
} |
|
125
|
|
|
|
|
126
|
|
|
/** |
|
127
|
|
|
* @return Cookies |
|
128
|
|
|
*/ |
|
129
|
|
View Code Duplication |
public function cookies(): Cookies |
|
|
|
|
|
|
130
|
|
|
{ |
|
131
|
1 |
|
return Bind::once(__METHOD__, function () { |
|
132
|
|
|
|
|
133
|
1 |
|
$content = $this->config()->get('content'); |
|
134
|
1 |
|
$slice = $content->getSlice('cookies'); |
|
135
|
|
|
|
|
136
|
1 |
|
return new Cookies($slice->getData('password')); |
|
137
|
|
|
|
|
138
|
1 |
|
}); |
|
139
|
|
|
} |
|
140
|
|
|
|
|
141
|
|
|
/** |
|
142
|
|
|
* @return Factory |
|
143
|
|
|
*/ |
|
144
|
|
|
public function factory(): Factory |
|
145
|
|
|
{ |
|
146
|
1 |
|
return Bind::once(__METHOD__, function () { |
|
147
|
1 |
|
return new Factory($this->config()->get('factory')); |
|
148
|
1 |
|
}); |
|
149
|
|
|
} |
|
150
|
|
|
|
|
151
|
|
|
/** |
|
152
|
|
|
* @return Flow |
|
153
|
|
|
*/ |
|
154
|
|
|
public function flow(): Flow |
|
155
|
|
|
{ |
|
156
|
1 |
|
return Bind::once(__METHOD__, function () { |
|
157
|
1 |
|
return new Flow(null, $this->config()->get('flow')->asArray()); |
|
158
|
1 |
|
}); |
|
159
|
|
|
} |
|
160
|
|
|
|
|
161
|
|
|
/** |
|
162
|
|
|
* @return Password |
|
163
|
|
|
*/ |
|
164
|
|
View Code Duplication |
public function password(): Password |
|
|
|
|
|
|
165
|
|
|
{ |
|
166
|
|
|
return Bind::once(__METHOD__, function () { |
|
167
|
|
|
|
|
168
|
|
|
$slice = $this->config()->get('password'); |
|
169
|
|
|
|
|
170
|
|
|
return new Password( |
|
171
|
|
|
$slice->getData('algo', PASSWORD_DEFAULT), |
|
172
|
|
|
$slice->getData('options') |
|
173
|
|
|
); |
|
174
|
|
|
}); |
|
175
|
|
|
} |
|
176
|
|
|
|
|
177
|
|
|
} |
|
178
|
|
|
|
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.