1a25f0a04SGreg Roach<?php 2a25f0a04SGreg Roach/** 3a25f0a04SGreg Roach * webtrees: online genealogy 48fcd0d32SGreg Roach * Copyright (C) 2019 webtrees development team 5a25f0a04SGreg Roach * This program is free software: you can redistribute it and/or modify 6a25f0a04SGreg Roach * it under the terms of the GNU General Public License as published by 7a25f0a04SGreg Roach * the Free Software Foundation, either version 3 of the License, or 8a25f0a04SGreg Roach * (at your option) any later version. 9a25f0a04SGreg Roach * This program is distributed in the hope that it will be useful, 10a25f0a04SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 11a25f0a04SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12a25f0a04SGreg Roach * GNU General Public License for more details. 13a25f0a04SGreg Roach * You should have received a copy of the GNU General Public License 14a25f0a04SGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>. 15a25f0a04SGreg Roach */ 16e7f56f2aSGreg Roachdeclare(strict_types=1); 17e7f56f2aSGreg Roach 1876692c8bSGreg Roachnamespace Fisharebest\Webtrees; 19a25f0a04SGreg Roach 20886b77daSGreg Roachuse Closure; 21a25f0a04SGreg Roachuse Fisharebest\ExtCalendar\GregorianCalendar; 220e62c4b8SGreg Roachuse Fisharebest\Webtrees\GedcomCode\GedcomCodePedi; 232e5b4452SGreg Roachuse Illuminate\Database\Capsule\Manager as DB; 24886b77daSGreg Roachuse stdClass; 25a25f0a04SGreg Roach 26a25f0a04SGreg Roach/** 2776692c8bSGreg Roach * A GEDCOM individual (INDI) object. 28a25f0a04SGreg Roach */ 29c1010edaSGreg Roachclass Individual extends GedcomRecord 30c1010edaSGreg Roach{ 3116d6367aSGreg Roach public const RECORD_TYPE = 'INDI'; 3216d6367aSGreg Roach 3316d6367aSGreg Roach protected const ROUTE_NAME = 'individual'; 34a25f0a04SGreg Roach 3576692c8bSGreg Roach /** @var int used in some lists to keep track of this individual’s generation in that list */ 3676692c8bSGreg Roach public $generation; 37a25f0a04SGreg Roach 38a25f0a04SGreg Roach /** @var Date The estimated date of birth */ 394686330aSGreg Roach private $estimated_birth_date; 40a25f0a04SGreg Roach 41a25f0a04SGreg Roach /** @var Date The estimated date of death */ 424686330aSGreg Roach private $estimated_death_date; 43a25f0a04SGreg Roach 44a25f0a04SGreg Roach /** 45886b77daSGreg Roach * A closure which will create a record from a database row. 46886b77daSGreg Roach * 47886b77daSGreg Roach * @param Tree $tree 48886b77daSGreg Roach * 49886b77daSGreg Roach * @return Closure 50886b77daSGreg Roach */ 51886b77daSGreg Roach public static function rowMapper(Tree $tree): Closure 52886b77daSGreg Roach { 53886b77daSGreg Roach return function (stdClass $row) use ($tree): Individual { 54e84cf2deSGreg Roach $individual = Individual::getInstance($row->i_id, $tree, $row->i_gedcom); 55e84cf2deSGreg Roach 56e84cf2deSGreg Roach if ($row->n_num ?? null) { 57e84cf2deSGreg Roach $individual->setPrimaryName($row->n_num); 58e84cf2deSGreg Roach } 59e84cf2deSGreg Roach 60e84cf2deSGreg Roach return $individual; 61886b77daSGreg Roach }; 62886b77daSGreg Roach } 63886b77daSGreg Roach 64886b77daSGreg Roach /** 65c156e8f5SGreg Roach * A closure which will compare individuals by birth date. 66c156e8f5SGreg Roach * 67c156e8f5SGreg Roach * @return Closure 68c156e8f5SGreg Roach */ 69c156e8f5SGreg Roach public static function birthDateComparator(): Closure 70c156e8f5SGreg Roach { 71*a9199cb2SGreg Roach return function (Individual $x, Individual $y): int { 72c156e8f5SGreg Roach return Date::compare($x->getEstimatedBirthDate(), $y->getEstimatedBirthDate()); 73c156e8f5SGreg Roach }; 74c156e8f5SGreg Roach } 75c156e8f5SGreg Roach 76c156e8f5SGreg Roach /** 77c156e8f5SGreg Roach * A closure which will compare individuals by death date. 78c156e8f5SGreg Roach * 79c156e8f5SGreg Roach * @return Closure 80c156e8f5SGreg Roach */ 81c156e8f5SGreg Roach public static function deathDateComparator(): Closure 82c156e8f5SGreg Roach { 83*a9199cb2SGreg Roach return function (Individual $x, Individual $y): int { 84c156e8f5SGreg Roach return Date::compare($x->getEstimatedBirthDate(), $y->getEstimatedBirthDate()); 85c156e8f5SGreg Roach }; 86c156e8f5SGreg Roach } 87c156e8f5SGreg Roach 88c156e8f5SGreg Roach /** 89e71ef9d2SGreg Roach * Get an instance of an individual object. For single records, 90e71ef9d2SGreg Roach * we just receive the XREF. For bulk records (such as lists 91e71ef9d2SGreg Roach * and search results) we can receive the GEDCOM data as well. 92e71ef9d2SGreg Roach * 93e71ef9d2SGreg Roach * @param string $xref 94e71ef9d2SGreg Roach * @param Tree $tree 95e71ef9d2SGreg Roach * @param string|null $gedcom 96e71ef9d2SGreg Roach * 97e71ef9d2SGreg Roach * @throws \Exception 98e71ef9d2SGreg Roach * @return Individual|null 99e71ef9d2SGreg Roach */ 10076f666f4SGreg Roach public static function getInstance(string $xref, Tree $tree, string $gedcom = null) 101c1010edaSGreg Roach { 102e71ef9d2SGreg Roach $record = parent::getInstance($xref, $tree, $gedcom); 103e71ef9d2SGreg Roach 104e71ef9d2SGreg Roach if ($record instanceof Individual) { 105e71ef9d2SGreg Roach return $record; 106e71ef9d2SGreg Roach } 107b2ce94c6SRico Sonntag 108b2ce94c6SRico Sonntag return null; 109e71ef9d2SGreg Roach } 110e71ef9d2SGreg Roach 111e71ef9d2SGreg Roach /** 112395f0fe0SGreg Roach * Sometimes, we'll know in advance that we need to load a set of records. 113395f0fe0SGreg Roach * Typically when we load families and their members. 114395f0fe0SGreg Roach * 115395f0fe0SGreg Roach * @param Tree $tree 1164a8aaa00SScrutinizer Auto-Fixer * @param string[] $xrefs 11718d7a90dSGreg Roach * 11818d7a90dSGreg Roach * @return void 119395f0fe0SGreg Roach */ 1202e5b4452SGreg Roach public static function load(Tree $tree, array $xrefs): void 121c1010edaSGreg Roach { 1222e5b4452SGreg Roach $rows = DB::table('individuals') 1232e5b4452SGreg Roach ->where('i_file', '=', $tree->id()) 1242e5b4452SGreg Roach ->whereIn('i_id', array_unique($xrefs)) 1252e5b4452SGreg Roach ->select(['i_id AS xref', 'i_gedcom AS gedcom']) 1262e5b4452SGreg Roach ->get(); 127395f0fe0SGreg Roach 128395f0fe0SGreg Roach foreach ($rows as $row) { 129395f0fe0SGreg Roach self::getInstance($row->xref, $tree, $row->gedcom); 130395f0fe0SGreg Roach } 131395f0fe0SGreg Roach } 132395f0fe0SGreg Roach 133395f0fe0SGreg Roach /** 134a25f0a04SGreg Roach * Can the name of this record be shown? 135a25f0a04SGreg Roach * 13676692c8bSGreg Roach * @param int|null $access_level 13776692c8bSGreg Roach * 13876692c8bSGreg Roach * @return bool 139a25f0a04SGreg Roach */ 14035584196SGreg Roach public function canShowName(int $access_level = null): bool 141c1010edaSGreg Roach { 1424b9ff166SGreg Roach if ($access_level === null) { 1434b9ff166SGreg Roach $access_level = Auth::accessLevel($this->tree); 1444b9ff166SGreg Roach } 1454b9ff166SGreg Roach 146518bbdc1SGreg Roach return $this->tree->getPreference('SHOW_LIVING_NAMES') >= $access_level || $this->canShow($access_level); 147a25f0a04SGreg Roach } 148a25f0a04SGreg Roach 149a25f0a04SGreg Roach /** 15076692c8bSGreg Roach * Can this individual be shown? 151a25f0a04SGreg Roach * 15276692c8bSGreg Roach * @param int $access_level 15376692c8bSGreg Roach * 15476692c8bSGreg Roach * @return bool 155a25f0a04SGreg Roach */ 15635584196SGreg Roach protected function canShowByType(int $access_level): bool 157c1010edaSGreg Roach { 158a25f0a04SGreg Roach // Dead people... 159518bbdc1SGreg Roach if ($this->tree->getPreference('SHOW_DEAD_PEOPLE') >= $access_level && $this->isDead()) { 160a25f0a04SGreg Roach $keep_alive = false; 16154ba7dc5SGreg Roach $KEEP_ALIVE_YEARS_BIRTH = (int) $this->tree->getPreference('KEEP_ALIVE_YEARS_BIRTH'); 162a25f0a04SGreg Roach if ($KEEP_ALIVE_YEARS_BIRTH) { 1638d0ebef0SGreg Roach preg_match_all('/\n1 (?:' . implode('|', Gedcom::BIRTH_EVENTS) . ').*(?:\n[2-9].*)*(?:\n2 DATE (.+))/', $this->gedcom, $matches, PREG_SET_ORDER); 164a25f0a04SGreg Roach foreach ($matches as $match) { 165a25f0a04SGreg Roach $date = new Date($match[1]); 166a25f0a04SGreg Roach if ($date->isOK() && $date->gregorianYear() + $KEEP_ALIVE_YEARS_BIRTH > date('Y')) { 167a25f0a04SGreg Roach $keep_alive = true; 168a25f0a04SGreg Roach break; 169a25f0a04SGreg Roach } 170a25f0a04SGreg Roach } 171a25f0a04SGreg Roach } 17254ba7dc5SGreg Roach $KEEP_ALIVE_YEARS_DEATH = (int) $this->tree->getPreference('KEEP_ALIVE_YEARS_DEATH'); 173a25f0a04SGreg Roach if ($KEEP_ALIVE_YEARS_DEATH) { 1748d0ebef0SGreg Roach preg_match_all('/\n1 (?:' . implode('|', Gedcom::DEATH_EVENTS) . ').*(?:\n[2-9].*)*(?:\n2 DATE (.+))/', $this->gedcom, $matches, PREG_SET_ORDER); 175a25f0a04SGreg Roach foreach ($matches as $match) { 176a25f0a04SGreg Roach $date = new Date($match[1]); 177a25f0a04SGreg Roach if ($date->isOK() && $date->gregorianYear() + $KEEP_ALIVE_YEARS_DEATH > date('Y')) { 178a25f0a04SGreg Roach $keep_alive = true; 179a25f0a04SGreg Roach break; 180a25f0a04SGreg Roach } 181a25f0a04SGreg Roach } 182a25f0a04SGreg Roach } 183a25f0a04SGreg Roach if (!$keep_alive) { 184a25f0a04SGreg Roach return true; 185a25f0a04SGreg Roach } 186a25f0a04SGreg Roach } 187a25f0a04SGreg Roach // Consider relationship privacy (unless an admin is applying download restrictions) 18854ba7dc5SGreg Roach $user_path_length = (int) $this->tree->getUserPreference(Auth::user(), 'RELATIONSHIP_PATH_LENGTH'); 1894b9ff166SGreg Roach $gedcomid = $this->tree->getUserPreference(Auth::user(), 'gedcomid'); 19054ba7dc5SGreg Roach if ($gedcomid !== '' && $user_path_length > 0) { 1914b9ff166SGreg Roach return self::isRelated($this, $user_path_length); 192a25f0a04SGreg Roach } 193a25f0a04SGreg Roach 194a25f0a04SGreg Roach // No restriction found - show living people to members only: 1954b9ff166SGreg Roach return Auth::PRIV_USER >= $access_level; 196a25f0a04SGreg Roach } 197a25f0a04SGreg Roach 198a25f0a04SGreg Roach /** 199a25f0a04SGreg Roach * For relationship privacy calculations - is this individual a close relative? 200a25f0a04SGreg Roach * 201a25f0a04SGreg Roach * @param Individual $target 202cbc1590aSGreg Roach * @param int $distance 203a25f0a04SGreg Roach * 204cbc1590aSGreg Roach * @return bool 205a25f0a04SGreg Roach */ 2068f53f488SRico Sonntag private static function isRelated(Individual $target, $distance): bool 207c1010edaSGreg Roach { 208a25f0a04SGreg Roach static $cache = null; 209a25f0a04SGreg Roach 21006ef8e02SGreg Roach $user_individual = self::getInstance($target->tree->getUserPreference(Auth::user(), 'gedcomid'), $target->tree); 211a25f0a04SGreg Roach if ($user_individual) { 212a25f0a04SGreg Roach if (!$cache) { 21313abd6f3SGreg Roach $cache = [ 21413abd6f3SGreg Roach 0 => [$user_individual], 21513abd6f3SGreg Roach 1 => [], 21613abd6f3SGreg Roach ]; 2178d0ebef0SGreg Roach foreach ($user_individual->facts(['FAMC', 'FAMS'], false, Auth::PRIV_HIDE) as $fact) { 218dc124885SGreg Roach $family = $fact->target(); 219e24444eeSGreg Roach if ($family instanceof Family) { 220a25f0a04SGreg Roach $cache[1][] = $family; 221a25f0a04SGreg Roach } 222a25f0a04SGreg Roach } 223a25f0a04SGreg Roach } 224a25f0a04SGreg Roach } else { 225a25f0a04SGreg Roach // No individual linked to this account? Cannot use relationship privacy. 226a25f0a04SGreg Roach return true; 227a25f0a04SGreg Roach } 228a25f0a04SGreg Roach 229a25f0a04SGreg Roach // Double the distance, as we count the INDI-FAM and FAM-INDI links separately 230a25f0a04SGreg Roach $distance *= 2; 231a25f0a04SGreg Roach 232a25f0a04SGreg Roach // Consider each path length in turn 233a25f0a04SGreg Roach for ($n = 0; $n <= $distance; ++$n) { 234a25f0a04SGreg Roach if (array_key_exists($n, $cache)) { 235a25f0a04SGreg Roach // We have already calculated all records with this length 236a25f0a04SGreg Roach if ($n % 2 == 0 && in_array($target, $cache[$n], true)) { 237a25f0a04SGreg Roach return true; 238a25f0a04SGreg Roach } 239a25f0a04SGreg Roach } else { 240a25f0a04SGreg Roach // Need to calculate these paths 24113abd6f3SGreg Roach $cache[$n] = []; 242a25f0a04SGreg Roach if ($n % 2 == 0) { 243a25f0a04SGreg Roach // Add FAM->INDI links 244a25f0a04SGreg Roach foreach ($cache[$n - 1] as $family) { 2458d0ebef0SGreg Roach foreach ($family->facts(['HUSB', 'WIFE', 'CHIL'], false, Auth::PRIV_HIDE) as $fact) { 246dc124885SGreg Roach $individual = $fact->target(); 247a25f0a04SGreg Roach // Don’t backtrack 248e24444eeSGreg Roach if ($individual instanceof Individual && !in_array($individual, $cache[$n - 2], true)) { 249a25f0a04SGreg Roach $cache[$n][] = $individual; 250a25f0a04SGreg Roach } 251a25f0a04SGreg Roach } 252a25f0a04SGreg Roach } 253a25f0a04SGreg Roach if (in_array($target, $cache[$n], true)) { 254a25f0a04SGreg Roach return true; 255a25f0a04SGreg Roach } 256a25f0a04SGreg Roach } else { 257a25f0a04SGreg Roach // Add INDI->FAM links 258a25f0a04SGreg Roach foreach ($cache[$n - 1] as $individual) { 2598d0ebef0SGreg Roach foreach ($individual->facts(['FAMC', 'FAMS'], false, Auth::PRIV_HIDE) as $fact) { 260dc124885SGreg Roach $family = $fact->target(); 261a25f0a04SGreg Roach // Don’t backtrack 262e24444eeSGreg Roach if ($family instanceof Family && !in_array($family, $cache[$n - 2], true)) { 263a25f0a04SGreg Roach $cache[$n][] = $family; 264a25f0a04SGreg Roach } 265a25f0a04SGreg Roach } 266a25f0a04SGreg Roach } 267a25f0a04SGreg Roach } 268a25f0a04SGreg Roach } 269a25f0a04SGreg Roach } 270a25f0a04SGreg Roach 271a25f0a04SGreg Roach return false; 272a25f0a04SGreg Roach } 273a25f0a04SGreg Roach 27476692c8bSGreg Roach /** 27576692c8bSGreg Roach * Generate a private version of this record 27676692c8bSGreg Roach * 27776692c8bSGreg Roach * @param int $access_level 27876692c8bSGreg Roach * 27976692c8bSGreg Roach * @return string 28076692c8bSGreg Roach */ 2813c90ed31SGreg Roach protected function createPrivateGedcomRecord(int $access_level): string 282c1010edaSGreg Roach { 283acf76a54SGreg Roach $SHOW_PRIVATE_RELATIONSHIPS = (bool) $this->tree->getPreference('SHOW_PRIVATE_RELATIONSHIPS'); 284a25f0a04SGreg Roach 285a25f0a04SGreg Roach $rec = '0 @' . $this->xref . '@ INDI'; 286518bbdc1SGreg Roach if ($this->tree->getPreference('SHOW_LIVING_NAMES') >= $access_level) { 287a25f0a04SGreg Roach // Show all the NAME tags, including subtags 2888d0ebef0SGreg Roach foreach ($this->facts(['NAME']) as $fact) { 289138ca96cSGreg Roach $rec .= "\n" . $fact->gedcom(); 290a25f0a04SGreg Roach } 291a25f0a04SGreg Roach } 292a25f0a04SGreg Roach // Just show the 1 FAMC/FAMS tag, not any subtags, which may contain private data 2938d0ebef0SGreg Roach preg_match_all('/\n1 (?:FAMC|FAMS) @(' . Gedcom::REGEX_XREF . ')@/', $this->gedcom, $matches, PREG_SET_ORDER); 294a25f0a04SGreg Roach foreach ($matches as $match) { 29524ec66ceSGreg Roach $rela = Family::getInstance($match[1], $this->tree); 296a25f0a04SGreg Roach if ($rela && ($SHOW_PRIVATE_RELATIONSHIPS || $rela->canShow($access_level))) { 297a25f0a04SGreg Roach $rec .= $match[0]; 298a25f0a04SGreg Roach } 299a25f0a04SGreg Roach } 300a25f0a04SGreg Roach // Don’t privatize sex. 301a25f0a04SGreg Roach if (preg_match('/\n1 SEX [MFU]/', $this->gedcom, $match)) { 302a25f0a04SGreg Roach $rec .= $match[0]; 303a25f0a04SGreg Roach } 304a25f0a04SGreg Roach 305a25f0a04SGreg Roach return $rec; 306a25f0a04SGreg Roach } 307a25f0a04SGreg Roach 30876692c8bSGreg Roach /** 30976692c8bSGreg Roach * Fetch data from the database 31076692c8bSGreg Roach * 31176692c8bSGreg Roach * @param string $xref 31276692c8bSGreg Roach * @param int $tree_id 31376692c8bSGreg Roach * 31476692c8bSGreg Roach * @return null|string 31576692c8bSGreg Roach */ 31625e95e6eSGreg Roach protected static function fetchGedcomRecord(string $xref, int $tree_id) 317c1010edaSGreg Roach { 3182e5b4452SGreg Roach return DB::table('individuals') 3192e5b4452SGreg Roach ->where('i_id', '=', $xref) 3202e5b4452SGreg Roach ->where('i_file', '=', $tree_id) 3212e5b4452SGreg Roach ->value('i_gedcom'); 322a25f0a04SGreg Roach } 323a25f0a04SGreg Roach 324a25f0a04SGreg Roach /** 325a25f0a04SGreg Roach * Calculate whether this individual is living or dead. 326a25f0a04SGreg Roach * If not known to be dead, then assume living. 327a25f0a04SGreg Roach * 328cbc1590aSGreg Roach * @return bool 329a25f0a04SGreg Roach */ 3308f53f488SRico Sonntag public function isDead(): bool 331c1010edaSGreg Roach { 332c4b3e5a2SGreg Roach $MAX_ALIVE_AGE = (int) $this->tree->getPreference('MAX_ALIVE_AGE'); 333a25f0a04SGreg Roach 334a25f0a04SGreg Roach // "1 DEAT Y" or "1 DEAT/2 DATE" or "1 DEAT/2 PLAC" 3358d0ebef0SGreg Roach if (preg_match('/\n1 (?:' . implode('|', Gedcom::DEATH_EVENTS) . ')(?: Y|(?:\n[2-9].+)*\n2 (DATE|PLAC) )/', $this->gedcom)) { 336a25f0a04SGreg Roach return true; 337a25f0a04SGreg Roach } 338a25f0a04SGreg Roach 339a25f0a04SGreg Roach // If any event occured more than $MAX_ALIVE_AGE years ago, then assume the individual is dead 340a25f0a04SGreg Roach if (preg_match_all('/\n2 DATE (.+)/', $this->gedcom, $date_matches)) { 341a25f0a04SGreg Roach foreach ($date_matches[1] as $date_match) { 342a25f0a04SGreg Roach $date = new Date($date_match); 343f5b60decSGreg Roach if ($date->isOK() && $date->maximumJulianDay() <= WT_CLIENT_JD - 365 * $MAX_ALIVE_AGE) { 344a25f0a04SGreg Roach return true; 345a25f0a04SGreg Roach } 346a25f0a04SGreg Roach } 347a25f0a04SGreg Roach // The individual has one or more dated events. All are less than $MAX_ALIVE_AGE years ago. 348a25f0a04SGreg Roach // If one of these is a birth, the individual must be alive. 349a25f0a04SGreg Roach if (preg_match('/\n1 BIRT(?:\n[2-9].+)*\n2 DATE /', $this->gedcom)) { 350a25f0a04SGreg Roach return false; 351a25f0a04SGreg Roach } 352a25f0a04SGreg Roach } 353a25f0a04SGreg Roach 354a25f0a04SGreg Roach // If we found no conclusive dates then check the dates of close relatives. 355a25f0a04SGreg Roach 356a25f0a04SGreg Roach // Check parents (birth and adopted) 3574b9ff166SGreg Roach foreach ($this->getChildFamilies(Auth::PRIV_HIDE) as $family) { 3584b9ff166SGreg Roach foreach ($family->getSpouses(Auth::PRIV_HIDE) as $parent) { 359a25f0a04SGreg Roach // Assume parents are no more than 45 years older than their children 360a25f0a04SGreg Roach preg_match_all('/\n2 DATE (.+)/', $parent->gedcom, $date_matches); 361a25f0a04SGreg Roach foreach ($date_matches[1] as $date_match) { 362a25f0a04SGreg Roach $date = new Date($date_match); 363f5b60decSGreg Roach if ($date->isOK() && $date->maximumJulianDay() <= WT_CLIENT_JD - 365 * ($MAX_ALIVE_AGE + 45)) { 364a25f0a04SGreg Roach return true; 365a25f0a04SGreg Roach } 366a25f0a04SGreg Roach } 367a25f0a04SGreg Roach } 368a25f0a04SGreg Roach } 369a25f0a04SGreg Roach 370a25f0a04SGreg Roach // Check spouses 3714b9ff166SGreg Roach foreach ($this->getSpouseFamilies(Auth::PRIV_HIDE) as $family) { 372a25f0a04SGreg Roach preg_match_all('/\n2 DATE (.+)/', $family->gedcom, $date_matches); 373a25f0a04SGreg Roach foreach ($date_matches[1] as $date_match) { 374a25f0a04SGreg Roach $date = new Date($date_match); 375a25f0a04SGreg Roach // Assume marriage occurs after age of 10 376f5b60decSGreg Roach if ($date->isOK() && $date->maximumJulianDay() <= WT_CLIENT_JD - 365 * ($MAX_ALIVE_AGE - 10)) { 377a25f0a04SGreg Roach return true; 378a25f0a04SGreg Roach } 379a25f0a04SGreg Roach } 380a25f0a04SGreg Roach // Check spouse dates 38113e3123bSGreg Roach $spouse = $family->getSpouse($this, Auth::PRIV_HIDE); 382a25f0a04SGreg Roach if ($spouse) { 383a25f0a04SGreg Roach preg_match_all('/\n2 DATE (.+)/', $spouse->gedcom, $date_matches); 384a25f0a04SGreg Roach foreach ($date_matches[1] as $date_match) { 385a25f0a04SGreg Roach $date = new Date($date_match); 386a25f0a04SGreg Roach // Assume max age difference between spouses of 40 years 387f5b60decSGreg Roach if ($date->isOK() && $date->maximumJulianDay() <= WT_CLIENT_JD - 365 * ($MAX_ALIVE_AGE + 40)) { 388a25f0a04SGreg Roach return true; 389a25f0a04SGreg Roach } 390a25f0a04SGreg Roach } 391a25f0a04SGreg Roach } 392a25f0a04SGreg Roach // Check child dates 3934b9ff166SGreg Roach foreach ($family->getChildren(Auth::PRIV_HIDE) as $child) { 394a25f0a04SGreg Roach preg_match_all('/\n2 DATE (.+)/', $child->gedcom, $date_matches); 395a25f0a04SGreg Roach // Assume children born after age of 15 396a25f0a04SGreg Roach foreach ($date_matches[1] as $date_match) { 397a25f0a04SGreg Roach $date = new Date($date_match); 398f5b60decSGreg Roach if ($date->isOK() && $date->maximumJulianDay() <= WT_CLIENT_JD - 365 * ($MAX_ALIVE_AGE - 15)) { 399a25f0a04SGreg Roach return true; 400a25f0a04SGreg Roach } 401a25f0a04SGreg Roach } 402a25f0a04SGreg Roach // Check grandchildren 4034b9ff166SGreg Roach foreach ($child->getSpouseFamilies(Auth::PRIV_HIDE) as $child_family) { 4044b9ff166SGreg Roach foreach ($child_family->getChildren(Auth::PRIV_HIDE) as $grandchild) { 405a25f0a04SGreg Roach preg_match_all('/\n2 DATE (.+)/', $grandchild->gedcom, $date_matches); 406a25f0a04SGreg Roach // Assume grandchildren born after age of 30 407a25f0a04SGreg Roach foreach ($date_matches[1] as $date_match) { 408a25f0a04SGreg Roach $date = new Date($date_match); 409f5b60decSGreg Roach if ($date->isOK() && $date->maximumJulianDay() <= WT_CLIENT_JD - 365 * ($MAX_ALIVE_AGE - 30)) { 410a25f0a04SGreg Roach return true; 411a25f0a04SGreg Roach } 412a25f0a04SGreg Roach } 413a25f0a04SGreg Roach } 414a25f0a04SGreg Roach } 415a25f0a04SGreg Roach } 416a25f0a04SGreg Roach } 417a25f0a04SGreg Roach 418a25f0a04SGreg Roach return false; 419a25f0a04SGreg Roach } 420a25f0a04SGreg Roach 421a25f0a04SGreg Roach /** 422a25f0a04SGreg Roach * Find the highlighted media object for an individual 423a25f0a04SGreg Roach * 4244a9f750fSGreg Roach * @return null|MediaFile 425a25f0a04SGreg Roach */ 426c1010edaSGreg Roach public function findHighlightedMediaFile() 427c1010edaSGreg Roach { 4288d0ebef0SGreg Roach foreach ($this->facts(['OBJE']) as $fact) { 429dc124885SGreg Roach $media = $fact->target(); 430a213a63cSGreg Roach if ($media instanceof Media) { 4314a9f750fSGreg Roach foreach ($media->mediaFiles() as $media_file) { 432a213a63cSGreg Roach if ($media_file->isImage() && !$media_file->isExternal()) { 4334a9f750fSGreg Roach return $media_file; 4344a9f750fSGreg Roach } 4354a9f750fSGreg Roach } 436a25f0a04SGreg Roach } 437a25f0a04SGreg Roach } 438a25f0a04SGreg Roach 439a25f0a04SGreg Roach return null; 440a25f0a04SGreg Roach } 441a25f0a04SGreg Roach 442a25f0a04SGreg Roach /** 443a25f0a04SGreg Roach * Display the prefered image for this individual. 444a25f0a04SGreg Roach * Use an icon if no image is available. 445a25f0a04SGreg Roach * 446dce07401SGreg Roach * @param int $width Pixels 447dce07401SGreg Roach * @param int $height Pixels 448dce07401SGreg Roach * @param string $fit "crop" or "contain" 449dce07401SGreg Roach * @param string[] $attributes Additional HTML attributes 450dce07401SGreg Roach * 451a25f0a04SGreg Roach * @return string 452a25f0a04SGreg Roach */ 4538f53f488SRico Sonntag public function displayImage($width, $height, $fit, $attributes): string 454c1010edaSGreg Roach { 4554a9f750fSGreg Roach $media_file = $this->findHighlightedMediaFile(); 4564a9f750fSGreg Roach 4574a9f750fSGreg Roach if ($media_file !== null) { 4584a9f750fSGreg Roach return $media_file->displayImage($width, $height, $fit, $attributes); 459a25f0a04SGreg Roach } 4604a9f750fSGreg Roach 4614a9f750fSGreg Roach if ($this->tree->getPreference('USE_SILHOUETTE')) { 4624a9f750fSGreg Roach return '<i class="icon-silhouette-' . $this->getSex() . '"></i>'; 4634a9f750fSGreg Roach } 4644a9f750fSGreg Roach 4654a9f750fSGreg Roach return ''; 466a25f0a04SGreg Roach } 467a25f0a04SGreg Roach 468a25f0a04SGreg Roach /** 469a25f0a04SGreg Roach * Get the date of birth 470a25f0a04SGreg Roach * 471a25f0a04SGreg Roach * @return Date 472a25f0a04SGreg Roach */ 4738f53f488SRico Sonntag public function getBirthDate(): Date 474c1010edaSGreg Roach { 475a25f0a04SGreg Roach foreach ($this->getAllBirthDates() as $date) { 476a25f0a04SGreg Roach if ($date->isOK()) { 477a25f0a04SGreg Roach return $date; 478a25f0a04SGreg Roach } 479a25f0a04SGreg Roach } 480a25f0a04SGreg Roach 481a25f0a04SGreg Roach return new Date(''); 482a25f0a04SGreg Roach } 483a25f0a04SGreg Roach 484a25f0a04SGreg Roach /** 485a25f0a04SGreg Roach * Get the place of birth 486a25f0a04SGreg Roach * 48716d0b7f7SRico Sonntag * @return Place 488a25f0a04SGreg Roach */ 4898f53f488SRico Sonntag public function getBirthPlace(): Place 490c1010edaSGreg Roach { 491a25f0a04SGreg Roach foreach ($this->getAllBirthPlaces() as $place) { 492a25f0a04SGreg Roach return $place; 493a25f0a04SGreg Roach } 494a25f0a04SGreg Roach 495b20ddbf9SGreg Roach return new Place('', $this->tree); 496a25f0a04SGreg Roach } 497a25f0a04SGreg Roach 498a25f0a04SGreg Roach /** 499a25f0a04SGreg Roach * Get the year of birth 500a25f0a04SGreg Roach * 501a25f0a04SGreg Roach * @return string the year of birth 502a25f0a04SGreg Roach */ 5038f53f488SRico Sonntag public function getBirthYear(): string 504c1010edaSGreg Roach { 505f5b60decSGreg Roach return $this->getBirthDate()->minimumDate()->format('%Y'); 506a25f0a04SGreg Roach } 507a25f0a04SGreg Roach 508a25f0a04SGreg Roach /** 509a25f0a04SGreg Roach * Get the date of death 510a25f0a04SGreg Roach * 511a25f0a04SGreg Roach * @return Date 512a25f0a04SGreg Roach */ 5138f53f488SRico Sonntag public function getDeathDate(): Date 514c1010edaSGreg Roach { 515a25f0a04SGreg Roach foreach ($this->getAllDeathDates() as $date) { 516a25f0a04SGreg Roach if ($date->isOK()) { 517a25f0a04SGreg Roach return $date; 518a25f0a04SGreg Roach } 519a25f0a04SGreg Roach } 520a25f0a04SGreg Roach 521a25f0a04SGreg Roach return new Date(''); 522a25f0a04SGreg Roach } 523a25f0a04SGreg Roach 524a25f0a04SGreg Roach /** 525a25f0a04SGreg Roach * Get the place of death 526a25f0a04SGreg Roach * 52716d0b7f7SRico Sonntag * @return Place 528a25f0a04SGreg Roach */ 5298f53f488SRico Sonntag public function getDeathPlace(): Place 530c1010edaSGreg Roach { 531a25f0a04SGreg Roach foreach ($this->getAllDeathPlaces() as $place) { 532a25f0a04SGreg Roach return $place; 533a25f0a04SGreg Roach } 534a25f0a04SGreg Roach 535b20ddbf9SGreg Roach return new Place('', $this->tree); 536a25f0a04SGreg Roach } 537a25f0a04SGreg Roach 538a25f0a04SGreg Roach /** 539a25f0a04SGreg Roach * get the death year 540a25f0a04SGreg Roach * 541a25f0a04SGreg Roach * @return string the year of death 542a25f0a04SGreg Roach */ 5438f53f488SRico Sonntag public function getDeathYear(): string 544c1010edaSGreg Roach { 545f5b60decSGreg Roach return $this->getDeathDate()->minimumDate()->format('%Y'); 546a25f0a04SGreg Roach } 547a25f0a04SGreg Roach 548a25f0a04SGreg Roach /** 549a25f0a04SGreg Roach * Get the range of years in which a individual lived. e.g. “1870–”, “1870–1920”, “–1920”. 55015d603e7SGreg Roach * Provide the place and full date using a tooltip. 551a25f0a04SGreg Roach * For consistent layout in charts, etc., show just a “–” when no dates are known. 552a25f0a04SGreg Roach * Note that this is a (non-breaking) en-dash, and not a hyphen. 553a25f0a04SGreg Roach * 554a25f0a04SGreg Roach * @return string 555a25f0a04SGreg Roach */ 5568f53f488SRico Sonntag public function getLifeSpan(): string 557c1010edaSGreg Roach { 55815d603e7SGreg Roach // Just the first part of the place name 5591e9c2c49SGreg Roach $birth_place = strip_tags($this->getBirthPlace()->getShortName()); 5601e9c2c49SGreg Roach $death_place = strip_tags($this->getDeathPlace()->getShortName()); 56115d603e7SGreg Roach // Remove markup from dates 56215d603e7SGreg Roach $birth_date = strip_tags($this->getBirthDate()->display()); 56315d603e7SGreg Roach $death_date = strip_tags($this->getDeathDate()->display()); 56415d603e7SGreg Roach 565c1010edaSGreg Roach /* I18N: A range of years, e.g. “1870–”, “1870–1920”, “–1920” */ 566bbb76c12SGreg Roach return 567c1010edaSGreg Roach I18N::translate( 568a25f0a04SGreg Roach '%1$s–%2$s', 5692d4c1bedSGreg Roach '<span title="' . $birth_place . ' ' . $birth_date . '">' . $this->getBirthYear() . '</span>', 5702d4c1bedSGreg Roach '<span title="' . $death_place . ' ' . $death_date . '">' . $this->getDeathYear() . '</span>' 571a25f0a04SGreg Roach ); 572a25f0a04SGreg Roach } 573a25f0a04SGreg Roach 574a25f0a04SGreg Roach /** 575a25f0a04SGreg Roach * Get all the birth dates - for the individual lists. 576a25f0a04SGreg Roach * 577a25f0a04SGreg Roach * @return Date[] 578a25f0a04SGreg Roach */ 5798f53f488SRico Sonntag public function getAllBirthDates(): array 580c1010edaSGreg Roach { 5818d0ebef0SGreg Roach foreach (Gedcom::BIRTH_EVENTS as $event) { 5828d0ebef0SGreg Roach $tmp = $this->getAllEventDates([$event]); 583a25f0a04SGreg Roach if ($tmp) { 584a25f0a04SGreg Roach return $tmp; 585a25f0a04SGreg Roach } 586a25f0a04SGreg Roach } 587a25f0a04SGreg Roach 58813abd6f3SGreg Roach return []; 589a25f0a04SGreg Roach } 590a25f0a04SGreg Roach 591a25f0a04SGreg Roach /** 592a25f0a04SGreg Roach * Gat all the birth places - for the individual lists. 593a25f0a04SGreg Roach * 5944080d558SGreg Roach * @return Place[] 595a25f0a04SGreg Roach */ 5968f53f488SRico Sonntag public function getAllBirthPlaces(): array 597c1010edaSGreg Roach { 5988d0ebef0SGreg Roach foreach (Gedcom::BIRTH_EVENTS as $event) { 5998d0ebef0SGreg Roach $places = $this->getAllEventPlaces([$event]); 6004080d558SGreg Roach if (!empty($places)) { 6014080d558SGreg Roach return $places; 602a25f0a04SGreg Roach } 603a25f0a04SGreg Roach } 604a25f0a04SGreg Roach 60513abd6f3SGreg Roach return []; 606a25f0a04SGreg Roach } 607a25f0a04SGreg Roach 608a25f0a04SGreg Roach /** 609a25f0a04SGreg Roach * Get all the death dates - for the individual lists. 610a25f0a04SGreg Roach * 611a25f0a04SGreg Roach * @return Date[] 612a25f0a04SGreg Roach */ 6138f53f488SRico Sonntag public function getAllDeathDates(): array 614c1010edaSGreg Roach { 6158d0ebef0SGreg Roach foreach (Gedcom::DEATH_EVENTS as $event) { 6168d0ebef0SGreg Roach $tmp = $this->getAllEventDates([$event]); 617a25f0a04SGreg Roach if ($tmp) { 618a25f0a04SGreg Roach return $tmp; 619a25f0a04SGreg Roach } 620a25f0a04SGreg Roach } 621a25f0a04SGreg Roach 62213abd6f3SGreg Roach return []; 623a25f0a04SGreg Roach } 624a25f0a04SGreg Roach 625a25f0a04SGreg Roach /** 626a25f0a04SGreg Roach * Get all the death places - for the individual lists. 627a25f0a04SGreg Roach * 6284080d558SGreg Roach * @return Place[] 629a25f0a04SGreg Roach */ 6308f53f488SRico Sonntag public function getAllDeathPlaces(): array 631c1010edaSGreg Roach { 6328d0ebef0SGreg Roach foreach (Gedcom::DEATH_EVENTS as $event) { 6338d0ebef0SGreg Roach $places = $this->getAllEventPlaces([$event]); 6344080d558SGreg Roach if (!empty($places)) { 6354080d558SGreg Roach return $places; 636a25f0a04SGreg Roach } 637a25f0a04SGreg Roach } 638a25f0a04SGreg Roach 63913abd6f3SGreg Roach return []; 640a25f0a04SGreg Roach } 641a25f0a04SGreg Roach 642a25f0a04SGreg Roach /** 643a25f0a04SGreg Roach * Generate an estimate for the date of birth, based on dates of parents/children/spouses 644a25f0a04SGreg Roach * 645a25f0a04SGreg Roach * @return Date 646a25f0a04SGreg Roach */ 6478f53f488SRico Sonntag public function getEstimatedBirthDate(): Date 648c1010edaSGreg Roach { 6498f038c36SRico Sonntag if ($this->estimated_birth_date === null) { 650a25f0a04SGreg Roach foreach ($this->getAllBirthDates() as $date) { 651a25f0a04SGreg Roach if ($date->isOK()) { 6524686330aSGreg Roach $this->estimated_birth_date = $date; 653a25f0a04SGreg Roach break; 654a25f0a04SGreg Roach } 655a25f0a04SGreg Roach } 6568f038c36SRico Sonntag if ($this->estimated_birth_date === null) { 65713abd6f3SGreg Roach $min = []; 65813abd6f3SGreg Roach $max = []; 659a25f0a04SGreg Roach $tmp = $this->getDeathDate(); 660f5b60decSGreg Roach if ($tmp->isOK()) { 661f5b60decSGreg Roach $min[] = $tmp->minimumJulianDay() - $this->tree->getPreference('MAX_ALIVE_AGE') * 365; 662f5b60decSGreg Roach $max[] = $tmp->maximumJulianDay(); 663a25f0a04SGreg Roach } 664a25f0a04SGreg Roach foreach ($this->getChildFamilies() as $family) { 665a25f0a04SGreg Roach $tmp = $family->getMarriageDate(); 666f5b60decSGreg Roach if ($tmp->isOK()) { 667f5b60decSGreg Roach $min[] = $tmp->maximumJulianDay() - 365 * 1; 668f5b60decSGreg Roach $max[] = $tmp->minimumJulianDay() + 365 * 30; 669a25f0a04SGreg Roach } 6702e5b4452SGreg Roach $husband = $family->getHusband(); 6712e5b4452SGreg Roach if ($husband instanceof Individual) { 6722e5b4452SGreg Roach $tmp = $husband->getBirthDate(); 673f5b60decSGreg Roach if ($tmp->isOK()) { 674f5b60decSGreg Roach $min[] = $tmp->maximumJulianDay() + 365 * 15; 675f5b60decSGreg Roach $max[] = $tmp->minimumJulianDay() + 365 * 65; 676a25f0a04SGreg Roach } 677a25f0a04SGreg Roach } 6782e5b4452SGreg Roach $wife = $family->getWife(); 6792e5b4452SGreg Roach if ($wife instanceof Individual) { 6802e5b4452SGreg Roach $tmp = $wife->getBirthDate(); 681f5b60decSGreg Roach if ($tmp->isOK()) { 682f5b60decSGreg Roach $min[] = $tmp->maximumJulianDay() + 365 * 15; 683f5b60decSGreg Roach $max[] = $tmp->minimumJulianDay() + 365 * 45; 684a25f0a04SGreg Roach } 685a25f0a04SGreg Roach } 686a25f0a04SGreg Roach foreach ($family->getChildren() as $child) { 687a25f0a04SGreg Roach $tmp = $child->getBirthDate(); 688f5b60decSGreg Roach if ($tmp->isOK()) { 689f5b60decSGreg Roach $min[] = $tmp->maximumJulianDay() - 365 * 30; 690f5b60decSGreg Roach $max[] = $tmp->minimumJulianDay() + 365 * 30; 691a25f0a04SGreg Roach } 692a25f0a04SGreg Roach } 693a25f0a04SGreg Roach } 694a25f0a04SGreg Roach foreach ($this->getSpouseFamilies() as $family) { 695a25f0a04SGreg Roach $tmp = $family->getMarriageDate(); 696f5b60decSGreg Roach if ($tmp->isOK()) { 697f5b60decSGreg Roach $min[] = $tmp->maximumJulianDay() - 365 * 45; 698f5b60decSGreg Roach $max[] = $tmp->minimumJulianDay() - 365 * 15; 699a25f0a04SGreg Roach } 700a25f0a04SGreg Roach $spouse = $family->getSpouse($this); 701a25f0a04SGreg Roach if ($spouse) { 702a25f0a04SGreg Roach $tmp = $spouse->getBirthDate(); 703f5b60decSGreg Roach if ($tmp->isOK()) { 704f5b60decSGreg Roach $min[] = $tmp->maximumJulianDay() - 365 * 25; 705f5b60decSGreg Roach $max[] = $tmp->minimumJulianDay() + 365 * 25; 706a25f0a04SGreg Roach } 707a25f0a04SGreg Roach } 708a25f0a04SGreg Roach foreach ($family->getChildren() as $child) { 709a25f0a04SGreg Roach $tmp = $child->getBirthDate(); 710f5b60decSGreg Roach if ($tmp->isOK()) { 711f5b60decSGreg Roach $min[] = $tmp->maximumJulianDay() - 365 * ($this->getSex() == 'F' ? 45 : 65); 712f5b60decSGreg Roach $max[] = $tmp->minimumJulianDay() - 365 * 15; 713a25f0a04SGreg Roach } 714a25f0a04SGreg Roach } 715a25f0a04SGreg Roach } 716a25f0a04SGreg Roach if ($min && $max) { 71759f2f229SGreg Roach $gregorian_calendar = new GregorianCalendar(); 718a25f0a04SGreg Roach 71965e02381SGreg Roach [$year] = $gregorian_calendar->jdToYmd(intdiv(max($min) + min($max), 2)); 7204686330aSGreg Roach $this->estimated_birth_date = new Date('EST ' . $year); 721a25f0a04SGreg Roach } else { 7224686330aSGreg Roach $this->estimated_birth_date = new Date(''); // always return a date object 723a25f0a04SGreg Roach } 724a25f0a04SGreg Roach } 725a25f0a04SGreg Roach } 726a25f0a04SGreg Roach 7274686330aSGreg Roach return $this->estimated_birth_date; 728a25f0a04SGreg Roach } 729a25f0a04SGreg Roach 730a25f0a04SGreg Roach /** 731a25f0a04SGreg Roach * Generate an estimated date of death. 732a25f0a04SGreg Roach * 733a25f0a04SGreg Roach * @return Date 734a25f0a04SGreg Roach */ 7358f53f488SRico Sonntag public function getEstimatedDeathDate(): Date 736c1010edaSGreg Roach { 7374686330aSGreg Roach if ($this->estimated_death_date === null) { 738a25f0a04SGreg Roach foreach ($this->getAllDeathDates() as $date) { 739a25f0a04SGreg Roach if ($date->isOK()) { 7404686330aSGreg Roach $this->estimated_death_date = $date; 741a25f0a04SGreg Roach break; 742a25f0a04SGreg Roach } 743a25f0a04SGreg Roach } 7444686330aSGreg Roach if ($this->estimated_death_date === null) { 745f5b60decSGreg Roach if ($this->getEstimatedBirthDate()->minimumJulianDay()) { 746c4b3e5a2SGreg Roach $max_alive_age = (int) $this->tree->getPreference('MAX_ALIVE_AGE'); 7474686330aSGreg Roach $this->estimated_death_date = $this->getEstimatedBirthDate()->addYears($max_alive_age, 'BEF'); 748a25f0a04SGreg Roach } else { 7494686330aSGreg Roach $this->estimated_death_date = new Date(''); // always return a date object 750a25f0a04SGreg Roach } 751a25f0a04SGreg Roach } 752a25f0a04SGreg Roach } 753a25f0a04SGreg Roach 7544686330aSGreg Roach return $this->estimated_death_date; 755a25f0a04SGreg Roach } 756a25f0a04SGreg Roach 757a25f0a04SGreg Roach /** 758a25f0a04SGreg Roach * Get the sex - M F or U 759a25f0a04SGreg Roach * Use the un-privatised gedcom record. We call this function during 760a25f0a04SGreg Roach * the privatize-gedcom function, and we are allowed to know this. 761a25f0a04SGreg Roach * 762a25f0a04SGreg Roach * @return string 763a25f0a04SGreg Roach */ 764c1010edaSGreg Roach public function getSex() 765c1010edaSGreg Roach { 766a25f0a04SGreg Roach if (preg_match('/\n1 SEX ([MF])/', $this->gedcom . $this->pending, $match)) { 767a25f0a04SGreg Roach return $match[1]; 768a25f0a04SGreg Roach } 769b2ce94c6SRico Sonntag 770b2ce94c6SRico Sonntag return 'U'; 771a25f0a04SGreg Roach } 772a25f0a04SGreg Roach 773a25f0a04SGreg Roach /** 774a25f0a04SGreg Roach * Get the individual’s sex image 775a25f0a04SGreg Roach * 776a25f0a04SGreg Roach * @param string $size 777a25f0a04SGreg Roach * 778a25f0a04SGreg Roach * @return string 779a25f0a04SGreg Roach */ 7808f53f488SRico Sonntag public function getSexImage($size = 'small'): string 781c1010edaSGreg Roach { 782a25f0a04SGreg Roach return self::sexImage($this->getSex(), $size); 783a25f0a04SGreg Roach } 784a25f0a04SGreg Roach 785a25f0a04SGreg Roach /** 786a25f0a04SGreg Roach * Generate a sex icon/image 787a25f0a04SGreg Roach * 788a25f0a04SGreg Roach * @param string $sex 789a25f0a04SGreg Roach * @param string $size 790a25f0a04SGreg Roach * 791a25f0a04SGreg Roach * @return string 792a25f0a04SGreg Roach */ 7938f53f488SRico Sonntag public static function sexImage($sex, $size = 'small'): string 794c1010edaSGreg Roach { 795a25f0a04SGreg Roach return '<i class="icon-sex_' . strtolower($sex) . '_' . ($size == 'small' ? '9x9' : '15x15') . '"></i>'; 796a25f0a04SGreg Roach } 797a25f0a04SGreg Roach 798a25f0a04SGreg Roach /** 799a25f0a04SGreg Roach * Generate the CSS class to be used for drawing this individual 800a25f0a04SGreg Roach * 801a25f0a04SGreg Roach * @return string 802a25f0a04SGreg Roach */ 8038f53f488SRico Sonntag public function getBoxStyle(): string 804c1010edaSGreg Roach { 805c1010edaSGreg Roach $tmp = [ 806c1010edaSGreg Roach 'M' => '', 807c1010edaSGreg Roach 'F' => 'F', 808c1010edaSGreg Roach 'U' => 'NN', 809c1010edaSGreg Roach ]; 810a25f0a04SGreg Roach 811a25f0a04SGreg Roach return 'person_box' . $tmp[$this->getSex()]; 812a25f0a04SGreg Roach } 813a25f0a04SGreg Roach 814a25f0a04SGreg Roach /** 815a25f0a04SGreg Roach * Get a list of this individual’s spouse families 816a25f0a04SGreg Roach * 817cbc1590aSGreg Roach * @param int|null $access_level 818a25f0a04SGreg Roach * 819a25f0a04SGreg Roach * @return Family[] 820a25f0a04SGreg Roach */ 8218f53f488SRico Sonntag public function getSpouseFamilies($access_level = null): array 822c1010edaSGreg Roach { 8234b9ff166SGreg Roach if ($access_level === null) { 8244b9ff166SGreg Roach $access_level = Auth::accessLevel($this->tree); 8254b9ff166SGreg Roach } 8264b9ff166SGreg Roach 827acf76a54SGreg Roach $SHOW_PRIVATE_RELATIONSHIPS = (bool) $this->tree->getPreference('SHOW_PRIVATE_RELATIONSHIPS'); 828a25f0a04SGreg Roach 82913abd6f3SGreg Roach $families = []; 8308d0ebef0SGreg Roach foreach ($this->facts(['FAMS'], false, $access_level, $SHOW_PRIVATE_RELATIONSHIPS) as $fact) { 831dc124885SGreg Roach $family = $fact->target(); 832e24444eeSGreg Roach if ($family instanceof Family && ($SHOW_PRIVATE_RELATIONSHIPS || $family->canShow($access_level))) { 833a25f0a04SGreg Roach $families[] = $family; 834a25f0a04SGreg Roach } 835a25f0a04SGreg Roach } 836a25f0a04SGreg Roach 837a25f0a04SGreg Roach return $families; 838a25f0a04SGreg Roach } 839a25f0a04SGreg Roach 840a25f0a04SGreg Roach /** 841a25f0a04SGreg Roach * Get the current spouse of this individual. 842a25f0a04SGreg Roach * 843a25f0a04SGreg Roach * Where an individual has multiple spouses, assume they are stored 844a25f0a04SGreg Roach * in chronological order, and take the last one found. 845a25f0a04SGreg Roach * 846a25f0a04SGreg Roach * @return Individual|null 847a25f0a04SGreg Roach */ 848c1010edaSGreg Roach public function getCurrentSpouse() 849c1010edaSGreg Roach { 850a25f0a04SGreg Roach $tmp = $this->getSpouseFamilies(); 851a25f0a04SGreg Roach $family = end($tmp); 852a25f0a04SGreg Roach if ($family) { 853a25f0a04SGreg Roach return $family->getSpouse($this); 854a25f0a04SGreg Roach } 855b2ce94c6SRico Sonntag 856b2ce94c6SRico Sonntag return null; 857a25f0a04SGreg Roach } 858a25f0a04SGreg Roach 859a25f0a04SGreg Roach /** 860a25f0a04SGreg Roach * Count the children belonging to this individual. 861a25f0a04SGreg Roach * 862cbc1590aSGreg Roach * @return int 863a25f0a04SGreg Roach */ 864c1010edaSGreg Roach public function getNumberOfChildren() 865c1010edaSGreg Roach { 8667d0db648SGreg Roach if (preg_match('/\n1 NCHI (\d+)(?:\n|$)/', $this->gedcom(), $match)) { 8673dc7bbe9SGreg Roach return (int) $match[1]; 868b2ce94c6SRico Sonntag } 869b2ce94c6SRico Sonntag 87013abd6f3SGreg Roach $children = []; 871a25f0a04SGreg Roach foreach ($this->getSpouseFamilies() as $fam) { 872a25f0a04SGreg Roach foreach ($fam->getChildren() as $child) { 873c0935879SGreg Roach $children[$child->xref()] = true; 874a25f0a04SGreg Roach } 875a25f0a04SGreg Roach } 876a25f0a04SGreg Roach 877a25f0a04SGreg Roach return count($children); 878a25f0a04SGreg Roach } 879a25f0a04SGreg Roach 880a25f0a04SGreg Roach /** 881a25f0a04SGreg Roach * Get a list of this individual’s child families (i.e. their parents). 882a25f0a04SGreg Roach * 883cbc1590aSGreg Roach * @param int|null $access_level 884a25f0a04SGreg Roach * 885a25f0a04SGreg Roach * @return Family[] 886a25f0a04SGreg Roach */ 8878f53f488SRico Sonntag public function getChildFamilies($access_level = null): array 888c1010edaSGreg Roach { 8894b9ff166SGreg Roach if ($access_level === null) { 8904b9ff166SGreg Roach $access_level = Auth::accessLevel($this->tree); 8914b9ff166SGreg Roach } 8924b9ff166SGreg Roach 893acf76a54SGreg Roach $SHOW_PRIVATE_RELATIONSHIPS = (bool) $this->tree->getPreference('SHOW_PRIVATE_RELATIONSHIPS'); 894a25f0a04SGreg Roach 89513abd6f3SGreg Roach $families = []; 8968d0ebef0SGreg Roach foreach ($this->facts(['FAMC'], false, $access_level, $SHOW_PRIVATE_RELATIONSHIPS) as $fact) { 897dc124885SGreg Roach $family = $fact->target(); 898e24444eeSGreg Roach if ($family instanceof Family && ($SHOW_PRIVATE_RELATIONSHIPS || $family->canShow($access_level))) { 899a25f0a04SGreg Roach $families[] = $family; 900a25f0a04SGreg Roach } 901a25f0a04SGreg Roach } 902a25f0a04SGreg Roach 903a25f0a04SGreg Roach return $families; 904a25f0a04SGreg Roach } 905a25f0a04SGreg Roach 906a25f0a04SGreg Roach /** 907a25f0a04SGreg Roach * Get the preferred parents for this individual. 908a25f0a04SGreg Roach * 909a25f0a04SGreg Roach * An individual may multiple parents (e.g. birth, adopted, disputed). 910a25f0a04SGreg Roach * The preferred family record is: 911a25f0a04SGreg Roach * (a) the first one with an explicit tag "_PRIMARY Y" 912a25f0a04SGreg Roach * (b) the first one with a pedigree of "birth" 913a25f0a04SGreg Roach * (c) the first one with no pedigree (default is "birth") 914a25f0a04SGreg Roach * (d) the first one found 915a25f0a04SGreg Roach * 916a25f0a04SGreg Roach * @return Family|null 917a25f0a04SGreg Roach */ 918c1010edaSGreg Roach public function getPrimaryChildFamily() 919c1010edaSGreg Roach { 920a25f0a04SGreg Roach $families = $this->getChildFamilies(); 921a25f0a04SGreg Roach switch (count($families)) { 922a25f0a04SGreg Roach case 0: 923a25f0a04SGreg Roach return null; 924a25f0a04SGreg Roach case 1: 92515d603e7SGreg Roach return $families[0]; 926a25f0a04SGreg Roach default: 927a25f0a04SGreg Roach // If there is more than one FAMC record, choose the preferred parents: 928a25f0a04SGreg Roach // a) records with '2 _PRIMARY' 92974e78bfaSJonathan Jaubart foreach ($families as $fam) { 930c0935879SGreg Roach $famid = $fam->xref(); 9317d0db648SGreg Roach if (preg_match("/\n1 FAMC @{$famid}@\n(?:[2-9].*\n)*(?:2 _PRIMARY Y)/", $this->gedcom())) { 932a25f0a04SGreg Roach return $fam; 933a25f0a04SGreg Roach } 934a25f0a04SGreg Roach } 935a25f0a04SGreg Roach // b) records with '2 PEDI birt' 93674e78bfaSJonathan Jaubart foreach ($families as $fam) { 937c0935879SGreg Roach $famid = $fam->xref(); 9387d0db648SGreg Roach if (preg_match("/\n1 FAMC @{$famid}@\n(?:[2-9].*\n)*(?:2 PEDI birth)/", $this->gedcom())) { 939a25f0a04SGreg Roach return $fam; 940a25f0a04SGreg Roach } 941a25f0a04SGreg Roach } 942a25f0a04SGreg Roach // c) records with no '2 PEDI' 94374e78bfaSJonathan Jaubart foreach ($families as $fam) { 944c0935879SGreg Roach $famid = $fam->xref(); 9457d0db648SGreg Roach if (!preg_match("/\n1 FAMC @{$famid}@\n(?:[2-9].*\n)*(?:2 PEDI)/", $this->gedcom())) { 946a25f0a04SGreg Roach return $fam; 947a25f0a04SGreg Roach } 948a25f0a04SGreg Roach } 949a25f0a04SGreg Roach 950a25f0a04SGreg Roach // d) any record 95115d603e7SGreg Roach return $families[0]; 952a25f0a04SGreg Roach } 953a25f0a04SGreg Roach } 954a25f0a04SGreg Roach 955a25f0a04SGreg Roach /** 956a25f0a04SGreg Roach * Get a list of step-parent families. 957a25f0a04SGreg Roach * 958a25f0a04SGreg Roach * @return Family[] 959a25f0a04SGreg Roach */ 9608f53f488SRico Sonntag public function getChildStepFamilies(): array 961c1010edaSGreg Roach { 96213abd6f3SGreg Roach $step_families = []; 963a25f0a04SGreg Roach $families = $this->getChildFamilies(); 964a25f0a04SGreg Roach foreach ($families as $family) { 965a25f0a04SGreg Roach $father = $family->getHusband(); 966a25f0a04SGreg Roach if ($father) { 967a25f0a04SGreg Roach foreach ($father->getSpouseFamilies() as $step_family) { 968a25f0a04SGreg Roach if (!in_array($step_family, $families, true)) { 969a25f0a04SGreg Roach $step_families[] = $step_family; 970a25f0a04SGreg Roach } 971a25f0a04SGreg Roach } 972a25f0a04SGreg Roach } 973a25f0a04SGreg Roach $mother = $family->getWife(); 974a25f0a04SGreg Roach if ($mother) { 975a25f0a04SGreg Roach foreach ($mother->getSpouseFamilies() as $step_family) { 976a25f0a04SGreg Roach if (!in_array($step_family, $families, true)) { 977a25f0a04SGreg Roach $step_families[] = $step_family; 978a25f0a04SGreg Roach } 979a25f0a04SGreg Roach } 980a25f0a04SGreg Roach } 981a25f0a04SGreg Roach } 982a25f0a04SGreg Roach 983a25f0a04SGreg Roach return $step_families; 984a25f0a04SGreg Roach } 985a25f0a04SGreg Roach 986a25f0a04SGreg Roach /** 987a25f0a04SGreg Roach * Get a list of step-parent families. 988a25f0a04SGreg Roach * 989a25f0a04SGreg Roach * @return Family[] 990a25f0a04SGreg Roach */ 9918f53f488SRico Sonntag public function getSpouseStepFamilies(): array 992c1010edaSGreg Roach { 99313abd6f3SGreg Roach $step_families = []; 994a25f0a04SGreg Roach $families = $this->getSpouseFamilies(); 995a25f0a04SGreg Roach foreach ($families as $family) { 996a25f0a04SGreg Roach $spouse = $family->getSpouse($this); 997a25f0a04SGreg Roach if ($spouse) { 998a25f0a04SGreg Roach foreach ($family->getSpouse($this)->getSpouseFamilies() as $step_family) { 999a25f0a04SGreg Roach if (!in_array($step_family, $families, true)) { 1000a25f0a04SGreg Roach $step_families[] = $step_family; 1001a25f0a04SGreg Roach } 1002a25f0a04SGreg Roach } 1003a25f0a04SGreg Roach } 1004a25f0a04SGreg Roach } 1005a25f0a04SGreg Roach 1006a25f0a04SGreg Roach return $step_families; 1007a25f0a04SGreg Roach } 1008a25f0a04SGreg Roach 1009a25f0a04SGreg Roach /** 1010a25f0a04SGreg Roach * A label for a parental family group 1011a25f0a04SGreg Roach * 1012a25f0a04SGreg Roach * @param Family $family 1013a25f0a04SGreg Roach * 1014a25f0a04SGreg Roach * @return string 1015a25f0a04SGreg Roach */ 1016c1010edaSGreg Roach public function getChildFamilyLabel(Family $family) 1017c1010edaSGreg Roach { 10187d0db648SGreg Roach if (preg_match('/\n1 FAMC @' . $family->xref() . '@(?:\n[2-9].*)*\n2 PEDI (.+)/', $this->gedcom(), $match)) { 1019a25f0a04SGreg Roach // A specified pedigree 1020764a01d9SGreg Roach return GedcomCodePedi::getChildFamilyLabel($match[1]); 1021b2ce94c6SRico Sonntag } 1022b2ce94c6SRico Sonntag 1023a25f0a04SGreg Roach // Default (birth) pedigree 1024764a01d9SGreg Roach return GedcomCodePedi::getChildFamilyLabel(''); 1025a25f0a04SGreg Roach } 1026a25f0a04SGreg Roach 1027a25f0a04SGreg Roach /** 1028a25f0a04SGreg Roach * Create a label for a step family 1029a25f0a04SGreg Roach * 1030a25f0a04SGreg Roach * @param Family $step_family 1031a25f0a04SGreg Roach * 1032a25f0a04SGreg Roach * @return string 1033a25f0a04SGreg Roach */ 10348f53f488SRico Sonntag public function getStepFamilyLabel(Family $step_family): string 1035c1010edaSGreg Roach { 1036a25f0a04SGreg Roach foreach ($this->getChildFamilies() as $family) { 1037a25f0a04SGreg Roach if ($family !== $step_family) { 1038a25f0a04SGreg Roach // Must be a step-family 1039a25f0a04SGreg Roach foreach ($family->getSpouses() as $parent) { 1040a25f0a04SGreg Roach foreach ($step_family->getSpouses() as $step_parent) { 1041a25f0a04SGreg Roach if ($parent === $step_parent) { 1042a25f0a04SGreg Roach // One common parent - must be a step family 1043a25f0a04SGreg Roach if ($parent->getSex() == 'M') { 1044a25f0a04SGreg Roach // Father’s family with someone else 1045a25f0a04SGreg Roach if ($step_family->getSpouse($step_parent)) { 1046a25f0a04SGreg Roach /* I18N: A step-family. %s is an individual’s name */ 1047bbb76c12SGreg Roach return I18N::translate('Father’s family with %s', $step_family->getSpouse($step_parent)->getFullName()); 1048b2ce94c6SRico Sonntag } 1049b2ce94c6SRico Sonntag 1050a25f0a04SGreg Roach /* I18N: A step-family. */ 1051bbb76c12SGreg Roach return I18N::translate('Father’s family with an unknown individual'); 1052a25f0a04SGreg Roach } 1053b2ce94c6SRico Sonntag 1054a25f0a04SGreg Roach // Mother’s family with someone else 1055a25f0a04SGreg Roach if ($step_family->getSpouse($step_parent)) { 1056a25f0a04SGreg Roach /* I18N: A step-family. %s is an individual’s name */ 1057bbb76c12SGreg Roach return I18N::translate('Mother’s family with %s', $step_family->getSpouse($step_parent)->getFullName()); 1058b2ce94c6SRico Sonntag } 1059b2ce94c6SRico Sonntag 1060a25f0a04SGreg Roach /* I18N: A step-family. */ 1061bbb76c12SGreg Roach return I18N::translate('Mother’s family with an unknown individual'); 1062a25f0a04SGreg Roach } 1063a25f0a04SGreg Roach } 1064a25f0a04SGreg Roach } 1065a25f0a04SGreg Roach } 1066a25f0a04SGreg Roach } 1067a25f0a04SGreg Roach 1068a25f0a04SGreg Roach // Perahps same parents - but a different family record? 1069a25f0a04SGreg Roach return I18N::translate('Family with parents'); 1070a25f0a04SGreg Roach } 1071a25f0a04SGreg Roach 1072225e381fSGreg Roach /** 1073225e381fSGreg Roach * Get the description for the family. 1074225e381fSGreg Roach * 1075225e381fSGreg Roach * For example, "XXX's family with new wife". 1076225e381fSGreg Roach * 1077225e381fSGreg Roach * @param Family $family 1078225e381fSGreg Roach * 1079225e381fSGreg Roach * @return string 1080225e381fSGreg Roach */ 1081c1010edaSGreg Roach public function getSpouseFamilyLabel(Family $family) 1082c1010edaSGreg Roach { 1083225e381fSGreg Roach $spouse = $family->getSpouse($this); 1084225e381fSGreg Roach if ($spouse) { 1085225e381fSGreg Roach /* I18N: %s is the spouse name */ 1086bbb76c12SGreg Roach return I18N::translate('Family with %s', $spouse->getFullName()); 1087225e381fSGreg Roach } 1088b2ce94c6SRico Sonntag 1089b2ce94c6SRico Sonntag return $family->getFullName(); 1090225e381fSGreg Roach } 1091225e381fSGreg Roach 1092a25f0a04SGreg Roach /** 1093a25f0a04SGreg Roach * get primary parents names for this individual 1094a25f0a04SGreg Roach * 1095a25f0a04SGreg Roach * @param string $classname optional css class 1096a25f0a04SGreg Roach * @param string $display optional css style display 1097a25f0a04SGreg Roach * 1098a25f0a04SGreg Roach * @return string a div block with father & mother names 1099a25f0a04SGreg Roach */ 11008f53f488SRico Sonntag public function getPrimaryParentsNames($classname = '', $display = ''): string 1101c1010edaSGreg Roach { 1102a25f0a04SGreg Roach $fam = $this->getPrimaryChildFamily(); 1103a25f0a04SGreg Roach if (!$fam) { 1104a25f0a04SGreg Roach return ''; 1105a25f0a04SGreg Roach } 1106a25f0a04SGreg Roach $txt = '<div'; 1107a25f0a04SGreg Roach if ($classname) { 11084c621133SGreg Roach $txt .= ' class="' . $classname . '"'; 1109a25f0a04SGreg Roach } 1110a25f0a04SGreg Roach if ($display) { 11114c621133SGreg Roach $txt .= ' style="display:' . $display . '"'; 1112a25f0a04SGreg Roach } 1113a25f0a04SGreg Roach $txt .= '>'; 1114a25f0a04SGreg Roach $husb = $fam->getHusband(); 1115a25f0a04SGreg Roach if ($husb) { 1116a25f0a04SGreg Roach // Temporarily reset the 'prefered' display name, as we always 1117a25f0a04SGreg Roach // want the default name, not the one selected for display on the indilist. 1118a25f0a04SGreg Roach $primary = $husb->getPrimaryName(); 1119a25f0a04SGreg Roach $husb->setPrimaryName(null); 1120a25f0a04SGreg Roach /* I18N: %s is the name of an individual’s father */ 1121bbb76c12SGreg Roach $txt .= I18N::translate('Father: %s', $husb->getFullName()) . '<br>'; 1122a25f0a04SGreg Roach $husb->setPrimaryName($primary); 1123a25f0a04SGreg Roach } 1124a25f0a04SGreg Roach $wife = $fam->getWife(); 1125a25f0a04SGreg Roach if ($wife) { 1126a25f0a04SGreg Roach // Temporarily reset the 'prefered' display name, as we always 1127a25f0a04SGreg Roach // want the default name, not the one selected for display on the indilist. 1128a25f0a04SGreg Roach $primary = $wife->getPrimaryName(); 1129a25f0a04SGreg Roach $wife->setPrimaryName(null); 1130a25f0a04SGreg Roach /* I18N: %s is the name of an individual’s mother */ 1131bbb76c12SGreg Roach $txt .= I18N::translate('Mother: %s', $wife->getFullName()); 1132a25f0a04SGreg Roach $wife->setPrimaryName($primary); 1133a25f0a04SGreg Roach } 1134a25f0a04SGreg Roach $txt .= '</div>'; 1135a25f0a04SGreg Roach 1136a25f0a04SGreg Roach return $txt; 1137a25f0a04SGreg Roach } 1138a25f0a04SGreg Roach 1139a25f0a04SGreg Roach /** {@inheritdoc} */ 11408f53f488SRico Sonntag public function getFallBackName(): string 1141c1010edaSGreg Roach { 1142a25f0a04SGreg Roach return '@P.N. /@N.N./'; 1143a25f0a04SGreg Roach } 1144a25f0a04SGreg Roach 1145a25f0a04SGreg Roach /** 1146a25f0a04SGreg Roach * Convert a name record into ‘full’ and ‘sort’ versions. 1147a25f0a04SGreg Roach * Use the NAME field to generate the ‘full’ version, as the 1148a25f0a04SGreg Roach * gedcom spec says that this is the individual’s name, as they would write it. 1149a25f0a04SGreg Roach * Use the SURN field to generate the sortable names. Note that this field 1150a25f0a04SGreg Roach * may also be used for the ‘true’ surname, perhaps spelt differently to that 1151a25f0a04SGreg Roach * recorded in the NAME field. e.g. 1152a25f0a04SGreg Roach * 1153a25f0a04SGreg Roach * 1 NAME Robert /de Gliderow/ 1154a25f0a04SGreg Roach * 2 GIVN Robert 1155a25f0a04SGreg Roach * 2 SPFX de 1156a25f0a04SGreg Roach * 2 SURN CLITHEROW 1157a25f0a04SGreg Roach * 2 NICK The Bald 1158a25f0a04SGreg Roach * 1159a25f0a04SGreg Roach * full=>'Robert de Gliderow 'The Bald'' 1160a25f0a04SGreg Roach * sort=>'CLITHEROW, ROBERT' 1161a25f0a04SGreg Roach * 1162a25f0a04SGreg Roach * Handle multiple surnames, either as; 1163a25f0a04SGreg Roach * 1164a25f0a04SGreg Roach * 1 NAME Carlos /Vasquez/ y /Sante/ 1165a25f0a04SGreg Roach * or 1166a25f0a04SGreg Roach * 1 NAME Carlos /Vasquez y Sante/ 1167a25f0a04SGreg Roach * 2 GIVN Carlos 1168a25f0a04SGreg Roach * 2 SURN Vasquez,Sante 1169a25f0a04SGreg Roach * 1170a25f0a04SGreg Roach * @param string $type 1171a25f0a04SGreg Roach * @param string $full 1172a25f0a04SGreg Roach * @param string $gedcom 1173a25f0a04SGreg Roach */ 117476f666f4SGreg Roach protected function addName(string $type, string $full, string $gedcom) 1175c1010edaSGreg Roach { 1176a25f0a04SGreg Roach //////////////////////////////////////////////////////////////////////////// 1177a25f0a04SGreg Roach // Extract the structured name parts - use for "sortable" names and indexes 1178a25f0a04SGreg Roach //////////////////////////////////////////////////////////////////////////// 1179a25f0a04SGreg Roach 118076f666f4SGreg Roach $sublevel = 1 + (int) substr($gedcom, 0, 1); 1181a25f0a04SGreg Roach $GIVN = preg_match("/\n{$sublevel} GIVN (.+)/", $gedcom, $match) ? $match[1] : ''; 1182a25f0a04SGreg Roach $SURN = preg_match("/\n{$sublevel} SURN (.+)/", $gedcom, $match) ? $match[1] : ''; 1183a25f0a04SGreg Roach $NICK = preg_match("/\n{$sublevel} NICK (.+)/", $gedcom, $match) ? $match[1] : ''; 1184a25f0a04SGreg Roach 1185a25f0a04SGreg Roach // SURN is an comma-separated list of surnames... 118676f666f4SGreg Roach if ($SURN !== '') { 1187a25f0a04SGreg Roach $SURNS = preg_split('/ *, */', $SURN); 1188a25f0a04SGreg Roach } else { 118913abd6f3SGreg Roach $SURNS = []; 1190a25f0a04SGreg Roach } 119176f666f4SGreg Roach 1192a25f0a04SGreg Roach // ...so is GIVN - but nobody uses it like that 1193a25f0a04SGreg Roach $GIVN = str_replace('/ *, */', ' ', $GIVN); 1194a25f0a04SGreg Roach 1195a25f0a04SGreg Roach //////////////////////////////////////////////////////////////////////////// 1196a25f0a04SGreg Roach // Extract the components from NAME - use for the "full" names 1197a25f0a04SGreg Roach //////////////////////////////////////////////////////////////////////////// 1198a25f0a04SGreg Roach 1199a25f0a04SGreg Roach // Fix bad slashes. e.g. 'John/Smith' => 'John/Smith/' 120076f666f4SGreg Roach if (substr_count($full, '/') % 2 === 1) { 1201a25f0a04SGreg Roach $full = $full . '/'; 1202a25f0a04SGreg Roach } 1203a25f0a04SGreg Roach 1204a25f0a04SGreg Roach // GEDCOM uses "//" to indicate an unknown surname 1205a25f0a04SGreg Roach $full = preg_replace('/\/\//', '/@N.N./', $full); 1206a25f0a04SGreg Roach 1207a25f0a04SGreg Roach // Extract the surname. 1208a25f0a04SGreg Roach // Note, there may be multiple surnames, e.g. Jean /Vasquez/ y /Cortes/ 1209a25f0a04SGreg Roach if (preg_match('/\/.*\//', $full, $match)) { 1210a25f0a04SGreg Roach $surname = str_replace('/', '', $match[0]); 1211a25f0a04SGreg Roach } else { 1212a25f0a04SGreg Roach $surname = ''; 1213a25f0a04SGreg Roach } 1214a25f0a04SGreg Roach 1215a25f0a04SGreg Roach // If we don’t have a SURN record, extract it from the NAME 1216a25f0a04SGreg Roach if (!$SURNS) { 1217a25f0a04SGreg Roach if (preg_match_all('/\/([^\/]*)\//', $full, $matches)) { 1218a25f0a04SGreg Roach // There can be many surnames, each wrapped with '/' 1219a25f0a04SGreg Roach $SURNS = $matches[1]; 1220a25f0a04SGreg Roach foreach ($SURNS as $n => $SURN) { 1221a25f0a04SGreg Roach // Remove surname prefixes, such as "van de ", "d'" and "'t " (lower case only) 1222a25f0a04SGreg Roach $SURNS[$n] = preg_replace('/^(?:[a-z]+ |[a-z]+\' ?|\'[a-z]+ )+/', '', $SURN); 1223a25f0a04SGreg Roach } 1224a25f0a04SGreg Roach } else { 1225a25f0a04SGreg Roach // It is valid not to have a surname at all 122613abd6f3SGreg Roach $SURNS = ['']; 1227a25f0a04SGreg Roach } 1228a25f0a04SGreg Roach } 1229a25f0a04SGreg Roach 1230a25f0a04SGreg Roach // If we don’t have a GIVN record, extract it from the NAME 1231a25f0a04SGreg Roach if (!$GIVN) { 1232a25f0a04SGreg Roach $GIVN = preg_replace( 123313abd6f3SGreg Roach [ 1234c1010edaSGreg Roach '/ ?\/.*\/ ?/', 1235c1010edaSGreg Roach // remove surname 1236c1010edaSGreg Roach '/ ?".+"/', 1237c1010edaSGreg Roach // remove nickname 1238c1010edaSGreg Roach '/ {2,}/', 1239c1010edaSGreg Roach // multiple spaces, caused by the above 1240c1010edaSGreg Roach '/^ | $/', 1241c1010edaSGreg Roach // leading/trailing spaces, caused by the above 124213abd6f3SGreg Roach ], 124313abd6f3SGreg Roach [ 1244a25f0a04SGreg Roach ' ', 1245a25f0a04SGreg Roach ' ', 1246a25f0a04SGreg Roach ' ', 1247a25f0a04SGreg Roach '', 124813abd6f3SGreg Roach ], 1249a25f0a04SGreg Roach $full 1250a25f0a04SGreg Roach ); 1251a25f0a04SGreg Roach } 1252a25f0a04SGreg Roach 1253a25f0a04SGreg Roach // Add placeholder for unknown given name 1254a25f0a04SGreg Roach if (!$GIVN) { 1255a25f0a04SGreg Roach $GIVN = '@P.N.'; 125673f4f553SGreg Roach $pos = (int) strpos($full, '/'); 1257a25f0a04SGreg Roach $full = substr($full, 0, $pos) . '@P.N. ' . substr($full, $pos); 1258a25f0a04SGreg Roach } 1259a25f0a04SGreg Roach 12607b0e71c3SGreg Roach // GEDCOM 5.5.1 nicknames should be specificied in a NICK field 12617b0e71c3SGreg Roach // GEDCOM 5.5 nicknames should be specified in the NAME field, surrounded by quotes 1262c6f196c3SGreg Roach if ($NICK && strpos($full, '"' . $NICK . '"') === false) { 12637b0e71c3SGreg Roach // A NICK field is present, but not included in the NAME. Show it at the end. 1264c6f196c3SGreg Roach $full .= ' "' . $NICK . '"'; 1265a25f0a04SGreg Roach } 1266a25f0a04SGreg Roach 1267a25f0a04SGreg Roach // Remove slashes - they don’t get displayed 1268a25f0a04SGreg Roach // $fullNN keeps the @N.N. placeholders, for the database 1269a25f0a04SGreg Roach // $full is for display on-screen 1270a25f0a04SGreg Roach $fullNN = str_replace('/', '', $full); 1271a25f0a04SGreg Roach 1272a25f0a04SGreg Roach // Insert placeholders for any missing/unknown names 1273ad1a1cd2SGreg Roach $full = str_replace('@N.N.', I18N::translateContext('Unknown surname', '…'), $full); 1274ad1a1cd2SGreg Roach $full = str_replace('@P.N.', I18N::translateContext('Unknown given name', '…'), $full); 1275c6f196c3SGreg Roach // Format for display 1276d53324c9SGreg Roach $full = '<span class="NAME" dir="auto" translate="no">' . preg_replace('/\/([^\/]*)\//', '<span class="SURN">$1</span>', e($full)) . '</span>'; 1277acc34ea1SGreg Roach // Localise quotation marks around the nickname 127818d7a90dSGreg Roach $full = preg_replace_callback('/"([^&]*)"/', function (array $matches): string { 12798d68cabeSGreg Roach return I18N::translate('“%s”', $matches[1]); 12808d68cabeSGreg Roach }, $full); 1281a25f0a04SGreg Roach 1282c6f196c3SGreg Roach // A suffix of “*” indicates a preferred name 1283a25f0a04SGreg Roach $full = preg_replace('/([^ >]*)\*/', '<span class="starredname">\\1</span>', $full); 1284a25f0a04SGreg Roach 1285a25f0a04SGreg Roach // Remove prefered-name indicater - they don’t go in the database 1286a25f0a04SGreg Roach $GIVN = str_replace('*', '', $GIVN); 1287a25f0a04SGreg Roach $fullNN = str_replace('*', '', $fullNN); 1288a25f0a04SGreg Roach 1289ffd703eaSGreg Roach foreach ($SURNS as $SURN) { 1290a25f0a04SGreg Roach // Scottish 'Mc and Mac ' prefixes both sort under 'Mac' 1291a25f0a04SGreg Roach if (strcasecmp(substr($SURN, 0, 2), 'Mc') == 0) { 1292a25f0a04SGreg Roach $SURN = substr_replace($SURN, 'Mac', 0, 2); 1293a25f0a04SGreg Roach } elseif (strcasecmp(substr($SURN, 0, 4), 'Mac ') == 0) { 1294a25f0a04SGreg Roach $SURN = substr_replace($SURN, 'Mac', 0, 4); 1295a25f0a04SGreg Roach } 1296a25f0a04SGreg Roach 1297bdb3725aSGreg Roach $this->getAllNames[] = [ 1298a25f0a04SGreg Roach 'type' => $type, 1299a25f0a04SGreg Roach 'sort' => $SURN . ',' . $GIVN, 1300c1010edaSGreg Roach 'full' => $full, 1301c1010edaSGreg Roach // This is used for display 1302c1010edaSGreg Roach 'fullNN' => $fullNN, 1303c1010edaSGreg Roach // This goes into the database 1304c1010edaSGreg Roach 'surname' => $surname, 1305c1010edaSGreg Roach // This goes into the database 1306c1010edaSGreg Roach 'givn' => $GIVN, 1307c1010edaSGreg Roach // This goes into the database 1308c1010edaSGreg Roach 'surn' => $SURN, 1309c1010edaSGreg Roach // This goes into the database 131013abd6f3SGreg Roach ]; 1311a25f0a04SGreg Roach } 1312a25f0a04SGreg Roach } 1313a25f0a04SGreg Roach 1314a25f0a04SGreg Roach /** 131576692c8bSGreg Roach * Extract names from the GEDCOM record. 1316c7ff4153SGreg Roach * 1317c7ff4153SGreg Roach * @return void 1318a25f0a04SGreg Roach */ 1319c1010edaSGreg Roach public function extractNames() 1320c1010edaSGreg Roach { 13218f53f488SRico Sonntag $this->extractNamesFromFacts( 13228f53f488SRico Sonntag 1, 13238f53f488SRico Sonntag 'NAME', 132430158ae7SGreg Roach $this->facts( 13258d0ebef0SGreg Roach ['NAME'], 13268f53f488SRico Sonntag false, 13278f53f488SRico Sonntag Auth::accessLevel($this->tree), 13288f53f488SRico Sonntag $this->canShowName() 13298f53f488SRico Sonntag ) 13308f53f488SRico Sonntag ); 1331a25f0a04SGreg Roach } 1332a25f0a04SGreg Roach 1333a25f0a04SGreg Roach /** 1334a25f0a04SGreg Roach * Extra info to display when displaying this record in a list of 1335a25f0a04SGreg Roach * selection items or favorites. 1336a25f0a04SGreg Roach * 1337a25f0a04SGreg Roach * @return string 1338a25f0a04SGreg Roach */ 13398f53f488SRico Sonntag public function formatListDetails(): string 1340c1010edaSGreg Roach { 1341a25f0a04SGreg Roach return 13428d0ebef0SGreg Roach $this->formatFirstMajorFact(Gedcom::BIRTH_EVENTS, 1) . 13438d0ebef0SGreg Roach $this->formatFirstMajorFact(Gedcom::DEATH_EVENTS, 1); 1344a25f0a04SGreg Roach } 1345a25f0a04SGreg Roach} 1346