xref: /webtrees/app/Module/RelationshipsChartModule.php (revision 57ab22314b2599feb432b1a1ed71643cfc2f0452)
1168ff6f3Sric2016<?php
2168ff6f3Sric2016/**
3168ff6f3Sric2016 * webtrees: online genealogy
48fcd0d32SGreg Roach * Copyright (C) 2019 webtrees development team
5168ff6f3Sric2016 * This program is free software: you can redistribute it and/or modify
6168ff6f3Sric2016 * it under the terms of the GNU General Public License as published by
7168ff6f3Sric2016 * the Free Software Foundation, either version 3 of the License, or
8168ff6f3Sric2016 * (at your option) any later version.
9168ff6f3Sric2016 * This program is distributed in the hope that it will be useful,
10168ff6f3Sric2016 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11168ff6f3Sric2016 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12168ff6f3Sric2016 * GNU General Public License for more details.
13168ff6f3Sric2016 * You should have received a copy of the GNU General Public License
14168ff6f3Sric2016 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15168ff6f3Sric2016 */
16e7f56f2aSGreg Roachdeclare(strict_types=1);
17e7f56f2aSGreg Roach
18168ff6f3Sric2016namespace Fisharebest\Webtrees\Module;
19168ff6f3Sric2016
20185cbb4dSGreg Roachuse Closure;
219b5537c3SGreg Roachuse Fisharebest\Algorithm\Dijkstra;
22168ff6f3Sric2016use Fisharebest\Webtrees\Auth;
239b5537c3SGreg Roachuse Fisharebest\Webtrees\Family;
2445ac604bSGreg Roachuse Fisharebest\Webtrees\FlashMessages;
259b5537c3SGreg Roachuse Fisharebest\Webtrees\Functions\Functions;
26168ff6f3Sric2016use Fisharebest\Webtrees\I18N;
27168ff6f3Sric2016use Fisharebest\Webtrees\Individual;
281e3273c9SGreg Roachuse Fisharebest\Webtrees\Menu;
2945ac604bSGreg Roachuse Fisharebest\Webtrees\Tree;
309b5537c3SGreg Roachuse Illuminate\Database\Capsule\Manager as DB;
319b5537c3SGreg Roachuse Illuminate\Database\Query\JoinClause;
326ccdf4f0SGreg Roachuse Psr\Http\Message\ResponseInterface;
336ccdf4f0SGreg Roachuse Psr\Http\Message\ServerRequestInterface;
34f4ba05e3SGreg Roachuse function view;
35168ff6f3Sric2016
36168ff6f3Sric2016/**
37168ff6f3Sric2016 * Class RelationshipsChartModule
38168ff6f3Sric2016 */
3937eb8894SGreg Roachclass RelationshipsChartModule extends AbstractModule implements ModuleChartInterface, ModuleConfigInterface
40c1010edaSGreg Roach{
4149a243cbSGreg Roach    use ModuleChartTrait;
4249a243cbSGreg Roach    use ModuleConfigTrait;
4349a243cbSGreg Roach
441e3273c9SGreg Roach    /** It would be more correct to use PHP_INT_MAX, but this isn't friendly in URLs */
4516d6367aSGreg Roach    public const UNLIMITED_RECURSION = 99;
461e3273c9SGreg Roach
471e3273c9SGreg Roach    /** By default new trees allow unlimited recursion */
4816d6367aSGreg Roach    public const DEFAULT_RECURSION = '99';
4945ac604bSGreg Roach
50e0bd7dc9SGreg Roach    /** By default new trees search for all relationships (not via ancestors) */
5116d6367aSGreg Roach    public const DEFAULT_ANCESTORS = '0';
52e0bd7dc9SGreg Roach
53168ff6f3Sric2016    /**
54168ff6f3Sric2016     * A sentence describing what this module does.
55168ff6f3Sric2016     *
56168ff6f3Sric2016     * @return string
57168ff6f3Sric2016     */
5849a243cbSGreg Roach    public function description(): string
59c1010edaSGreg Roach    {
60bbb76c12SGreg Roach        /* I18N: Description of the “RelationshipsChart” module */
61bbb76c12SGreg Roach        return I18N::translate('A chart displaying relationships between two individuals.');
62168ff6f3Sric2016    }
63168ff6f3Sric2016
64168ff6f3Sric2016    /**
656ccdf4f0SGreg Roach     * Return a menu item for this chart - for use in individual boxes.
666ccdf4f0SGreg Roach     *
676ccdf4f0SGreg Roach     * @param Individual $individual
686ccdf4f0SGreg Roach     *
696ccdf4f0SGreg Roach     * @return Menu|null
706ccdf4f0SGreg Roach     */
716ccdf4f0SGreg Roach    public function chartBoxMenu(Individual $individual): ?Menu
726ccdf4f0SGreg Roach    {
736ccdf4f0SGreg Roach        return $this->chartMenu($individual);
746ccdf4f0SGreg Roach    }
756ccdf4f0SGreg Roach
766ccdf4f0SGreg Roach    /**
77e6562982SGreg Roach     * A main menu item for this chart.
78168ff6f3Sric2016     *
798e69695bSGreg Roach     * @param Individual $individual
808e69695bSGreg Roach     *
81e6562982SGreg Roach     * @return Menu
82168ff6f3Sric2016     */
83e6562982SGreg Roach    public function chartMenu(Individual $individual): Menu
84c1010edaSGreg Roach    {
85e6562982SGreg Roach        $gedcomid = $individual->tree()->getUserPreference(Auth::user(), 'gedcomid');
86168ff6f3Sric2016
873dcc812bSGreg Roach        if ($gedcomid !== '' && $gedcomid !== $individual->xref()) {
88168ff6f3Sric2016            return new Menu(
89168ff6f3Sric2016                I18N::translate('Relationship to me'),
90e6562982SGreg Roach                $this->chartUrl($individual, ['xref2' => $gedcomid]),
91377a2979SGreg Roach                $this->chartMenuClass(),
92e6562982SGreg Roach                $this->chartUrlAttributes()
93168ff6f3Sric2016            );
94b2ce94c6SRico Sonntag        }
95b2ce94c6SRico Sonntag
96168ff6f3Sric2016        return new Menu(
97e6562982SGreg Roach            $this->title(),
98e6562982SGreg Roach            $this->chartUrl($individual),
99377a2979SGreg Roach            $this->chartMenuClass(),
100e6562982SGreg Roach            $this->chartUrlAttributes()
101168ff6f3Sric2016        );
102168ff6f3Sric2016    }
103168ff6f3Sric2016
1044eb71cfaSGreg Roach    /**
105377a2979SGreg Roach     * CSS class for the URL.
106377a2979SGreg Roach     *
107377a2979SGreg Roach     * @return string
108377a2979SGreg Roach     */
109377a2979SGreg Roach    public function chartMenuClass(): string
110377a2979SGreg Roach    {
111377a2979SGreg Roach        return 'menu-chart-relationship';
112377a2979SGreg Roach    }
113377a2979SGreg Roach
114377a2979SGreg Roach    /**
1156ccdf4f0SGreg Roach     * How should this module be identified in the control panel, etc.?
1164eb71cfaSGreg Roach     *
1176ccdf4f0SGreg Roach     * @return string
1184eb71cfaSGreg Roach     */
1196ccdf4f0SGreg Roach    public function title(): string
120c1010edaSGreg Roach    {
1216ccdf4f0SGreg Roach        /* I18N: Name of a module/chart */
1226ccdf4f0SGreg Roach        return I18N::translate('Relationships');
123e6562982SGreg Roach    }
124e6562982SGreg Roach
125e6562982SGreg Roach    /**
126*57ab2231SGreg Roach     * @param ServerRequestInterface $request
127*57ab2231SGreg Roach     *
1286ccdf4f0SGreg Roach     * @return ResponseInterface
129291c1b19SGreg Roach     */
130*57ab2231SGreg Roach    public function getAdminAction(ServerRequestInterface $request): ResponseInterface
131c1010edaSGreg Roach    {
132291c1b19SGreg Roach        $this->layout = 'layouts/administration';
133291c1b19SGreg Roach
1349b5537c3SGreg Roach        return $this->viewResponse('modules/relationships-chart/config', [
135291c1b19SGreg Roach            'all_trees'         => Tree::getAll(),
136291c1b19SGreg Roach            'ancestors_options' => $this->ancestorsOptions(),
137291c1b19SGreg Roach            'default_ancestors' => self::DEFAULT_ANCESTORS,
138291c1b19SGreg Roach            'default_recursion' => self::DEFAULT_RECURSION,
1399b5537c3SGreg Roach            'recursion_options' => $this->recursionConfigOptions(),
14049a243cbSGreg Roach            'title'             => I18N::translate('Chart preferences') . ' — ' . $this->title(),
141291c1b19SGreg Roach        ]);
142291c1b19SGreg Roach    }
143291c1b19SGreg Roach
144291c1b19SGreg Roach    /**
145e0bd7dc9SGreg Roach     * Possible options for the ancestors option
14618d7a90dSGreg Roach     *
14718d7a90dSGreg Roach     * @return string[]
148e0bd7dc9SGreg Roach     */
14918d7a90dSGreg Roach    private function ancestorsOptions(): array
150c1010edaSGreg Roach    {
15113abd6f3SGreg Roach        return [
152e0bd7dc9SGreg Roach            0 => I18N::translate('Find any relationship'),
153e0bd7dc9SGreg Roach            1 => I18N::translate('Find relationships via ancestors'),
15413abd6f3SGreg Roach        ];
155e0bd7dc9SGreg Roach    }
156e0bd7dc9SGreg Roach
157e0bd7dc9SGreg Roach    /**
1581e3273c9SGreg Roach     * Possible options for the recursion option
15918d7a90dSGreg Roach     *
16018d7a90dSGreg Roach     * @return string[]
1611e3273c9SGreg Roach     */
1629b5537c3SGreg Roach    private function recursionConfigOptions(): array
163c1010edaSGreg Roach    {
16413abd6f3SGreg Roach        return [
1651e3273c9SGreg Roach            0                         => I18N::translate('none'),
1661e3273c9SGreg Roach            1                         => I18N::number(1),
1671e3273c9SGreg Roach            2                         => I18N::number(2),
1681e3273c9SGreg Roach            3                         => I18N::number(3),
169e0bd7dc9SGreg Roach            self::UNLIMITED_RECURSION => I18N::translate('unlimited'),
17013abd6f3SGreg Roach        ];
1711e3273c9SGreg Roach    }
1729b5537c3SGreg Roach
1739b5537c3SGreg Roach    /**
1746ccdf4f0SGreg Roach     * @param ServerRequestInterface $request
1756ccdf4f0SGreg Roach     *
1766ccdf4f0SGreg Roach     * @return ResponseInterface
1776ccdf4f0SGreg Roach     */
1786ccdf4f0SGreg Roach    public function postAdminAction(ServerRequestInterface $request): ResponseInterface
1796ccdf4f0SGreg Roach    {
1806ccdf4f0SGreg Roach        foreach (Tree::getAll() as $tree) {
181ff207a43SGreg Roach            $recursion = $request->getParsedBody()['relationship-recursion-' . $tree->id()] ?? '';
182ff207a43SGreg Roach            $ancestors = $request->getParsedBody()['relationship-ancestors-' . $tree->id()] ?? '';
1836ccdf4f0SGreg Roach
1846ccdf4f0SGreg Roach            $tree->setPreference('RELATIONSHIP_RECURSION', $recursion);
1856ccdf4f0SGreg Roach            $tree->setPreference('RELATIONSHIP_ANCESTORS', $ancestors);
1866ccdf4f0SGreg Roach        }
1876ccdf4f0SGreg Roach
1886ccdf4f0SGreg Roach        FlashMessages::addMessage(I18N::translate('The preferences for the module “%s” have been updated.', $this->title()), 'success');
1896ccdf4f0SGreg Roach
1906ccdf4f0SGreg Roach        return redirect($this->getConfigLink());
1916ccdf4f0SGreg Roach    }
1926ccdf4f0SGreg Roach
1936ccdf4f0SGreg Roach    /**
1949b5537c3SGreg Roach     * A form to request the chart parameters.
1959b5537c3SGreg Roach     *
1966ccdf4f0SGreg Roach     * @param ServerRequestInterface $request
1979b5537c3SGreg Roach     *
1986ccdf4f0SGreg Roach     * @return ResponseInterface
1999b5537c3SGreg Roach     */
200*57ab2231SGreg Roach    public function getChartAction(ServerRequestInterface $request): ResponseInterface
2019b5537c3SGreg Roach    {
202*57ab2231SGreg Roach        $tree = $request->getAttribute('tree');
203*57ab2231SGreg Roach        $user = $request->getAttribute('user');
2040b93976aSGreg Roach        $ajax = $request->getQueryParams()['ajax'] ?? '';
2059b5537c3SGreg Roach
2060b93976aSGreg Roach        $xref  = $request->getQueryParams()['xref'] ?? '';
2070b93976aSGreg Roach        $xref2 = $request->getQueryParams()['xref2'] ?? '';
2089b5537c3SGreg Roach
2093dcc812bSGreg Roach        $individual1 = Individual::getInstance($xref, $tree);
2109b5537c3SGreg Roach        $individual2 = Individual::getInstance($xref2, $tree);
2119b5537c3SGreg Roach
2120b93976aSGreg Roach        $recursion = (int) ($request->getQueryParams()['recursion'] ?? 0);
2130b93976aSGreg Roach        $ancestors = (int) ($request->getQueryParams()['ancestors'] ?? 0);
2149b5537c3SGreg Roach
2153dcc812bSGreg Roach        $ancestors_only = (int) $tree->getPreference('RELATIONSHIP_ANCESTORS', static::DEFAULT_ANCESTORS);
2163dcc812bSGreg Roach        $max_recursion  = (int) $tree->getPreference('RELATIONSHIP_RECURSION', static::DEFAULT_RECURSION);
2179b5537c3SGreg Roach
2189b5537c3SGreg Roach        $recursion = min($recursion, $max_recursion);
2199b5537c3SGreg Roach
2208365f910SGreg Roach        if ($tree->getPreference('SHOW_PRIVATE_RELATIONSHIPS') !== '1') {
2213dcc812bSGreg Roach            if ($individual1 instanceof Individual) {
2223dcc812bSGreg Roach                Auth::checkIndividualAccess($individual1);
2233dcc812bSGreg Roach            }
2243dcc812bSGreg Roach
2253dcc812bSGreg Roach            if ($individual2 instanceof Individual) {
2263dcc812bSGreg Roach                Auth::checkIndividualAccess($individual2);
2273dcc812bSGreg Roach            }
2288365f910SGreg Roach        }
2293dcc812bSGreg Roach
2309867b2f0SGreg Roach        Auth::checkComponentAccess($this, 'chart', $tree, $user);
2319867b2f0SGreg Roach
2329b5537c3SGreg Roach        if ($individual1 instanceof Individual && $individual2 instanceof Individual) {
2330b93976aSGreg Roach            if ($ajax === '1') {
234f866a2aeSGreg Roach                return $this->chart($individual1, $individual2, $recursion, $ancestors);
235f866a2aeSGreg Roach            }
236f866a2aeSGreg Roach
2379b5537c3SGreg Roach            /* I18N: %s are individual’s names */
23839ca88baSGreg Roach            $title = I18N::translate('Relationships between %1$s and %2$s', $individual1->fullName(), $individual2->fullName());
239f866a2aeSGreg Roach
2409b5537c3SGreg Roach            $ajax_url = $this->chartUrl($individual1, [
2419b5537c3SGreg Roach                'ajax'      => true,
242f866a2aeSGreg Roach                'xref2'     => $individual2->xref(),
2439b5537c3SGreg Roach                'recursion' => $recursion,
2449b5537c3SGreg Roach                'ancestors' => $ancestors,
2459b5537c3SGreg Roach            ]);
2463dcc812bSGreg Roach        } else {
2473dcc812bSGreg Roach            $title = I18N::translate('Relationships');
2483dcc812bSGreg Roach
249f866a2aeSGreg Roach            $ajax_url = '';
2503dcc812bSGreg Roach        }
2519b5537c3SGreg Roach
2529b5537c3SGreg Roach        return $this->viewResponse('modules/relationships-chart/page', [
2539b5537c3SGreg Roach            'ajax_url'          => $ajax_url,
2549b5537c3SGreg Roach            'ancestors'         => $ancestors,
2559b5537c3SGreg Roach            'ancestors_only'    => $ancestors_only,
2569b5537c3SGreg Roach            'ancestors_options' => $this->ancestorsOptions(),
2579b5537c3SGreg Roach            'individual1'       => $individual1,
2589b5537c3SGreg Roach            'individual2'       => $individual2,
2599b5537c3SGreg Roach            'max_recursion'     => $max_recursion,
2609b5537c3SGreg Roach            'module_name'       => $this->name(),
2619b5537c3SGreg Roach            'recursion'         => $recursion,
2629b5537c3SGreg Roach            'recursion_options' => $this->recursionOptions($max_recursion),
2639b5537c3SGreg Roach            'title'             => $title,
2649b5537c3SGreg Roach        ]);
2659b5537c3SGreg Roach    }
2669b5537c3SGreg Roach
2679b5537c3SGreg Roach    /**
2683dcc812bSGreg Roach     * @param Individual $individual1
2693dcc812bSGreg Roach     * @param Individual $individual2
2703dcc812bSGreg Roach     * @param int        $recursion
2713dcc812bSGreg Roach     * @param int        $ancestors
2729b5537c3SGreg Roach     *
2736ccdf4f0SGreg Roach     * @return ResponseInterface
2749b5537c3SGreg Roach     */
2756ccdf4f0SGreg Roach    public function chart(Individual $individual1, Individual $individual2, int $recursion, int $ancestors): ResponseInterface
2769b5537c3SGreg Roach    {
2773dcc812bSGreg Roach        $tree = $individual1->tree();
2789b5537c3SGreg Roach
2793dcc812bSGreg Roach        $max_recursion = (int) $tree->getPreference('RELATIONSHIP_RECURSION', static::DEFAULT_RECURSION);
2809b5537c3SGreg Roach
2819b5537c3SGreg Roach        $recursion = min($recursion, $max_recursion);
2829b5537c3SGreg Roach
2839b5537c3SGreg Roach        $paths = $this->calculateRelationships($individual1, $individual2, $recursion, (bool) $ancestors);
2849b5537c3SGreg Roach
2859b5537c3SGreg Roach        // @TODO - convert to views
2869b5537c3SGreg Roach        ob_start();
2879b5537c3SGreg Roach        if (I18N::direction() === 'ltr') {
288e837ff07SGreg Roach            $diagonal1 = asset('css/images/dline.png');
289e837ff07SGreg Roach            $diagonal2 = asset('css/images/dline2.png');
2909b5537c3SGreg Roach        } else {
291e837ff07SGreg Roach            $diagonal1 = asset('css/images/dline2.png');
292e837ff07SGreg Roach            $diagonal2 = asset('css/images/dline.png');
2939b5537c3SGreg Roach        }
2949b5537c3SGreg Roach
2959b5537c3SGreg Roach        $num_paths = 0;
2969b5537c3SGreg Roach        foreach ($paths as $path) {
2979b5537c3SGreg Roach            // Extract the relationship names between pairs of individuals
2989b5537c3SGreg Roach            $relationships = $this->oldStyleRelationshipPath($tree, $path);
2999b5537c3SGreg Roach            if (empty($relationships)) {
3009b5537c3SGreg Roach                // Cannot see one of the families/individuals, due to privacy;
3019b5537c3SGreg Roach                continue;
3029b5537c3SGreg Roach            }
3039b5537c3SGreg Roach            echo '<h3>', I18N::translate('Relationship: %s', Functions::getRelationshipNameFromPath(implode('', $relationships), $individual1, $individual2)), '</h3>';
3049b5537c3SGreg Roach            $num_paths++;
3059b5537c3SGreg Roach
3069b5537c3SGreg Roach            // Use a table/grid for layout.
3079b5537c3SGreg Roach            $table = [];
3089b5537c3SGreg Roach            // Current position in the grid.
3099b5537c3SGreg Roach            $x = 0;
3109b5537c3SGreg Roach            $y = 0;
3119b5537c3SGreg Roach            // Extent of the grid.
3129b5537c3SGreg Roach            $min_y = 0;
3139b5537c3SGreg Roach            $max_y = 0;
3149b5537c3SGreg Roach            $max_x = 0;
3159b5537c3SGreg Roach            // For each node in the path.
3169b5537c3SGreg Roach            foreach ($path as $n => $xref) {
3179b5537c3SGreg Roach                if ($n % 2 === 1) {
3189b5537c3SGreg Roach                    switch ($relationships[$n]) {
3199b5537c3SGreg Roach                        case 'hus':
3209b5537c3SGreg Roach                        case 'wif':
3219b5537c3SGreg Roach                        case 'spo':
3229b5537c3SGreg Roach                        case 'bro':
3239b5537c3SGreg Roach                        case 'sis':
3249b5537c3SGreg Roach                        case 'sib':
32539b853a7SGreg Roach                            $table[$x + 1][$y] = '<div style="background:url(' . e(asset('css/images/hline.png')) . ') repeat-x center;  width: 94px; text-align: center"><div class="hline-text" style="height: 32px;">' . Functions::getRelationshipNameFromPath($relationships[$n], Individual::getInstance($path[$n - 1], $tree), Individual::getInstance($path[$n + 1], $tree)) . '</div><div style="height: 32px;">' . view('icons/arrow-right') . '</div></div>';
3269b5537c3SGreg Roach                            $x                 += 2;
3279b5537c3SGreg Roach                            break;
3289b5537c3SGreg Roach                        case 'son':
3299b5537c3SGreg Roach                        case 'dau':
3309b5537c3SGreg Roach                        case 'chi':
3319b5537c3SGreg Roach                            if ($n > 2 && preg_match('/fat|mot|par/', $relationships[$n - 2])) {
332d993d560SGreg Roach                                $table[$x + 1][$y - 1] = '<div style="background:url(' . $diagonal2 . '); width: 64px; height: 64px; text-align: center;"><div style="height: 32px; text-align: end;">' . Functions::getRelationshipNameFromPath($relationships[$n], Individual::getInstance($path[$n - 1], $tree), Individual::getInstance($path[$n + 1], $tree)) . '</div><div style="height: 32px; text-align: start;">' . view('icons/arrow-down') . '</div></div>';
3339b5537c3SGreg Roach                                $x                     += 2;
3349b5537c3SGreg Roach                            } else {
3354ac9dd10SGreg Roach                                $table[$x][$y - 1] = '<div style="background:url(' . e('"' . asset('css/images/vline.png') . '"') . ') repeat-y center; height: 64px; text-align: center;"><div class="vline-text" style="display: inline-block; width:50%; line-height: 64px;">' . Functions::getRelationshipNameFromPath($relationships[$n], Individual::getInstance($path[$n - 1], $tree), Individual::getInstance($path[$n + 1], $tree)) . '</div><div style="display: inline-block; width:50%; line-height: 64px;">' . view('icons/arrow-down') . '</div></div>';
3369b5537c3SGreg Roach                            }
3379b5537c3SGreg Roach                            $y -= 2;
3389b5537c3SGreg Roach                            break;
3399b5537c3SGreg Roach                        case 'fat':
3409b5537c3SGreg Roach                        case 'mot':
3419b5537c3SGreg Roach                        case 'par':
3429b5537c3SGreg Roach                            if ($n > 2 && preg_match('/son|dau|chi/', $relationships[$n - 2])) {
343d993d560SGreg Roach                                $table[$x + 1][$y + 1] = '<div style="background:url(' . $diagonal1 . '); background-position: top right; width: 64px; height: 64px; text-align: center;"><div style="height: 32px; text-align: start;">' . Functions::getRelationshipNameFromPath($relationships[$n], Individual::getInstance($path[$n - 1], $tree), Individual::getInstance($path[$n + 1], $tree)) . '</div><div style="height: 32px; text-align: end;">' . view('icons/arrow-down') . '</div></div>';
3449b5537c3SGreg Roach                                $x                     += 2;
3459b5537c3SGreg Roach                            } else {
3464ac9dd10SGreg Roach                                $table[$x][$y + 1] = '<div style="background:url(' . e('"' . asset('css/images/vline.png') . '"') . ') repeat-y center; height: 64px; text-align:center; "><div class="vline-text" style="display: inline-block; width: 50%; line-height: 64px;">' . Functions::getRelationshipNameFromPath($relationships[$n], Individual::getInstance($path[$n - 1], $tree), Individual::getInstance($path[$n + 1], $tree)) . '</div><div style="display: inline-block; width: 50%; line-height: 32px">' . view('icons/arrow-up') . '</div></div>';
3479b5537c3SGreg Roach                            }
3489b5537c3SGreg Roach                            $y += 2;
3499b5537c3SGreg Roach                            break;
3509b5537c3SGreg Roach                    }
3519b5537c3SGreg Roach                    $max_x = max($max_x, $x);
3529b5537c3SGreg Roach                    $min_y = min($min_y, $y);
3539b5537c3SGreg Roach                    $max_y = max($max_y, $y);
3549b5537c3SGreg Roach                } else {
3559b5537c3SGreg Roach                    $individual    = Individual::getInstance($xref, $tree);
356f4ba05e3SGreg Roach                    $table[$x][$y] = view('chart-box', ['individual' => $individual]);
3579b5537c3SGreg Roach                }
3589b5537c3SGreg Roach            }
3594a2590a5SGreg Roach            echo '<div class="wt-chart wt-chart-relationships">';
3609b5537c3SGreg Roach            echo '<table style="border-collapse: collapse; margin: 20px 50px;">';
3619b5537c3SGreg Roach            for ($y = $max_y; $y >= $min_y; --$y) {
3629b5537c3SGreg Roach                echo '<tr>';
3639b5537c3SGreg Roach                for ($x = 0; $x <= $max_x; ++$x) {
3649b5537c3SGreg Roach                    echo '<td style="padding: 0;">';
3659b5537c3SGreg Roach                    if (isset($table[$x][$y])) {
3669b5537c3SGreg Roach                        echo $table[$x][$y];
3679b5537c3SGreg Roach                    }
3689b5537c3SGreg Roach                    echo '</td>';
3699b5537c3SGreg Roach                }
3709b5537c3SGreg Roach                echo '</tr>';
3719b5537c3SGreg Roach            }
3729b5537c3SGreg Roach            echo '</table>';
3739b5537c3SGreg Roach            echo '</div>';
3749b5537c3SGreg Roach        }
3759b5537c3SGreg Roach
3769b5537c3SGreg Roach        if (!$num_paths) {
3779b5537c3SGreg Roach            echo '<p>', I18N::translate('No link between the two individuals could be found.'), '</p>';
3789b5537c3SGreg Roach        }
3799b5537c3SGreg Roach
3809b5537c3SGreg Roach        $html = ob_get_clean();
3819b5537c3SGreg Roach
3826ccdf4f0SGreg Roach        return response($html);
3839b5537c3SGreg Roach    }
3849b5537c3SGreg Roach
3859b5537c3SGreg Roach    /**
3869b5537c3SGreg Roach     * Calculate the shortest paths - or all paths - between two individuals.
3879b5537c3SGreg Roach     *
3889b5537c3SGreg Roach     * @param Individual $individual1
3899b5537c3SGreg Roach     * @param Individual $individual2
3909b5537c3SGreg Roach     * @param int        $recursion How many levels of recursion to use
3919b5537c3SGreg Roach     * @param bool       $ancestor  Restrict to relationships via a common ancestor
3929b5537c3SGreg Roach     *
3939b5537c3SGreg Roach     * @return string[][]
3949b5537c3SGreg Roach     */
3959b5537c3SGreg Roach    private function calculateRelationships(Individual $individual1, Individual $individual2, $recursion, $ancestor = false): array
3969b5537c3SGreg Roach    {
3973dcc812bSGreg Roach        $tree = $individual1->tree();
3983dcc812bSGreg Roach
3999b5537c3SGreg Roach        $rows = DB::table('link')
4003dcc812bSGreg Roach            ->where('l_file', '=', $tree->id())
4019b5537c3SGreg Roach            ->whereIn('l_type', ['FAMS', 'FAMC'])
4029b5537c3SGreg Roach            ->select(['l_from', 'l_to'])
4039b5537c3SGreg Roach            ->get();
4049b5537c3SGreg Roach
4059b5537c3SGreg Roach        // Optionally restrict the graph to the ancestors of the individuals.
4069b5537c3SGreg Roach        if ($ancestor) {
4073dcc812bSGreg Roach            $ancestors = $this->allAncestors($individual1->xref(), $individual2->xref(), $tree->id());
4083dcc812bSGreg Roach            $exclude   = $this->excludeFamilies($individual1->xref(), $individual2->xref(), $tree->id());
4099b5537c3SGreg Roach        } else {
4109b5537c3SGreg Roach            $ancestors = [];
4119b5537c3SGreg Roach            $exclude   = [];
4129b5537c3SGreg Roach        }
4139b5537c3SGreg Roach
4149b5537c3SGreg Roach        $graph = [];
4159b5537c3SGreg Roach
4169b5537c3SGreg Roach        foreach ($rows as $row) {
41722d65e5aSGreg Roach            if (empty($ancestors) || in_array($row->l_from, $ancestors, true) && !in_array($row->l_to, $exclude, true)) {
4189b5537c3SGreg Roach                $graph[$row->l_from][$row->l_to] = 1;
4199b5537c3SGreg Roach                $graph[$row->l_to][$row->l_from] = 1;
4209b5537c3SGreg Roach            }
4219b5537c3SGreg Roach        }
4229b5537c3SGreg Roach
4239b5537c3SGreg Roach        $xref1    = $individual1->xref();
4249b5537c3SGreg Roach        $xref2    = $individual2->xref();
4259b5537c3SGreg Roach        $dijkstra = new Dijkstra($graph);
4269b5537c3SGreg Roach        $paths    = $dijkstra->shortestPaths($xref1, $xref2);
4279b5537c3SGreg Roach
4289b5537c3SGreg Roach        // Only process each exclusion list once;
4299b5537c3SGreg Roach        $excluded = [];
4309b5537c3SGreg Roach
4319b5537c3SGreg Roach        $queue = [];
4329b5537c3SGreg Roach        foreach ($paths as $path) {
4339b5537c3SGreg Roach            // Insert the paths into the queue, with an exclusion list.
4349b5537c3SGreg Roach            $queue[] = [
4359b5537c3SGreg Roach                'path'    => $path,
4369b5537c3SGreg Roach                'exclude' => [],
4379b5537c3SGreg Roach            ];
4389b5537c3SGreg Roach            // While there are un-extended paths
4399b5537c3SGreg Roach            for ($next = current($queue); $next !== false; $next = next($queue)) {
4409b5537c3SGreg Roach                // For each family on the path
4419b5537c3SGreg Roach                for ($n = count($next['path']) - 2; $n >= 1; $n -= 2) {
4429b5537c3SGreg Roach                    $exclude = $next['exclude'];
4439b5537c3SGreg Roach                    if (count($exclude) >= $recursion) {
4449b5537c3SGreg Roach                        continue;
4459b5537c3SGreg Roach                    }
4469b5537c3SGreg Roach                    $exclude[] = $next['path'][$n];
4479b5537c3SGreg Roach                    sort($exclude);
4489b5537c3SGreg Roach                    $tmp = implode('-', $exclude);
44922d65e5aSGreg Roach                    if (in_array($tmp, $excluded, true)) {
4509b5537c3SGreg Roach                        continue;
4519b5537c3SGreg Roach                    }
4529b5537c3SGreg Roach
4539b5537c3SGreg Roach                    $excluded[] = $tmp;
4549b5537c3SGreg Roach                    // Add any new path to the queue
4559b5537c3SGreg Roach                    foreach ($dijkstra->shortestPaths($xref1, $xref2, $exclude) as $new_path) {
4569b5537c3SGreg Roach                        $queue[] = [
4579b5537c3SGreg Roach                            'path'    => $new_path,
4589b5537c3SGreg Roach                            'exclude' => $exclude,
4599b5537c3SGreg Roach                        ];
4609b5537c3SGreg Roach                    }
4619b5537c3SGreg Roach                }
4629b5537c3SGreg Roach            }
4639b5537c3SGreg Roach        }
464185cbb4dSGreg Roach        // Extract the paths from the queue.
4659b5537c3SGreg Roach        $paths = [];
4669b5537c3SGreg Roach        foreach ($queue as $next) {
467185cbb4dSGreg Roach            // The Dijkstra library does not use strict types, and converts
468185cbb4dSGreg Roach            // numeric array keys (XREFs) from strings to integers;
469185cbb4dSGreg Roach            $path = array_map($this->stringMapper(), $next['path']);
470185cbb4dSGreg Roach
471185cbb4dSGreg Roach            // Remove duplicates
472185cbb4dSGreg Roach            $paths[implode('-', $next['path'])] = $path;
4739b5537c3SGreg Roach        }
4749b5537c3SGreg Roach
4759b5537c3SGreg Roach        return $paths;
4769b5537c3SGreg Roach    }
4779b5537c3SGreg Roach
4789b5537c3SGreg Roach    /**
479185cbb4dSGreg Roach     * Convert numeric values to strings
480185cbb4dSGreg Roach     *
481185cbb4dSGreg Roach     * @return Closure
482185cbb4dSGreg Roach     */
483c3f3b628SGreg Roach    private function stringMapper(): Closure
484c3f3b628SGreg Roach    {
485185cbb4dSGreg Roach        return static function ($xref) {
486185cbb4dSGreg Roach            return (string) $xref;
487185cbb4dSGreg Roach        };
488185cbb4dSGreg Roach    }
489185cbb4dSGreg Roach
490185cbb4dSGreg Roach    /**
4919b5537c3SGreg Roach     * Find all ancestors of a list of individuals
4929b5537c3SGreg Roach     *
4939b5537c3SGreg Roach     * @param string $xref1
4949b5537c3SGreg Roach     * @param string $xref2
4959b5537c3SGreg Roach     * @param int    $tree_id
4969b5537c3SGreg Roach     *
4979b5537c3SGreg Roach     * @return string[]
4989b5537c3SGreg Roach     */
4999b5537c3SGreg Roach    private function allAncestors($xref1, $xref2, $tree_id): array
5009b5537c3SGreg Roach    {
5019b5537c3SGreg Roach        $ancestors = [
5029b5537c3SGreg Roach            $xref1,
5039b5537c3SGreg Roach            $xref2,
5049b5537c3SGreg Roach        ];
5059b5537c3SGreg Roach
5069b5537c3SGreg Roach        $queue = [
5079b5537c3SGreg Roach            $xref1,
5089b5537c3SGreg Roach            $xref2,
5099b5537c3SGreg Roach        ];
5109b5537c3SGreg Roach        while (!empty($queue)) {
5119b5537c3SGreg Roach            $parents = DB::table('link AS l1')
5120b5fd0a6SGreg Roach                ->join('link AS l2', static function (JoinClause $join): void {
5139b5537c3SGreg Roach                    $join
5149b5537c3SGreg Roach                        ->on('l1.l_to', '=', 'l2.l_to')
5159b5537c3SGreg Roach                        ->on('l1.l_file', '=', 'l2.l_file');
5169b5537c3SGreg Roach                })
5179b5537c3SGreg Roach                ->where('l1.l_file', '=', $tree_id)
5189b5537c3SGreg Roach                ->where('l1.l_type', '=', 'FAMC')
5199b5537c3SGreg Roach                ->where('l2.l_type', '=', 'FAMS')
5209b5537c3SGreg Roach                ->whereIn('l1.l_from', $queue)
5219b5537c3SGreg Roach                ->pluck('l2.l_from');
5229b5537c3SGreg Roach
5239b5537c3SGreg Roach            $queue = [];
5249b5537c3SGreg Roach            foreach ($parents as $parent) {
52522d65e5aSGreg Roach                if (!in_array($parent, $ancestors, true)) {
5269b5537c3SGreg Roach                    $ancestors[] = $parent;
5279b5537c3SGreg Roach                    $queue[]     = $parent;
5289b5537c3SGreg Roach                }
5299b5537c3SGreg Roach            }
5309b5537c3SGreg Roach        }
5319b5537c3SGreg Roach
5329b5537c3SGreg Roach        return $ancestors;
5339b5537c3SGreg Roach    }
5349b5537c3SGreg Roach
5359b5537c3SGreg Roach    /**
5369b5537c3SGreg Roach     * Find all families of two individuals
5379b5537c3SGreg Roach     *
5389b5537c3SGreg Roach     * @param string $xref1
5399b5537c3SGreg Roach     * @param string $xref2
5409b5537c3SGreg Roach     * @param int    $tree_id
5419b5537c3SGreg Roach     *
5429b5537c3SGreg Roach     * @return string[]
5439b5537c3SGreg Roach     */
5449b5537c3SGreg Roach    private function excludeFamilies($xref1, $xref2, $tree_id): array
5459b5537c3SGreg Roach    {
5469b5537c3SGreg Roach        return DB::table('link AS l1')
5470b5fd0a6SGreg Roach            ->join('link AS l2', static function (JoinClause $join): void {
5489b5537c3SGreg Roach                $join
5499b5537c3SGreg Roach                    ->on('l1.l_to', '=', 'l2.l_to')
5509b5537c3SGreg Roach                    ->on('l1.l_type', '=', 'l2.l_type')
5519b5537c3SGreg Roach                    ->on('l1.l_file', '=', 'l2.l_file');
5529b5537c3SGreg Roach            })
5539b5537c3SGreg Roach            ->where('l1.l_file', '=', $tree_id)
5549b5537c3SGreg Roach            ->where('l1.l_type', '=', 'FAMS')
5559b5537c3SGreg Roach            ->where('l1.l_from', '=', $xref1)
5569b5537c3SGreg Roach            ->where('l2.l_from', '=', $xref2)
5579b5537c3SGreg Roach            ->pluck('l1.l_to')
5589b5537c3SGreg Roach            ->all();
5599b5537c3SGreg Roach    }
5609b5537c3SGreg Roach
5619b5537c3SGreg Roach    /**
5626ccdf4f0SGreg Roach     * Convert a path (list of XREFs) to an "old-style" string of relationships.
5636ccdf4f0SGreg Roach     * Return an empty array, if privacy rules prevent us viewing any node.
5646ccdf4f0SGreg Roach     *
5656ccdf4f0SGreg Roach     * @param Tree     $tree
5666ccdf4f0SGreg Roach     * @param string[] $path Alternately Individual / Family
5676ccdf4f0SGreg Roach     *
5686ccdf4f0SGreg Roach     * @return string[]
5696ccdf4f0SGreg Roach     */
5706ccdf4f0SGreg Roach    private function oldStyleRelationshipPath(Tree $tree, array $path): array
5716ccdf4f0SGreg Roach    {
5726ccdf4f0SGreg Roach        $spouse_codes  = [
5736ccdf4f0SGreg Roach            'M' => 'hus',
5746ccdf4f0SGreg Roach            'F' => 'wif',
5756ccdf4f0SGreg Roach            'U' => 'spo',
5766ccdf4f0SGreg Roach        ];
5776ccdf4f0SGreg Roach        $parent_codes  = [
5786ccdf4f0SGreg Roach            'M' => 'fat',
5796ccdf4f0SGreg Roach            'F' => 'mot',
5806ccdf4f0SGreg Roach            'U' => 'par',
5816ccdf4f0SGreg Roach        ];
5826ccdf4f0SGreg Roach        $child_codes   = [
5836ccdf4f0SGreg Roach            'M' => 'son',
5846ccdf4f0SGreg Roach            'F' => 'dau',
5856ccdf4f0SGreg Roach            'U' => 'chi',
5866ccdf4f0SGreg Roach        ];
5876ccdf4f0SGreg Roach        $sibling_codes = [
5886ccdf4f0SGreg Roach            'M' => 'bro',
5896ccdf4f0SGreg Roach            'F' => 'sis',
5906ccdf4f0SGreg Roach            'U' => 'sib',
5916ccdf4f0SGreg Roach        ];
5926ccdf4f0SGreg Roach        $relationships = [];
5936ccdf4f0SGreg Roach
5946ccdf4f0SGreg Roach        for ($i = 1, $count = count($path); $i < $count; $i += 2) {
5956ccdf4f0SGreg Roach            $family = Family::getInstance($path[$i], $tree);
5966ccdf4f0SGreg Roach            $prev   = Individual::getInstance($path[$i - 1], $tree);
5976ccdf4f0SGreg Roach            $next   = Individual::getInstance($path[$i + 1], $tree);
5986ccdf4f0SGreg Roach            if (preg_match('/\n\d (HUSB|WIFE|CHIL) @' . $prev->xref() . '@/', $family->gedcom(), $match)) {
5996ccdf4f0SGreg Roach                $rel1 = $match[1];
6006ccdf4f0SGreg Roach            } else {
6016ccdf4f0SGreg Roach                return [];
6026ccdf4f0SGreg Roach            }
6036ccdf4f0SGreg Roach            if (preg_match('/\n\d (HUSB|WIFE|CHIL) @' . $next->xref() . '@/', $family->gedcom(), $match)) {
6046ccdf4f0SGreg Roach                $rel2 = $match[1];
6056ccdf4f0SGreg Roach            } else {
6066ccdf4f0SGreg Roach                return [];
6076ccdf4f0SGreg Roach            }
6086ccdf4f0SGreg Roach            if (($rel1 === 'HUSB' || $rel1 === 'WIFE') && ($rel2 === 'HUSB' || $rel2 === 'WIFE')) {
6096ccdf4f0SGreg Roach                $relationships[$i] = $spouse_codes[$next->sex()];
6106ccdf4f0SGreg Roach            } elseif (($rel1 === 'HUSB' || $rel1 === 'WIFE') && $rel2 === 'CHIL') {
6116ccdf4f0SGreg Roach                $relationships[$i] = $child_codes[$next->sex()];
6126ccdf4f0SGreg Roach            } elseif ($rel1 === 'CHIL' && ($rel2 === 'HUSB' || $rel2 === 'WIFE')) {
6136ccdf4f0SGreg Roach                $relationships[$i] = $parent_codes[$next->sex()];
6146ccdf4f0SGreg Roach            } elseif ($rel1 === 'CHIL' && $rel2 === 'CHIL') {
6156ccdf4f0SGreg Roach                $relationships[$i] = $sibling_codes[$next->sex()];
6166ccdf4f0SGreg Roach            }
6176ccdf4f0SGreg Roach        }
6186ccdf4f0SGreg Roach
6196ccdf4f0SGreg Roach        return $relationships;
6206ccdf4f0SGreg Roach    }
6216ccdf4f0SGreg Roach
6226ccdf4f0SGreg Roach    /**
6239b5537c3SGreg Roach     * Possible options for the recursion option
6249b5537c3SGreg Roach     *
6259b5537c3SGreg Roach     * @param int $max_recursion
6269b5537c3SGreg Roach     *
6274db4b4a9SGreg Roach     * @return string[]
6289b5537c3SGreg Roach     */
6299b5537c3SGreg Roach    private function recursionOptions(int $max_recursion): array
6309b5537c3SGreg Roach    {
6313dcc812bSGreg Roach        if ($max_recursion === static::UNLIMITED_RECURSION) {
6329b5537c3SGreg Roach            $text = I18N::translate('Find all possible relationships');
6339b5537c3SGreg Roach        } else {
6349b5537c3SGreg Roach            $text = I18N::translate('Find other relationships');
6359b5537c3SGreg Roach        }
6369b5537c3SGreg Roach
6379b5537c3SGreg Roach        return [
6389b5537c3SGreg Roach            '0'            => I18N::translate('Find the closest relationships'),
6399b5537c3SGreg Roach            $max_recursion => $text,
6409b5537c3SGreg Roach        ];
6419b5537c3SGreg Roach    }
642168ff6f3Sric2016}
643