. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Http\RequestHandlers; use Exception; use Fisharebest\Webtrees\FlashMessages; use Fisharebest\Webtrees\Html; use Fisharebest\Webtrees\I18N; use Fisharebest\Webtrees\MediaFile; use Fisharebest\Webtrees\Registry; use Fisharebest\Webtrees\Services\MediaFileService; use Fisharebest\Webtrees\Services\PendingChangesService; use Fisharebest\Webtrees\Tree; use League\Flysystem\FileExistsException; use League\Flysystem\FileNotFoundException; use League\Flysystem\Util; use Psr\Http\Message\ResponseInterface; use Psr\Http\Message\ServerRequestInterface; use Psr\Http\Server\RequestHandlerInterface; use function assert; use function is_string; use function preg_replace; use function redirect; use function route; use function str_replace; use function trim; /** * Edit a media file. */ class EditMediaFileAction implements RequestHandlerInterface { /** @var MediaFileService */ private $media_file_service; /** @var PendingChangesService */ private $pending_changes_service; /** * EditMediaFileAction constructor. * * @param MediaFileService $media_file_service * @param PendingChangesService $pending_changes_service */ public function __construct(MediaFileService $media_file_service, PendingChangesService $pending_changes_service) { $this->media_file_service = $media_file_service; $this->pending_changes_service = $pending_changes_service; } /** * Save an edited media file. * * @param ServerRequestInterface $request * * @return ResponseInterface */ public function handle(ServerRequestInterface $request): ResponseInterface { $tree = $request->getAttribute('tree'); assert($tree instanceof Tree); $xref = $request->getAttribute('xref'); assert(is_string($xref)); $fact_id = $request->getAttribute('fact_id'); assert(is_string($fact_id)); $data_filesystem = Registry::filesystem()->data(); $params = (array) $request->getParsedBody(); $folder = $params['folder'] ?? ''; $new_file = $params['new_file'] ?? ''; $remote = $params['remote'] ?? ''; $title = $params['title'] ?? ''; $type = $params['type'] ?? ''; $media = Registry::mediaFactory()->make($xref, $tree); // Tidy non-printing characters $type = trim(preg_replace('/\s+/', ' ', $type)); $title = trim(preg_replace('/\s+/', ' ', $title)); // Media object oes not exist? Media object is read-only? if ($media === null || $media->isPendingDeletion() || !$media->canEdit()) { return redirect(route(TreePage::class, ['tree' => $tree->name()])); } // Find the fact to edit $media_file = $media->mediaFiles() ->first(static function (MediaFile $media_file) use ($fact_id): bool { return $media_file->factId() === $fact_id; }); // Media file does not exist? if ($media_file === null) { return redirect(route(TreePage::class, ['tree' => $tree->name()])); } // We can edit the file as either a URL or a folder/file if ($remote !== '') { $file = $remote; } else { $new_file = str_replace('\\', '/', $new_file); $folder = str_replace('\\', '/', $folder); $folder = trim($folder, '/'); if ($folder === '') { $file = $new_file; } else { $file = $folder . '/' . $new_file; } } // Invalid filename? Do not change it. if ($new_file === '') { $file = $media_file->filename(); } $filesystem = $media->tree()->mediaFilesystem($data_filesystem); $old = $media_file->filename(); $new = $file; // Update the filesystem, if we can. if ($old !== $new && !$media_file->isExternal()) { try { $new = Util::normalizePath($new); $filesystem->rename($old, $new); FlashMessages::addMessage(I18N::translate('The media file %1$s has been renamed to %2$s.', Html::filename($media_file->filename()), Html::filename($file)), 'info'); } catch (FileNotFoundException $ex) { // The "old" file may not exist. For example, if the file was renamed on disk, // and we are now renaming the GEDCOM data to match. } catch (FileExistsException $ex) { // Don't overwrite existing file FlashMessages::addMessage(I18N::translate('The media file %1$s could not be renamed to %2$s.', Html::filename($media_file->filename()), Html::filename($file)), 'info'); $file = $old; } } $gedcom = $this->media_file_service->createMediaFileGedcom($file, $type, $title, ''); $media->updateFact($fact_id, $gedcom, true); // Accept the changes, to keep the filesystem in sync with the GEDCOM data. if ($old !== $new && !$media_file->isExternal()) { $this->pending_changes_service->acceptRecord($media); } return redirect($media->url()); } }