xref: /webtrees/app/Http/RequestHandlers/LinkMediaToFamilyModal.php (revision d11be7027e34e3121be11cc025421873364403f9)
1ddb44b4cSGreg Roach<?php
2ddb44b4cSGreg Roach
3ddb44b4cSGreg Roach/**
4ddb44b4cSGreg Roach * webtrees: online genealogy
5*d11be702SGreg Roach * Copyright (C) 2023 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
1589f7189bSGreg 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\Auth;
23ddb44b4cSGreg Roachuse Fisharebest\Webtrees\Registry;
24b55cbc6bSGreg Roachuse Fisharebest\Webtrees\Validator;
25ddb44b4cSGreg Roachuse Psr\Http\Message\ResponseInterface;
26ddb44b4cSGreg Roachuse Psr\Http\Message\ServerRequestInterface;
27ddb44b4cSGreg Roachuse Psr\Http\Server\RequestHandlerInterface;
28ddb44b4cSGreg Roach
29ddb44b4cSGreg Roach/**
30ddb44b4cSGreg Roach * Link a media object to a record.
31ddb44b4cSGreg Roach */
32ddb44b4cSGreg Roachclass LinkMediaToFamilyModal implements RequestHandlerInterface
33ddb44b4cSGreg Roach{
34ddb44b4cSGreg Roach    /**
35ddb44b4cSGreg Roach     * @param ServerRequestInterface $request
36ddb44b4cSGreg Roach     *
37ddb44b4cSGreg Roach     * @return ResponseInterface
38ddb44b4cSGreg Roach     */
39ddb44b4cSGreg Roach    public function handle(ServerRequestInterface $request): ResponseInterface
40ddb44b4cSGreg Roach    {
41b55cbc6bSGreg Roach        $tree  = Validator::attributes($request)->tree();
42b55cbc6bSGreg Roach        $xref  = Validator::attributes($request)->isXref()->string('xref');
43ddb44b4cSGreg Roach        $media = Registry::mediaFactory()->make($xref, $tree);
44ddb44b4cSGreg Roach        $media = Auth::checkMediaAccess($media);
45ddb44b4cSGreg Roach
46ddb44b4cSGreg Roach        return response(view('modals/link-media-to-family', [
47ddb44b4cSGreg Roach            'media' => $media,
48ddb44b4cSGreg Roach            'tree'  => $tree,
49ddb44b4cSGreg Roach        ]));
50ddb44b4cSGreg Roach    }
51ddb44b4cSGreg Roach}
52