mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-12-14 15:13:37 +08:00
c4ec50d437
Some checks failed
analyse-php / build (push) Has been cancelled
lint-php / build (push) Has been cancelled
test-migrations / build (8.1) (push) Has been cancelled
test-migrations / build (8.2) (push) Has been cancelled
test-migrations / build (8.3) (push) Has been cancelled
test-php / build (8.1) (push) Has been cancelled
test-php / build (8.2) (push) Has been cancelled
test-php / build (8.3) (push) Has been cancelled
65 lines
2.1 KiB
PHP
65 lines
2.1 KiB
PHP
<?php
|
|
|
|
namespace BookStack\Exports\ZipExports\Models;
|
|
|
|
use BookStack\Entities\Models\Chapter;
|
|
use BookStack\Entities\Models\Page;
|
|
use BookStack\Exports\ZipExports\ZipExportFiles;
|
|
use BookStack\Exports\ZipExports\ZipValidationHelper;
|
|
|
|
class ZipExportChapter extends ZipExportModel
|
|
{
|
|
public ?int $id = null;
|
|
public string $name;
|
|
public ?string $description_html = null;
|
|
public ?int $priority = null;
|
|
/** @var ZipExportPage[] */
|
|
public array $pages = [];
|
|
/** @var ZipExportTag[] */
|
|
public array $tags = [];
|
|
|
|
public static function fromModel(Chapter $model, ZipExportFiles $files): self
|
|
{
|
|
$instance = new self();
|
|
$instance->id = $model->id;
|
|
$instance->name = $model->name;
|
|
$instance->description_html = $model->descriptionHtml();
|
|
$instance->priority = $model->priority;
|
|
$instance->tags = ZipExportTag::fromModelArray($model->tags()->get()->all());
|
|
|
|
$pages = $model->getVisiblePages()->filter(fn (Page $page) => !$page->draft)->all();
|
|
$instance->pages = ZipExportPage::fromModelArray($pages, $files);
|
|
|
|
return $instance;
|
|
}
|
|
|
|
/**
|
|
* @param Chapter[] $chapterArray
|
|
* @return self[]
|
|
*/
|
|
public static function fromModelArray(array $chapterArray, ZipExportFiles $files): array
|
|
{
|
|
return array_values(array_map(function (Chapter $chapter) use ($files) {
|
|
return self::fromModel($chapter, $files);
|
|
}, $chapterArray));
|
|
}
|
|
|
|
public static function validate(ZipValidationHelper $context, array $data): array
|
|
{
|
|
$rules = [
|
|
'id' => ['nullable', 'int'],
|
|
'name' => ['required', 'string', 'min:1'],
|
|
'description_html' => ['nullable', 'string'],
|
|
'priority' => ['nullable', 'int'],
|
|
'tags' => ['array'],
|
|
'pages' => ['array'],
|
|
];
|
|
|
|
$errors = $context->validateData($data, $rules);
|
|
$errors['tags'] = $context->validateRelations($data['tags'] ?? [], ZipExportTag::class);
|
|
$errors['pages'] = $context->validateRelations($data['pages'] ?? [], ZipExportPage::class);
|
|
|
|
return $errors;
|
|
}
|
|
}
|