-
Notifications
You must be signed in to change notification settings - Fork 586
/
Copy pathHandleBlocks.php
575 lines (492 loc) · 21.6 KB
/
HandleBlocks.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
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
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
<?php
namespace A17\Twill\Repositories\Behaviors;
use Illuminate\Support\Str;
use Illuminate\Support\Arr;
use A17\Twill\Facades\TwillBlocks;
use A17\Twill\Facades\TwillUtil;
use A17\Twill\Models\Behaviors\HasMedias;
use A17\Twill\Models\Block;
use A17\Twill\Models\Contracts\TwillModelContract;
use A17\Twill\Models\Model;
use A17\Twill\Repositories\BlockRepository;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\Log;
use Illuminate\Support\Facades\Schema;
use Illuminate\Support\Facades\Validator;
use Illuminate\Validation\ValidationException;
use Symfony\Component\Routing\Exception\RouteNotFoundException;
trait HandleBlocks
{
protected static $hasRelatedTableCache;
private ?\Illuminate\Validation\Validator $blockValidator = null;
public function hydrateHandleBlocks(
TwillModelContract $object,
array $fields,
int &$fakeBlockId = 0,
?int $parentId = null,
?Collection $blocksFromFields = null,
?Collection $mainCollection = null
): ?TwillModelContract {
if ($this->shouldIgnoreFieldBeforeSave('blocks')) {
return null;
}
$firstItem = false;
if ($mainCollection === null) {
$firstItem = true;
$mainCollection = Collection::make();
}
if ($blocksFromFields === null) {
$blocksFromFields = $this->getBlocks($object, $fields);
}
$blockRepository = app(BlockRepository::class);
$blocksCollection = $this->getChildrenBlocks(
$blocksFromFields,
$blockRepository,
$parentId,
$fakeBlockId,
$mainCollection
);
$object->setRelation('blocks', $firstItem ? $mainCollection : $blocksCollection);
return $object;
}
protected function getChildrenBlocks($blocks, $blockRepository, $parentId, &$fakeBlockId, $mainCollection): Collection
{
$childBlocksCollection = Collection::make();
foreach ($blocks as $childBlock) {
if ($parentId) {
$childBlock['parent_id'] = $parentId;
}
$newChildBlock = $blockRepository->createForPreview($childBlock);
$fakeBlockId++;
$newChildBlock->id = $fakeBlockId;
if (!empty($childBlock['blocks'])) {
$childBlockHydrated = $this->hydrateHandleBlocks(
$newChildBlock,
$childBlock,
$fakeBlockId,
$newChildBlock->id,
$childBlock['blocks'],
$mainCollection
);
$newChildBlock->setRelation('children', $childBlockHydrated->blocks);
}
$mainCollection->push($newChildBlock);
$childBlocksCollection->push($newChildBlock);
}
return $childBlocksCollection;
}
public function afterSaveHandleBlocks(Model $object, array $fields): void
{
if ($this->shouldIgnoreFieldBeforeSave('blocks')) {
return;
}
$blockRepository = app(BlockRepository::class);
$this->blockValidator = Validator::make([], []);
foreach ($fields['blocks'] ?? [] as $block) {
$blockCmsData = app(BlockRepository::class)->buildFromCmsArray($block);
/** @var \A17\Twill\Services\Blocks\Block $blockInstance */
$blockInstance = $blockCmsData['instance'];
// Figure out if the class has translations.
$handleTranslations = property_exists($object, 'translatedAttributes');
$this->validateBlockArray($block, $blockInstance, $handleTranslations);
}
$existingBlockIds = $object->blocks()->pluck('id')->toArray();
$usedBlockIds = [];
$blocks = $this->getBlocks($object, $fields);
// At this point we have parsed all content so we can throw the validation exception.
if ($this->blockValidator->errors()->isNotEmpty()) {
throw new ValidationException($this->blockValidator);
}
foreach ($blocks as $blockData) {
$this->updateOrCreateBlock($blockRepository, $blockData, $existingBlockIds, $usedBlockIds);
}
// Delete the unused existing blocks.
$unusedBlockIds = array_diff($existingBlockIds, $usedBlockIds);
$blockRepository->bulkDelete($unusedBlockIds);
}
private function updateOrCreateBlock(
BlockRepository $blockRepository,
array $blockData,
array $existingBlockIds,
array &$usedBlockIds
): void {
// Find an existing block id based on the frontend id.
if (
!in_array($blockData['id'] ?? null, $existingBlockIds, false) &&
$id = TwillUtil::hasBlockIdFor($blockData['id'])
) {
$originalBlockId = $blockData['id'];
$blockData['id'] = $id;
}
// Check if the block already exists.
if (in_array($blockData['id'] ?? null, $existingBlockIds, false)) {
$blockObject = $this->updateBlock($blockRepository, $blockData, $existingBlockIds, $usedBlockIds);
} else {
$blockObject = $this->createBlock($blockRepository, $blockData, $existingBlockIds, $usedBlockIds);
TwillUtil::registerBlockId($originalBlockId ?? $blockData['id'], $blockObject->id);
}
$usedBlockIds[] = $blockObject->id;
}
private function updateBlock(
BlockRepository $blockRepository,
array $blockData,
array $existingBlockIds,
array &$usedBlockIds
): Block {
$blockRepository->update($blockData['id'], $blockData);
$blockCreated = $blockRepository->findOrFail($blockData['id']);
$this->updateOrCreateChildBlocks(
$blockCreated,
$blockRepository,
$blockData,
$existingBlockIds,
$usedBlockIds
);
return $blockCreated;
}
private function validate(array $formData, int $id, array $basicRules, array $translatedFieldRules, array $messages): void
{
$finalValidator = $this->blockValidator;
foreach ($translatedFieldRules as $field => $rules) {
foreach (config('translatable.locales') as $locale) {
$validator = Validator::make($formData, ["$field.$locale" => $rules], $messages);
foreach ($validator->messages()->getMessages() as $key => $errors) {
foreach ($errors as $error) {
if ($this->errorMessageIsOnNestedBlock($key)) {
$blockInfo = $this->makeValidationInfoForNestedBlocks($id, $key, $formData, true);
$id = $blockInfo['nestedBlockId'];
$key = $blockInfo['nestedField'];
}
$finalValidator->getMessageBag()->add("blocks.$id" . "[$key][$locale]", $error);
$finalValidator->getMessageBag()->add("blocks.$locale", 'Failed');
}
}
}
}
foreach ($basicRules as $field => $rules) {
$validator = Validator::make($formData, [$field => $rules], $messages);
foreach ($validator->messages()->getMessages() as $key => $errors) {
foreach ($errors as $error) {
if ($this->errorMessageIsOnNestedBlock($key)) {
$blockInfo = $this->makeValidationInfoForNestedBlocks($id, $key, $formData, true);
$id = $blockInfo['nestedBlockId'];
$key = $blockInfo['nestedField'];
}
$finalValidator->getMessageBag()->add("blocks[$id][$key]", $error);
}
}
}
}
/**
* Create a block from formFields, and recursively create it's child blocks.
*/
private function createBlock(
BlockRepository $blockRepository,
array $blockData,
array $existingBlockIds,
array &$usedBlockIds
): Block {
$blockCreated = $blockRepository->create($blockData);
$this->updateOrCreateChildBlocks(
$blockCreated,
$blockRepository,
$blockData,
$existingBlockIds,
$usedBlockIds
);
return $blockCreated;
}
private function updateOrCreateChildBlocks(
Block $parentBlock,
BlockRepository $blockRepository,
array $blockData,
array $existingBlockIds,
array &$usedBlockIds
): void {
foreach ($blockData['blocks'] as $childBlock) {
$childBlock['parent_id'] = $parentBlock->id;
$this->updateOrCreateBlock($blockRepository, $childBlock, $existingBlockIds, $usedBlockIds);
}
}
/**
* @param \A17\Twill\Models\Model $object
* @param array $fields
* @return \Illuminate\Support\Collection
*/
private function getBlocks($object, $fields)
{
$blocks = Collection::make();
if (isset($fields['blocks']) && is_array($fields['blocks'])) {
foreach (collect($fields['blocks'])->groupBy('editor_name')->values()->toArray() as $editorBlocks) {
foreach ($editorBlocks as $index => $block) {
$block = $this->buildBlock($block, $object);
$this->validateBlockArray($block, $block['instance'], true);
$block['position'] = $index + 1;
$block['blocks'] = $this->getChildBlocks($object, $block);
$blocks->push($block);
}
}
}
return $blocks;
}
/**
* Recursively generate child blocks from the fields of a block.
*
* @param \A17\Twill\Models\Model $object
* @param array $parentBlockFields
* @return \Illuminate\Support\Collection
*/
private function getChildBlocks($object, $parentBlockFields)
{
$childBlocksList = Collection::make();
foreach ($parentBlockFields['blocks'] ?? [] as $childKey => $childBlocks) {
if (strpos($childKey, '|')) {
continue;
}
foreach ($childBlocks as $index => $childBlock) {
$childBlock = $this->buildBlock($childBlock, $object, $childBlock['is_repeater'] ?? true);
$this->validateBlockArray($childBlock, $childBlock['instance'], true);
$childBlock['child_key'] = $childKey;
$childBlock['position'] = $index + 1;
$childBlock['editor_name'] = $parentBlockFields['editor_name'] ?? 'default';
$childBlock['blocks'] = $this->getChildBlocks($object, $childBlock);
$childBlocksList->push($childBlock);
}
}
return $childBlocksList;
}
private function validateBlockArray(
array $block,
\A17\Twill\Services\Blocks\Block $blockInstance,
bool $handleTranslations
): void {
$this->validate(
(array)$block['content'] + ($block['medias'] ?? []) + ($block['browsers'] ?? []) + ($block['blocks'] ?? []),
$block['id'],
$blockInstance->getRules(),
$handleTranslations ? $blockInstance->getRulesForTranslatedFields() : [],
$blockInstance->getMessages()
);
}
/**
* @param array $block
* @param \A17\Twill\Models\Model $object
* @param bool $repeater
* @return array
*/
private function buildBlock($block, $object, $repeater = false)
{
$block['blockable_id'] = $object->id;
$block['blockable_type'] = $object->getMorphClass();
return app(BlockRepository::class)->buildFromCmsArray($block, $repeater);
}
/**
* @param \A17\Twill\Models\Model $object
* @param array $fields
* @return array
*/
public function getFormFieldsHandleBlocks($object, $fields)
{
$fields['blocks'] = null;
if ($object->has('blocks')) {
foreach ($object->blocks as $block) {
$blockTypeConfig = TwillBlocks::findByName($block->type);
if (is_null($blockTypeConfig)) {
continue;
}
$blockItem = [
'id' => $block->id,
'type' => $blockTypeConfig->component,
'title' => $blockTypeConfig->title,
'name' => $block->editor_name ?? 'default',
'titleField' => $blockTypeConfig->titleField,
'hideTitlePrefix' => $blockTypeConfig->hideTitlePrefix,
// @todo: Figure out what attributes were coming from/used for.
// $blockTypeConfig['attributes'] ?? []
'attributes' => [],
];
if (isset($block->parent_id) && $blockTypeConfig->type !== 'block') {
$fields['blocksRepeaters']["blocks-{$block->parent_id}|{$block->child_key}"][] = $blockItem + [
'trigger' => $blockTypeConfig->trigger,
'selectTrigger' => $blockTypeConfig->selectTrigger,
'max' => $blockTypeConfig->max,
];
} else {
if (isset($block->parent_id)) {
$fields['blocks']["blocks-{$block->parent_id}|{$block->child_key}"][] = $blockItem + [
'icon' => $blockTypeConfig->icon,
];
} else {
$fields['blocks'][$blockItem['name']][] = $blockItem + [
'icon' => $blockTypeConfig->icon,
];
}
}
$fields['blocksFields'][] = Collection::make($block['content'])->filter(function ($value, $key) {
return $key !== 'browsers';
})->map(function ($value, $key) use ($block) {
return [
'name' => "blocks[$block->id][$key]",
'value' => $value,
];
})->filter()->values()->toArray();
$blockFormFields = app(BlockRepository::class)->getFormFields($block);
$medias = $blockFormFields['medias'];
if ($medias) {
if (config('twill.media_library.translated_form_fields', false)) {
$fields['blocksMedias'][] = Collection::make($medias)->mapWithKeys(
function ($mediasByLocale, $locale) use ($block) {
return Collection::make($mediasByLocale)->mapWithKeys(
function ($value, $key) use ($block, $locale) {
return [
"blocks[$block->id][$key][$locale]" => $value,
];
}
);
}
)->filter()->toArray();
} else {
$fields['blocksMedias'][] = Collection::make($medias)->mapWithKeys(
function ($value, $key) use ($block) {
return [
"blocks[$block->id][$key]" => $value,
];
}
)->filter()->toArray();
}
}
$files = $blockFormFields['files'];
if ($files) {
Collection::make($files)->each(function ($rolesWithFiles, $locale) use (&$fields, $block) {
$fields['blocksFiles'][] = Collection::make($rolesWithFiles)->mapWithKeys(
function ($files, $role) use ($locale, $block) {
return [
"blocks[$block->id][$role][$locale]" => $files,
];
}
)->toArray();
});
}
if (isset($block['content']['browsers'])) {
$fields['blocksBrowsers'][] = $this->getBlockBrowsers($block);
}
}
if ($fields['blocksFields'] ?? false) {
$fields['blocksFields'] = call_user_func_array('array_merge', $fields['blocksFields'] ?? []);
}
if ($fields['blocksMedias'] ?? false) {
$fields['blocksMedias'] = call_user_func_array('array_merge', $fields['blocksMedias'] ?? []);
}
if ($fields['blocksFiles'] ?? false) {
$fields['blocksFiles'] = call_user_func_array('array_merge', $fields['blocksFiles'] ?? []);
}
if ($fields['blocksBrowsers'] ?? false) {
$fields['blocksBrowsers'] = call_user_func_array('array_merge', $fields['blocksBrowsers'] ?? []);
}
}
return $fields;
}
/**
* @param \A17\Twill\Models\Block $block
* @return array
*/
protected function getBlockBrowsers($block)
{
return Collection::make($block['content']['browsers'])->mapWithKeys(function ($ids, $relation) use ($block) {
if ($this->hasRelatedTable() && $block->getRelated($relation)->isNotEmpty()) {
$items = $this->getFormFieldsForRelatedBrowser($block, $relation);
foreach ($items as &$item) {
if (!isset($item['edit'])) {
try {
$item['edit'] = moduleRoute(
$relation,
config('twill.block_editor.browser_route_prefixes.' . $relation),
'edit',
$item['id']
);
} catch (RouteNotFoundException $e) {
report($e);
Log::notice(
"Twill warning: The url for the \"{$relation}\" browser items can't " .
"be resolved. You might be missing a {$relation} key in your " .
'twill.block_editor.browser_route_prefixes configuration.'
);
}
}
}
} else {
try {
$relationRepository = $this->getModelRepository($relation);
$relatedItems = $relationRepository->get([], ['id' => $ids], [], -1);
} catch (\Throwable $th) {
$relatedItems = collect();
}
$sortedRelatedItems = array_flip($ids);
foreach ($relatedItems as $item) {
$sortedRelatedItems[$item->id] = $item;
}
$items = Collection::make(array_values($sortedRelatedItems))->filter(function ($value) {
return is_object($value);
})->map(function ($relatedElement) use ($relation) {
return [
'id' => $relatedElement->id,
'name' => $relatedElement->titleInBrowser ?? $relatedElement->title,
'edit' => moduleRoute(
$relation,
config('twill.block_editor.browser_route_prefixes.' . $relation),
'edit',
$relatedElement->id
),
] + (classHasTrait($relatedElement, HasMedias::class) ? [
'thumbnail' => $relatedElement->defaultCmsImage(['w' => 100, 'h' => 100]),
] : []);
})->toArray();
}
return [
"blocks[$block->id][$relation]" => $items,
];
})->filter()->toArray();
}
public function afterDuplicateHandleBlocks(TwillModelContract $object, TwillModelContract $newObject): void
{
$objectIsBlock = $object instanceof Block;
$blocks = $objectIsBlock ? $object->children : $object->blocks()->whereNull('parent_id')->get();
foreach ($blocks as $block) {
$newBlock = $block->replicate();
if ($objectIsBlock) {
$newBlock->blockable_id = $newObject->blockable_id;
$newBlock->parent_id = $newObject->id;
} else {
$newBlock->blockable_id = $newObject->id;
}
$newBlock->save();
$repository = app()->make(BlockRepository::class);
$repository->afterDuplicate($block, $newBlock);
$this->afterDuplicateHandleBlocks($block, $newBlock);
}
}
protected function hasRelatedTable(): bool
{
if (is_null(static::$hasRelatedTableCache)) {
static::$hasRelatedTableCache = Schema::hasTable(config('twill.related_table', 'twill_related'));
}
return static::$hasRelatedTableCache;
}
public function errorMessageIsOnNestedBlock($failedKey)
{
return strpos($failedKey, '.content.') !== false;
}
public function makeValidationInfoForNestedBlocks($rootBlockId, $failedKey, $formData, $translated = false)
{
$blockFilter = Str::beforeLast($failedKey, '.content.');
$blockField = Str::afterLast($failedKey, '.content.');
if ($translated) {
$blockField = Str::beforeLast($blockField, '.');
}
$block = Arr::get($formData, $blockFilter);
return [
'nestedBlockId' => $block['id'],
'nestedField' => $blockField,
];
}
}