-
Notifications
You must be signed in to change notification settings - Fork 158
/
Copy pathPageImporter.php
144 lines (122 loc) · 5.83 KB
/
PageImporter.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
<?php
/*
* This file was created by developers working at BitBag
* Do you need more information about us and what we do? Visit our https://bitbag.io website!
* We are hiring developers from all over the world. Join us and start your new, exciting adventure and become part of us: https://bitbag.io/career
*/
declare(strict_types=1);
namespace BitBag\SyliusCmsPlugin\Importer;
use BitBag\SyliusCmsPlugin\Downloader\ImageDownloaderInterface;
use BitBag\SyliusCmsPlugin\Entity\MediaInterface;
use BitBag\SyliusCmsPlugin\Entity\PageInterface;
use BitBag\SyliusCmsPlugin\Entity\PageTranslationInterface;
use BitBag\SyliusCmsPlugin\Resolver\ImporterChannelsResolverInterface;
use BitBag\SyliusCmsPlugin\Resolver\ImporterProductsResolverInterface;
use BitBag\SyliusCmsPlugin\Resolver\ImporterSectionsResolverInterface;
use BitBag\SyliusCmsPlugin\Resolver\MediaProviderResolverInterface;
use BitBag\SyliusCmsPlugin\Resolver\ResourceResolverInterface;
use Doctrine\ORM\EntityManagerInterface;
use Sylius\Component\Locale\Context\LocaleContextInterface;
use Sylius\Component\Resource\Factory\FactoryInterface;
use Symfony\Component\HttpFoundation\File\File;
use Symfony\Component\Validator\Validator\ValidatorInterface;
use Webmozart\Assert\Assert;
final class PageImporter extends AbstractImporter implements PageImporterInterface
{
public function __construct(
private ResourceResolverInterface $pageResourceResolver,
private LocaleContextInterface $localeContext,
private ImageDownloaderInterface $imageDownloader,
private FactoryInterface $mediaFactory,
private MediaProviderResolverInterface $mediaProviderResolver,
private ImporterSectionsResolverInterface $importerSectionsResolver,
private ImporterChannelsResolverInterface $importerChannelsResolver,
private ImporterProductsResolverInterface $importerProductsResolver,
ValidatorInterface $validator,
private EntityManagerInterface $entityManager,
) {
parent::__construct($validator);
}
public function import(array $row): void
{
/** @var string|null $code */
$code = $this->getColumnValue(self::CODE_COLUMN, $row);
Assert::notNull($code);
/** @var PageInterface $page */
$page = $this->pageResourceResolver->getResource($code);
$page->setCode($code);
$page->setFallbackLocale($this->localeContext->getLocaleCode());
foreach ($this->getAvailableLocales($this->getTranslatableColumns(), array_keys($row)) as $locale) {
$page->setCurrentLocale($locale);
$page->setSlug($this->getTranslatableColumnValue(self::SLUG_COLUMN, $locale, $row));
$page->setName($this->getTranslatableColumnValue(self::NAME_COLUMN, $locale, $row));
$page->setMetaKeywords($this->getTranslatableColumnValue(self::META_KEYWORDS_COLUMN, $locale, $row));
$page->setMetaDescription($this->getTranslatableColumnValue(self::META_DESCRIPTION_COLUMN, $locale, $row));
$page->setContent($this->getTranslatableColumnValue(self::CONTENT_COLUMN, $locale, $row));
$page->setBreadcrumb($this->getTranslatableColumnValue(self::BREADCRUMB_COLUMN, $locale, $row));
$page->setNameWhenLinked($this->getTranslatableColumnValue(self::NAME_WHEN_LINKED_COLUMN, $locale, $row));
$page->setDescriptionWhenLinked($this->getTranslatableColumnValue(self::DESCRIPTION_WHEN_LINKED_COLUMN, $locale, $row));
$url = $this->getTranslatableColumnValue(self::IMAGE_COLUMN, $locale, $row);
$imageCode = $this->getTranslatableColumnValue(self::IMAGE_CODE_COLUMN, $locale, $row);
if (null !== $url) {
$this->resolveImage($page, $url, $locale, $imageCode);
}
}
$this->importerSectionsResolver->resolve($page, $this->getColumnValue(self::SECTIONS_COLUMN, $row));
$this->importerChannelsResolver->resolve($page, $this->getColumnValue(self::CHANNELS_COLUMN, $row));
$this->importerProductsResolver->resolve($page, $this->getColumnValue(self::PRODUCTS_COLUMN, $row));
$this->validateResource($page, ['bitbag']);
$this->entityManager->persist($page);
$this->entityManager->flush();
}
public function getResourceCode(): string
{
return 'page';
}
private function resolveImage(
PageInterface $page,
string $url,
string $locale,
string $imageCode,
): void {
$downloadedImage = $this->imageDownloader->download($url);
/** @var MediaInterface $image */
$image = $this->mediaFactory->createNew();
$image->setFile($downloadedImage);
$image->setType($this->getFileType($downloadedImage));
$image->setCode($imageCode);
/** @var PageTranslationInterface $pageTranslation */
$pageTranslation = $page->getTranslation($locale);
$pageTranslation->setImage($image);
$this->mediaProviderResolver->resolveProvider($image)->upload($image);
$this->entityManager->persist($image);
}
private function getFileType(File $file): string
{
switch ($file->getExtension()) {
case 'png':
case 'jpg':
case 'jpeg':
case 'gif':
return MediaInterface::IMAGE_TYPE;
case 'mp4':
return MediaInterface::VIDEO_TYPE;
}
return MediaInterface::FILE_TYPE;
}
private function getTranslatableColumns(): array
{
return [
self::SLUG_COLUMN,
self::NAME_COLUMN,
self::IMAGE_COLUMN,
self::IMAGE_CODE_COLUMN,
self::META_KEYWORDS_COLUMN,
self::META_DESCRIPTION_COLUMN,
self::CONTENT_COLUMN,
self::BREADCRUMB_COLUMN,
self::NAME_WHEN_LINKED_COLUMN,
self::DESCRIPTION_WHEN_LINKED_COLUMN,
];
}
}