-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathOverrideAllHandler.php
More file actions
432 lines (371 loc) · 15.8 KB
/
Copy pathOverrideAllHandler.php
File metadata and controls
432 lines (371 loc) · 15.8 KB
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
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
<?php
/**
* This file is part of contao-community-alliance/dc-general.
*
* (c) 2013-2024 Contao Community Alliance.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* This project is provided in good faith and hope to be usable by anyone.
*
* @package contao-community-alliance/dc-general
* @author Sven Baumann <baumann.sv@gmail.com>
* @author Richard Henkenjohann <richardhenkenjohann@googlemail.com>
* @author Ingolf Steinhardt <info@e-spin.de>
* @copyright 2013-2024 Contao Community Alliance.
* @license https://github.com/contao-community-alliance/dc-general/blob/master/LICENSE LGPL-3.0
* @filesource
*/
namespace ContaoCommunityAlliance\DcGeneral\Contao\View\Contao2BackendView\ActionHandler\MultipleHandler;
use Contao\System;
use Contao\Widget;
use ContaoCommunityAlliance\DcGeneral\Action;
use ContaoCommunityAlliance\DcGeneral\Contao\Compatibility\DcCompat;
use ContaoCommunityAlliance\DcGeneral\Contao\RequestScopeDeterminator;
use ContaoCommunityAlliance\DcGeneral\Contao\RequestScopeDeterminatorAwareTrait;
use ContaoCommunityAlliance\DcGeneral\Contao\View\Contao2BackendView\ContaoWidgetManager;
use ContaoCommunityAlliance\DcGeneral\Contao\View\Contao2BackendView\Event\EncodePropertyValueFromWidgetEvent;
use ContaoCommunityAlliance\DcGeneral\Contao\View\Contao2BackendView\Widget\AbstractWidget;
use ContaoCommunityAlliance\DcGeneral\Data\EditInformationInterface;
use ContaoCommunityAlliance\DcGeneral\Data\ModelInterface;
use ContaoCommunityAlliance\DcGeneral\Data\PropertyValueBag;
use ContaoCommunityAlliance\DcGeneral\Data\PropertyValueBagInterface;
use ContaoCommunityAlliance\DcGeneral\DataDefinition\ContainerInterface;
use ContaoCommunityAlliance\DcGeneral\EnvironmentInterface;
use ContaoCommunityAlliance\DcGeneral\Event\ActionEvent;
use ContaoCommunityAlliance\DcGeneral\InputProviderInterface;
use ContaoCommunityAlliance\DcGeneral\View\ActionHandler\AbstractPropertyOverrideEditAllHandler;
use ContaoCommunityAlliance\DcGeneral\View\ActionHandler\CallActionTrait;
use ContaoCommunityAlliance\Translator\TranslatorInterface;
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
/**
* The class handle the "overrideAll" commands.
*
* @SuppressWarnings(PHPMD.CouplingBetweenObjects)
*/
class OverrideAllHandler extends AbstractPropertyOverrideEditAllHandler
{
use RequestScopeDeterminatorAwareTrait;
use CallActionTrait;
/**
* OverrideAllHandler constructor.
*
* @param RequestScopeDeterminator $scopeDeterminator The request scope determinator.
*/
public function __construct(RequestScopeDeterminator $scopeDeterminator)
{
$this->scopeDeterminator = $scopeDeterminator;
}
/**
* {@inheritDoc}
*/
public function handleEvent(ActionEvent $event): void
{
if (
!$this->getScopeDeterminator()->currentScopeIsBackend()
|| ('overrideAll' !== $event->getAction()->getName())
) {
return;
}
if ('' !== ($response = $this->process($event->getAction(), $event->getEnvironment()))) {
$event->setResponse($response);
$event->stopPropagation();
}
}
/**
* Process the override all handler.
*
* @param Action $action The action.
* @param EnvironmentInterface $environment The enviroment.
*
* @return string
*
* @SuppressWarnings(PHPMD.Superglobals)
*/
private function process(Action $action, EnvironmentInterface $environment)
{
$inputProvider = $environment->getInputProvider();
assert($inputProvider instanceof InputProviderInterface);
$translator = $environment->getTranslator();
assert($translator instanceof TranslatorInterface);
$editInformation = System::getContainer()->get('cca.dc-general.edit-information');
assert($editInformation instanceof EditInformationInterface);
$renderInformation = new \ArrayObject();
$propertyValueBag = new PropertyValueBag();
foreach ($this->getOverrideProperties($action, $environment) as $property) {
$propertyValueBag->setPropertyValue($property->getName(), $property->getDefaultValue());
}
if (false !== $inputProvider->hasValue('FORM_INPUTS')) {
foreach ($inputProvider->getValue('FORM_INPUTS') as $formInput) {
$propertyValueBag->setPropertyValue($formInput, $inputProvider->getValue($formInput));
}
}
$this->invisibleUnusedProperties($action, $environment);
$this->handleOverrideCollection($action, $renderInformation, $propertyValueBag, $environment);
$this->renderFieldSets($action, $renderInformation, $propertyValueBag, $environment);
$this->updateErrorInformation($renderInformation);
if (!$editInformation->hasAnyModelError()) {
$this->handleSubmit($action, $environment);
}
$definition = $environment->getDataDefinition();
assert($definition instanceof ContainerInterface);
return $this->renderTemplate(
$action,
[
'subHeadline' =>
$translator->translate($inputProvider->getParameter('mode') . 'Selected', 'dc-general') . ': ' .
$translator->translate('editAll.label', 'dc-general'),
'fieldsets' => $renderInformation->offsetGet('fieldsets'),
'table' => $definition->getName(),
'error' => $renderInformation->offsetGet('error'),
'breadcrumb' => $this->renderBreadcrumb($environment),
'editButtons' => $this->getEditButtons($action, $environment),
'noReload' => $editInformation->hasAnyModelError()
]
);
}
/**
* Handle invalid property value bag.
*
* @param PropertyValueBagInterface|null $propertyValueBag The property value bag.
* @param ModelInterface|null $model The model.
* @param EnvironmentInterface $environment The environment.
*
* @return void
*
* @deprecated Deprecated since 2.1 and where remove in 3.0.
*
* @SuppressWarnings(PHPMD.LongVariable)
*/
protected function handleInvalidPropertyValueBag(
?PropertyValueBagInterface $propertyValueBag,
?ModelInterface $model,
EnvironmentInterface $environment
) {
// @codingStandardsIgnoreStart
@\trigger_error('This function where remove in 3.0. ' . __CLASS__ . '::' . __FUNCTION__, E_USER_DEPRECATED);
// @codingStandardsIgnoreEnd
if ((null === $propertyValueBag) || (null === $model)) {
return;
}
$inputProvider = $environment->getInputProvider();
assert($inputProvider instanceof InputProviderInterface);
foreach (\array_keys($propertyValueBag->getArrayCopy()) as $propertyName) {
$allErrors = $propertyValueBag->getPropertyValueErrors($propertyName);
$mergedErrors = [];
if (\count($allErrors) > 0) {
foreach ($allErrors as $error) {
if (\in_array($error, $mergedErrors)) {
continue;
}
$mergedErrors[] = $error;
}
}
$eventPropertyValueBag = new PropertyValueBag();
$eventPropertyValueBag->setPropertyValue($propertyName, $inputProvider->getValue($propertyName, true));
$event = new EncodePropertyValueFromWidgetEvent($environment, $model, $eventPropertyValueBag);
$event->setProperty($propertyName)
->setValue($inputProvider->getValue($propertyName, true));
$dispatcher = $environment->getEventDispatcher();
assert($dispatcher instanceof EventDispatcherInterface);
$dispatcher->dispatch($event, EncodePropertyValueFromWidgetEvent::NAME);
$propertyValueBag->setPropertyValue($propertyName, $event->getValue());
if (\count($mergedErrors) > 0) {
$propertyValueBag->markPropertyValueAsInvalid($propertyName, $mergedErrors);
}
}
}
/**
* Handle override of model collection.
*
* @param Action $action The action.
* @param \ArrayObject $renderInformation The render information.
* @param PropertyValueBagInterface|null $propertyValues The property values.
* @param EnvironmentInterface $environment The environment.
*
* @return void
*/
private function handleOverrideCollection(
Action $action,
\ArrayObject $renderInformation,
?PropertyValueBagInterface $propertyValues,
EnvironmentInterface $environment
) {
if (!$propertyValues) {
return;
}
$revertCollection = $this->getCollectionFromSession($action, $environment);
$this->editCollection(
$action,
$this->getCollectionFromSession($action, $environment),
$propertyValues,
$renderInformation,
$environment
);
if ($propertyValues->hasNoInvalidPropertyValues()) {
$this->handleSubmit($action, $environment);
}
$this->revertValuesByErrors($action, $revertCollection, $environment);
}
/**
* Return the select properties from the session.
*
* @param Action $action The action.
* @param EnvironmentInterface $environment The environment.
*
* @return array
*/
private function getOverrideProperties(Action $action, EnvironmentInterface $environment)
{
$selectProperties = $this->getPropertiesFromSession($action, $environment);
$properties = [];
foreach (\array_keys($selectProperties) as $propertyName) {
$properties[$propertyName] = $selectProperties[$propertyName];
}
return $properties;
}
/**
* Render the field sets.
*
* @param Action $action The action.
* @param \ArrayObject $renderInformation The render information.
* @param PropertyValueBagInterface $propertyValues The property values.
* @param EnvironmentInterface $environment The environment.
*
* @return void
*/
private function renderFieldSets(
Action $action,
\ArrayObject $renderInformation,
PropertyValueBagInterface $propertyValues,
EnvironmentInterface $environment
) {
$properties = $this->getOverrideProperties($action, $environment);
$model = $this->getIntersectionModel($action, $environment);
$widgetManager = new ContaoWidgetManager($environment, $model);
$errors = [];
$fieldSet = ['palette' => '', 'class' => 'tl_box'];
$propertyNames = \array_keys($propertyValues->getArrayCopy());
foreach ($propertyNames as $propertyName) {
$errors = $this->getPropertyValueErrors($propertyValues, $propertyName, $errors);
if (false === \array_key_exists($propertyName, $properties)) {
continue;
}
$property = $properties[$propertyName];
$this->setDefaultValue($model, $propertyValues, $propertyName, $environment);
$widget = $widgetManager->getWidget($property->getName(), $propertyValues);
assert($widget instanceof Widget);
$widgetModel = $this->getModelFromWidget($widget);
if (!$this->ensurePropertyVisibleInModel($action, $property->getName(), $widgetModel, $environment)) {
$fieldSet['palette'] .=
$this->injectSelectParentPropertyInformation($action, $property, $widgetModel, $environment) ?? '';
continue;
}
if ($extra = $property->getExtra()) {
foreach (['tl_class'] as $extraName) {
unset($extra[$extraName]);
}
$property->setExtra($extra);
}
$fieldSet['palette'] .= $widgetManager->renderWidget($property->getName(), false, $propertyValues);
$fieldSet['palette'] .= $this->injectSelectSubPropertiesInformation(
$property,
$widgetModel,
$propertyValues,
$environment
) ?? '';
}
$translator = $environment->getTranslator();
assert($translator instanceof TranslatorInterface);
if ('' === $fieldSet['palette']) {
$fieldSet['palette'] = \sprintf(
'<p> </p><strong>%s</strong><p> </p>',
$translator->translate('no_properties_available', 'dc-general')
);
}
$renderInformation->offsetSet('fieldsets', [$fieldSet]);
$renderInformation->offsetSet('error', $errors);
}
/**
* Get the model from the widget.
*
* @param Widget $widget The widget the contains the model.
*
* @return ModelInterface
*/
private function getModelFromWidget(Widget $widget): ModelInterface
{
if ($widget->dataContainer instanceof DcCompat) {
$model = $widget->dataContainer->getModel();
if (null === $model) {
throw new \InvalidArgumentException('Datacontainer does not hold a model.');
}
return $model;
}
if ($widget instanceof AbstractWidget) {
return $widget->getModel();
}
throw new \InvalidArgumentException('Expected an instance of ' . AbstractWidget::class);
}
/**
* Get the merged property value errors.
*
* @param PropertyValueBagInterface $propertyValueBag The property value bag.
* @param string $propertyName The property name.
* @param array $errors The errors.
*
* @return array
*/
private function getPropertyValueErrors(
PropertyValueBagInterface $propertyValueBag,
string $propertyName,
array $errors
): array {
if (
$propertyValueBag->hasPropertyValue($propertyName)
&& $propertyValueBag->isPropertyValueInvalid($propertyName)
) {
$errors = \array_merge(
$errors,
$propertyValueBag->getPropertyValueErrors($propertyName)
);
}
return $errors;
}
/**
* Set the default value if no value is set.
*
* @param ModelInterface $model The model.
* @param PropertyValueBagInterface $propertyValueBag The property value bag.
* @param string $propertyName The property name.
* @param EnvironmentInterface $environment The environment.
*
* @return void
*/
private function setDefaultValue(
ModelInterface $model,
PropertyValueBagInterface $propertyValueBag,
string $propertyName,
EnvironmentInterface $environment
): void {
$definition = $environment->getDataDefinition();
assert($definition instanceof ContainerInterface);
$propertiesDefinition = $definition->getPropertiesDefinition();
// If in the intersect model the value available, then set it as default.
if ($modelValue = $model->getProperty($propertyName)) {
$propertyValueBag->setPropertyValue($propertyName, $modelValue);
return;
}
if (
$propertiesDefinition->hasProperty($propertyName)
&& null !== ($inputProvider = $environment->getInputProvider())
&& !$inputProvider->hasValue($propertyName)
) {
$propertyValueBag->setPropertyValue(
$propertyName,
$propertiesDefinition->getProperty($propertyName)->getDefaultValue()
);
}
}
}