xref: /webtrees/app/Module/PedigreeMapModule.php (revision ddeb33548102a68bedfc3a35cbda68303ed365ca)
11f374598SGreg Roach<?php
23976b470SGreg Roach
31f374598SGreg Roach/**
41f374598SGreg Roach * webtrees: online genealogy
58fcd0d32SGreg Roach * Copyright (C) 2019 webtrees development team
61f374598SGreg Roach * This program is free software: you can redistribute it and/or modify
71f374598SGreg Roach * it under the terms of the GNU General Public License as published by
81f374598SGreg Roach * the Free Software Foundation, either version 3 of the License, or
91f374598SGreg Roach * (at your option) any later version.
101f374598SGreg Roach * This program is distributed in the hope that it will be useful,
111f374598SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
121f374598SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
131f374598SGreg Roach * GNU General Public License for more details.
141f374598SGreg Roach * You should have received a copy of the GNU General Public License
151f374598SGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>.
161f374598SGreg Roach */
17fcfa147eSGreg Roach
181f374598SGreg Roachdeclare(strict_types=1);
191f374598SGreg Roach
201f374598SGreg Roachnamespace Fisharebest\Webtrees\Module;
211f374598SGreg Roach
2271378461SGreg Roachuse Aura\Router\RouterContainer;
2371378461SGreg Roachuse Fig\Http\Message\RequestMethodInterface;
246ccdf4f0SGreg Roachuse Fig\Http\Message\StatusCodeInterface;
2571378461SGreg Roachuse Fisharebest\Webtrees\Auth;
261f374598SGreg Roachuse Fisharebest\Webtrees\Fact;
278af6bbf8SGreg Roachuse Fisharebest\Webtrees\Family;
2831e26437SGreg Roachuse Fisharebest\Webtrees\Functions\Functions;
298af6bbf8SGreg Roachuse Fisharebest\Webtrees\GedcomTag;
301f374598SGreg Roachuse Fisharebest\Webtrees\I18N;
311f374598SGreg Roachuse Fisharebest\Webtrees\Individual;
328af6bbf8SGreg Roachuse Fisharebest\Webtrees\Location;
331f374598SGreg Roachuse Fisharebest\Webtrees\Menu;
34aca28033SGreg Roachuse Fisharebest\Webtrees\Services\ChartService;
354ea62551SGreg Roachuse Fisharebest\Webtrees\Tree;
366ccdf4f0SGreg Roachuse Psr\Http\Message\ResponseInterface;
376ccdf4f0SGreg Roachuse Psr\Http\Message\ServerRequestInterface;
3871378461SGreg Roachuse Psr\Http\Server\RequestHandlerInterface;
393976b470SGreg Roach
409e18e23bSGreg Roachuse function app;
419e18e23bSGreg Roachuse function assert;
42abaef046SGreg Roachuse function intdiv;
43*ddeb3354SGreg Roachuse function is_string;
4411b6f9c6SGreg Roachuse function redirect;
4511b6f9c6SGreg Roachuse function route;
4671378461SGreg Roachuse function view;
471f374598SGreg Roach
481f374598SGreg Roach/**
491f374598SGreg Roach * Class PedigreeMapModule
501f374598SGreg Roach */
5171378461SGreg Roachclass PedigreeMapModule extends AbstractModule implements ModuleChartInterface, RequestHandlerInterface
521f374598SGreg Roach{
5349a243cbSGreg Roach    use ModuleChartTrait;
5449a243cbSGreg Roach
5571378461SGreg Roach    private const ROUTE_NAME = 'pedigree-map';
5671378461SGreg Roach    private const ROUTE_URL  = '/tree/{tree}/pedigree-map-{generations}/{xref}';
5771378461SGreg Roach
58e759aebbSGreg Roach    // Defaults
59e759aebbSGreg Roach    public const DEFAULT_GENERATIONS = '4';
6071378461SGreg Roach    public const DEFAULT_PARAMETERS  = [
6171378461SGreg Roach        'generations' => self::DEFAULT_GENERATIONS,
6271378461SGreg Roach    ];
63e759aebbSGreg Roach
64e759aebbSGreg Roach    // Limits
65e759aebbSGreg Roach    public const MAXIMUM_GENERATIONS = 10;
66e759aebbSGreg Roach
6716d6367aSGreg Roach    private const LINE_COLORS = [
681f374598SGreg Roach        '#FF0000',
691f374598SGreg Roach        // Red
701f374598SGreg Roach        '#00FF00',
711f374598SGreg Roach        // Green
721f374598SGreg Roach        '#0000FF',
731f374598SGreg Roach        // Blue
741f374598SGreg Roach        '#FFB300',
751f374598SGreg Roach        // Gold
761f374598SGreg Roach        '#00FFFF',
771f374598SGreg Roach        // Cyan
781f374598SGreg Roach        '#FF00FF',
791f374598SGreg Roach        // Purple
801f374598SGreg Roach        '#7777FF',
811f374598SGreg Roach        // Light blue
821f374598SGreg Roach        '#80FF80'
831f374598SGreg Roach        // Light green
841f374598SGreg Roach    ];
851f374598SGreg Roach
8657ab2231SGreg Roach    /** @var ChartService */
8757ab2231SGreg Roach    private $chart_service;
8857ab2231SGreg Roach
8957ab2231SGreg Roach    /**
9057ab2231SGreg Roach     * PedigreeMapModule constructor.
9157ab2231SGreg Roach     *
9257ab2231SGreg Roach     * @param ChartService $chart_service
9357ab2231SGreg Roach     */
943976b470SGreg Roach    public function __construct(ChartService $chart_service)
953976b470SGreg Roach    {
9657ab2231SGreg Roach        $this->chart_service = $chart_service;
9757ab2231SGreg Roach    }
9857ab2231SGreg Roach
99961ec755SGreg Roach    /**
10071378461SGreg Roach     * Initialization.
10171378461SGreg Roach     *
1029e18e23bSGreg Roach     * @return void
10371378461SGreg Roach     */
1049e18e23bSGreg Roach    public function boot(): void
10571378461SGreg Roach    {
1069e18e23bSGreg Roach        $router_container = app(RouterContainer::class);
1079e18e23bSGreg Roach        assert($router_container instanceof RouterContainer);
1089e18e23bSGreg Roach
10971378461SGreg Roach        $router_container->getMap()
110f7358520SGreg Roach            ->get(self::ROUTE_NAME, self::ROUTE_URL, $this)
11171378461SGreg Roach            ->allows(RequestMethodInterface::METHOD_POST)
11271378461SGreg Roach            ->tokens([
11371378461SGreg Roach                'generations' => '\d+',
11471378461SGreg Roach            ]);
11571378461SGreg Roach    }
11671378461SGreg Roach
11771378461SGreg Roach    /**
1180cfd6963SGreg Roach     * How should this module be identified in the control panel, etc.?
119961ec755SGreg Roach     *
120961ec755SGreg Roach     * @return string
121961ec755SGreg Roach     */
12249a243cbSGreg Roach    public function title(): string
1231f374598SGreg Roach    {
124bbb76c12SGreg Roach        /* I18N: Name of a module */
125bbb76c12SGreg Roach        return I18N::translate('Pedigree map');
1261f374598SGreg Roach    }
1271f374598SGreg Roach
128961ec755SGreg Roach    /**
129961ec755SGreg Roach     * A sentence describing what this module does.
130961ec755SGreg Roach     *
131961ec755SGreg Roach     * @return string
132961ec755SGreg Roach     */
13349a243cbSGreg Roach    public function description(): string
1341f374598SGreg Roach    {
13571378461SGreg Roach        /* I18N: Description of the “Pedigree map” module */
136bbb76c12SGreg Roach        return I18N::translate('Show the birthplace of ancestors on a map.');
1371f374598SGreg Roach    }
1381f374598SGreg Roach
1391f374598SGreg Roach    /**
140377a2979SGreg Roach     * CSS class for the URL.
141377a2979SGreg Roach     *
142377a2979SGreg Roach     * @return string
143377a2979SGreg Roach     */
144377a2979SGreg Roach    public function chartMenuClass(): string
145377a2979SGreg Roach    {
146377a2979SGreg Roach        return 'menu-chart-pedigreemap';
147377a2979SGreg Roach    }
148377a2979SGreg Roach
149377a2979SGreg Roach    /**
1501f374598SGreg Roach     * Return a menu item for this chart - for use in individual boxes.
1511f374598SGreg Roach     *
1521f374598SGreg Roach     * @param Individual $individual
1531f374598SGreg Roach     *
15449a243cbSGreg Roach     * @return Menu|null
1551f374598SGreg Roach     */
156377a2979SGreg Roach    public function chartBoxMenu(Individual $individual): ?Menu
1571f374598SGreg Roach    {
158e6562982SGreg Roach        return $this->chartMenu($individual);
159e6562982SGreg Roach    }
160e6562982SGreg Roach
161e6562982SGreg Roach    /**
162e6562982SGreg Roach     * The title for a specific instance of this chart.
163e6562982SGreg Roach     *
164e6562982SGreg Roach     * @param Individual $individual
165e6562982SGreg Roach     *
166e6562982SGreg Roach     * @return string
167e6562982SGreg Roach     */
168e6562982SGreg Roach    public function chartTitle(Individual $individual): string
169e6562982SGreg Roach    {
170e6562982SGreg Roach        /* I18N: %s is an individual’s name */
17139ca88baSGreg Roach        return I18N::translate('Pedigree map of %s', $individual->fullName());
172e6562982SGreg Roach    }
173e6562982SGreg Roach
174e6562982SGreg Roach    /**
17571378461SGreg Roach     * The URL for a page showing chart options.
176e6562982SGreg Roach     *
177e6562982SGreg Roach     * @param Individual $individual
17859597b37SGreg Roach     * @param mixed[]    $parameters
179e6562982SGreg Roach     *
180e6562982SGreg Roach     * @return string
181e6562982SGreg Roach     */
182e6562982SGreg Roach    public function chartUrl(Individual $individual, array $parameters = []): string
183e6562982SGreg Roach    {
18471378461SGreg Roach        return route(self::ROUTE_NAME, [
18571378461SGreg Roach                'tree' => $individual->tree()->name(),
186e6562982SGreg Roach                'xref' => $individual->xref(),
18771378461SGreg Roach            ] + $parameters + self::DEFAULT_PARAMETERS);
188e6562982SGreg Roach    }
189e6562982SGreg Roach
190e6562982SGreg Roach    /**
1916ccdf4f0SGreg Roach     * @param ServerRequestInterface $request
1921f374598SGreg Roach     *
1936ccdf4f0SGreg Roach     * @return ResponseInterface
1941f374598SGreg Roach     */
19557ab2231SGreg Roach    public function getMapDataAction(ServerRequestInterface $request): ResponseInterface
1961f374598SGreg Roach    {
19757ab2231SGreg Roach        $tree = $request->getAttribute('tree');
1984ea62551SGreg Roach        assert($tree instanceof Tree);
1994ea62551SGreg Roach
200353080f8SGreg Roach        $xref        = $request->getQueryParams()['xref'];
20171378461SGreg Roach        $individual  = Individual::getInstance($xref, $tree);
2021f374598SGreg Roach        $color_count = count(self::LINE_COLORS);
2031f374598SGreg Roach
20457ab2231SGreg Roach        $facts = $this->getPedigreeMapFacts($request, $this->chart_service);
2051f374598SGreg Roach
2061f374598SGreg Roach        $geojson = [
2071f374598SGreg Roach            'type'     => 'FeatureCollection',
2081f374598SGreg Roach            'features' => [],
2091f374598SGreg Roach        ];
2107d988ec3SGreg Roach
2117d988ec3SGreg Roach        $sosa_points = [];
2127d988ec3SGreg Roach
2131f374598SGreg Roach        foreach ($facts as $id => $fact) {
2148af6bbf8SGreg Roach            $location = new Location($fact->place()->gedcomName());
2158af6bbf8SGreg Roach
2168af6bbf8SGreg Roach            // Use the co-ordinates from the fact (if they exist).
2178af6bbf8SGreg Roach            $latitude  = $fact->latitude();
2188af6bbf8SGreg Roach            $longitude = $fact->longitude();
2198af6bbf8SGreg Roach
2208af6bbf8SGreg Roach            // Use the co-ordinates from the location otherwise.
2218af6bbf8SGreg Roach            if ($latitude === 0.0 && $longitude === 0.0) {
2228af6bbf8SGreg Roach                $latitude  = $location->latitude();
2238af6bbf8SGreg Roach                $longitude = $location->longitude();
2248af6bbf8SGreg Roach            }
2258af6bbf8SGreg Roach
2268af6bbf8SGreg Roach            $icon = ['color' => 'Gold', 'name' => 'bullseye '];
2278af6bbf8SGreg Roach            if ($latitude !== 0.0 || $longitude !== 0.0) {
2281f374598SGreg Roach                $polyline         = null;
2291f374598SGreg Roach                $color            = self::LINE_COLORS[log($id, 2) % $color_count];
2301f374598SGreg Roach                $icon['color']    = $color; //make icon color the same as the line
2318af6bbf8SGreg Roach                $sosa_points[$id] = [$latitude, $longitude];
232cdaafeeeSGreg Roach                $sosa_parent      = intdiv($id, 2);
2331f374598SGreg Roach                if (array_key_exists($sosa_parent, $sosa_points)) {
2341f374598SGreg Roach                    // Would like to use a GeometryCollection to hold LineStrings
2351f374598SGreg Roach                    // rather than generate polylines but the MarkerCluster library
2361f374598SGreg Roach                    // doesn't seem to like them
2371f374598SGreg Roach                    $polyline = [
2381f374598SGreg Roach                        'points'  => [
2391f374598SGreg Roach                            $sosa_points[$sosa_parent],
2408af6bbf8SGreg Roach                            [$latitude, $longitude],
2411f374598SGreg Roach                        ],
2421f374598SGreg Roach                        'options' => [
2431f374598SGreg Roach                            'color' => $color,
2441f374598SGreg Roach                        ],
2451f374598SGreg Roach                    ];
2461f374598SGreg Roach                }
2471f374598SGreg Roach                $geojson['features'][] = [
2481f374598SGreg Roach                    'type'       => 'Feature',
2491f374598SGreg Roach                    'id'         => $id,
2501f374598SGreg Roach                    'valid'      => true,
2511f374598SGreg Roach                    'geometry'   => [
2521f374598SGreg Roach                        'type'        => 'Point',
2538af6bbf8SGreg Roach                        'coordinates' => [$longitude, $latitude],
2541f374598SGreg Roach                    ],
2551f374598SGreg Roach                    'properties' => [
2561f374598SGreg Roach                        'polyline' => $polyline,
2571f374598SGreg Roach                        'icon'     => $icon,
2588af6bbf8SGreg Roach                        'tooltip'  => strip_tags($fact->place()->fullName()),
25971378461SGreg Roach                        'summary'  => view('modules/pedigree-map/events', $this->summaryData($individual, $fact, $id)),
2608af6bbf8SGreg Roach                        'zoom'     => $location->zoom() ?: 2,
2611f374598SGreg Roach                    ],
2621f374598SGreg Roach                ];
2631f374598SGreg Roach            }
2641f374598SGreg Roach        }
2657d988ec3SGreg Roach
266*ddeb3354SGreg Roach        $code = $facts === [] ? StatusCodeInterface::STATUS_NO_CONTENT : StatusCodeInterface::STATUS_OK;
2671f374598SGreg Roach
2686ccdf4f0SGreg Roach        return response($geojson, $code);
2696ccdf4f0SGreg Roach    }
2706ccdf4f0SGreg Roach
2716ccdf4f0SGreg Roach    /**
2726ccdf4f0SGreg Roach     * @param ServerRequestInterface $request
27371378461SGreg Roach     *
27471378461SGreg Roach     * @return ResponseInterface
27571378461SGreg Roach     */
27671378461SGreg Roach    public function handle(ServerRequestInterface $request): ResponseInterface
27771378461SGreg Roach    {
2784ea62551SGreg Roach        $tree = $request->getAttribute('tree');
2794ea62551SGreg Roach        assert($tree instanceof Tree);
2804ea62551SGreg Roach
28171378461SGreg Roach        $xref = $request->getAttribute('xref');
282*ddeb3354SGreg Roach        assert(is_string($xref));
283*ddeb3354SGreg Roach
28471378461SGreg Roach        $individual  = Individual::getInstance($xref, $tree);
285*ddeb3354SGreg Roach        $individual  = Auth::checkIndividualAccess($individual);
286*ddeb3354SGreg Roach
287*ddeb3354SGreg Roach        $user        = $request->getAttribute('user');
288*ddeb3354SGreg Roach        $generations = (int) $request->getAttribute('generations');
289*ddeb3354SGreg Roach        Auth::checkComponentAccess($this, 'chart', $tree, $user);
29071378461SGreg Roach
29111b6f9c6SGreg Roach        // Convert POST requests into GET requests for pretty URLs.
29211b6f9c6SGreg Roach        if ($request->getMethod() === RequestMethodInterface::METHOD_POST) {
29311b6f9c6SGreg Roach            return redirect(route(self::ROUTE_NAME, [
29411b6f9c6SGreg Roach                'tree'        => $tree->name(),
29511b6f9c6SGreg Roach                'xref'        => $request->getParsedBody()['xref'],
29611b6f9c6SGreg Roach                'generations' => $request->getParsedBody()['generations'],
29711b6f9c6SGreg Roach            ]));
29811b6f9c6SGreg Roach        }
29911b6f9c6SGreg Roach
30071378461SGreg Roach        $map = view('modules/pedigree-map/chart', [
30171378461SGreg Roach            'module'      => $this->name(),
30271378461SGreg Roach            'individual'  => $individual,
30371378461SGreg Roach            'type'        => 'pedigree',
30471378461SGreg Roach            'generations' => $generations,
30571378461SGreg Roach        ]);
30671378461SGreg Roach
30771378461SGreg Roach        return $this->viewResponse('modules/pedigree-map/page', [
30871378461SGreg Roach            'module'         => $this->name(),
30971378461SGreg Roach            /* I18N: %s is an individual’s name */
31071378461SGreg Roach            'title'          => I18N::translate('Pedigree map of %s', $individual->fullName()),
31171378461SGreg Roach            'tree'           => $tree,
31271378461SGreg Roach            'individual'     => $individual,
31371378461SGreg Roach            'generations'    => $generations,
31471378461SGreg Roach            'maxgenerations' => self::MAXIMUM_GENERATIONS,
31571378461SGreg Roach            'map'            => $map,
31671378461SGreg Roach        ]);
31771378461SGreg Roach    }
31871378461SGreg Roach
31971378461SGreg Roach    /**
32071378461SGreg Roach     * @param ServerRequestInterface $request
3216ccdf4f0SGreg Roach     * @param ChartService           $chart_service
3226ccdf4f0SGreg Roach     *
3236ccdf4f0SGreg Roach     * @return array
3246ccdf4f0SGreg Roach     */
32557ab2231SGreg Roach    private function getPedigreeMapFacts(ServerRequestInterface $request, ChartService $chart_service): array
3266ccdf4f0SGreg Roach    {
32757ab2231SGreg Roach        $tree = $request->getAttribute('tree');
3284ea62551SGreg Roach        assert($tree instanceof Tree);
3294ea62551SGreg Roach
3304ea62551SGreg Roach        $generations = (int) $request->getQueryParams()['generations'];
331353080f8SGreg Roach        $xref        = $request->getQueryParams()['xref'];
3326ccdf4f0SGreg Roach        $individual  = Individual::getInstance($xref, $tree);
3336ccdf4f0SGreg Roach        $ancestors   = $chart_service->sosaStradonitzAncestors($individual, $generations);
3346ccdf4f0SGreg Roach        $facts       = [];
3356ccdf4f0SGreg Roach        foreach ($ancestors as $sosa => $person) {
3366ccdf4f0SGreg Roach            if ($person->canShow()) {
3376ccdf4f0SGreg Roach                $birth = $person->facts(['BIRT'])->first();
3386ccdf4f0SGreg Roach                if ($birth instanceof Fact && $birth->place()->gedcomName() !== '') {
3396ccdf4f0SGreg Roach                    $facts[$sosa] = $birth;
3406ccdf4f0SGreg Roach                }
3416ccdf4f0SGreg Roach            }
3426ccdf4f0SGreg Roach        }
3436ccdf4f0SGreg Roach
3446ccdf4f0SGreg Roach        return $facts;
3451f374598SGreg Roach    }
3461f374598SGreg Roach
3471f374598SGreg Roach    /**
3488af6bbf8SGreg Roach     * @param Individual $individual
3498af6bbf8SGreg Roach     * @param Fact       $fact
3508af6bbf8SGreg Roach     * @param int        $sosa
3518af6bbf8SGreg Roach     *
3528af6bbf8SGreg Roach     * @return array
3538af6bbf8SGreg Roach     */
3548af6bbf8SGreg Roach    private function summaryData(Individual $individual, Fact $fact, int $sosa): array
3558af6bbf8SGreg Roach    {
3568af6bbf8SGreg Roach        $record      = $fact->record();
3578af6bbf8SGreg Roach        $name        = '';
3588af6bbf8SGreg Roach        $url         = '';
3598af6bbf8SGreg Roach        $tag         = $fact->label();
3608af6bbf8SGreg Roach        $addbirthtag = false;
3618af6bbf8SGreg Roach
3628af6bbf8SGreg Roach        if ($record instanceof Family) {
3638af6bbf8SGreg Roach            // Marriage
36439ca88baSGreg Roach            $spouse = $record->spouse($individual);
3658af6bbf8SGreg Roach            if ($spouse) {
3668af6bbf8SGreg Roach                $url  = $spouse->url();
36739ca88baSGreg Roach                $name = $spouse->fullName();
3688af6bbf8SGreg Roach            }
3698af6bbf8SGreg Roach        } elseif ($record !== $individual) {
3708af6bbf8SGreg Roach            // Birth of a child
3718af6bbf8SGreg Roach            $url  = $record->url();
37239ca88baSGreg Roach            $name = $record->fullName();
3738af6bbf8SGreg Roach            $tag  = GedcomTag::getLabel('_BIRT_CHIL', $record);
3748af6bbf8SGreg Roach        }
3758af6bbf8SGreg Roach
3768af6bbf8SGreg Roach        if ($sosa > 1) {
3778af6bbf8SGreg Roach            $addbirthtag = true;
37831e26437SGreg Roach            $tag         = ucfirst($this->getSosaName($sosa));
3798af6bbf8SGreg Roach        }
3808af6bbf8SGreg Roach
3818af6bbf8SGreg Roach        return [
3828af6bbf8SGreg Roach            'tag'    => $tag,
3838af6bbf8SGreg Roach            'url'    => $url,
3848af6bbf8SGreg Roach            'name'   => $name,
3858af6bbf8SGreg Roach            'value'  => $fact->value(),
3868af6bbf8SGreg Roach            'date'   => $fact->date()->display(true),
3878af6bbf8SGreg Roach            'place'  => $fact->place(),
3888af6bbf8SGreg Roach            'addtag' => $addbirthtag,
3898af6bbf8SGreg Roach        ];
3908af6bbf8SGreg Roach    }
3918af6bbf8SGreg Roach
3928af6bbf8SGreg Roach    /**
39331e26437SGreg Roach     * builds and returns sosa relationship name in the active language
39431e26437SGreg Roach     *
39531e26437SGreg Roach     * @param int $sosa Sosa number
39631e26437SGreg Roach     *
39731e26437SGreg Roach     * @return string
39831e26437SGreg Roach     */
39931e26437SGreg Roach    private function getSosaName(int $sosa): string
40031e26437SGreg Roach    {
40131e26437SGreg Roach        $path = '';
40231e26437SGreg Roach
40331e26437SGreg Roach        while ($sosa > 1) {
40431e26437SGreg Roach            if ($sosa % 2 === 1) {
40531e26437SGreg Roach                $path = 'mot' . $path;
40631e26437SGreg Roach            } else {
40731e26437SGreg Roach                $path = 'fat' . $path;
40831e26437SGreg Roach            }
40931e26437SGreg Roach            $sosa = intdiv($sosa, 2);
41031e26437SGreg Roach        }
41131e26437SGreg Roach
41231e26437SGreg Roach        return Functions::getRelationshipNameFromPath($path);
41331e26437SGreg Roach    }
4141f374598SGreg Roach}
415