mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-12-14 15:13:37 +08:00
74fce9640e
Some checks are pending
analyse-php / build (push) Waiting to run
lint-php / build (push) Waiting to run
test-migrations / build (8.1) (push) Waiting to run
test-migrations / build (8.2) (push) Waiting to run
test-migrations / build (8.3) (push) Waiting to run
test-php / build (8.1) (push) Waiting to run
test-php / build (8.2) (push) Waiting to run
test-php / build (8.3) (push) Waiting to run
54 lines
1.4 KiB
PHP
54 lines
1.4 KiB
PHP
<?php
|
|
|
|
namespace BookStack\Exports\ZipExports;
|
|
|
|
use BookStack\Exports\ZipExports\Models\ZipExportModel;
|
|
use Illuminate\Validation\Factory;
|
|
|
|
class ZipValidationHelper
|
|
{
|
|
protected Factory $validationFactory;
|
|
|
|
public function __construct(
|
|
public ZipExportReader $zipReader,
|
|
) {
|
|
$this->validationFactory = app(Factory::class);
|
|
}
|
|
|
|
public function validateData(array $data, array $rules): array
|
|
{
|
|
$messages = $this->validationFactory->make($data, $rules)->errors()->messages();
|
|
|
|
foreach ($messages as $key => $message) {
|
|
$messages[$key] = implode("\n", $message);
|
|
}
|
|
|
|
return $messages;
|
|
}
|
|
|
|
public function fileReferenceRule(): ZipFileReferenceRule
|
|
{
|
|
return new ZipFileReferenceRule($this);
|
|
}
|
|
|
|
/**
|
|
* Validate an array of relation data arrays that are expected
|
|
* to be for the given ZipExportModel.
|
|
* @param class-string<ZipExportModel> $model
|
|
*/
|
|
public function validateRelations(array $relations, string $model): array
|
|
{
|
|
$results = [];
|
|
|
|
foreach ($relations as $key => $relationData) {
|
|
if (is_array($relationData)) {
|
|
$results[$key] = $model::validate($this, $relationData);
|
|
} else {
|
|
$results[$key] = [trans('validation.zip_model_expected', ['type' => gettype($relationData)])];
|
|
}
|
|
}
|
|
|
|
return $results;
|
|
}
|
|
}
|