xref: /webtrees/app/Module/AncestorsChartModule.php (revision 72f04adfd1efa567897f5bef90dc8e7a7385f48d)
1168ff6f3Sric2016<?php
23976b470SGreg Roach
3168ff6f3Sric2016/**
4168ff6f3Sric2016 * webtrees: online genealogy
58fcd0d32SGreg Roach * Copyright (C) 2019 webtrees development team
6168ff6f3Sric2016 * This program is free software: you can redistribute it and/or modify
7168ff6f3Sric2016 * it under the terms of the GNU General Public License as published by
8168ff6f3Sric2016 * the Free Software Foundation, either version 3 of the License, or
9168ff6f3Sric2016 * (at your option) any later version.
10168ff6f3Sric2016 * This program is distributed in the hope that it will be useful,
11168ff6f3Sric2016 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12168ff6f3Sric2016 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13168ff6f3Sric2016 * GNU General Public License for more details.
14168ff6f3Sric2016 * You should have received a copy of the GNU General Public License
15168ff6f3Sric2016 * along with this program. If not, see <http://www.gnu.org/licenses/>.
16168ff6f3Sric2016 */
17fcfa147eSGreg Roach
18e7f56f2aSGreg Roachdeclare(strict_types=1);
19e7f56f2aSGreg Roach
20168ff6f3Sric2016namespace Fisharebest\Webtrees\Module;
21168ff6f3Sric2016
2271378461SGreg Roachuse Aura\Router\RouterContainer;
2371378461SGreg Roachuse Fig\Http\Message\RequestMethodInterface;
24e539f5c6SGreg Roachuse Fisharebest\Webtrees\Auth;
25168ff6f3Sric2016use Fisharebest\Webtrees\I18N;
26168ff6f3Sric2016use Fisharebest\Webtrees\Individual;
27e46b0479SScrutinizer Auto-Fixeruse Fisharebest\Webtrees\Menu;
28e539f5c6SGreg Roachuse Fisharebest\Webtrees\Services\ChartService;
294ea62551SGreg Roachuse Fisharebest\Webtrees\Tree;
306ccdf4f0SGreg Roachuse Psr\Http\Message\ResponseInterface;
316ccdf4f0SGreg Roachuse Psr\Http\Message\ServerRequestInterface;
3271378461SGreg Roachuse Psr\Http\Server\RequestHandlerInterface;
3312662bfbSGreg Roach
349e18e23bSGreg Roachuse function app;
359e18e23bSGreg Roachuse function assert;
36ddeb3354SGreg Roachuse function is_string;
3771378461SGreg Roachuse function max;
3871378461SGreg Roachuse function min;
3971378461SGreg Roachuse function route;
40168ff6f3Sric2016
41168ff6f3Sric2016/**
42168ff6f3Sric2016 * Class AncestorsChartModule
43168ff6f3Sric2016 */
4471378461SGreg Roachclass AncestorsChartModule extends AbstractModule implements ModuleChartInterface, RequestHandlerInterface
45c1010edaSGreg Roach{
4649a243cbSGreg Roach    use ModuleChartTrait;
4749a243cbSGreg Roach
48*72f04adfSGreg Roach    protected const ROUTE_URL  = '/tree/{tree}/ancestors-{style}-{generations}/{xref}';
4971378461SGreg Roach
50e539f5c6SGreg Roach    // Chart styles
5171378461SGreg Roach    public const CHART_STYLE_TREE        = 'tree';
5271378461SGreg Roach    public const CHART_STYLE_INDIVIDUALS = 'individuals';
5371378461SGreg Roach    public const CHART_STYLE_FAMILIES    = 'families';
54e539f5c6SGreg Roach
55e539f5c6SGreg Roach    // Defaults
560cf94a7cSGreg Roach    protected const DEFAULT_GENERATIONS = '4';
5771378461SGreg Roach    protected const DEFAULT_STYLE       = self::CHART_STYLE_TREE;
5871378461SGreg Roach    protected const DEFAULT_PARAMETERS  = [
5971378461SGreg Roach        'generations' => self::DEFAULT_GENERATIONS,
6071378461SGreg Roach        'style'       => self::DEFAULT_STYLE,
6171378461SGreg Roach    ];
62e759aebbSGreg Roach
63e759aebbSGreg Roach    // Limits
64e759aebbSGreg Roach    protected const MINIMUM_GENERATIONS = 2;
65e759aebbSGreg Roach    protected const MAXIMUM_GENERATIONS = 10;
66e539f5c6SGreg Roach
6757ab2231SGreg Roach    /** @var ChartService */
6857ab2231SGreg Roach    private $chart_service;
6957ab2231SGreg Roach
7057ab2231SGreg Roach    /**
7157ab2231SGreg Roach     * CompactTreeChartModule constructor.
7257ab2231SGreg Roach     *
7357ab2231SGreg Roach     * @param ChartService $chart_service
7457ab2231SGreg Roach     */
753976b470SGreg Roach    public function __construct(ChartService $chart_service)
763976b470SGreg Roach    {
7757ab2231SGreg Roach        $this->chart_service = $chart_service;
7857ab2231SGreg Roach    }
7957ab2231SGreg Roach
80168ff6f3Sric2016    /**
8171378461SGreg Roach     * Initialization.
8271378461SGreg Roach     *
839e18e23bSGreg Roach     * @return void
8471378461SGreg Roach     */
859e18e23bSGreg Roach    public function boot(): void
8671378461SGreg Roach    {
879e18e23bSGreg Roach        $router_container = app(RouterContainer::class);
889e18e23bSGreg Roach        assert($router_container instanceof RouterContainer);
899e18e23bSGreg Roach
9071378461SGreg Roach        $router_container->getMap()
91*72f04adfSGreg Roach            ->get(static::class, static::ROUTE_URL, $this)
9271378461SGreg Roach            ->allows(RequestMethodInterface::METHOD_POST)
9371378461SGreg Roach            ->tokens([
9471378461SGreg Roach                'generations' => '\d+',
9571378461SGreg Roach                'style'       => implode('|', array_keys($this->styles())),
9671378461SGreg Roach            ]);
9771378461SGreg Roach    }
9871378461SGreg Roach
9971378461SGreg Roach    /**
1000cfd6963SGreg Roach     * How should this module be identified in the control panel, etc.?
101168ff6f3Sric2016     *
102168ff6f3Sric2016     * @return string
103168ff6f3Sric2016     */
10449a243cbSGreg Roach    public function title(): string
105c1010edaSGreg Roach    {
106bbb76c12SGreg Roach        /* I18N: Name of a module/chart */
107bbb76c12SGreg Roach        return I18N::translate('Ancestors');
108168ff6f3Sric2016    }
109168ff6f3Sric2016
110168ff6f3Sric2016    /**
111168ff6f3Sric2016     * A sentence describing what this module does.
112168ff6f3Sric2016     *
113168ff6f3Sric2016     * @return string
114168ff6f3Sric2016     */
11549a243cbSGreg Roach    public function description(): string
116c1010edaSGreg Roach    {
117bbb76c12SGreg Roach        /* I18N: Description of the “AncestorsChart” module */
118bbb76c12SGreg Roach        return I18N::translate('A chart of an individual’s ancestors.');
119168ff6f3Sric2016    }
120168ff6f3Sric2016
121168ff6f3Sric2016    /**
122377a2979SGreg Roach     * CSS class for the URL.
123377a2979SGreg Roach     *
124377a2979SGreg Roach     * @return string
125377a2979SGreg Roach     */
126377a2979SGreg Roach    public function chartMenuClass(): string
127377a2979SGreg Roach    {
128377a2979SGreg Roach        return 'menu-chart-ancestry';
129377a2979SGreg Roach    }
130377a2979SGreg Roach
131377a2979SGreg Roach    /**
1324eb71cfaSGreg Roach     * Return a menu item for this chart - for use in individual boxes.
1334eb71cfaSGreg Roach     *
13460bc3e3fSGreg Roach     * @param Individual $individual
13560bc3e3fSGreg Roach     *
1364eb71cfaSGreg Roach     * @return Menu|null
1374eb71cfaSGreg Roach     */
138377a2979SGreg Roach    public function chartBoxMenu(Individual $individual): ?Menu
139c1010edaSGreg Roach    {
140e6562982SGreg Roach        return $this->chartMenu($individual);
141e6562982SGreg Roach    }
142e6562982SGreg Roach
143e6562982SGreg Roach    /**
144e6562982SGreg Roach     * The title for a specific instance of this chart.
145e6562982SGreg Roach     *
146e6562982SGreg Roach     * @param Individual $individual
147e6562982SGreg Roach     *
148e6562982SGreg Roach     * @return string
149e6562982SGreg Roach     */
150e6562982SGreg Roach    public function chartTitle(Individual $individual): string
151e6562982SGreg Roach    {
152e6562982SGreg Roach        /* I18N: %s is an individual’s name */
15339ca88baSGreg Roach        return I18N::translate('Ancestors of %s', $individual->fullName());
154e6562982SGreg Roach    }
155e6562982SGreg Roach
156e6562982SGreg Roach    /**
15771378461SGreg Roach     * The URL for a page showing chart options.
158e539f5c6SGreg Roach     *
15971378461SGreg Roach     * @param Individual $individual
16059597b37SGreg Roach     * @param mixed[]    $parameters
16171378461SGreg Roach     *
16271378461SGreg Roach     * @return string
16371378461SGreg Roach     */
16471378461SGreg Roach    public function chartUrl(Individual $individual, array $parameters = []): string
16571378461SGreg Roach    {
166*72f04adfSGreg Roach        return route(static::class, [
16771378461SGreg Roach                'xref' => $individual->xref(),
16871378461SGreg Roach                'tree' => $individual->tree()->name(),
16971378461SGreg Roach            ] + $parameters + self::DEFAULT_PARAMETERS);
17071378461SGreg Roach    }
17171378461SGreg Roach
17271378461SGreg Roach    /**
1736ccdf4f0SGreg Roach     * @param ServerRequestInterface $request
174e539f5c6SGreg Roach     *
1756ccdf4f0SGreg Roach     * @return ResponseInterface
176e539f5c6SGreg Roach     */
17771378461SGreg Roach    public function handle(ServerRequestInterface $request): ResponseInterface
178e539f5c6SGreg Roach    {
1794ea62551SGreg Roach        $tree = $request->getAttribute('tree');
1804ea62551SGreg Roach        assert($tree instanceof Tree);
1814ea62551SGreg Roach
182ddeb3354SGreg Roach        $xref = $request->getAttribute('xref');
183ddeb3354SGreg Roach        assert(is_string($xref));
184ddeb3354SGreg Roach
185ddeb3354SGreg Roach        $individual  = Individual::getInstance($xref, $tree);
1863c3fd0a5SGreg Roach        $individual  = Auth::checkIndividualAccess($individual, false, true);
187ddeb3354SGreg Roach
18871378461SGreg Roach        $ajax        = $request->getQueryParams()['ajax'] ?? '';
18971378461SGreg Roach        $generations = (int) $request->getAttribute('generations');
19071378461SGreg Roach        $style       = $request->getAttribute('style');
19157ab2231SGreg Roach        $user        = $request->getAttribute('user');
192ddeb3354SGreg Roach
193ddeb3354SGreg Roach        Auth::checkComponentAccess($this, 'chart', $tree, $user);
194ddeb3354SGreg Roach
195e539f5c6SGreg Roach
19671378461SGreg Roach        // Convert POST requests into GET requests for pretty URLs.
19771378461SGreg Roach        if ($request->getMethod() === RequestMethodInterface::METHOD_POST) {
198b46c87bdSGreg Roach            $params = (array) $request->getParsedBody();
199b46c87bdSGreg Roach
200*72f04adfSGreg Roach            return redirect(route(static::class, [
2014ea62551SGreg Roach                'tree'        => $tree->name(),
202b46c87bdSGreg Roach                'xref'        => $params['xref'],
203b46c87bdSGreg Roach                'style'       => $params['style'],
204b46c87bdSGreg Roach                'generations' => $params['generations'],
20571378461SGreg Roach            ]));
20671378461SGreg Roach        }
20771378461SGreg Roach
2080cf94a7cSGreg Roach        $generations = min($generations, self::MAXIMUM_GENERATIONS);
2090cf94a7cSGreg Roach        $generations = max($generations, self::MINIMUM_GENERATIONS);
210e539f5c6SGreg Roach
2110b93976aSGreg Roach        if ($ajax === '1') {
212e539f5c6SGreg Roach            $this->layout = 'layouts/ajax';
213e539f5c6SGreg Roach
21471378461SGreg Roach            $ancestors = $this->chart_service->sosaStradonitzAncestors($individual, $generations);
21571378461SGreg Roach
21671378461SGreg Roach            switch ($style) {
21771378461SGreg Roach                default:
21871378461SGreg Roach                case self::CHART_STYLE_TREE:
21971378461SGreg Roach                    return $this->viewResponse('modules/ancestors-chart/tree', [
22071378461SGreg Roach                        'individual'  => $individual,
2211afbbc50SGreg Roach                        'parents'     => $individual->childFamilies()->first(),
22271378461SGreg Roach                        'generations' => $generations,
22371378461SGreg Roach                        'sosa'        => 1,
22471378461SGreg Roach                    ]);
22571378461SGreg Roach
22671378461SGreg Roach                case self::CHART_STYLE_INDIVIDUALS:
227e539f5c6SGreg Roach                    return $this->viewResponse('lists/individuals-table', [
228e539f5c6SGreg Roach                        'individuals' => $ancestors,
229e539f5c6SGreg Roach                        'sosa'        => true,
230e539f5c6SGreg Roach                        'tree'        => $tree,
231e539f5c6SGreg Roach                    ]);
232e539f5c6SGreg Roach
23371378461SGreg Roach                case self::CHART_STYLE_FAMILIES:
234e539f5c6SGreg Roach                    $families = [];
23571378461SGreg Roach
236e539f5c6SGreg Roach                    foreach ($ancestors as $individual) {
23739ca88baSGreg Roach                        foreach ($individual->childFamilies() as $family) {
238e539f5c6SGreg Roach                            $families[$family->xref()] = $family;
239e539f5c6SGreg Roach                        }
240e539f5c6SGreg Roach                    }
241e539f5c6SGreg Roach
242ef5d23f1SGreg Roach                    return $this->viewResponse('lists/families-table', ['families' => $families, 'tree' => $tree]);
243e539f5c6SGreg Roach            }
24471378461SGreg Roach        }
24571378461SGreg Roach
24671378461SGreg Roach        $ajax_url = $this->chartUrl($individual, [
24771378461SGreg Roach            'ajax'        => true,
24871378461SGreg Roach            'generations' => $generations,
24971378461SGreg Roach            'style'       => $style,
25071378461SGreg Roach            'xref'        => $xref,
25171378461SGreg Roach        ]);
25271378461SGreg Roach
25371378461SGreg Roach        return $this->viewResponse('modules/ancestors-chart/page', [
25471378461SGreg Roach            'ajax_url'            => $ajax_url,
25571378461SGreg Roach            'generations'         => $generations,
25671378461SGreg Roach            'individual'          => $individual,
25771378461SGreg Roach            'maximum_generations' => self::MAXIMUM_GENERATIONS,
25871378461SGreg Roach            'minimum_generations' => self::MINIMUM_GENERATIONS,
25971378461SGreg Roach            'module'              => $this->name(),
26071378461SGreg Roach            'style'               => $style,
26171378461SGreg Roach            'styles'              => $this->styles(),
26271378461SGreg Roach            'title'               => $this->chartTitle($individual),
263ef5d23f1SGreg Roach            'tree'                => $tree,
26471378461SGreg Roach        ]);
26571378461SGreg Roach    }
266e539f5c6SGreg Roach
267e539f5c6SGreg Roach    /**
268e539f5c6SGreg Roach     * This chart can display its output in a number of styles
269e539f5c6SGreg Roach     *
27071378461SGreg Roach     * @return string[]
271e539f5c6SGreg Roach     */
27271378461SGreg Roach    protected function styles(): array
273e539f5c6SGreg Roach    {
274e539f5c6SGreg Roach        return [
2750f1e0f10SGreg Roach            self::CHART_STYLE_TREE        => I18N::translate('Tree'),
276e539f5c6SGreg Roach            self::CHART_STYLE_INDIVIDUALS => I18N::translate('Individuals'),
277e539f5c6SGreg Roach            self::CHART_STYLE_FAMILIES    => I18N::translate('Families'),
278e539f5c6SGreg Roach        ];
279e539f5c6SGreg Roach    }
280168ff6f3Sric2016}
281