xref: /webtrees/app/Module/ModuleTabTrait.php (revision ef483801e2cad5494dfc3dbf1a76bb1354331524)
149a243cbSGreg Roach<?php
23976b470SGreg Roach
349a243cbSGreg Roach/**
449a243cbSGreg Roach * webtrees: online genealogy
5a091ac74SGreg Roach * Copyright (C) 2020 webtrees development team
649a243cbSGreg Roach * This program is free software: you can redistribute it and/or modify
749a243cbSGreg Roach * it under the terms of the GNU General Public License as published by
849a243cbSGreg Roach * the Free Software Foundation, either version 3 of the License, or
949a243cbSGreg Roach * (at your option) any later version.
1049a243cbSGreg Roach * This program is distributed in the hope that it will be useful,
1149a243cbSGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
1249a243cbSGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1349a243cbSGreg Roach * GNU General Public License for more details.
1449a243cbSGreg Roach * You should have received a copy of the GNU General Public License
1549a243cbSGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>.
1649a243cbSGreg Roach */
17fcfa147eSGreg Roach
1849a243cbSGreg Roachdeclare(strict_types=1);
1949a243cbSGreg Roach
2049a243cbSGreg Roachnamespace Fisharebest\Webtrees\Module;
2149a243cbSGreg Roach
22852ede8cSGreg Roachuse Fisharebest\Webtrees\Auth;
23d501c45dSGreg Roachuse Fisharebest\Webtrees\Exceptions\HttpAccessDeniedException;
24a091ac74SGreg Roachuse Fisharebest\Webtrees\Factory;
25852ede8cSGreg Roachuse Fisharebest\Webtrees\Individual;
26852ede8cSGreg Roachuse Fisharebest\Webtrees\Tree;
278eaf8709SGreg Roachuse Illuminate\Support\Collection;
28852ede8cSGreg Roachuse Psr\Http\Message\ResponseInterface;
29852ede8cSGreg Roachuse Psr\Http\Message\ServerRequestInterface;
30852ede8cSGreg Roach
31852ede8cSGreg Roachuse function assert;
32852ede8cSGreg Roachuse function response;
33852ede8cSGreg Roachuse function view;
348eaf8709SGreg Roach
3549a243cbSGreg Roach/**
3649a243cbSGreg Roach * Trait ModuleTabTrait - default implementation of ModuleTabInterface
3749a243cbSGreg Roach */
3849a243cbSGreg Roachtrait ModuleTabTrait
3949a243cbSGreg Roach{
4049a243cbSGreg Roach    /** @var int The default position for this tab.  It can be changed in the control panel. */
41fb7a0427SGreg Roach    protected $tab_order;
4249a243cbSGreg Roach
4349a243cbSGreg Roach    /**
4439402588SGreg Roach     * The text that appears on the tab.
4539402588SGreg Roach     *
4639402588SGreg Roach     * @return string
4739402588SGreg Roach     */
4839402588SGreg Roach    public function tabTitle(): string
4939402588SGreg Roach    {
5039402588SGreg Roach        return $this->title();
5139402588SGreg Roach    }
5239402588SGreg Roach
5339402588SGreg Roach    /**
5449a243cbSGreg Roach     * Users change change the order of tabs using the control panel.
5549a243cbSGreg Roach     *
5649a243cbSGreg Roach     * @param int $tab_order
5749a243cbSGreg Roach     *
5849a243cbSGreg Roach     * @return void
5949a243cbSGreg Roach     */
6049a243cbSGreg Roach    public function setTabOrder(int $tab_order): void
6149a243cbSGreg Roach    {
6249a243cbSGreg Roach        $this->tab_order = $tab_order;
6349a243cbSGreg Roach    }
6449a243cbSGreg Roach
6549a243cbSGreg Roach    /**
6649a243cbSGreg Roach     * Users change change the order of tabs using the control panel.
6749a243cbSGreg Roach     *
6849a243cbSGreg Roach     * @return int
6949a243cbSGreg Roach     */
7049a243cbSGreg Roach    public function getTabOrder(): int
7149a243cbSGreg Roach    {
7224bd2cf5SGreg Roach        return $this->tab_order ?? $this->defaultTabOrder();
7349a243cbSGreg Roach    }
7449a243cbSGreg Roach
7549a243cbSGreg Roach    /**
7649a243cbSGreg Roach     * The default position for this tab.  It can be changed in the control panel.
7749a243cbSGreg Roach     *
7849a243cbSGreg Roach     * @return int
7949a243cbSGreg Roach     */
80cbf4b7faSGreg Roach    public function defaultTabOrder(): int
81cbf4b7faSGreg Roach    {
8249a243cbSGreg Roach        return 9999;
8349a243cbSGreg Roach    }
848eaf8709SGreg Roach
858eaf8709SGreg Roach    /**
868eaf8709SGreg Roach     * This module handles the following facts - so don't show them on the "Facts and events" tab.
878eaf8709SGreg Roach     *
88b5c8fd7eSGreg Roach     * @return Collection<string>
898eaf8709SGreg Roach     */
908eaf8709SGreg Roach    public function supportedFacts(): Collection
918eaf8709SGreg Roach    {
92075d1a05SGreg Roach        return new Collection();
938eaf8709SGreg Roach    }
94852ede8cSGreg Roach
95852ede8cSGreg Roach    /**
96852ede8cSGreg Roach     * @param ServerRequestInterface $request
97852ede8cSGreg Roach     *
98852ede8cSGreg Roach     * @return ResponseInterface
99852ede8cSGreg Roach     */
100852ede8cSGreg Roach    public function getTabAction(ServerRequestInterface $request): ResponseInterface
101852ede8cSGreg Roach    {
102852ede8cSGreg Roach        $tree = $request->getAttribute('tree');
103852ede8cSGreg Roach        assert($tree instanceof Tree);
104852ede8cSGreg Roach
105852ede8cSGreg Roach        $xref = $request->getQueryParams()['xref'];
106852ede8cSGreg Roach
107a091ac74SGreg Roach        $record = Factory::individual()->make($xref, $tree);
108852ede8cSGreg Roach        $record = Auth::checkIndividualAccess($record);
109852ede8cSGreg Roach
110852ede8cSGreg Roach        $user = $request->getAttribute('user');
111852ede8cSGreg Roach
112*ef483801SGreg Roach        if ($this->accessLevel($tree, ModuleTabInterface::class) < Auth::accessLevel($tree, $user)) {
113d501c45dSGreg Roach            throw new HttpAccessDeniedException();
114852ede8cSGreg Roach        }
115852ede8cSGreg Roach
116852ede8cSGreg Roach        $layout = view('layouts/ajax', [
117852ede8cSGreg Roach            'content' => $this->getTabContent($record),
118852ede8cSGreg Roach        ]);
119852ede8cSGreg Roach
120852ede8cSGreg Roach        return response($layout);
121852ede8cSGreg Roach    }
12249a243cbSGreg Roach}
123