-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathAbstractAddAllController.php
More file actions
425 lines (387 loc) · 13.3 KB
/
AbstractAddAllController.php
File metadata and controls
425 lines (387 loc) · 13.3 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
<?php
/**
* This file is part of MetaModels/core.
*
* (c) 2012-2025 The MetaModels team.
*
* 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 MetaModels/core
* @author Christian Schiffler <c.schiffler@cyberspectrum.de>
* @author Sven Baumann <baumann.sv@gmail.com>
* @author Richard Henkenjohann <richardhenkenjohann@googlemail.com>
* @author Ingolf Steinhardt <info@e-spin.de>
* @copyright 2012-2025 The MetaModels team.
* @license https://github.com/MetaModels/core/blob/master/LICENSE LGPL-3.0-or-later
* @filesource
*/
namespace MetaModels\CoreBundle\Controller\Backend;
use Contao\CoreBundle\Controller\Backend\AbstractBackendController;
use Contao\CoreBundle\Csrf\ContaoCsrfTokenManager;
use Contao\CoreBundle\Framework\Adapter;
use Contao\System;
use Doctrine\DBAL\Connection;
use MetaModels\Attribute\IAttribute;
use MetaModels\BackendIntegration\PurgeCache;
use MetaModels\IFactory;
use MetaModels\IMetaModel;
use Symfony\Component\HttpFoundation\RedirectResponse;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Contracts\Translation\TranslatorInterface;
use Twig\Environment as TwigEnvironment;
/**
* This controller provides the base for the add-all handlers for input screens and render settings.
*
* @SuppressWarnings(PHPMD.CouplingBetweenObjects)
*
* @psalm-suppress PropertyNotSetInConstructor
*/
abstract class AbstractAddAllController extends AbstractBackendController
{
/**
* Adapter to the Contao\System class.
*
* @var Adapter<System>
*/
private Adapter $systemAdapter;
/**
* The translator.
*
* @var TranslatorInterface
*/
private TranslatorInterface $translator;
/**
* The MetaModels factory.
*
* @var IFactory
*/
private IFactory $factory;
/**
* The database connection.
*
* @var Connection
*/
private Connection $connection;
/**
* The cache purger.
*
* @var PurgeCache
*/
private PurgeCache $purger;
/**
* The list of known attributes.
*
* @var array
*/
private array $knownAttributes;
/**
* The twig engine.
*
* @var TwigEnvironment
*/
protected $twig;
/**
* Sorting start value.
*
* @var int
*/
private int $startSort;
/**
* Create a new instance.
*
* @param TwigEnvironment $twig The templating instance.
* @param TranslatorInterface $translator The translator.
* @param IFactory $factory The MetaModels factory.
* @param Connection $connection The database connection.
* @param Adapter<System> $systemAdapter Adapter to the Contao\System class.
* @param PurgeCache $purger The cache purger.
*/
public function __construct(
TwigEnvironment $twig,
TranslatorInterface $translator,
IFactory $factory,
Connection $connection,
Adapter $systemAdapter,
PurgeCache $purger
) {
$this->twig = $twig;
$this->translator = $translator;
$this->factory = $factory;
$this->connection = $connection;
$this->systemAdapter = $systemAdapter;
$this->purger = $purger;
}
/**
* Create an empty data set for inclusion into the database.
*
* @param IAttribute $attribute The attribute to generate the data for.
* @param string $parentId The parent id.
* @param bool $activate Flag if the setting shall get activated.
* @param int $sort The sorting value.
* @param string $tlclass The CSS class.
*
* @return array
*/
abstract protected function createEmptyDataFor(IAttribute $attribute, $parentId, $activate, $sort, $tlclass = '');
/**
* Test if the passed attribute is acceptable.
*
* @param IAttribute $attribute The attribute to check.
*
* @return bool
*/
abstract protected function accepts(IAttribute $attribute);
/**
* Process the request.
*
* @param string $table The table name.
* @param string $metaModelName The MetaModel name.
* @param string $parentId The parent id.
* @param Request $request The request.
*
* @return Response
*
* @throws \RuntimeException Throws if you could not retrieve a metamodel.
*/
protected function process($table, $metaModelName, $parentId, Request $request)
{
$this->knownAttributes = $this->fetchExisting($table, $parentId);
$metaModel = $this->factory->getMetaModel($metaModelName);
if (!$metaModel) {
throw new \RuntimeException('Could not retrieve MetaModel ' . $metaModelName);
}
if ($request->request->has('add') || $request->request->has('saveNclose')) {
$this->perform($table, $request, $metaModel, $parentId);
// If we want to close, go back to referer.
if ($request->request->has('saveNclose')) {
return new RedirectResponse($this->getReferer($request, $table, false));
}
}
return $this->render(
'@MetaModelsCore/Backend/add-all.html.twig',
$this->renderOutput($table, $metaModel, $request)
);
}
/**
* Render the output array for the template.
*
* @param string $table The name of the table to add to.
* @param IMetaModel $metaModel The MetaModel name on which to work on.
* @param Request $request The request.
*
* @return array
*
* @SuppressWarnings(PHPMD.Superglobals)
*/
protected function renderOutput($table, $metaModel, Request $request)
{
$fields = $this->generateForm($table, $metaModel, $request);
$headline = $this->translator->trans('addall.description', [], $table);
$GLOBALS['TL_CSS']['metamodels.core'] = '/bundles/metamodelscore/css/style.css';
System::loadLanguageFile('default');
$tokenManager = System::getContainer()->get('contao.csrf.token_manager');
assert($tokenManager instanceof ContaoCsrfTokenManager);
return [
'title' => $headline,
'action' => '',
'requestToken' => $tokenManager->getDefaultTokenValue(),
'href' => $this->getReferer($request, $table, true),
'backBt' => $this->translator->trans('backBT', [], $table),
'add' => $this->translator->trans('continue', [], $table),
'saveNclose' => $this->translator->trans('saveNclose', [], $table),
'activate' => $this->translator->trans('addAll_activate', [], $table),
'tlclass' => '',
'headline' => $headline,
'selectAll' => $this->translator->trans('selectAll', [], $table) . '.',
'cacheMessage' => '',
'updateMessage' => '',
'hasCheckbox' => \count($fields) > 0,
'fields' => $fields,
'theme' => 'flexible',
//'stylesheets' => ['/bundles/metamodelscore/css/style.css']
];
}
/**
* Fetch existing entries.
*
* @param string $table The table name to fetch from.
* @param string $parentId The parent id.
*
* @return array
*/
private function fetchExisting(string $table, string $parentId): array
{
// Keep the sorting value.
$this->startSort = 0;
$this->knownAttributes = [];
$alreadyExisting = $this->connection
->createQueryBuilder()
->select('t.*')
->from($table, 't')
->where('t.pid=:pid')
->setParameter('pid', $parentId)
->orderBy('t.sorting')
->executeQuery();
foreach ($alreadyExisting->fetchAllAssociative() as $item) {
$this->knownAttributes[$item['attr_id']] = $item;
$this->startSort = $item['sorting'];
}
return $this->knownAttributes;
}
/**
* Check if an attribute is already present.
*
* @param IAttribute $attribute The attribute to check.
*
* @return bool
*/
private function knowsAttribute(IAttribute $attribute): bool
{
return \array_key_exists($attribute->get('id'), $this->knownAttributes);
}
/**
* Generate the form.
*
* @param string $table The table name.
* @param IMetaModel $metaModel The MetaModel name.
* @param Request $request The request.
*
* @return array
*/
private function generateForm(string $table, IMetaModel $metaModel, Request $request): array
{
$fields = [];
// Loop over all attributes now.
foreach ($metaModel->getAttributes() as $attribute) {
$attrId = $attribute->get('id');
if (!$this->accepts($attribute)) {
continue;
}
if ($this->knowsAttribute($attribute)) {
$fields[] = [
'checkbox' => false,
'text' => $this->checkboxCaption('addAll_alreadycontained', $table, $attribute),
'class' => 'tl_info',
'attr_id' => $attrId,
'name' => 'attribute_' . $attrId
];
continue;
} elseif ($this->isAttributeSubmitted($attrId, $request)) {
$fields[] = [
'checkbox' => false,
'text' => $this->checkboxCaption('addAll_addsuccess', $table, $attribute),
'class' => 'tl_confirm',
'attr_id' => $attrId,
'name' => 'attribute_' . $attrId
];
continue;
}
$fields[] = [
'checkbox' => true,
'text' => $this->checkboxCaption('addAll_willadd', $table, $attribute),
'class' => 'tl_new',
'attr_id' => $attrId,
'name' => 'attribute_' . $attrId
];
}
return $fields;
}
/**
* Translate the checkbox caption.
*
* @param string $key The language sub key.
* @param string $table The table name.
* @param IAttribute $attribute The attribute.
*
* @return string
*/
private function checkboxCaption(string $key, string $table, IAttribute $attribute): string
{
return $this->translator->trans(
$key,
[
'%name%' => $attribute->getName(),
'%type%' => $attribute->get('type'),
'%colName%' => $attribute->getColName()
],
$table
);
}
/**
* Test if an attribute has been submitted.
*
* @param string $attributeId The attribute id.
* @param Request $request The request.
*
* @return bool
*/
private function isAttributeSubmitted(string $attributeId, Request $request): bool
{
return $request->request->has('attribute_' . $attributeId);
}
/**
* Perform addition now.
*
* @param string $table The table.
* @param Request $request The request.
* @param IMetaModel $metaModel The MetaModel.
* @param string $parentId The parent id.
*
* @return void
*/
private function perform(string $table, Request $request, IMetaModel $metaModel, string $parentId): void
{
$activate = (bool) $request->request->get('activate');
$tlclass = (string) $request->request->get('tlclass');
$query = $this
->connection
->createQueryBuilder()
->insert($table);
foreach ($metaModel->getAttributes() as $attribute) {
if (
$this->knowsAttribute($attribute)
|| !($this->accepts($attribute) && $this->isAttributeSubmitted($attribute->get('id'), $request))
) {
continue;
}
$data = [];
foreach (
$this->createEmptyDataFor(
$attribute,
$parentId,
$activate,
$this->startSort,
$tlclass
) as $key => $value
) {
$data[$key] = ':' . $key;
$query->setParameter($key, $value);
}
$query->values($data)->executeQuery();
$this->startSort += 128;
}
$this->purger->purge();
}
/**
* Get the current Backend referrer URL.
*
* @param Request $request The request.
* @param string $table The table name.
* @param bool $encodeAmp Flag to encode ampersands or not.
*
* @return string
*/
private function getReferer(Request $request, string $table, bool $encodeAmp = false): string
{
$uri = $this->systemAdapter->getReferer($encodeAmp, $table);
// Make the location an absolute URL
if (!preg_match('@^https?://@i', $uri)) {
$uri = $request->getBasePath() . '/' . ltrim($uri, '/');
}
return $uri;
}
}