*/ protected array $referenceMap = []; /** @var array */ protected array $zipExportPageMap = []; /** @var array */ protected array $zipExportChapterMap = []; /** @var array */ protected array $zipExportBookMap = []; public function __construct( protected ZipReferenceParser $parser, protected BaseRepo $baseRepo, protected PageRepo $pageRepo, protected ImageResizer $imageResizer, ) { } protected function addReference(string $type, Model $model, ?int $importId): void { if ($importId) { $key = $type . ':' . $importId; $this->referenceMap[$key] = $model; } } public function addPage(Page $page, ZipExportPage $exportPage): void { $this->pages[] = $page; $this->zipExportPageMap[$page->id] = $exportPage; $this->addReference('page', $page, $exportPage->id); } public function addChapter(Chapter $chapter, ZipExportChapter $exportChapter): void { $this->chapters[] = $chapter; $this->zipExportChapterMap[$chapter->id] = $exportChapter; $this->addReference('chapter', $chapter, $exportChapter->id); } public function addBook(Book $book, ZipExportBook $exportBook): void { $this->books[] = $book; $this->zipExportBookMap[$book->id] = $exportBook; $this->addReference('book', $book, $exportBook->id); } public function addAttachment(Attachment $attachment, ?int $importId): void { $this->attachments[] = $attachment; $this->addReference('attachment', $attachment, $importId); } public function addImage(Image $image, ?int $importId): void { $this->images[] = $image; $this->addReference('image', $image, $importId); } protected function handleReference(string $type, int $id): ?string { $key = $type . ':' . $id; $model = $this->referenceMap[$key] ?? null; if ($model instanceof Entity) { return $model->getUrl(); } else if ($model instanceof Image) { if ($model->type === 'gallery') { $this->imageResizer->loadGalleryThumbnailsForImage($model, false); return $model->thumbs['gallery'] ?? $model->url; } return $model->url; } return null; } public function replaceReferences(): void { foreach ($this->books as $book) { $exportBook = $this->zipExportBookMap[$book->id]; $content = $exportBook->description_html ?? ''; $parsed = $this->parser->parseReferences($content, $this->handleReference(...)); $this->baseRepo->update($book, [ 'description_html' => $parsed, ]); } foreach ($this->chapters as $chapter) { $exportChapter = $this->zipExportChapterMap[$chapter->id]; $content = $exportChapter->description_html ?? ''; $parsed = $this->parser->parseReferences($content, $this->handleReference(...)); $this->baseRepo->update($chapter, [ 'description_html' => $parsed, ]); } foreach ($this->pages as $page) { $exportPage = $this->zipExportPageMap[$page->id]; $contentType = $exportPage->markdown ? 'markdown' : 'html'; $content = $exportPage->markdown ?: ($exportPage->html ?: ''); $parsed = $this->parser->parseReferences($content, $this->handleReference(...)); $this->pageRepo->setContentFromInput($page, [ $contentType => $parsed, ]); } } /** * @return Image[] */ public function images(): array { return $this->images; } /** * @return Attachment[] */ public function attachments(): array { return $this->attachments; } }