zipPath) || !is_readable($this->zipPath)) { return ['format' => trans('errors.import_zip_cant_read')]; } // Validate file is valid zip $zip = new \ZipArchive(); $opened = $zip->open($this->zipPath, ZipArchive::RDONLY); if ($opened !== true) { return ['format' => trans('errors.import_zip_cant_read')]; } // Validate json data exists, including metadata $jsonData = $zip->getFromName('data.json') ?: ''; $importData = json_decode($jsonData, true); if (!$importData) { return ['format' => trans('errors.import_zip_cant_decode_data')]; } $helper = new ZipValidationHelper($zip); if (isset($importData['book'])) { $modelErrors = ZipExportBook::validate($helper, $importData['book']); $keyPrefix = 'book'; } else if (isset($importData['chapter'])) { $modelErrors = ZipExportChapter::validate($helper, $importData['chapter']); $keyPrefix = 'chapter'; } else if (isset($importData['page'])) { $modelErrors = ZipExportPage::validate($helper, $importData['page']); $keyPrefix = 'page'; } else { return ['format' => trans('errors.import_zip_no_data')]; } return $this->flattenModelErrors($modelErrors, $keyPrefix); } protected function flattenModelErrors(array $errors, string $keyPrefix): array { $flattened = []; foreach ($errors as $key => $error) { if (is_array($error)) { $flattened = array_merge($flattened, $this->flattenModelErrors($error, $keyPrefix . '.' . $key)); } else { $flattened[$keyPrefix . '.' . $key] = $error; } } return $flattened; } }