-
-
Notifications
You must be signed in to change notification settings - Fork 107
/
Copy pathComponent.php
351 lines (282 loc) · 9.14 KB
/
Component.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
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
<?php
/**
* This file is part of the Nette Framework (https://nette.org)
* Copyright (c) 2004 David Grudl (https://davidgrudl.com)
*/
declare(strict_types=1);
namespace Nette\Application\UI;
use Nette;
/**
* Component is the base class for all Presenter components.
*
* Components are persistent objects located on a presenter. They have ability to own
* other child components, and interact with user. Components have properties
* for storing their status, and responds to user command.
*
* @property-read Presenter $presenter
* @property-read bool $linkCurrent
*/
abstract class Component extends Nette\ComponentModel\Container implements SignalReceiver, StatePersistent, \ArrayAccess
{
use Nette\ComponentModel\ArrayAccess;
/** @var array<callable(self): void> Occurs when component is attached to presenter */
public $onAnchor = [];
/** @var array */
protected $params = [];
/**
* Returns the presenter where this component belongs to.
* @return Presenter
*/
public function getPresenter(): ?Presenter
{
if (func_num_args()) {
trigger_error(__METHOD__ . '() parameter $throw is deprecated, use getPresenterIfExists()', E_USER_DEPRECATED);
$throw = func_get_arg(0);
}
return $this->lookup(Presenter::class, $throw ?? true);
}
/**
* Returns the presenter where this component belongs to.
*/
public function getPresenterIfExists(): ?Presenter
{
return $this->lookup(Presenter::class, false);
}
/** @deprecated */
public function hasPresenter(): bool
{
return (bool) $this->lookup(Presenter::class, false);
}
/**
* Returns a fully-qualified name that uniquely identifies the component
* within the presenter hierarchy.
*/
public function getUniqueId(): string
{
return $this->lookupPath(Presenter::class, true);
}
protected function createComponent(string $name): ?Nette\ComponentModel\IComponent
{
$res = parent::createComponent($name);
if ($res && !$res instanceof SignalReceiver && !$res instanceof StatePersistent) {
$type = get_class($res);
trigger_error("It seems that component '$name' of type $type is not intended to be used in the Presenter.", E_USER_NOTICE);
}
return $res;
}
protected function validateParent(Nette\ComponentModel\IContainer $parent): void
{
parent::validateParent($parent);
$this->monitor(Presenter::class, function (Presenter $presenter): void {
$this->loadState($presenter->popGlobalParameters($this->getUniqueId()));
Nette\Utils\Arrays::invoke($this->onAnchor, $this);
});
}
/**
* Calls public method if exists.
* @return bool does method exist?
*/
protected function tryCall(string $method, array $params): bool
{
$rc = $this->getReflection();
if ($rc->hasMethod($method)) {
$rm = $rc->getMethod($method);
if ($rm->isPrivate()) {
throw new Nette\InvalidStateException('Method ' . $rm->getName() . '() can not be called because it is private.');
}
if (!$rm->isAbstract() && !$rm->isStatic()) {
$this->checkRequirements($rm);
try {
$args = $rc->combineArgs($rm, $params);
} catch (Nette\InvalidArgumentException $e) {
throw new Nette\Application\BadRequestException($e->getMessage());
}
$rm->invokeArgs($this, $args);
return true;
}
}
return false;
}
/**
* Checks for requirements such as authorization.
*/
public function checkRequirements($element): void
{
if (
$element instanceof \ReflectionMethod
&& substr($element->getName(), 0, 6) === 'handle'
&& !ComponentReflection::parseAnnotation($element, 'crossOrigin')
&& (PHP_VERSION_ID < 80000 || !$element->getAttributes(Nette\Application\Attributes\CrossOrigin::class))
&& !$this->getPresenter()->getHttpRequest()->isSameSite()
) {
$this->getPresenter()->detectedCsrf();
}
}
/**
* Access to reflection.
*/
public static function getReflection(): ComponentReflection
{
return new ComponentReflection(static::class);
}
/********************* interface StatePersistent ****************d*g**/
/**
* Loads state informations.
*/
public function loadState(array $params): void
{
$reflection = $this->getReflection();
foreach ($reflection->getPersistentParams() as $name => $meta) {
if (isset($params[$name])) { // nulls are ignored
if (!$reflection->convertType($params[$name], $meta['type'])) {
throw new Nette\Application\BadRequestException(sprintf(
"Value passed to persistent parameter '%s' in %s must be %s, %s given.",
$name,
$this instanceof Presenter ? 'presenter ' . $this->getName() : "component '{$this->getUniqueId()}'",
$meta['type'],
is_object($params[$name]) ? get_class($params[$name]) : gettype($params[$name])
));
}
$this->$name = $params[$name];
} else {
$params[$name] = $this->$name ?? null;
}
}
$this->params = $params;
}
/**
* Saves state informations for next request.
*/
public function saveState(array &$params): void
{
$this->getReflection()->saveState($this, $params);
}
/**
* Returns component param.
* @return mixed
*/
final public function getParameter(string $name, $default = null)
{
return $this->params[$name] ?? $default;
}
/**
* Returns component parameters.
*/
final public function getParameters(): array
{
return $this->params;
}
/**
* Returns a fully-qualified name that uniquely identifies the parameter.
*/
final public function getParameterId(string $name): string
{
$uid = $this->getUniqueId();
return $uid === '' ? $name : $uid . self::NAME_SEPARATOR . $name;
}
/********************* interface SignalReceiver ****************d*g**/
/**
* Calls signal handler method.
* @throws BadSignalException if there is not handler method
*/
public function signalReceived(string $signal): void
{
if (!$this->tryCall($this->formatSignalMethod($signal), $this->params)) {
$class = static::class;
throw new BadSignalException("There is no handler for signal '$signal' in class $class.");
}
}
/**
* Formats signal handler method name -> case sensitivity doesn't matter.
*/
public static function formatSignalMethod(string $signal): string
{
return 'handle' . $signal;
}
/********************* navigation ****************d*g**/
/**
* Generates URL to presenter, action or signal.
* @param string $destination in format "[//] [[[module:]presenter:]action | signal! | this] [#fragment]"
* @param array|mixed $args
* @throws InvalidLinkException
*/
public function link(string $destination, $args = []): string
{
try {
$args = func_num_args() < 3 && is_array($args)
? $args
: array_slice(func_get_args(), 1);
return $this->getPresenter()->createRequest($this, $destination, $args, 'link');
} catch (InvalidLinkException $e) {
return $this->getPresenter()->handleInvalidLink($e);
}
}
/**
* Returns destination as Link object.
* @param string $destination in format "[//] [[[module:]presenter:]action | signal! | this] [#fragment]"
* @param array|mixed $args
*/
public function lazyLink(string $destination, $args = []): Link
{
$args = func_num_args() < 3 && is_array($args)
? $args
: array_slice(func_get_args(), 1);
return new Link($this, $destination, $args);
}
/**
* Determines whether it links to the current page.
* @param string $destination in format "[//] [[[module:]presenter:]action | signal! | this] [#fragment]"
* @param array|mixed $args
* @throws InvalidLinkException
*/
public function isLinkCurrent(?string $destination = null, $args = []): bool
{
if ($destination !== null) {
$args = func_num_args() < 3 && is_array($args)
? $args
: array_slice(func_get_args(), 1);
$this->getPresenter()->createRequest($this, $destination, $args, 'test');
}
return $this->getPresenter()->getLastCreatedRequestFlag('current');
}
/**
* Redirect to another presenter, action or signal.
* @param string $destination in format "[//] [[[module:]presenter:]action | signal! | this] [#fragment]"
* @param array|mixed $args
* @throws Nette\Application\AbortException
*/
public function redirect(string $destination, $args = []): void
{
$args = func_num_args() < 3 && is_array($args)
? $args
: array_slice(func_get_args(), 1);
$presenter = $this->getPresenter();
$presenter->redirectUrl($presenter->createRequest($this, $destination, $args, 'redirect'));
}
/**
* Permanently redirects to presenter, action or signal.
* @param string $destination in format "[//] [[[module:]presenter:]action | signal! | this] [#fragment]"
* @param array|mixed $args
* @throws Nette\Application\AbortException
*/
public function redirectPermanent(string $destination, $args = []): void
{
$args = func_num_args() < 3 && is_array($args)
? $args
: array_slice(func_get_args(), 1);
$presenter = $this->getPresenter();
$presenter->redirectUrl(
$presenter->createRequest($this, $destination, $args, 'redirect'),
Nette\Http\IResponse::S301_MOVED_PERMANENTLY
);
}
/**
* Throws HTTP error.
* @throws Nette\Application\BadRequestException
*/
public function error(string $message = '', int $httpCode = Nette\Http\IResponse::S404_NOT_FOUND): void
{
throw new Nette\Application\BadRequestException($message, $httpCode);
}
}
class_exists(PresenterComponent::class);