xref: /webtrees/app/Http/RequestHandlers/CreateMediaObjectFromFile.php (revision 89f7189b61a494347591c99bdb92afb7d8b66e1b)
1ddb44b4cSGreg Roach<?php
2ddb44b4cSGreg Roach
3ddb44b4cSGreg Roach/**
4ddb44b4cSGreg Roach * webtrees: online genealogy
5ddb44b4cSGreg Roach * Copyright (C) 2021 webtrees development team
6ddb44b4cSGreg Roach * This program is free software: you can redistribute it and/or modify
7ddb44b4cSGreg Roach * it under the terms of the GNU General Public License as published by
8ddb44b4cSGreg Roach * the Free Software Foundation, either version 3 of the License, or
9ddb44b4cSGreg Roach * (at your option) any later version.
10ddb44b4cSGreg Roach * This program is distributed in the hope that it will be useful,
11ddb44b4cSGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
12ddb44b4cSGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13ddb44b4cSGreg Roach * GNU General Public License for more details.
14ddb44b4cSGreg Roach * You should have received a copy of the GNU General Public License
15*89f7189bSGreg Roach * along with this program. If not, see <https://www.gnu.org/licenses/>.
16ddb44b4cSGreg Roach */
17ddb44b4cSGreg Roach
18ddb44b4cSGreg Roachdeclare(strict_types=1);
19ddb44b4cSGreg Roach
20ddb44b4cSGreg Roachnamespace Fisharebest\Webtrees\Http\RequestHandlers;
21ddb44b4cSGreg Roach
22ddb44b4cSGreg Roachuse Fisharebest\Webtrees\Services\MediaFileService;
23ddb44b4cSGreg Roachuse Fisharebest\Webtrees\Services\PendingChangesService;
24ddb44b4cSGreg Roachuse Fisharebest\Webtrees\Tree;
25ddb44b4cSGreg Roachuse Psr\Http\Message\ResponseInterface;
26ddb44b4cSGreg Roachuse Psr\Http\Message\ServerRequestInterface;
27ddb44b4cSGreg Roachuse Psr\Http\Server\RequestHandlerInterface;
28ddb44b4cSGreg Roach
29ddb44b4cSGreg Roachuse function assert;
30ddb44b4cSGreg Roach
31ddb44b4cSGreg Roach/**
32ddb44b4cSGreg Roach * Create a new media object.
33ddb44b4cSGreg Roach */
34ddb44b4cSGreg Roachclass CreateMediaObjectFromFile implements RequestHandlerInterface
35ddb44b4cSGreg Roach{
36ddb44b4cSGreg Roach    /** @var MediaFileService */
37ddb44b4cSGreg Roach    private $media_file_service;
38ddb44b4cSGreg Roach
39ddb44b4cSGreg Roach    /** @var PendingChangesService */
40ddb44b4cSGreg Roach    private $pending_changes_service;
41ddb44b4cSGreg Roach
42ddb44b4cSGreg Roach    /**
43ddb44b4cSGreg Roach     * CreateMediaObjectFromFileAction constructor.
44ddb44b4cSGreg Roach     *
45ddb44b4cSGreg Roach     * @param MediaFileService      $media_file_service
46ddb44b4cSGreg Roach     * @param PendingChangesService $pending_changes_service
47ddb44b4cSGreg Roach     */
48ddb44b4cSGreg Roach    public function __construct(MediaFileService $media_file_service, PendingChangesService $pending_changes_service)
49ddb44b4cSGreg Roach    {
50ddb44b4cSGreg Roach        $this->media_file_service      = $media_file_service;
51ddb44b4cSGreg Roach        $this->pending_changes_service = $pending_changes_service;
52ddb44b4cSGreg Roach    }
53ddb44b4cSGreg Roach
54ddb44b4cSGreg Roach    /**
55ddb44b4cSGreg Roach     * @param ServerRequestInterface $request
56ddb44b4cSGreg Roach     *
57ddb44b4cSGreg Roach     * @return ResponseInterface
58ddb44b4cSGreg Roach     */
59ddb44b4cSGreg Roach    public function handle(ServerRequestInterface $request): ResponseInterface
60ddb44b4cSGreg Roach    {
61ddb44b4cSGreg Roach        $tree = $request->getAttribute('tree');
62ddb44b4cSGreg Roach        assert($tree instanceof Tree);
63ddb44b4cSGreg Roach
64ddb44b4cSGreg Roach        $params = (array) $request->getParsedBody();
65ddb44b4cSGreg Roach        $file   = $params['file'] ?? '';
66ddb44b4cSGreg Roach        $type   = $params['type'] ?? '';
67ddb44b4cSGreg Roach        $title  = $params['title'] ?? '';
68ddb44b4cSGreg Roach        $note   = $params['note'] ?? '';
69ddb44b4cSGreg Roach
70ddb44b4cSGreg Roach        $gedcom = "0 @@ OBJE\n" . $this->media_file_service->createMediaFileGedcom($file, $type, $title, $note);
71ddb44b4cSGreg Roach
72ddb44b4cSGreg Roach        $media_object = $tree->createRecord($gedcom);
73ddb44b4cSGreg Roach
74ddb44b4cSGreg Roach        // Accept the new record.  Rejecting it would leave the filesystem out-of-sync with the genealogy
75ddb44b4cSGreg Roach        $this->pending_changes_service->acceptRecord($media_object);
76ddb44b4cSGreg Roach
77ddb44b4cSGreg Roach        return redirect($media_object->url());
78ddb44b4cSGreg Roach    }
79ddb44b4cSGreg Roach}
80