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; 23e5a6b4d4SGreg Roachuse Fisharebest\Webtrees\Contracts\UserInterface; 249b5537c3SGreg Roachuse Fisharebest\Webtrees\Family; 2545ac604bSGreg Roachuse Fisharebest\Webtrees\FlashMessages; 269b5537c3SGreg Roachuse Fisharebest\Webtrees\Functions\Functions; 27168ff6f3Sric2016use Fisharebest\Webtrees\I18N; 28168ff6f3Sric2016use Fisharebest\Webtrees\Individual; 291e3273c9SGreg Roachuse Fisharebest\Webtrees\Menu; 3045ac604bSGreg Roachuse Fisharebest\Webtrees\Tree; 319b5537c3SGreg Roachuse Illuminate\Database\Capsule\Manager as DB; 329b5537c3SGreg Roachuse Illuminate\Database\Query\JoinClause; 336ccdf4f0SGreg Roachuse Psr\Http\Message\ResponseInterface; 346ccdf4f0SGreg Roachuse Psr\Http\Message\ServerRequestInterface; 35f4ba05e3SGreg Roachuse function view; 36168ff6f3Sric2016 37168ff6f3Sric2016/** 38168ff6f3Sric2016 * Class RelationshipsChartModule 39168ff6f3Sric2016 */ 4037eb8894SGreg Roachclass RelationshipsChartModule extends AbstractModule implements ModuleChartInterface, ModuleConfigInterface 41c1010edaSGreg Roach{ 4249a243cbSGreg Roach use ModuleChartTrait; 4349a243cbSGreg Roach use ModuleConfigTrait; 4449a243cbSGreg Roach 451e3273c9SGreg Roach /** It would be more correct to use PHP_INT_MAX, but this isn't friendly in URLs */ 4616d6367aSGreg Roach public const UNLIMITED_RECURSION = 99; 471e3273c9SGreg Roach 481e3273c9SGreg Roach /** By default new trees allow unlimited recursion */ 4916d6367aSGreg Roach public const DEFAULT_RECURSION = '99'; 5045ac604bSGreg Roach 51e0bd7dc9SGreg Roach /** By default new trees search for all relationships (not via ancestors) */ 5216d6367aSGreg Roach public const DEFAULT_ANCESTORS = '0'; 53e0bd7dc9SGreg Roach 54168ff6f3Sric2016 /** 55168ff6f3Sric2016 * A sentence describing what this module does. 56168ff6f3Sric2016 * 57168ff6f3Sric2016 * @return string 58168ff6f3Sric2016 */ 5949a243cbSGreg Roach public function description(): string 60c1010edaSGreg Roach { 61bbb76c12SGreg Roach /* I18N: Description of the “RelationshipsChart” module */ 62bbb76c12SGreg Roach return I18N::translate('A chart displaying relationships between two individuals.'); 63168ff6f3Sric2016 } 64168ff6f3Sric2016 65168ff6f3Sric2016 /** 666ccdf4f0SGreg Roach * Return a menu item for this chart - for use in individual boxes. 676ccdf4f0SGreg Roach * 686ccdf4f0SGreg Roach * @param Individual $individual 696ccdf4f0SGreg Roach * 706ccdf4f0SGreg Roach * @return Menu|null 716ccdf4f0SGreg Roach */ 726ccdf4f0SGreg Roach public function chartBoxMenu(Individual $individual): ?Menu 736ccdf4f0SGreg Roach { 746ccdf4f0SGreg Roach return $this->chartMenu($individual); 756ccdf4f0SGreg Roach } 766ccdf4f0SGreg Roach 776ccdf4f0SGreg Roach /** 78e6562982SGreg Roach * A main menu item for this chart. 79168ff6f3Sric2016 * 808e69695bSGreg Roach * @param Individual $individual 818e69695bSGreg Roach * 82e6562982SGreg Roach * @return Menu 83168ff6f3Sric2016 */ 84e6562982SGreg Roach public function chartMenu(Individual $individual): Menu 85c1010edaSGreg Roach { 86e6562982SGreg Roach $gedcomid = $individual->tree()->getUserPreference(Auth::user(), 'gedcomid'); 87168ff6f3Sric2016 883dcc812bSGreg Roach if ($gedcomid !== '' && $gedcomid !== $individual->xref()) { 89168ff6f3Sric2016 return new Menu( 90168ff6f3Sric2016 I18N::translate('Relationship to me'), 91e6562982SGreg Roach $this->chartUrl($individual, ['xref2' => $gedcomid]), 92377a2979SGreg Roach $this->chartMenuClass(), 93e6562982SGreg Roach $this->chartUrlAttributes() 94168ff6f3Sric2016 ); 95b2ce94c6SRico Sonntag } 96b2ce94c6SRico Sonntag 97168ff6f3Sric2016 return new Menu( 98e6562982SGreg Roach $this->title(), 99e6562982SGreg Roach $this->chartUrl($individual), 100377a2979SGreg Roach $this->chartMenuClass(), 101e6562982SGreg Roach $this->chartUrlAttributes() 102168ff6f3Sric2016 ); 103168ff6f3Sric2016 } 104168ff6f3Sric2016 1054eb71cfaSGreg Roach /** 106377a2979SGreg Roach * CSS class for the URL. 107377a2979SGreg Roach * 108377a2979SGreg Roach * @return string 109377a2979SGreg Roach */ 110377a2979SGreg Roach public function chartMenuClass(): string 111377a2979SGreg Roach { 112377a2979SGreg Roach return 'menu-chart-relationship'; 113377a2979SGreg Roach } 114377a2979SGreg Roach 115377a2979SGreg Roach /** 1166ccdf4f0SGreg Roach * How should this module be identified in the control panel, etc.? 1174eb71cfaSGreg Roach * 1186ccdf4f0SGreg Roach * @return string 1194eb71cfaSGreg Roach */ 1206ccdf4f0SGreg Roach public function title(): string 121c1010edaSGreg Roach { 1226ccdf4f0SGreg Roach /* I18N: Name of a module/chart */ 1236ccdf4f0SGreg Roach return I18N::translate('Relationships'); 124e6562982SGreg Roach } 125e6562982SGreg Roach 126e6562982SGreg Roach /** 1276ccdf4f0SGreg Roach * @return ResponseInterface 128291c1b19SGreg Roach */ 1296ccdf4f0SGreg Roach public function getAdminAction(): ResponseInterface 130c1010edaSGreg Roach { 131291c1b19SGreg Roach $this->layout = 'layouts/administration'; 132291c1b19SGreg Roach 1339b5537c3SGreg Roach return $this->viewResponse('modules/relationships-chart/config', [ 134291c1b19SGreg Roach 'all_trees' => Tree::getAll(), 135291c1b19SGreg Roach 'ancestors_options' => $this->ancestorsOptions(), 136291c1b19SGreg Roach 'default_ancestors' => self::DEFAULT_ANCESTORS, 137291c1b19SGreg Roach 'default_recursion' => self::DEFAULT_RECURSION, 1389b5537c3SGreg Roach 'recursion_options' => $this->recursionConfigOptions(), 13949a243cbSGreg Roach 'title' => I18N::translate('Chart preferences') . ' — ' . $this->title(), 140291c1b19SGreg Roach ]); 141291c1b19SGreg Roach } 142291c1b19SGreg Roach 143291c1b19SGreg Roach /** 144e0bd7dc9SGreg Roach * Possible options for the ancestors option 14518d7a90dSGreg Roach * 14618d7a90dSGreg Roach * @return string[] 147e0bd7dc9SGreg Roach */ 14818d7a90dSGreg Roach private function ancestorsOptions(): array 149c1010edaSGreg Roach { 15013abd6f3SGreg Roach return [ 151e0bd7dc9SGreg Roach 0 => I18N::translate('Find any relationship'), 152e0bd7dc9SGreg Roach 1 => I18N::translate('Find relationships via ancestors'), 15313abd6f3SGreg Roach ]; 154e0bd7dc9SGreg Roach } 155e0bd7dc9SGreg Roach 156e0bd7dc9SGreg Roach /** 1571e3273c9SGreg Roach * Possible options for the recursion option 15818d7a90dSGreg Roach * 15918d7a90dSGreg Roach * @return string[] 1601e3273c9SGreg Roach */ 1619b5537c3SGreg Roach private function recursionConfigOptions(): array 162c1010edaSGreg Roach { 16313abd6f3SGreg Roach return [ 1641e3273c9SGreg Roach 0 => I18N::translate('none'), 1651e3273c9SGreg Roach 1 => I18N::number(1), 1661e3273c9SGreg Roach 2 => I18N::number(2), 1671e3273c9SGreg Roach 3 => I18N::number(3), 168e0bd7dc9SGreg Roach self::UNLIMITED_RECURSION => I18N::translate('unlimited'), 16913abd6f3SGreg Roach ]; 1701e3273c9SGreg Roach } 1719b5537c3SGreg Roach 1729b5537c3SGreg Roach /** 1736ccdf4f0SGreg Roach * @param ServerRequestInterface $request 1746ccdf4f0SGreg Roach * 1756ccdf4f0SGreg Roach * @return ResponseInterface 1766ccdf4f0SGreg Roach */ 1776ccdf4f0SGreg Roach public function postAdminAction(ServerRequestInterface $request): ResponseInterface 1786ccdf4f0SGreg Roach { 1796ccdf4f0SGreg Roach foreach (Tree::getAll() as $tree) { 1800b93976aSGreg Roach $recursion = $request->getQueryParams()['relationship-recursion-' . $tree->id()] ?? ''; 1810b93976aSGreg Roach $ancestors = $request->getQueryParams()['relationship-ancestors-' . $tree->id()] ?? ''; 1826ccdf4f0SGreg Roach 1836ccdf4f0SGreg Roach $tree->setPreference('RELATIONSHIP_RECURSION', $recursion); 1846ccdf4f0SGreg Roach $tree->setPreference('RELATIONSHIP_ANCESTORS', $ancestors); 1856ccdf4f0SGreg Roach } 1866ccdf4f0SGreg Roach 1876ccdf4f0SGreg Roach FlashMessages::addMessage(I18N::translate('The preferences for the module “%s” have been updated.', $this->title()), 'success'); 1886ccdf4f0SGreg Roach 1896ccdf4f0SGreg Roach return redirect($this->getConfigLink()); 1906ccdf4f0SGreg Roach } 1916ccdf4f0SGreg Roach 1926ccdf4f0SGreg Roach /** 1939b5537c3SGreg Roach * A form to request the chart parameters. 1949b5537c3SGreg Roach * 1956ccdf4f0SGreg Roach * @param ServerRequestInterface $request 1969b5537c3SGreg Roach * @param Tree $tree 197e5a6b4d4SGreg Roach * @param UserInterface $user 1989b5537c3SGreg Roach * 1996ccdf4f0SGreg Roach * @return ResponseInterface 2009b5537c3SGreg Roach */ 2016ccdf4f0SGreg Roach public function getChartAction(ServerRequestInterface $request, Tree $tree, UserInterface $user): ResponseInterface 2029b5537c3SGreg Roach { 2030b93976aSGreg Roach $ajax = $request->getQueryParams()['ajax'] ?? ''; 2049b5537c3SGreg Roach 2050b93976aSGreg Roach $xref = $request->getQueryParams()['xref'] ?? ''; 2060b93976aSGreg Roach $xref2 = $request->getQueryParams()['xref2'] ?? ''; 2079b5537c3SGreg Roach 2083dcc812bSGreg Roach $individual1 = Individual::getInstance($xref, $tree); 2099b5537c3SGreg Roach $individual2 = Individual::getInstance($xref2, $tree); 2109b5537c3SGreg Roach 2110b93976aSGreg Roach $recursion = (int) ($request->getQueryParams()['recursion'] ?? 0); 2120b93976aSGreg Roach $ancestors = (int) ($request->getQueryParams()['ancestors'] ?? 0); 2139b5537c3SGreg Roach 2143dcc812bSGreg Roach $ancestors_only = (int) $tree->getPreference('RELATIONSHIP_ANCESTORS', static::DEFAULT_ANCESTORS); 2153dcc812bSGreg Roach $max_recursion = (int) $tree->getPreference('RELATIONSHIP_RECURSION', static::DEFAULT_RECURSION); 2169b5537c3SGreg Roach 2179b5537c3SGreg Roach $recursion = min($recursion, $max_recursion); 2189b5537c3SGreg Roach 2193dcc812bSGreg Roach if ($individual1 instanceof Individual) { 2203dcc812bSGreg Roach Auth::checkIndividualAccess($individual1); 2213dcc812bSGreg Roach } 2223dcc812bSGreg Roach 2233dcc812bSGreg Roach if ($individual2 instanceof Individual) { 2243dcc812bSGreg Roach Auth::checkIndividualAccess($individual2); 2253dcc812bSGreg Roach } 2263dcc812bSGreg Roach 2279867b2f0SGreg Roach Auth::checkComponentAccess($this, 'chart', $tree, $user); 2289867b2f0SGreg Roach 2299b5537c3SGreg Roach if ($individual1 instanceof Individual && $individual2 instanceof Individual) { 2300b93976aSGreg Roach if ($ajax === '1') { 231f866a2aeSGreg Roach return $this->chart($individual1, $individual2, $recursion, $ancestors); 232f866a2aeSGreg Roach } 233f866a2aeSGreg Roach 2349b5537c3SGreg Roach /* I18N: %s are individual’s names */ 23539ca88baSGreg Roach $title = I18N::translate('Relationships between %1$s and %2$s', $individual1->fullName(), $individual2->fullName()); 236f866a2aeSGreg Roach 2379b5537c3SGreg Roach $ajax_url = $this->chartUrl($individual1, [ 2389b5537c3SGreg Roach 'ajax' => true, 239f866a2aeSGreg Roach 'xref2' => $individual2->xref(), 2409b5537c3SGreg Roach 'recursion' => $recursion, 2419b5537c3SGreg Roach 'ancestors' => $ancestors, 2429b5537c3SGreg Roach ]); 2433dcc812bSGreg Roach } else { 2443dcc812bSGreg Roach $title = I18N::translate('Relationships'); 2453dcc812bSGreg Roach 246f866a2aeSGreg Roach $ajax_url = ''; 2473dcc812bSGreg Roach } 2489b5537c3SGreg Roach 2499b5537c3SGreg Roach return $this->viewResponse('modules/relationships-chart/page', [ 2509b5537c3SGreg Roach 'ajax_url' => $ajax_url, 2519b5537c3SGreg Roach 'ancestors' => $ancestors, 2529b5537c3SGreg Roach 'ancestors_only' => $ancestors_only, 2539b5537c3SGreg Roach 'ancestors_options' => $this->ancestorsOptions(), 2549b5537c3SGreg Roach 'individual1' => $individual1, 2559b5537c3SGreg Roach 'individual2' => $individual2, 2569b5537c3SGreg Roach 'max_recursion' => $max_recursion, 2579b5537c3SGreg Roach 'module_name' => $this->name(), 2589b5537c3SGreg Roach 'recursion' => $recursion, 2599b5537c3SGreg Roach 'recursion_options' => $this->recursionOptions($max_recursion), 2609b5537c3SGreg Roach 'title' => $title, 2619b5537c3SGreg Roach ]); 2629b5537c3SGreg Roach } 2639b5537c3SGreg Roach 2649b5537c3SGreg Roach /** 2653dcc812bSGreg Roach * @param Individual $individual1 2663dcc812bSGreg Roach * @param Individual $individual2 2673dcc812bSGreg Roach * @param int $recursion 2683dcc812bSGreg Roach * @param int $ancestors 2699b5537c3SGreg Roach * 2706ccdf4f0SGreg Roach * @return ResponseInterface 2719b5537c3SGreg Roach */ 2726ccdf4f0SGreg Roach public function chart(Individual $individual1, Individual $individual2, int $recursion, int $ancestors): ResponseInterface 2739b5537c3SGreg Roach { 2743dcc812bSGreg Roach $tree = $individual1->tree(); 2759b5537c3SGreg Roach 2763dcc812bSGreg Roach $max_recursion = (int) $tree->getPreference('RELATIONSHIP_RECURSION', static::DEFAULT_RECURSION); 2779b5537c3SGreg Roach 2789b5537c3SGreg Roach $recursion = min($recursion, $max_recursion); 2799b5537c3SGreg Roach 2809b5537c3SGreg Roach $paths = $this->calculateRelationships($individual1, $individual2, $recursion, (bool) $ancestors); 2819b5537c3SGreg Roach 2829b5537c3SGreg Roach // @TODO - convert to views 2839b5537c3SGreg Roach ob_start(); 2849b5537c3SGreg Roach if (I18N::direction() === 'ltr') { 285e837ff07SGreg Roach $diagonal1 = asset('css/images/dline.png'); 286e837ff07SGreg Roach $diagonal2 = asset('css/images/dline2.png'); 2879b5537c3SGreg Roach } else { 288e837ff07SGreg Roach $diagonal1 = asset('css/images/dline2.png'); 289e837ff07SGreg Roach $diagonal2 = asset('css/images/dline.png'); 2909b5537c3SGreg Roach } 2919b5537c3SGreg Roach 2929b5537c3SGreg Roach $num_paths = 0; 2939b5537c3SGreg Roach foreach ($paths as $path) { 2949b5537c3SGreg Roach // Extract the relationship names between pairs of individuals 2959b5537c3SGreg Roach $relationships = $this->oldStyleRelationshipPath($tree, $path); 2969b5537c3SGreg Roach if (empty($relationships)) { 2979b5537c3SGreg Roach // Cannot see one of the families/individuals, due to privacy; 2989b5537c3SGreg Roach continue; 2999b5537c3SGreg Roach } 3009b5537c3SGreg Roach echo '<h3>', I18N::translate('Relationship: %s', Functions::getRelationshipNameFromPath(implode('', $relationships), $individual1, $individual2)), '</h3>'; 3019b5537c3SGreg Roach $num_paths++; 3029b5537c3SGreg Roach 3039b5537c3SGreg Roach // Use a table/grid for layout. 3049b5537c3SGreg Roach $table = []; 3059b5537c3SGreg Roach // Current position in the grid. 3069b5537c3SGreg Roach $x = 0; 3079b5537c3SGreg Roach $y = 0; 3089b5537c3SGreg Roach // Extent of the grid. 3099b5537c3SGreg Roach $min_y = 0; 3109b5537c3SGreg Roach $max_y = 0; 3119b5537c3SGreg Roach $max_x = 0; 3129b5537c3SGreg Roach // For each node in the path. 3139b5537c3SGreg Roach foreach ($path as $n => $xref) { 3149b5537c3SGreg Roach if ($n % 2 === 1) { 3159b5537c3SGreg Roach switch ($relationships[$n]) { 3169b5537c3SGreg Roach case 'hus': 3179b5537c3SGreg Roach case 'wif': 3189b5537c3SGreg Roach case 'spo': 3199b5537c3SGreg Roach case 'bro': 3209b5537c3SGreg Roach case 'sis': 3219b5537c3SGreg Roach case 'sib': 32239b853a7SGreg 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>'; 3239b5537c3SGreg Roach $x += 2; 3249b5537c3SGreg Roach break; 3259b5537c3SGreg Roach case 'son': 3269b5537c3SGreg Roach case 'dau': 3279b5537c3SGreg Roach case 'chi': 3289b5537c3SGreg Roach if ($n > 2 && preg_match('/fat|mot|par/', $relationships[$n - 2])) { 329d993d560SGreg 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>'; 3309b5537c3SGreg Roach $x += 2; 3319b5537c3SGreg Roach } else { 3324ac9dd10SGreg 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>'; 3339b5537c3SGreg Roach } 3349b5537c3SGreg Roach $y -= 2; 3359b5537c3SGreg Roach break; 3369b5537c3SGreg Roach case 'fat': 3379b5537c3SGreg Roach case 'mot': 3389b5537c3SGreg Roach case 'par': 3399b5537c3SGreg Roach if ($n > 2 && preg_match('/son|dau|chi/', $relationships[$n - 2])) { 340d993d560SGreg 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>'; 3419b5537c3SGreg Roach $x += 2; 3429b5537c3SGreg Roach } else { 3434ac9dd10SGreg 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>'; 3449b5537c3SGreg Roach } 3459b5537c3SGreg Roach $y += 2; 3469b5537c3SGreg Roach break; 3479b5537c3SGreg Roach } 3489b5537c3SGreg Roach $max_x = max($max_x, $x); 3499b5537c3SGreg Roach $min_y = min($min_y, $y); 3509b5537c3SGreg Roach $max_y = max($max_y, $y); 3519b5537c3SGreg Roach } else { 3529b5537c3SGreg Roach $individual = Individual::getInstance($xref, $tree); 353f4ba05e3SGreg Roach $table[$x][$y] = view('chart-box', ['individual' => $individual]); 3549b5537c3SGreg Roach } 3559b5537c3SGreg Roach } 3564a2590a5SGreg Roach echo '<div class="wt-chart wt-chart-relationships">'; 3579b5537c3SGreg Roach echo '<table style="border-collapse: collapse; margin: 20px 50px;">'; 3589b5537c3SGreg Roach for ($y = $max_y; $y >= $min_y; --$y) { 3599b5537c3SGreg Roach echo '<tr>'; 3609b5537c3SGreg Roach for ($x = 0; $x <= $max_x; ++$x) { 3619b5537c3SGreg Roach echo '<td style="padding: 0;">'; 3629b5537c3SGreg Roach if (isset($table[$x][$y])) { 3639b5537c3SGreg Roach echo $table[$x][$y]; 3649b5537c3SGreg Roach } 3659b5537c3SGreg Roach echo '</td>'; 3669b5537c3SGreg Roach } 3679b5537c3SGreg Roach echo '</tr>'; 3689b5537c3SGreg Roach } 3699b5537c3SGreg Roach echo '</table>'; 3709b5537c3SGreg Roach echo '</div>'; 3719b5537c3SGreg Roach } 3729b5537c3SGreg Roach 3739b5537c3SGreg Roach if (!$num_paths) { 3749b5537c3SGreg Roach echo '<p>', I18N::translate('No link between the two individuals could be found.'), '</p>'; 3759b5537c3SGreg Roach } 3769b5537c3SGreg Roach 3779b5537c3SGreg Roach $html = ob_get_clean(); 3789b5537c3SGreg Roach 3796ccdf4f0SGreg Roach return response($html); 3809b5537c3SGreg Roach } 3819b5537c3SGreg Roach 3829b5537c3SGreg Roach /** 3839b5537c3SGreg Roach * Calculate the shortest paths - or all paths - between two individuals. 3849b5537c3SGreg Roach * 3859b5537c3SGreg Roach * @param Individual $individual1 3869b5537c3SGreg Roach * @param Individual $individual2 3879b5537c3SGreg Roach * @param int $recursion How many levels of recursion to use 3889b5537c3SGreg Roach * @param bool $ancestor Restrict to relationships via a common ancestor 3899b5537c3SGreg Roach * 3909b5537c3SGreg Roach * @return string[][] 3919b5537c3SGreg Roach */ 3929b5537c3SGreg Roach private function calculateRelationships(Individual $individual1, Individual $individual2, $recursion, $ancestor = false): array 3939b5537c3SGreg Roach { 3943dcc812bSGreg Roach $tree = $individual1->tree(); 3953dcc812bSGreg Roach 3969b5537c3SGreg Roach $rows = DB::table('link') 3973dcc812bSGreg Roach ->where('l_file', '=', $tree->id()) 3989b5537c3SGreg Roach ->whereIn('l_type', ['FAMS', 'FAMC']) 3999b5537c3SGreg Roach ->select(['l_from', 'l_to']) 4009b5537c3SGreg Roach ->get(); 4019b5537c3SGreg Roach 4029b5537c3SGreg Roach // Optionally restrict the graph to the ancestors of the individuals. 4039b5537c3SGreg Roach if ($ancestor) { 4043dcc812bSGreg Roach $ancestors = $this->allAncestors($individual1->xref(), $individual2->xref(), $tree->id()); 4053dcc812bSGreg Roach $exclude = $this->excludeFamilies($individual1->xref(), $individual2->xref(), $tree->id()); 4069b5537c3SGreg Roach } else { 4079b5537c3SGreg Roach $ancestors = []; 4089b5537c3SGreg Roach $exclude = []; 4099b5537c3SGreg Roach } 4109b5537c3SGreg Roach 4119b5537c3SGreg Roach $graph = []; 4129b5537c3SGreg Roach 4139b5537c3SGreg Roach foreach ($rows as $row) { 41422d65e5aSGreg Roach if (empty($ancestors) || in_array($row->l_from, $ancestors, true) && !in_array($row->l_to, $exclude, true)) { 4159b5537c3SGreg Roach $graph[$row->l_from][$row->l_to] = 1; 4169b5537c3SGreg Roach $graph[$row->l_to][$row->l_from] = 1; 4179b5537c3SGreg Roach } 4189b5537c3SGreg Roach } 4199b5537c3SGreg Roach 4209b5537c3SGreg Roach $xref1 = $individual1->xref(); 4219b5537c3SGreg Roach $xref2 = $individual2->xref(); 4229b5537c3SGreg Roach $dijkstra = new Dijkstra($graph); 4239b5537c3SGreg Roach $paths = $dijkstra->shortestPaths($xref1, $xref2); 4249b5537c3SGreg Roach 4259b5537c3SGreg Roach // Only process each exclusion list once; 4269b5537c3SGreg Roach $excluded = []; 4279b5537c3SGreg Roach 4289b5537c3SGreg Roach $queue = []; 4299b5537c3SGreg Roach foreach ($paths as $path) { 4309b5537c3SGreg Roach // Insert the paths into the queue, with an exclusion list. 4319b5537c3SGreg Roach $queue[] = [ 4329b5537c3SGreg Roach 'path' => $path, 4339b5537c3SGreg Roach 'exclude' => [], 4349b5537c3SGreg Roach ]; 4359b5537c3SGreg Roach // While there are un-extended paths 4369b5537c3SGreg Roach for ($next = current($queue); $next !== false; $next = next($queue)) { 4379b5537c3SGreg Roach // For each family on the path 4389b5537c3SGreg Roach for ($n = count($next['path']) - 2; $n >= 1; $n -= 2) { 4399b5537c3SGreg Roach $exclude = $next['exclude']; 4409b5537c3SGreg Roach if (count($exclude) >= $recursion) { 4419b5537c3SGreg Roach continue; 4429b5537c3SGreg Roach } 4439b5537c3SGreg Roach $exclude[] = $next['path'][$n]; 4449b5537c3SGreg Roach sort($exclude); 4459b5537c3SGreg Roach $tmp = implode('-', $exclude); 44622d65e5aSGreg Roach if (in_array($tmp, $excluded, true)) { 4479b5537c3SGreg Roach continue; 4489b5537c3SGreg Roach } 4499b5537c3SGreg Roach 4509b5537c3SGreg Roach $excluded[] = $tmp; 4519b5537c3SGreg Roach // Add any new path to the queue 4529b5537c3SGreg Roach foreach ($dijkstra->shortestPaths($xref1, $xref2, $exclude) as $new_path) { 4539b5537c3SGreg Roach $queue[] = [ 4549b5537c3SGreg Roach 'path' => $new_path, 4559b5537c3SGreg Roach 'exclude' => $exclude, 4569b5537c3SGreg Roach ]; 4579b5537c3SGreg Roach } 4589b5537c3SGreg Roach } 4599b5537c3SGreg Roach } 4609b5537c3SGreg Roach } 461185cbb4dSGreg Roach // Extract the paths from the queue. 4629b5537c3SGreg Roach $paths = []; 4639b5537c3SGreg Roach foreach ($queue as $next) { 464185cbb4dSGreg Roach // The Dijkstra library does not use strict types, and converts 465185cbb4dSGreg Roach // numeric array keys (XREFs) from strings to integers; 466185cbb4dSGreg Roach $path = array_map($this->stringMapper(), $next['path']); 467185cbb4dSGreg Roach 468185cbb4dSGreg Roach // Remove duplicates 469185cbb4dSGreg Roach $paths[implode('-', $next['path'])] = $path; 4709b5537c3SGreg Roach } 4719b5537c3SGreg Roach 4729b5537c3SGreg Roach return $paths; 4739b5537c3SGreg Roach } 4749b5537c3SGreg Roach 4759b5537c3SGreg Roach /** 476185cbb4dSGreg Roach * Convert numeric values to strings 477185cbb4dSGreg Roach * 478185cbb4dSGreg Roach * @return Closure 479185cbb4dSGreg Roach */ 480*c3f3b628SGreg Roach private function stringMapper(): Closure 481*c3f3b628SGreg Roach { 482185cbb4dSGreg Roach return static function ($xref) { 483185cbb4dSGreg Roach return (string) $xref; 484185cbb4dSGreg Roach }; 485185cbb4dSGreg Roach } 486185cbb4dSGreg Roach 487185cbb4dSGreg Roach /** 4889b5537c3SGreg Roach * Find all ancestors of a list of individuals 4899b5537c3SGreg Roach * 4909b5537c3SGreg Roach * @param string $xref1 4919b5537c3SGreg Roach * @param string $xref2 4929b5537c3SGreg Roach * @param int $tree_id 4939b5537c3SGreg Roach * 4949b5537c3SGreg Roach * @return string[] 4959b5537c3SGreg Roach */ 4969b5537c3SGreg Roach private function allAncestors($xref1, $xref2, $tree_id): array 4979b5537c3SGreg Roach { 4989b5537c3SGreg Roach $ancestors = [ 4999b5537c3SGreg Roach $xref1, 5009b5537c3SGreg Roach $xref2, 5019b5537c3SGreg Roach ]; 5029b5537c3SGreg Roach 5039b5537c3SGreg Roach $queue = [ 5049b5537c3SGreg Roach $xref1, 5059b5537c3SGreg Roach $xref2, 5069b5537c3SGreg Roach ]; 5079b5537c3SGreg Roach while (!empty($queue)) { 5089b5537c3SGreg Roach $parents = DB::table('link AS l1') 5090b5fd0a6SGreg Roach ->join('link AS l2', static function (JoinClause $join): void { 5109b5537c3SGreg Roach $join 5119b5537c3SGreg Roach ->on('l1.l_to', '=', 'l2.l_to') 5129b5537c3SGreg Roach ->on('l1.l_file', '=', 'l2.l_file'); 5139b5537c3SGreg Roach }) 5149b5537c3SGreg Roach ->where('l1.l_file', '=', $tree_id) 5159b5537c3SGreg Roach ->where('l1.l_type', '=', 'FAMC') 5169b5537c3SGreg Roach ->where('l2.l_type', '=', 'FAMS') 5179b5537c3SGreg Roach ->whereIn('l1.l_from', $queue) 5189b5537c3SGreg Roach ->pluck('l2.l_from'); 5199b5537c3SGreg Roach 5209b5537c3SGreg Roach $queue = []; 5219b5537c3SGreg Roach foreach ($parents as $parent) { 52222d65e5aSGreg Roach if (!in_array($parent, $ancestors, true)) { 5239b5537c3SGreg Roach $ancestors[] = $parent; 5249b5537c3SGreg Roach $queue[] = $parent; 5259b5537c3SGreg Roach } 5269b5537c3SGreg Roach } 5279b5537c3SGreg Roach } 5289b5537c3SGreg Roach 5299b5537c3SGreg Roach return $ancestors; 5309b5537c3SGreg Roach } 5319b5537c3SGreg Roach 5329b5537c3SGreg Roach /** 5339b5537c3SGreg Roach * Find all families of two individuals 5349b5537c3SGreg Roach * 5359b5537c3SGreg Roach * @param string $xref1 5369b5537c3SGreg Roach * @param string $xref2 5379b5537c3SGreg Roach * @param int $tree_id 5389b5537c3SGreg Roach * 5399b5537c3SGreg Roach * @return string[] 5409b5537c3SGreg Roach */ 5419b5537c3SGreg Roach private function excludeFamilies($xref1, $xref2, $tree_id): array 5429b5537c3SGreg Roach { 5439b5537c3SGreg Roach return DB::table('link AS l1') 5440b5fd0a6SGreg Roach ->join('link AS l2', static function (JoinClause $join): void { 5459b5537c3SGreg Roach $join 5469b5537c3SGreg Roach ->on('l1.l_to', '=', 'l2.l_to') 5479b5537c3SGreg Roach ->on('l1.l_type', '=', 'l2.l_type') 5489b5537c3SGreg Roach ->on('l1.l_file', '=', 'l2.l_file'); 5499b5537c3SGreg Roach }) 5509b5537c3SGreg Roach ->where('l1.l_file', '=', $tree_id) 5519b5537c3SGreg Roach ->where('l1.l_type', '=', 'FAMS') 5529b5537c3SGreg Roach ->where('l1.l_from', '=', $xref1) 5539b5537c3SGreg Roach ->where('l2.l_from', '=', $xref2) 5549b5537c3SGreg Roach ->pluck('l1.l_to') 5559b5537c3SGreg Roach ->all(); 5569b5537c3SGreg Roach } 5579b5537c3SGreg Roach 5589b5537c3SGreg Roach /** 5596ccdf4f0SGreg Roach * Convert a path (list of XREFs) to an "old-style" string of relationships. 5606ccdf4f0SGreg Roach * Return an empty array, if privacy rules prevent us viewing any node. 5616ccdf4f0SGreg Roach * 5626ccdf4f0SGreg Roach * @param Tree $tree 5636ccdf4f0SGreg Roach * @param string[] $path Alternately Individual / Family 5646ccdf4f0SGreg Roach * 5656ccdf4f0SGreg Roach * @return string[] 5666ccdf4f0SGreg Roach */ 5676ccdf4f0SGreg Roach private function oldStyleRelationshipPath(Tree $tree, array $path): array 5686ccdf4f0SGreg Roach { 5696ccdf4f0SGreg Roach $spouse_codes = [ 5706ccdf4f0SGreg Roach 'M' => 'hus', 5716ccdf4f0SGreg Roach 'F' => 'wif', 5726ccdf4f0SGreg Roach 'U' => 'spo', 5736ccdf4f0SGreg Roach ]; 5746ccdf4f0SGreg Roach $parent_codes = [ 5756ccdf4f0SGreg Roach 'M' => 'fat', 5766ccdf4f0SGreg Roach 'F' => 'mot', 5776ccdf4f0SGreg Roach 'U' => 'par', 5786ccdf4f0SGreg Roach ]; 5796ccdf4f0SGreg Roach $child_codes = [ 5806ccdf4f0SGreg Roach 'M' => 'son', 5816ccdf4f0SGreg Roach 'F' => 'dau', 5826ccdf4f0SGreg Roach 'U' => 'chi', 5836ccdf4f0SGreg Roach ]; 5846ccdf4f0SGreg Roach $sibling_codes = [ 5856ccdf4f0SGreg Roach 'M' => 'bro', 5866ccdf4f0SGreg Roach 'F' => 'sis', 5876ccdf4f0SGreg Roach 'U' => 'sib', 5886ccdf4f0SGreg Roach ]; 5896ccdf4f0SGreg Roach $relationships = []; 5906ccdf4f0SGreg Roach 5916ccdf4f0SGreg Roach for ($i = 1, $count = count($path); $i < $count; $i += 2) { 5926ccdf4f0SGreg Roach $family = Family::getInstance($path[$i], $tree); 5936ccdf4f0SGreg Roach $prev = Individual::getInstance($path[$i - 1], $tree); 5946ccdf4f0SGreg Roach $next = Individual::getInstance($path[$i + 1], $tree); 5956ccdf4f0SGreg Roach if (preg_match('/\n\d (HUSB|WIFE|CHIL) @' . $prev->xref() . '@/', $family->gedcom(), $match)) { 5966ccdf4f0SGreg Roach $rel1 = $match[1]; 5976ccdf4f0SGreg Roach } else { 5986ccdf4f0SGreg Roach return []; 5996ccdf4f0SGreg Roach } 6006ccdf4f0SGreg Roach if (preg_match('/\n\d (HUSB|WIFE|CHIL) @' . $next->xref() . '@/', $family->gedcom(), $match)) { 6016ccdf4f0SGreg Roach $rel2 = $match[1]; 6026ccdf4f0SGreg Roach } else { 6036ccdf4f0SGreg Roach return []; 6046ccdf4f0SGreg Roach } 6056ccdf4f0SGreg Roach if (($rel1 === 'HUSB' || $rel1 === 'WIFE') && ($rel2 === 'HUSB' || $rel2 === 'WIFE')) { 6066ccdf4f0SGreg Roach $relationships[$i] = $spouse_codes[$next->sex()]; 6076ccdf4f0SGreg Roach } elseif (($rel1 === 'HUSB' || $rel1 === 'WIFE') && $rel2 === 'CHIL') { 6086ccdf4f0SGreg Roach $relationships[$i] = $child_codes[$next->sex()]; 6096ccdf4f0SGreg Roach } elseif ($rel1 === 'CHIL' && ($rel2 === 'HUSB' || $rel2 === 'WIFE')) { 6106ccdf4f0SGreg Roach $relationships[$i] = $parent_codes[$next->sex()]; 6116ccdf4f0SGreg Roach } elseif ($rel1 === 'CHIL' && $rel2 === 'CHIL') { 6126ccdf4f0SGreg Roach $relationships[$i] = $sibling_codes[$next->sex()]; 6136ccdf4f0SGreg Roach } 6146ccdf4f0SGreg Roach } 6156ccdf4f0SGreg Roach 6166ccdf4f0SGreg Roach return $relationships; 6176ccdf4f0SGreg Roach } 6186ccdf4f0SGreg Roach 6196ccdf4f0SGreg Roach /** 6209b5537c3SGreg Roach * Possible options for the recursion option 6219b5537c3SGreg Roach * 6229b5537c3SGreg Roach * @param int $max_recursion 6239b5537c3SGreg Roach * 6244db4b4a9SGreg Roach * @return string[] 6259b5537c3SGreg Roach */ 6269b5537c3SGreg Roach private function recursionOptions(int $max_recursion): array 6279b5537c3SGreg Roach { 6283dcc812bSGreg Roach if ($max_recursion === static::UNLIMITED_RECURSION) { 6299b5537c3SGreg Roach $text = I18N::translate('Find all possible relationships'); 6309b5537c3SGreg Roach } else { 6319b5537c3SGreg Roach $text = I18N::translate('Find other relationships'); 6329b5537c3SGreg Roach } 6339b5537c3SGreg Roach 6349b5537c3SGreg Roach return [ 6359b5537c3SGreg Roach '0' => I18N::translate('Find the closest relationships'), 6369b5537c3SGreg Roach $max_recursion => $text, 6379b5537c3SGreg Roach ]; 6389b5537c3SGreg Roach } 639168ff6f3Sric2016} 640