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; 24*39ca88baSGreg Roachuse Illuminate\Support\Collection; 25886b77daSGreg Roachuse stdClass; 26a25f0a04SGreg Roach 27a25f0a04SGreg Roach/** 2876692c8bSGreg Roach * A GEDCOM individual (INDI) object. 29a25f0a04SGreg Roach */ 30c1010edaSGreg Roachclass Individual extends GedcomRecord 31c1010edaSGreg Roach{ 3216d6367aSGreg Roach public const RECORD_TYPE = 'INDI'; 3316d6367aSGreg Roach 3416d6367aSGreg Roach protected const ROUTE_NAME = 'individual'; 35a25f0a04SGreg Roach 3676692c8bSGreg Roach /** @var int used in some lists to keep track of this individual’s generation in that list */ 3776692c8bSGreg Roach public $generation; 38a25f0a04SGreg Roach 39a25f0a04SGreg Roach /** @var Date The estimated date of birth */ 404686330aSGreg Roach private $estimated_birth_date; 41a25f0a04SGreg Roach 42a25f0a04SGreg Roach /** @var Date The estimated date of death */ 434686330aSGreg Roach private $estimated_death_date; 44a25f0a04SGreg Roach 45a25f0a04SGreg Roach /** 46886b77daSGreg Roach * A closure which will create a record from a database row. 47886b77daSGreg Roach * 48886b77daSGreg Roach * @return Closure 49886b77daSGreg Roach */ 50c0804649SGreg Roach public static function rowMapper(): Closure 51886b77daSGreg Roach { 52c0804649SGreg Roach return function (stdClass $row): Individual { 53a7a24840SGreg Roach $individual = Individual::getInstance($row->i_id, Tree::findById((int) $row->i_file), $row->i_gedcom); 54e84cf2deSGreg Roach 55e84cf2deSGreg Roach if ($row->n_num ?? null) { 56e84cf2deSGreg Roach $individual->setPrimaryName($row->n_num); 57e84cf2deSGreg Roach } 58e84cf2deSGreg Roach 59e84cf2deSGreg Roach return $individual; 60886b77daSGreg Roach }; 61886b77daSGreg Roach } 62886b77daSGreg Roach 63886b77daSGreg Roach /** 64c156e8f5SGreg Roach * A closure which will compare individuals by birth date. 65c156e8f5SGreg Roach * 66c156e8f5SGreg Roach * @return Closure 67c156e8f5SGreg Roach */ 68c156e8f5SGreg Roach public static function birthDateComparator(): Closure 69c156e8f5SGreg Roach { 70a9199cb2SGreg Roach return function (Individual $x, Individual $y): int { 71c156e8f5SGreg Roach return Date::compare($x->getEstimatedBirthDate(), $y->getEstimatedBirthDate()); 72c156e8f5SGreg Roach }; 73c156e8f5SGreg Roach } 74c156e8f5SGreg Roach 75c156e8f5SGreg Roach /** 76c156e8f5SGreg Roach * A closure which will compare individuals by death date. 77c156e8f5SGreg Roach * 78c156e8f5SGreg Roach * @return Closure 79c156e8f5SGreg Roach */ 80c156e8f5SGreg Roach public static function deathDateComparator(): Closure 81c156e8f5SGreg Roach { 82a9199cb2SGreg Roach return function (Individual $x, Individual $y): int { 83c156e8f5SGreg Roach return Date::compare($x->getEstimatedBirthDate(), $y->getEstimatedBirthDate()); 84c156e8f5SGreg Roach }; 85c156e8f5SGreg Roach } 86c156e8f5SGreg Roach 87c156e8f5SGreg Roach /** 88e71ef9d2SGreg Roach * Get an instance of an individual object. For single records, 89e71ef9d2SGreg Roach * we just receive the XREF. For bulk records (such as lists 90e71ef9d2SGreg Roach * and search results) we can receive the GEDCOM data as well. 91e71ef9d2SGreg Roach * 92e71ef9d2SGreg Roach * @param string $xref 93e71ef9d2SGreg Roach * @param Tree $tree 94e71ef9d2SGreg Roach * @param string|null $gedcom 95e71ef9d2SGreg Roach * 96e71ef9d2SGreg Roach * @throws \Exception 97e71ef9d2SGreg Roach * @return Individual|null 98e71ef9d2SGreg Roach */ 9976f666f4SGreg Roach public static function getInstance(string $xref, Tree $tree, string $gedcom = null) 100c1010edaSGreg Roach { 101e71ef9d2SGreg Roach $record = parent::getInstance($xref, $tree, $gedcom); 102e71ef9d2SGreg Roach 103e71ef9d2SGreg Roach if ($record instanceof Individual) { 104e71ef9d2SGreg Roach return $record; 105e71ef9d2SGreg Roach } 106b2ce94c6SRico Sonntag 107b2ce94c6SRico Sonntag return null; 108e71ef9d2SGreg Roach } 109e71ef9d2SGreg Roach 110e71ef9d2SGreg Roach /** 111395f0fe0SGreg Roach * Sometimes, we'll know in advance that we need to load a set of records. 112395f0fe0SGreg Roach * Typically when we load families and their members. 113395f0fe0SGreg Roach * 114395f0fe0SGreg Roach * @param Tree $tree 1154a8aaa00SScrutinizer Auto-Fixer * @param string[] $xrefs 11618d7a90dSGreg Roach * 11718d7a90dSGreg Roach * @return void 118395f0fe0SGreg Roach */ 1192e5b4452SGreg Roach public static function load(Tree $tree, array $xrefs): void 120c1010edaSGreg Roach { 1212e5b4452SGreg Roach $rows = DB::table('individuals') 1222e5b4452SGreg Roach ->where('i_file', '=', $tree->id()) 1232e5b4452SGreg Roach ->whereIn('i_id', array_unique($xrefs)) 1242e5b4452SGreg Roach ->select(['i_id AS xref', 'i_gedcom AS gedcom']) 1252e5b4452SGreg Roach ->get(); 126395f0fe0SGreg Roach 127395f0fe0SGreg Roach foreach ($rows as $row) { 128395f0fe0SGreg Roach self::getInstance($row->xref, $tree, $row->gedcom); 129395f0fe0SGreg Roach } 130395f0fe0SGreg Roach } 131395f0fe0SGreg Roach 132395f0fe0SGreg Roach /** 133a25f0a04SGreg Roach * Can the name of this record be shown? 134a25f0a04SGreg Roach * 13576692c8bSGreg Roach * @param int|null $access_level 13676692c8bSGreg Roach * 13776692c8bSGreg Roach * @return bool 138a25f0a04SGreg Roach */ 13935584196SGreg Roach public function canShowName(int $access_level = null): bool 140c1010edaSGreg Roach { 1414b9ff166SGreg Roach if ($access_level === null) { 1424b9ff166SGreg Roach $access_level = Auth::accessLevel($this->tree); 1434b9ff166SGreg Roach } 1444b9ff166SGreg Roach 145518bbdc1SGreg Roach return $this->tree->getPreference('SHOW_LIVING_NAMES') >= $access_level || $this->canShow($access_level); 146a25f0a04SGreg Roach } 147a25f0a04SGreg Roach 148a25f0a04SGreg Roach /** 14976692c8bSGreg Roach * Can this individual be shown? 150a25f0a04SGreg Roach * 15176692c8bSGreg Roach * @param int $access_level 15276692c8bSGreg Roach * 15376692c8bSGreg Roach * @return bool 154a25f0a04SGreg Roach */ 15535584196SGreg Roach protected function canShowByType(int $access_level): bool 156c1010edaSGreg Roach { 157a25f0a04SGreg Roach // Dead people... 158518bbdc1SGreg Roach if ($this->tree->getPreference('SHOW_DEAD_PEOPLE') >= $access_level && $this->isDead()) { 159a25f0a04SGreg Roach $keep_alive = false; 16054ba7dc5SGreg Roach $KEEP_ALIVE_YEARS_BIRTH = (int) $this->tree->getPreference('KEEP_ALIVE_YEARS_BIRTH'); 161a25f0a04SGreg Roach if ($KEEP_ALIVE_YEARS_BIRTH) { 1628d0ebef0SGreg Roach preg_match_all('/\n1 (?:' . implode('|', Gedcom::BIRTH_EVENTS) . ').*(?:\n[2-9].*)*(?:\n2 DATE (.+))/', $this->gedcom, $matches, PREG_SET_ORDER); 163a25f0a04SGreg Roach foreach ($matches as $match) { 164a25f0a04SGreg Roach $date = new Date($match[1]); 165a25f0a04SGreg Roach if ($date->isOK() && $date->gregorianYear() + $KEEP_ALIVE_YEARS_BIRTH > date('Y')) { 166a25f0a04SGreg Roach $keep_alive = true; 167a25f0a04SGreg Roach break; 168a25f0a04SGreg Roach } 169a25f0a04SGreg Roach } 170a25f0a04SGreg Roach } 17154ba7dc5SGreg Roach $KEEP_ALIVE_YEARS_DEATH = (int) $this->tree->getPreference('KEEP_ALIVE_YEARS_DEATH'); 172a25f0a04SGreg Roach if ($KEEP_ALIVE_YEARS_DEATH) { 1738d0ebef0SGreg Roach preg_match_all('/\n1 (?:' . implode('|', Gedcom::DEATH_EVENTS) . ').*(?:\n[2-9].*)*(?:\n2 DATE (.+))/', $this->gedcom, $matches, PREG_SET_ORDER); 174a25f0a04SGreg Roach foreach ($matches as $match) { 175a25f0a04SGreg Roach $date = new Date($match[1]); 176a25f0a04SGreg Roach if ($date->isOK() && $date->gregorianYear() + $KEEP_ALIVE_YEARS_DEATH > date('Y')) { 177a25f0a04SGreg Roach $keep_alive = true; 178a25f0a04SGreg Roach break; 179a25f0a04SGreg Roach } 180a25f0a04SGreg Roach } 181a25f0a04SGreg Roach } 182a25f0a04SGreg Roach if (!$keep_alive) { 183a25f0a04SGreg Roach return true; 184a25f0a04SGreg Roach } 185a25f0a04SGreg Roach } 186a25f0a04SGreg Roach // Consider relationship privacy (unless an admin is applying download restrictions) 18754ba7dc5SGreg Roach $user_path_length = (int) $this->tree->getUserPreference(Auth::user(), 'RELATIONSHIP_PATH_LENGTH'); 1884b9ff166SGreg Roach $gedcomid = $this->tree->getUserPreference(Auth::user(), 'gedcomid'); 18954ba7dc5SGreg Roach if ($gedcomid !== '' && $user_path_length > 0) { 1904b9ff166SGreg Roach return self::isRelated($this, $user_path_length); 191a25f0a04SGreg Roach } 192a25f0a04SGreg Roach 193a25f0a04SGreg Roach // No restriction found - show living people to members only: 1944b9ff166SGreg Roach return Auth::PRIV_USER >= $access_level; 195a25f0a04SGreg Roach } 196a25f0a04SGreg Roach 197a25f0a04SGreg Roach /** 198a25f0a04SGreg Roach * For relationship privacy calculations - is this individual a close relative? 199a25f0a04SGreg Roach * 200a25f0a04SGreg Roach * @param Individual $target 201cbc1590aSGreg Roach * @param int $distance 202a25f0a04SGreg Roach * 203cbc1590aSGreg Roach * @return bool 204a25f0a04SGreg Roach */ 2058f53f488SRico Sonntag private static function isRelated(Individual $target, $distance): bool 206c1010edaSGreg Roach { 207a25f0a04SGreg Roach static $cache = null; 208a25f0a04SGreg Roach 20906ef8e02SGreg Roach $user_individual = self::getInstance($target->tree->getUserPreference(Auth::user(), 'gedcomid'), $target->tree); 210a25f0a04SGreg Roach if ($user_individual) { 211a25f0a04SGreg Roach if (!$cache) { 21213abd6f3SGreg Roach $cache = [ 21313abd6f3SGreg Roach 0 => [$user_individual], 21413abd6f3SGreg Roach 1 => [], 21513abd6f3SGreg Roach ]; 2168d0ebef0SGreg Roach foreach ($user_individual->facts(['FAMC', 'FAMS'], false, Auth::PRIV_HIDE) as $fact) { 217dc124885SGreg Roach $family = $fact->target(); 218e24444eeSGreg Roach if ($family instanceof Family) { 219a25f0a04SGreg Roach $cache[1][] = $family; 220a25f0a04SGreg Roach } 221a25f0a04SGreg Roach } 222a25f0a04SGreg Roach } 223a25f0a04SGreg Roach } else { 224a25f0a04SGreg Roach // No individual linked to this account? Cannot use relationship privacy. 225a25f0a04SGreg Roach return true; 226a25f0a04SGreg Roach } 227a25f0a04SGreg Roach 228a25f0a04SGreg Roach // Double the distance, as we count the INDI-FAM and FAM-INDI links separately 229a25f0a04SGreg Roach $distance *= 2; 230a25f0a04SGreg Roach 231a25f0a04SGreg Roach // Consider each path length in turn 232a25f0a04SGreg Roach for ($n = 0; $n <= $distance; ++$n) { 233a25f0a04SGreg Roach if (array_key_exists($n, $cache)) { 234a25f0a04SGreg Roach // We have already calculated all records with this length 235a25f0a04SGreg Roach if ($n % 2 == 0 && in_array($target, $cache[$n], true)) { 236a25f0a04SGreg Roach return true; 237a25f0a04SGreg Roach } 238a25f0a04SGreg Roach } else { 239a25f0a04SGreg Roach // Need to calculate these paths 24013abd6f3SGreg Roach $cache[$n] = []; 241a25f0a04SGreg Roach if ($n % 2 == 0) { 242a25f0a04SGreg Roach // Add FAM->INDI links 243a25f0a04SGreg Roach foreach ($cache[$n - 1] as $family) { 2448d0ebef0SGreg Roach foreach ($family->facts(['HUSB', 'WIFE', 'CHIL'], false, Auth::PRIV_HIDE) as $fact) { 245dc124885SGreg Roach $individual = $fact->target(); 246a25f0a04SGreg Roach // Don’t backtrack 247e24444eeSGreg Roach if ($individual instanceof Individual && !in_array($individual, $cache[$n - 2], true)) { 248a25f0a04SGreg Roach $cache[$n][] = $individual; 249a25f0a04SGreg Roach } 250a25f0a04SGreg Roach } 251a25f0a04SGreg Roach } 252a25f0a04SGreg Roach if (in_array($target, $cache[$n], true)) { 253a25f0a04SGreg Roach return true; 254a25f0a04SGreg Roach } 255a25f0a04SGreg Roach } else { 256a25f0a04SGreg Roach // Add INDI->FAM links 257a25f0a04SGreg Roach foreach ($cache[$n - 1] as $individual) { 2588d0ebef0SGreg Roach foreach ($individual->facts(['FAMC', 'FAMS'], false, Auth::PRIV_HIDE) as $fact) { 259dc124885SGreg Roach $family = $fact->target(); 260a25f0a04SGreg Roach // Don’t backtrack 261e24444eeSGreg Roach if ($family instanceof Family && !in_array($family, $cache[$n - 2], true)) { 262a25f0a04SGreg Roach $cache[$n][] = $family; 263a25f0a04SGreg Roach } 264a25f0a04SGreg Roach } 265a25f0a04SGreg Roach } 266a25f0a04SGreg Roach } 267a25f0a04SGreg Roach } 268a25f0a04SGreg Roach } 269a25f0a04SGreg Roach 270a25f0a04SGreg Roach return false; 271a25f0a04SGreg Roach } 272a25f0a04SGreg Roach 27376692c8bSGreg Roach /** 27476692c8bSGreg Roach * Generate a private version of this record 27576692c8bSGreg Roach * 27676692c8bSGreg Roach * @param int $access_level 27776692c8bSGreg Roach * 27876692c8bSGreg Roach * @return string 27976692c8bSGreg Roach */ 2803c90ed31SGreg Roach protected function createPrivateGedcomRecord(int $access_level): string 281c1010edaSGreg Roach { 282acf76a54SGreg Roach $SHOW_PRIVATE_RELATIONSHIPS = (bool) $this->tree->getPreference('SHOW_PRIVATE_RELATIONSHIPS'); 283a25f0a04SGreg Roach 284a25f0a04SGreg Roach $rec = '0 @' . $this->xref . '@ INDI'; 285518bbdc1SGreg Roach if ($this->tree->getPreference('SHOW_LIVING_NAMES') >= $access_level) { 286a25f0a04SGreg Roach // Show all the NAME tags, including subtags 2878d0ebef0SGreg Roach foreach ($this->facts(['NAME']) as $fact) { 288138ca96cSGreg Roach $rec .= "\n" . $fact->gedcom(); 289a25f0a04SGreg Roach } 290a25f0a04SGreg Roach } 291a25f0a04SGreg Roach // Just show the 1 FAMC/FAMS tag, not any subtags, which may contain private data 2928d0ebef0SGreg Roach preg_match_all('/\n1 (?:FAMC|FAMS) @(' . Gedcom::REGEX_XREF . ')@/', $this->gedcom, $matches, PREG_SET_ORDER); 293a25f0a04SGreg Roach foreach ($matches as $match) { 29424ec66ceSGreg Roach $rela = Family::getInstance($match[1], $this->tree); 295a25f0a04SGreg Roach if ($rela && ($SHOW_PRIVATE_RELATIONSHIPS || $rela->canShow($access_level))) { 296a25f0a04SGreg Roach $rec .= $match[0]; 297a25f0a04SGreg Roach } 298a25f0a04SGreg Roach } 299a25f0a04SGreg Roach // Don’t privatize sex. 300a25f0a04SGreg Roach if (preg_match('/\n1 SEX [MFU]/', $this->gedcom, $match)) { 301a25f0a04SGreg Roach $rec .= $match[0]; 302a25f0a04SGreg Roach } 303a25f0a04SGreg Roach 304a25f0a04SGreg Roach return $rec; 305a25f0a04SGreg Roach } 306a25f0a04SGreg Roach 30776692c8bSGreg Roach /** 30876692c8bSGreg Roach * Fetch data from the database 30976692c8bSGreg Roach * 31076692c8bSGreg Roach * @param string $xref 31176692c8bSGreg Roach * @param int $tree_id 31276692c8bSGreg Roach * 31376692c8bSGreg Roach * @return null|string 31476692c8bSGreg Roach */ 31525e95e6eSGreg Roach protected static function fetchGedcomRecord(string $xref, int $tree_id) 316c1010edaSGreg Roach { 3172e5b4452SGreg Roach return DB::table('individuals') 3182e5b4452SGreg Roach ->where('i_id', '=', $xref) 3192e5b4452SGreg Roach ->where('i_file', '=', $tree_id) 3202e5b4452SGreg Roach ->value('i_gedcom'); 321a25f0a04SGreg Roach } 322a25f0a04SGreg Roach 323a25f0a04SGreg Roach /** 324a25f0a04SGreg Roach * Calculate whether this individual is living or dead. 325a25f0a04SGreg Roach * If not known to be dead, then assume living. 326a25f0a04SGreg Roach * 327cbc1590aSGreg Roach * @return bool 328a25f0a04SGreg Roach */ 3298f53f488SRico Sonntag public function isDead(): bool 330c1010edaSGreg Roach { 331c4b3e5a2SGreg Roach $MAX_ALIVE_AGE = (int) $this->tree->getPreference('MAX_ALIVE_AGE'); 332a25f0a04SGreg Roach 333a25f0a04SGreg Roach // "1 DEAT Y" or "1 DEAT/2 DATE" or "1 DEAT/2 PLAC" 3348d0ebef0SGreg Roach if (preg_match('/\n1 (?:' . implode('|', Gedcom::DEATH_EVENTS) . ')(?: Y|(?:\n[2-9].+)*\n2 (DATE|PLAC) )/', $this->gedcom)) { 335a25f0a04SGreg Roach return true; 336a25f0a04SGreg Roach } 337a25f0a04SGreg Roach 338a25f0a04SGreg Roach // If any event occured more than $MAX_ALIVE_AGE years ago, then assume the individual is dead 339a25f0a04SGreg Roach if (preg_match_all('/\n2 DATE (.+)/', $this->gedcom, $date_matches)) { 340a25f0a04SGreg Roach foreach ($date_matches[1] as $date_match) { 341a25f0a04SGreg Roach $date = new Date($date_match); 342f5b60decSGreg Roach if ($date->isOK() && $date->maximumJulianDay() <= WT_CLIENT_JD - 365 * $MAX_ALIVE_AGE) { 343a25f0a04SGreg Roach return true; 344a25f0a04SGreg Roach } 345a25f0a04SGreg Roach } 346a25f0a04SGreg Roach // The individual has one or more dated events. All are less than $MAX_ALIVE_AGE years ago. 347a25f0a04SGreg Roach // If one of these is a birth, the individual must be alive. 348a25f0a04SGreg Roach if (preg_match('/\n1 BIRT(?:\n[2-9].+)*\n2 DATE /', $this->gedcom)) { 349a25f0a04SGreg Roach return false; 350a25f0a04SGreg Roach } 351a25f0a04SGreg Roach } 352a25f0a04SGreg Roach 353a25f0a04SGreg Roach // If we found no conclusive dates then check the dates of close relatives. 354a25f0a04SGreg Roach 355a25f0a04SGreg Roach // Check parents (birth and adopted) 356*39ca88baSGreg Roach foreach ($this->childFamilies(Auth::PRIV_HIDE) as $family) { 357*39ca88baSGreg Roach foreach ($family->spouses(Auth::PRIV_HIDE) as $parent) { 358a25f0a04SGreg Roach // Assume parents are no more than 45 years older than their children 359a25f0a04SGreg Roach preg_match_all('/\n2 DATE (.+)/', $parent->gedcom, $date_matches); 360a25f0a04SGreg Roach foreach ($date_matches[1] as $date_match) { 361a25f0a04SGreg Roach $date = new Date($date_match); 362f5b60decSGreg Roach if ($date->isOK() && $date->maximumJulianDay() <= WT_CLIENT_JD - 365 * ($MAX_ALIVE_AGE + 45)) { 363a25f0a04SGreg Roach return true; 364a25f0a04SGreg Roach } 365a25f0a04SGreg Roach } 366a25f0a04SGreg Roach } 367a25f0a04SGreg Roach } 368a25f0a04SGreg Roach 369a25f0a04SGreg Roach // Check spouses 370*39ca88baSGreg Roach foreach ($this->spouseFamilies(Auth::PRIV_HIDE) as $family) { 371a25f0a04SGreg Roach preg_match_all('/\n2 DATE (.+)/', $family->gedcom, $date_matches); 372a25f0a04SGreg Roach foreach ($date_matches[1] as $date_match) { 373a25f0a04SGreg Roach $date = new Date($date_match); 374a25f0a04SGreg Roach // Assume marriage occurs after age of 10 375f5b60decSGreg Roach if ($date->isOK() && $date->maximumJulianDay() <= WT_CLIENT_JD - 365 * ($MAX_ALIVE_AGE - 10)) { 376a25f0a04SGreg Roach return true; 377a25f0a04SGreg Roach } 378a25f0a04SGreg Roach } 379a25f0a04SGreg Roach // Check spouse dates 380*39ca88baSGreg Roach $spouse = $family->spouse($this, Auth::PRIV_HIDE); 381a25f0a04SGreg Roach if ($spouse) { 382a25f0a04SGreg Roach preg_match_all('/\n2 DATE (.+)/', $spouse->gedcom, $date_matches); 383a25f0a04SGreg Roach foreach ($date_matches[1] as $date_match) { 384a25f0a04SGreg Roach $date = new Date($date_match); 385a25f0a04SGreg Roach // Assume max age difference between spouses of 40 years 386f5b60decSGreg Roach if ($date->isOK() && $date->maximumJulianDay() <= WT_CLIENT_JD - 365 * ($MAX_ALIVE_AGE + 40)) { 387a25f0a04SGreg Roach return true; 388a25f0a04SGreg Roach } 389a25f0a04SGreg Roach } 390a25f0a04SGreg Roach } 391a25f0a04SGreg Roach // Check child dates 392*39ca88baSGreg Roach foreach ($family->children(Auth::PRIV_HIDE) as $child) { 393a25f0a04SGreg Roach preg_match_all('/\n2 DATE (.+)/', $child->gedcom, $date_matches); 394a25f0a04SGreg Roach // Assume children born after age of 15 395a25f0a04SGreg Roach foreach ($date_matches[1] as $date_match) { 396a25f0a04SGreg Roach $date = new Date($date_match); 397f5b60decSGreg Roach if ($date->isOK() && $date->maximumJulianDay() <= WT_CLIENT_JD - 365 * ($MAX_ALIVE_AGE - 15)) { 398a25f0a04SGreg Roach return true; 399a25f0a04SGreg Roach } 400a25f0a04SGreg Roach } 401a25f0a04SGreg Roach // Check grandchildren 402*39ca88baSGreg Roach foreach ($child->spouseFamilies(Auth::PRIV_HIDE) as $child_family) { 403*39ca88baSGreg Roach foreach ($child_family->children(Auth::PRIV_HIDE) as $grandchild) { 404a25f0a04SGreg Roach preg_match_all('/\n2 DATE (.+)/', $grandchild->gedcom, $date_matches); 405a25f0a04SGreg Roach // Assume grandchildren born after age of 30 406a25f0a04SGreg Roach foreach ($date_matches[1] as $date_match) { 407a25f0a04SGreg Roach $date = new Date($date_match); 408f5b60decSGreg Roach if ($date->isOK() && $date->maximumJulianDay() <= WT_CLIENT_JD - 365 * ($MAX_ALIVE_AGE - 30)) { 409a25f0a04SGreg Roach return true; 410a25f0a04SGreg Roach } 411a25f0a04SGreg Roach } 412a25f0a04SGreg Roach } 413a25f0a04SGreg Roach } 414a25f0a04SGreg Roach } 415a25f0a04SGreg Roach } 416a25f0a04SGreg Roach 417a25f0a04SGreg Roach return false; 418a25f0a04SGreg Roach } 419a25f0a04SGreg Roach 420a25f0a04SGreg Roach /** 421a25f0a04SGreg Roach * Find the highlighted media object for an individual 422a25f0a04SGreg Roach * 4234a9f750fSGreg Roach * @return null|MediaFile 424a25f0a04SGreg Roach */ 425c1010edaSGreg Roach public function findHighlightedMediaFile() 426c1010edaSGreg Roach { 4278d0ebef0SGreg Roach foreach ($this->facts(['OBJE']) as $fact) { 428dc124885SGreg Roach $media = $fact->target(); 429a213a63cSGreg Roach if ($media instanceof Media) { 4304a9f750fSGreg Roach foreach ($media->mediaFiles() as $media_file) { 431a213a63cSGreg Roach if ($media_file->isImage() && !$media_file->isExternal()) { 4324a9f750fSGreg Roach return $media_file; 4334a9f750fSGreg Roach } 4344a9f750fSGreg Roach } 435a25f0a04SGreg Roach } 436a25f0a04SGreg Roach } 437a25f0a04SGreg Roach 438a25f0a04SGreg Roach return null; 439a25f0a04SGreg Roach } 440a25f0a04SGreg Roach 441a25f0a04SGreg Roach /** 442a25f0a04SGreg Roach * Display the prefered image for this individual. 443a25f0a04SGreg Roach * Use an icon if no image is available. 444a25f0a04SGreg Roach * 445dce07401SGreg Roach * @param int $width Pixels 446dce07401SGreg Roach * @param int $height Pixels 447dce07401SGreg Roach * @param string $fit "crop" or "contain" 448dce07401SGreg Roach * @param string[] $attributes Additional HTML attributes 449dce07401SGreg Roach * 450a25f0a04SGreg Roach * @return string 451a25f0a04SGreg Roach */ 4528f53f488SRico Sonntag public function displayImage($width, $height, $fit, $attributes): string 453c1010edaSGreg Roach { 4544a9f750fSGreg Roach $media_file = $this->findHighlightedMediaFile(); 4554a9f750fSGreg Roach 4564a9f750fSGreg Roach if ($media_file !== null) { 4574a9f750fSGreg Roach return $media_file->displayImage($width, $height, $fit, $attributes); 458a25f0a04SGreg Roach } 4594a9f750fSGreg Roach 4604a9f750fSGreg Roach if ($this->tree->getPreference('USE_SILHOUETTE')) { 461*39ca88baSGreg Roach return '<i class="icon-silhouette-' . $this->sex() . '"></i>'; 4624a9f750fSGreg Roach } 4634a9f750fSGreg Roach 4644a9f750fSGreg Roach return ''; 465a25f0a04SGreg Roach } 466a25f0a04SGreg Roach 467a25f0a04SGreg Roach /** 468a25f0a04SGreg Roach * Get the date of birth 469a25f0a04SGreg Roach * 470a25f0a04SGreg Roach * @return Date 471a25f0a04SGreg Roach */ 4728f53f488SRico Sonntag public function getBirthDate(): Date 473c1010edaSGreg Roach { 474a25f0a04SGreg Roach foreach ($this->getAllBirthDates() as $date) { 475a25f0a04SGreg Roach if ($date->isOK()) { 476a25f0a04SGreg Roach return $date; 477a25f0a04SGreg Roach } 478a25f0a04SGreg Roach } 479a25f0a04SGreg Roach 480a25f0a04SGreg Roach return new Date(''); 481a25f0a04SGreg Roach } 482a25f0a04SGreg Roach 483a25f0a04SGreg Roach /** 484a25f0a04SGreg Roach * Get the place of birth 485a25f0a04SGreg Roach * 48616d0b7f7SRico Sonntag * @return Place 487a25f0a04SGreg Roach */ 4888f53f488SRico Sonntag public function getBirthPlace(): Place 489c1010edaSGreg Roach { 490a25f0a04SGreg Roach foreach ($this->getAllBirthPlaces() as $place) { 491a25f0a04SGreg Roach return $place; 492a25f0a04SGreg Roach } 493a25f0a04SGreg Roach 494b20ddbf9SGreg Roach return new Place('', $this->tree); 495a25f0a04SGreg Roach } 496a25f0a04SGreg Roach 497a25f0a04SGreg Roach /** 498a25f0a04SGreg Roach * Get the year of birth 499a25f0a04SGreg Roach * 500a25f0a04SGreg Roach * @return string the year of birth 501a25f0a04SGreg Roach */ 5028f53f488SRico Sonntag public function getBirthYear(): string 503c1010edaSGreg Roach { 504f5b60decSGreg Roach return $this->getBirthDate()->minimumDate()->format('%Y'); 505a25f0a04SGreg Roach } 506a25f0a04SGreg Roach 507a25f0a04SGreg Roach /** 508a25f0a04SGreg Roach * Get the date of death 509a25f0a04SGreg Roach * 510a25f0a04SGreg Roach * @return Date 511a25f0a04SGreg Roach */ 5128f53f488SRico Sonntag public function getDeathDate(): Date 513c1010edaSGreg Roach { 514a25f0a04SGreg Roach foreach ($this->getAllDeathDates() as $date) { 515a25f0a04SGreg Roach if ($date->isOK()) { 516a25f0a04SGreg Roach return $date; 517a25f0a04SGreg Roach } 518a25f0a04SGreg Roach } 519a25f0a04SGreg Roach 520a25f0a04SGreg Roach return new Date(''); 521a25f0a04SGreg Roach } 522a25f0a04SGreg Roach 523a25f0a04SGreg Roach /** 524a25f0a04SGreg Roach * Get the place of death 525a25f0a04SGreg Roach * 52616d0b7f7SRico Sonntag * @return Place 527a25f0a04SGreg Roach */ 5288f53f488SRico Sonntag public function getDeathPlace(): Place 529c1010edaSGreg Roach { 530a25f0a04SGreg Roach foreach ($this->getAllDeathPlaces() as $place) { 531a25f0a04SGreg Roach return $place; 532a25f0a04SGreg Roach } 533a25f0a04SGreg Roach 534b20ddbf9SGreg Roach return new Place('', $this->tree); 535a25f0a04SGreg Roach } 536a25f0a04SGreg Roach 537a25f0a04SGreg Roach /** 538a25f0a04SGreg Roach * get the death year 539a25f0a04SGreg Roach * 540a25f0a04SGreg Roach * @return string the year of death 541a25f0a04SGreg Roach */ 5428f53f488SRico Sonntag public function getDeathYear(): string 543c1010edaSGreg Roach { 544f5b60decSGreg Roach return $this->getDeathDate()->minimumDate()->format('%Y'); 545a25f0a04SGreg Roach } 546a25f0a04SGreg Roach 547a25f0a04SGreg Roach /** 548a25f0a04SGreg Roach * Get the range of years in which a individual lived. e.g. “1870–”, “1870–1920”, “–1920”. 54915d603e7SGreg Roach * Provide the place and full date using a tooltip. 550a25f0a04SGreg Roach * For consistent layout in charts, etc., show just a “–” when no dates are known. 551a25f0a04SGreg Roach * Note that this is a (non-breaking) en-dash, and not a hyphen. 552a25f0a04SGreg Roach * 553a25f0a04SGreg Roach * @return string 554a25f0a04SGreg Roach */ 5558f53f488SRico Sonntag public function getLifeSpan(): string 556c1010edaSGreg Roach { 55715d603e7SGreg Roach // Just the first part of the place name 558392561bbSGreg Roach $birth_place = strip_tags($this->getBirthPlace()->shortName()); 559392561bbSGreg Roach $death_place = strip_tags($this->getDeathPlace()->shortName()); 56015d603e7SGreg Roach // Remove markup from dates 56115d603e7SGreg Roach $birth_date = strip_tags($this->getBirthDate()->display()); 56215d603e7SGreg Roach $death_date = strip_tags($this->getDeathDate()->display()); 56315d603e7SGreg Roach 564c1010edaSGreg Roach /* I18N: A range of years, e.g. “1870–”, “1870–1920”, “–1920” */ 565bbb76c12SGreg Roach return 566c1010edaSGreg Roach I18N::translate( 567a25f0a04SGreg Roach '%1$s–%2$s', 5682d4c1bedSGreg Roach '<span title="' . $birth_place . ' ' . $birth_date . '">' . $this->getBirthYear() . '</span>', 5692d4c1bedSGreg Roach '<span title="' . $death_place . ' ' . $death_date . '">' . $this->getDeathYear() . '</span>' 570a25f0a04SGreg Roach ); 571a25f0a04SGreg Roach } 572a25f0a04SGreg Roach 573a25f0a04SGreg Roach /** 574a25f0a04SGreg Roach * Get all the birth dates - for the individual lists. 575a25f0a04SGreg Roach * 576a25f0a04SGreg Roach * @return Date[] 577a25f0a04SGreg Roach */ 5788f53f488SRico Sonntag public function getAllBirthDates(): array 579c1010edaSGreg Roach { 5808d0ebef0SGreg Roach foreach (Gedcom::BIRTH_EVENTS as $event) { 5818d0ebef0SGreg Roach $tmp = $this->getAllEventDates([$event]); 582a25f0a04SGreg Roach if ($tmp) { 583a25f0a04SGreg Roach return $tmp; 584a25f0a04SGreg Roach } 585a25f0a04SGreg Roach } 586a25f0a04SGreg Roach 58713abd6f3SGreg Roach return []; 588a25f0a04SGreg Roach } 589a25f0a04SGreg Roach 590a25f0a04SGreg Roach /** 591a25f0a04SGreg Roach * Gat all the birth places - for the individual lists. 592a25f0a04SGreg Roach * 5934080d558SGreg Roach * @return Place[] 594a25f0a04SGreg Roach */ 5958f53f488SRico Sonntag public function getAllBirthPlaces(): array 596c1010edaSGreg Roach { 5978d0ebef0SGreg Roach foreach (Gedcom::BIRTH_EVENTS as $event) { 5988d0ebef0SGreg Roach $places = $this->getAllEventPlaces([$event]); 5994080d558SGreg Roach if (!empty($places)) { 6004080d558SGreg Roach return $places; 601a25f0a04SGreg Roach } 602a25f0a04SGreg Roach } 603a25f0a04SGreg Roach 60413abd6f3SGreg Roach return []; 605a25f0a04SGreg Roach } 606a25f0a04SGreg Roach 607a25f0a04SGreg Roach /** 608a25f0a04SGreg Roach * Get all the death dates - for the individual lists. 609a25f0a04SGreg Roach * 610a25f0a04SGreg Roach * @return Date[] 611a25f0a04SGreg Roach */ 6128f53f488SRico Sonntag public function getAllDeathDates(): array 613c1010edaSGreg Roach { 6148d0ebef0SGreg Roach foreach (Gedcom::DEATH_EVENTS as $event) { 6158d0ebef0SGreg Roach $tmp = $this->getAllEventDates([$event]); 616a25f0a04SGreg Roach if ($tmp) { 617a25f0a04SGreg Roach return $tmp; 618a25f0a04SGreg Roach } 619a25f0a04SGreg Roach } 620a25f0a04SGreg Roach 62113abd6f3SGreg Roach return []; 622a25f0a04SGreg Roach } 623a25f0a04SGreg Roach 624a25f0a04SGreg Roach /** 625a25f0a04SGreg Roach * Get all the death places - for the individual lists. 626a25f0a04SGreg Roach * 6274080d558SGreg Roach * @return Place[] 628a25f0a04SGreg Roach */ 6298f53f488SRico Sonntag public function getAllDeathPlaces(): array 630c1010edaSGreg Roach { 6318d0ebef0SGreg Roach foreach (Gedcom::DEATH_EVENTS as $event) { 6328d0ebef0SGreg Roach $places = $this->getAllEventPlaces([$event]); 6334080d558SGreg Roach if (!empty($places)) { 6344080d558SGreg Roach return $places; 635a25f0a04SGreg Roach } 636a25f0a04SGreg Roach } 637a25f0a04SGreg Roach 63813abd6f3SGreg Roach return []; 639a25f0a04SGreg Roach } 640a25f0a04SGreg Roach 641a25f0a04SGreg Roach /** 642a25f0a04SGreg Roach * Generate an estimate for the date of birth, based on dates of parents/children/spouses 643a25f0a04SGreg Roach * 644a25f0a04SGreg Roach * @return Date 645a25f0a04SGreg Roach */ 6468f53f488SRico Sonntag public function getEstimatedBirthDate(): Date 647c1010edaSGreg Roach { 6488f038c36SRico Sonntag if ($this->estimated_birth_date === null) { 649a25f0a04SGreg Roach foreach ($this->getAllBirthDates() as $date) { 650a25f0a04SGreg Roach if ($date->isOK()) { 6514686330aSGreg Roach $this->estimated_birth_date = $date; 652a25f0a04SGreg Roach break; 653a25f0a04SGreg Roach } 654a25f0a04SGreg Roach } 6558f038c36SRico Sonntag if ($this->estimated_birth_date === null) { 65613abd6f3SGreg Roach $min = []; 65713abd6f3SGreg Roach $max = []; 658a25f0a04SGreg Roach $tmp = $this->getDeathDate(); 659f5b60decSGreg Roach if ($tmp->isOK()) { 660f5b60decSGreg Roach $min[] = $tmp->minimumJulianDay() - $this->tree->getPreference('MAX_ALIVE_AGE') * 365; 661f5b60decSGreg Roach $max[] = $tmp->maximumJulianDay(); 662a25f0a04SGreg Roach } 663*39ca88baSGreg Roach foreach ($this->childFamilies() as $family) { 664a25f0a04SGreg Roach $tmp = $family->getMarriageDate(); 665f5b60decSGreg Roach if ($tmp->isOK()) { 666f5b60decSGreg Roach $min[] = $tmp->maximumJulianDay() - 365 * 1; 667f5b60decSGreg Roach $max[] = $tmp->minimumJulianDay() + 365 * 30; 668a25f0a04SGreg Roach } 669*39ca88baSGreg Roach $husband = $family->husband(); 6702e5b4452SGreg Roach if ($husband instanceof Individual) { 6712e5b4452SGreg Roach $tmp = $husband->getBirthDate(); 672f5b60decSGreg Roach if ($tmp->isOK()) { 673f5b60decSGreg Roach $min[] = $tmp->maximumJulianDay() + 365 * 15; 674f5b60decSGreg Roach $max[] = $tmp->minimumJulianDay() + 365 * 65; 675a25f0a04SGreg Roach } 676a25f0a04SGreg Roach } 677*39ca88baSGreg Roach $wife = $family->wife(); 6782e5b4452SGreg Roach if ($wife instanceof Individual) { 6792e5b4452SGreg Roach $tmp = $wife->getBirthDate(); 680f5b60decSGreg Roach if ($tmp->isOK()) { 681f5b60decSGreg Roach $min[] = $tmp->maximumJulianDay() + 365 * 15; 682f5b60decSGreg Roach $max[] = $tmp->minimumJulianDay() + 365 * 45; 683a25f0a04SGreg Roach } 684a25f0a04SGreg Roach } 685*39ca88baSGreg Roach foreach ($family->children() as $child) { 686a25f0a04SGreg Roach $tmp = $child->getBirthDate(); 687f5b60decSGreg Roach if ($tmp->isOK()) { 688f5b60decSGreg Roach $min[] = $tmp->maximumJulianDay() - 365 * 30; 689f5b60decSGreg Roach $max[] = $tmp->minimumJulianDay() + 365 * 30; 690a25f0a04SGreg Roach } 691a25f0a04SGreg Roach } 692a25f0a04SGreg Roach } 693*39ca88baSGreg Roach foreach ($this->spouseFamilies() as $family) { 694a25f0a04SGreg Roach $tmp = $family->getMarriageDate(); 695f5b60decSGreg Roach if ($tmp->isOK()) { 696f5b60decSGreg Roach $min[] = $tmp->maximumJulianDay() - 365 * 45; 697f5b60decSGreg Roach $max[] = $tmp->minimumJulianDay() - 365 * 15; 698a25f0a04SGreg Roach } 699*39ca88baSGreg Roach $spouse = $family->spouse($this); 700a25f0a04SGreg Roach if ($spouse) { 701a25f0a04SGreg Roach $tmp = $spouse->getBirthDate(); 702f5b60decSGreg Roach if ($tmp->isOK()) { 703f5b60decSGreg Roach $min[] = $tmp->maximumJulianDay() - 365 * 25; 704f5b60decSGreg Roach $max[] = $tmp->minimumJulianDay() + 365 * 25; 705a25f0a04SGreg Roach } 706a25f0a04SGreg Roach } 707*39ca88baSGreg Roach foreach ($family->children() as $child) { 708a25f0a04SGreg Roach $tmp = $child->getBirthDate(); 709f5b60decSGreg Roach if ($tmp->isOK()) { 710*39ca88baSGreg Roach $min[] = $tmp->maximumJulianDay() - 365 * ($this->sex() == 'F' ? 45 : 65); 711f5b60decSGreg Roach $max[] = $tmp->minimumJulianDay() - 365 * 15; 712a25f0a04SGreg Roach } 713a25f0a04SGreg Roach } 714a25f0a04SGreg Roach } 715a25f0a04SGreg Roach if ($min && $max) { 71659f2f229SGreg Roach $gregorian_calendar = new GregorianCalendar(); 717a25f0a04SGreg Roach 71865e02381SGreg Roach [$year] = $gregorian_calendar->jdToYmd(intdiv(max($min) + min($max), 2)); 7194686330aSGreg Roach $this->estimated_birth_date = new Date('EST ' . $year); 720a25f0a04SGreg Roach } else { 7214686330aSGreg Roach $this->estimated_birth_date = new Date(''); // always return a date object 722a25f0a04SGreg Roach } 723a25f0a04SGreg Roach } 724a25f0a04SGreg Roach } 725a25f0a04SGreg Roach 7264686330aSGreg Roach return $this->estimated_birth_date; 727a25f0a04SGreg Roach } 728a25f0a04SGreg Roach 729a25f0a04SGreg Roach /** 730a25f0a04SGreg Roach * Generate an estimated date of death. 731a25f0a04SGreg Roach * 732a25f0a04SGreg Roach * @return Date 733a25f0a04SGreg Roach */ 7348f53f488SRico Sonntag public function getEstimatedDeathDate(): Date 735c1010edaSGreg Roach { 7364686330aSGreg Roach if ($this->estimated_death_date === null) { 737a25f0a04SGreg Roach foreach ($this->getAllDeathDates() as $date) { 738a25f0a04SGreg Roach if ($date->isOK()) { 7394686330aSGreg Roach $this->estimated_death_date = $date; 740a25f0a04SGreg Roach break; 741a25f0a04SGreg Roach } 742a25f0a04SGreg Roach } 7434686330aSGreg Roach if ($this->estimated_death_date === null) { 744f5b60decSGreg Roach if ($this->getEstimatedBirthDate()->minimumJulianDay()) { 745c4b3e5a2SGreg Roach $max_alive_age = (int) $this->tree->getPreference('MAX_ALIVE_AGE'); 7464686330aSGreg Roach $this->estimated_death_date = $this->getEstimatedBirthDate()->addYears($max_alive_age, 'BEF'); 747a25f0a04SGreg Roach } else { 7484686330aSGreg Roach $this->estimated_death_date = new Date(''); // always return a date object 749a25f0a04SGreg Roach } 750a25f0a04SGreg Roach } 751a25f0a04SGreg Roach } 752a25f0a04SGreg Roach 7534686330aSGreg Roach return $this->estimated_death_date; 754a25f0a04SGreg Roach } 755a25f0a04SGreg Roach 756a25f0a04SGreg Roach /** 757a25f0a04SGreg Roach * Get the sex - M F or U 758a25f0a04SGreg Roach * Use the un-privatised gedcom record. We call this function during 759a25f0a04SGreg Roach * the privatize-gedcom function, and we are allowed to know this. 760a25f0a04SGreg Roach * 761a25f0a04SGreg Roach * @return string 762a25f0a04SGreg Roach */ 763*39ca88baSGreg Roach public function sex() 764c1010edaSGreg Roach { 765a25f0a04SGreg Roach if (preg_match('/\n1 SEX ([MF])/', $this->gedcom . $this->pending, $match)) { 766a25f0a04SGreg Roach return $match[1]; 767a25f0a04SGreg Roach } 768b2ce94c6SRico Sonntag 769b2ce94c6SRico Sonntag return 'U'; 770a25f0a04SGreg Roach } 771a25f0a04SGreg Roach 772a25f0a04SGreg Roach /** 773a25f0a04SGreg Roach * Get the individual’s sex image 774a25f0a04SGreg Roach * 775a25f0a04SGreg Roach * @param string $size 776a25f0a04SGreg Roach * 777a25f0a04SGreg Roach * @return string 778a25f0a04SGreg Roach */ 7798f53f488SRico Sonntag public function getSexImage($size = 'small'): string 780c1010edaSGreg Roach { 781*39ca88baSGreg Roach return self::sexImage($this->sex(), $size); 782a25f0a04SGreg Roach } 783a25f0a04SGreg Roach 784a25f0a04SGreg Roach /** 785a25f0a04SGreg Roach * Generate a sex icon/image 786a25f0a04SGreg Roach * 787a25f0a04SGreg Roach * @param string $sex 788a25f0a04SGreg Roach * @param string $size 789a25f0a04SGreg Roach * 790a25f0a04SGreg Roach * @return string 791a25f0a04SGreg Roach */ 7928f53f488SRico Sonntag public static function sexImage($sex, $size = 'small'): string 793c1010edaSGreg Roach { 794242a7862SGreg Roach $image = view('icons/sex-' . $sex); 795242a7862SGreg Roach 796242a7862SGreg Roach if ($size === 'small') { 797242a7862SGreg Roach $image = '<small>' . $image . '</small>'; 798242a7862SGreg Roach } 799242a7862SGreg Roach 800242a7862SGreg Roach return $image; 801a25f0a04SGreg Roach } 802a25f0a04SGreg Roach 803a25f0a04SGreg Roach /** 804a25f0a04SGreg Roach * Generate the CSS class to be used for drawing this individual 805a25f0a04SGreg Roach * 806a25f0a04SGreg Roach * @return string 807a25f0a04SGreg Roach */ 8088f53f488SRico Sonntag public function getBoxStyle(): string 809c1010edaSGreg Roach { 810c1010edaSGreg Roach $tmp = [ 811c1010edaSGreg Roach 'M' => '', 812c1010edaSGreg Roach 'F' => 'F', 813c1010edaSGreg Roach 'U' => 'NN', 814c1010edaSGreg Roach ]; 815a25f0a04SGreg Roach 816*39ca88baSGreg Roach return 'person_box' . $tmp[$this->sex()]; 817a25f0a04SGreg Roach } 818a25f0a04SGreg Roach 819a25f0a04SGreg Roach /** 820a25f0a04SGreg Roach * Get a list of this individual’s spouse families 821a25f0a04SGreg Roach * 822cbc1590aSGreg Roach * @param int|null $access_level 823a25f0a04SGreg Roach * 824*39ca88baSGreg Roach * @return Collection|Family[] 825a25f0a04SGreg Roach */ 826*39ca88baSGreg Roach public function spouseFamilies($access_level = null): Collection 827c1010edaSGreg Roach { 8284b9ff166SGreg Roach if ($access_level === null) { 8294b9ff166SGreg Roach $access_level = Auth::accessLevel($this->tree); 8304b9ff166SGreg Roach } 8314b9ff166SGreg Roach 832acf76a54SGreg Roach $SHOW_PRIVATE_RELATIONSHIPS = (bool) $this->tree->getPreference('SHOW_PRIVATE_RELATIONSHIPS'); 833a25f0a04SGreg Roach 834*39ca88baSGreg Roach $families = new Collection(); 8358d0ebef0SGreg Roach foreach ($this->facts(['FAMS'], false, $access_level, $SHOW_PRIVATE_RELATIONSHIPS) as $fact) { 836dc124885SGreg Roach $family = $fact->target(); 837e24444eeSGreg Roach if ($family instanceof Family && ($SHOW_PRIVATE_RELATIONSHIPS || $family->canShow($access_level))) { 838*39ca88baSGreg Roach $families->push($family); 839a25f0a04SGreg Roach } 840a25f0a04SGreg Roach } 841a25f0a04SGreg Roach 842*39ca88baSGreg Roach return new Collection($families); 843a25f0a04SGreg Roach } 844a25f0a04SGreg Roach 845a25f0a04SGreg Roach /** 846a25f0a04SGreg Roach * Get the current spouse of this individual. 847a25f0a04SGreg Roach * 848a25f0a04SGreg Roach * Where an individual has multiple spouses, assume they are stored 849a25f0a04SGreg Roach * in chronological order, and take the last one found. 850a25f0a04SGreg Roach * 851a25f0a04SGreg Roach * @return Individual|null 852a25f0a04SGreg Roach */ 853c1010edaSGreg Roach public function getCurrentSpouse() 854c1010edaSGreg Roach { 855*39ca88baSGreg Roach $family = $this->spouseFamilies()->last(); 856*39ca88baSGreg Roach 857*39ca88baSGreg Roach if ($family instanceof Family) { 858*39ca88baSGreg Roach return $family->spouse($this); 859a25f0a04SGreg Roach } 860b2ce94c6SRico Sonntag 861b2ce94c6SRico Sonntag return null; 862a25f0a04SGreg Roach } 863a25f0a04SGreg Roach 864a25f0a04SGreg Roach /** 865a25f0a04SGreg Roach * Count the children belonging to this individual. 866a25f0a04SGreg Roach * 867cbc1590aSGreg Roach * @return int 868a25f0a04SGreg Roach */ 869*39ca88baSGreg Roach public function numberOfChildren() 870c1010edaSGreg Roach { 8717d0db648SGreg Roach if (preg_match('/\n1 NCHI (\d+)(?:\n|$)/', $this->gedcom(), $match)) { 8723dc7bbe9SGreg Roach return (int) $match[1]; 873b2ce94c6SRico Sonntag } 874b2ce94c6SRico Sonntag 87513abd6f3SGreg Roach $children = []; 876*39ca88baSGreg Roach foreach ($this->spouseFamilies() as $fam) { 877*39ca88baSGreg Roach foreach ($fam->children() as $child) { 878c0935879SGreg Roach $children[$child->xref()] = true; 879a25f0a04SGreg Roach } 880a25f0a04SGreg Roach } 881a25f0a04SGreg Roach 882a25f0a04SGreg Roach return count($children); 883a25f0a04SGreg Roach } 884a25f0a04SGreg Roach 885a25f0a04SGreg Roach /** 886a25f0a04SGreg Roach * Get a list of this individual’s child families (i.e. their parents). 887a25f0a04SGreg Roach * 888cbc1590aSGreg Roach * @param int|null $access_level 889a25f0a04SGreg Roach * 890*39ca88baSGreg Roach * @return Collection|Family[] 891a25f0a04SGreg Roach */ 892*39ca88baSGreg Roach public function childFamilies($access_level = null): Collection 893c1010edaSGreg Roach { 8944b9ff166SGreg Roach if ($access_level === null) { 8954b9ff166SGreg Roach $access_level = Auth::accessLevel($this->tree); 8964b9ff166SGreg Roach } 8974b9ff166SGreg Roach 898acf76a54SGreg Roach $SHOW_PRIVATE_RELATIONSHIPS = (bool) $this->tree->getPreference('SHOW_PRIVATE_RELATIONSHIPS'); 899a25f0a04SGreg Roach 900*39ca88baSGreg Roach $families = new Collection(); 901*39ca88baSGreg Roach 9028d0ebef0SGreg Roach foreach ($this->facts(['FAMC'], false, $access_level, $SHOW_PRIVATE_RELATIONSHIPS) as $fact) { 903dc124885SGreg Roach $family = $fact->target(); 904e24444eeSGreg Roach if ($family instanceof Family && ($SHOW_PRIVATE_RELATIONSHIPS || $family->canShow($access_level))) { 905*39ca88baSGreg Roach $families->push($family); 906a25f0a04SGreg Roach } 907a25f0a04SGreg Roach } 908a25f0a04SGreg Roach 909a25f0a04SGreg Roach return $families; 910a25f0a04SGreg Roach } 911a25f0a04SGreg Roach 912a25f0a04SGreg Roach /** 913a25f0a04SGreg Roach * Get the preferred parents for this individual. 914a25f0a04SGreg Roach * 915a25f0a04SGreg Roach * An individual may multiple parents (e.g. birth, adopted, disputed). 916a25f0a04SGreg Roach * The preferred family record is: 917a25f0a04SGreg Roach * (a) the first one with an explicit tag "_PRIMARY Y" 918a25f0a04SGreg Roach * (b) the first one with a pedigree of "birth" 919a25f0a04SGreg Roach * (c) the first one with no pedigree (default is "birth") 920a25f0a04SGreg Roach * (d) the first one found 921a25f0a04SGreg Roach * 922a25f0a04SGreg Roach * @return Family|null 923a25f0a04SGreg Roach */ 924*39ca88baSGreg Roach public function primaryChildFamily() 925c1010edaSGreg Roach { 926*39ca88baSGreg Roach $families = $this->childFamilies(); 927a25f0a04SGreg Roach switch (count($families)) { 928a25f0a04SGreg Roach case 0: 929a25f0a04SGreg Roach return null; 930a25f0a04SGreg Roach case 1: 93115d603e7SGreg Roach return $families[0]; 932a25f0a04SGreg Roach default: 933a25f0a04SGreg Roach // If there is more than one FAMC record, choose the preferred parents: 934a25f0a04SGreg Roach // a) records with '2 _PRIMARY' 93574e78bfaSJonathan Jaubart foreach ($families as $fam) { 936c0935879SGreg Roach $famid = $fam->xref(); 9377d0db648SGreg Roach if (preg_match("/\n1 FAMC @{$famid}@\n(?:[2-9].*\n)*(?:2 _PRIMARY Y)/", $this->gedcom())) { 938a25f0a04SGreg Roach return $fam; 939a25f0a04SGreg Roach } 940a25f0a04SGreg Roach } 941a25f0a04SGreg Roach // b) records with '2 PEDI birt' 94274e78bfaSJonathan Jaubart foreach ($families as $fam) { 943c0935879SGreg Roach $famid = $fam->xref(); 9447d0db648SGreg Roach if (preg_match("/\n1 FAMC @{$famid}@\n(?:[2-9].*\n)*(?:2 PEDI birth)/", $this->gedcom())) { 945a25f0a04SGreg Roach return $fam; 946a25f0a04SGreg Roach } 947a25f0a04SGreg Roach } 948a25f0a04SGreg Roach // c) records with no '2 PEDI' 94974e78bfaSJonathan Jaubart foreach ($families as $fam) { 950c0935879SGreg Roach $famid = $fam->xref(); 9517d0db648SGreg Roach if (!preg_match("/\n1 FAMC @{$famid}@\n(?:[2-9].*\n)*(?:2 PEDI)/", $this->gedcom())) { 952a25f0a04SGreg Roach return $fam; 953a25f0a04SGreg Roach } 954a25f0a04SGreg Roach } 955a25f0a04SGreg Roach 956a25f0a04SGreg Roach // d) any record 95715d603e7SGreg Roach return $families[0]; 958a25f0a04SGreg Roach } 959a25f0a04SGreg Roach } 960a25f0a04SGreg Roach 961a25f0a04SGreg Roach /** 962a25f0a04SGreg Roach * Get a list of step-parent families. 963a25f0a04SGreg Roach * 964a25f0a04SGreg Roach * @return Family[] 965a25f0a04SGreg Roach */ 966*39ca88baSGreg Roach public function childStepFamilies(): array 967c1010edaSGreg Roach { 96813abd6f3SGreg Roach $step_families = []; 969*39ca88baSGreg Roach $families = $this->childFamilies(); 970a25f0a04SGreg Roach foreach ($families as $family) { 971*39ca88baSGreg Roach $father = $family->husband(); 972a25f0a04SGreg Roach if ($father) { 973*39ca88baSGreg Roach foreach ($father->spouseFamilies() as $step_family) { 974*39ca88baSGreg Roach if (!$families->containsStrict($step_family)) { 975a25f0a04SGreg Roach $step_families[] = $step_family; 976a25f0a04SGreg Roach } 977a25f0a04SGreg Roach } 978a25f0a04SGreg Roach } 979*39ca88baSGreg Roach $mother = $family->wife(); 980a25f0a04SGreg Roach if ($mother) { 981*39ca88baSGreg Roach foreach ($mother->spouseFamilies() as $step_family) { 982*39ca88baSGreg Roach if (!$families->containsStrict($step_family)) { 983a25f0a04SGreg Roach $step_families[] = $step_family; 984a25f0a04SGreg Roach } 985a25f0a04SGreg Roach } 986a25f0a04SGreg Roach } 987a25f0a04SGreg Roach } 988a25f0a04SGreg Roach 989a25f0a04SGreg Roach return $step_families; 990a25f0a04SGreg Roach } 991a25f0a04SGreg Roach 992a25f0a04SGreg Roach /** 993a25f0a04SGreg Roach * Get a list of step-parent families. 994a25f0a04SGreg Roach * 995a25f0a04SGreg Roach * @return Family[] 996a25f0a04SGreg Roach */ 997*39ca88baSGreg Roach public function spouseStepFamilies(): array 998c1010edaSGreg Roach { 99913abd6f3SGreg Roach $step_families = []; 1000*39ca88baSGreg Roach $families = $this->spouseFamilies(); 1001a25f0a04SGreg Roach foreach ($families as $family) { 1002*39ca88baSGreg Roach $spouse = $family->spouse($this); 1003a25f0a04SGreg Roach if ($spouse) { 1004*39ca88baSGreg Roach foreach ($family->spouse($this)->spouseFamilies() as $step_family) { 1005*39ca88baSGreg Roach if (!$families->containsStrict($step_family)) { 1006a25f0a04SGreg Roach $step_families[] = $step_family; 1007a25f0a04SGreg Roach } 1008a25f0a04SGreg Roach } 1009a25f0a04SGreg Roach } 1010a25f0a04SGreg Roach } 1011a25f0a04SGreg Roach 1012a25f0a04SGreg Roach return $step_families; 1013a25f0a04SGreg Roach } 1014a25f0a04SGreg Roach 1015a25f0a04SGreg Roach /** 1016a25f0a04SGreg Roach * A label for a parental family group 1017a25f0a04SGreg Roach * 1018a25f0a04SGreg Roach * @param Family $family 1019a25f0a04SGreg Roach * 1020a25f0a04SGreg Roach * @return string 1021a25f0a04SGreg Roach */ 1022c1010edaSGreg Roach public function getChildFamilyLabel(Family $family) 1023c1010edaSGreg Roach { 10247d0db648SGreg Roach if (preg_match('/\n1 FAMC @' . $family->xref() . '@(?:\n[2-9].*)*\n2 PEDI (.+)/', $this->gedcom(), $match)) { 1025a25f0a04SGreg Roach // A specified pedigree 1026764a01d9SGreg Roach return GedcomCodePedi::getChildFamilyLabel($match[1]); 1027b2ce94c6SRico Sonntag } 1028b2ce94c6SRico Sonntag 1029a25f0a04SGreg Roach // Default (birth) pedigree 1030764a01d9SGreg Roach return GedcomCodePedi::getChildFamilyLabel(''); 1031a25f0a04SGreg Roach } 1032a25f0a04SGreg Roach 1033a25f0a04SGreg Roach /** 1034a25f0a04SGreg Roach * Create a label for a step family 1035a25f0a04SGreg Roach * 1036a25f0a04SGreg Roach * @param Family $step_family 1037a25f0a04SGreg Roach * 1038a25f0a04SGreg Roach * @return string 1039a25f0a04SGreg Roach */ 10408f53f488SRico Sonntag public function getStepFamilyLabel(Family $step_family): string 1041c1010edaSGreg Roach { 1042*39ca88baSGreg Roach foreach ($this->childFamilies() as $family) { 1043a25f0a04SGreg Roach if ($family !== $step_family) { 1044a25f0a04SGreg Roach // Must be a step-family 1045*39ca88baSGreg Roach foreach ($family->spouses() as $parent) { 1046*39ca88baSGreg Roach foreach ($step_family->spouses() as $step_parent) { 1047a25f0a04SGreg Roach if ($parent === $step_parent) { 1048a25f0a04SGreg Roach // One common parent - must be a step family 1049*39ca88baSGreg Roach if ($parent->sex() == 'M') { 1050a25f0a04SGreg Roach // Father’s family with someone else 1051*39ca88baSGreg Roach if ($step_family->spouse($step_parent)) { 1052a25f0a04SGreg Roach /* I18N: A step-family. %s is an individual’s name */ 1053*39ca88baSGreg Roach return I18N::translate('Father’s family with %s', $step_family->spouse($step_parent)->fullName()); 1054b2ce94c6SRico Sonntag } 1055b2ce94c6SRico Sonntag 1056a25f0a04SGreg Roach /* I18N: A step-family. */ 1057bbb76c12SGreg Roach return I18N::translate('Father’s family with an unknown individual'); 1058a25f0a04SGreg Roach } 1059b2ce94c6SRico Sonntag 1060a25f0a04SGreg Roach // Mother’s family with someone else 1061*39ca88baSGreg Roach if ($step_family->spouse($step_parent)) { 1062a25f0a04SGreg Roach /* I18N: A step-family. %s is an individual’s name */ 1063*39ca88baSGreg Roach return I18N::translate('Mother’s family with %s', $step_family->spouse($step_parent)->fullName()); 1064b2ce94c6SRico Sonntag } 1065b2ce94c6SRico Sonntag 1066a25f0a04SGreg Roach /* I18N: A step-family. */ 1067bbb76c12SGreg Roach return I18N::translate('Mother’s family with an unknown individual'); 1068a25f0a04SGreg Roach } 1069a25f0a04SGreg Roach } 1070a25f0a04SGreg Roach } 1071a25f0a04SGreg Roach } 1072a25f0a04SGreg Roach } 1073a25f0a04SGreg Roach 1074a25f0a04SGreg Roach // Perahps same parents - but a different family record? 1075a25f0a04SGreg Roach return I18N::translate('Family with parents'); 1076a25f0a04SGreg Roach } 1077a25f0a04SGreg Roach 1078225e381fSGreg Roach /** 1079225e381fSGreg Roach * Get the description for the family. 1080225e381fSGreg Roach * 1081225e381fSGreg Roach * For example, "XXX's family with new wife". 1082225e381fSGreg Roach * 1083225e381fSGreg Roach * @param Family $family 1084225e381fSGreg Roach * 1085225e381fSGreg Roach * @return string 1086225e381fSGreg Roach */ 1087c1010edaSGreg Roach public function getSpouseFamilyLabel(Family $family) 1088c1010edaSGreg Roach { 1089*39ca88baSGreg Roach $spouse = $family->spouse($this); 1090225e381fSGreg Roach if ($spouse) { 1091225e381fSGreg Roach /* I18N: %s is the spouse name */ 1092*39ca88baSGreg Roach return I18N::translate('Family with %s', $spouse->fullName()); 1093225e381fSGreg Roach } 1094b2ce94c6SRico Sonntag 1095*39ca88baSGreg Roach return $family->fullName(); 1096225e381fSGreg Roach } 1097225e381fSGreg Roach 1098a25f0a04SGreg Roach /** 1099a25f0a04SGreg Roach * get primary parents names for this individual 1100a25f0a04SGreg Roach * 1101a25f0a04SGreg Roach * @param string $classname optional css class 1102a25f0a04SGreg Roach * @param string $display optional css style display 1103a25f0a04SGreg Roach * 1104a25f0a04SGreg Roach * @return string a div block with father & mother names 1105a25f0a04SGreg Roach */ 11068f53f488SRico Sonntag public function getPrimaryParentsNames($classname = '', $display = ''): string 1107c1010edaSGreg Roach { 1108*39ca88baSGreg Roach $fam = $this->primaryChildFamily(); 1109a25f0a04SGreg Roach if (!$fam) { 1110a25f0a04SGreg Roach return ''; 1111a25f0a04SGreg Roach } 1112a25f0a04SGreg Roach $txt = '<div'; 1113a25f0a04SGreg Roach if ($classname) { 11144c621133SGreg Roach $txt .= ' class="' . $classname . '"'; 1115a25f0a04SGreg Roach } 1116a25f0a04SGreg Roach if ($display) { 11174c621133SGreg Roach $txt .= ' style="display:' . $display . '"'; 1118a25f0a04SGreg Roach } 1119a25f0a04SGreg Roach $txt .= '>'; 1120*39ca88baSGreg Roach $husb = $fam->husband(); 1121a25f0a04SGreg Roach if ($husb) { 1122a25f0a04SGreg Roach // Temporarily reset the 'prefered' display name, as we always 1123a25f0a04SGreg Roach // want the default name, not the one selected for display on the indilist. 1124a25f0a04SGreg Roach $primary = $husb->getPrimaryName(); 1125a25f0a04SGreg Roach $husb->setPrimaryName(null); 1126a25f0a04SGreg Roach /* I18N: %s is the name of an individual’s father */ 1127*39ca88baSGreg Roach $txt .= I18N::translate('Father: %s', $husb->fullName()) . '<br>'; 1128a25f0a04SGreg Roach $husb->setPrimaryName($primary); 1129a25f0a04SGreg Roach } 1130*39ca88baSGreg Roach $wife = $fam->wife(); 1131a25f0a04SGreg Roach if ($wife) { 1132a25f0a04SGreg Roach // Temporarily reset the 'prefered' display name, as we always 1133a25f0a04SGreg Roach // want the default name, not the one selected for display on the indilist. 1134a25f0a04SGreg Roach $primary = $wife->getPrimaryName(); 1135a25f0a04SGreg Roach $wife->setPrimaryName(null); 1136a25f0a04SGreg Roach /* I18N: %s is the name of an individual’s mother */ 1137*39ca88baSGreg Roach $txt .= I18N::translate('Mother: %s', $wife->fullName()); 1138a25f0a04SGreg Roach $wife->setPrimaryName($primary); 1139a25f0a04SGreg Roach } 1140a25f0a04SGreg Roach $txt .= '</div>'; 1141a25f0a04SGreg Roach 1142a25f0a04SGreg Roach return $txt; 1143a25f0a04SGreg Roach } 1144a25f0a04SGreg Roach 1145961ec755SGreg Roach /** 1146961ec755SGreg Roach * If this object has no name, what do we call it? 1147961ec755SGreg Roach * 1148961ec755SGreg Roach * @return string 1149961ec755SGreg Roach */ 11508f53f488SRico Sonntag public function getFallBackName(): string 1151c1010edaSGreg Roach { 1152a25f0a04SGreg Roach return '@P.N. /@N.N./'; 1153a25f0a04SGreg Roach } 1154a25f0a04SGreg Roach 1155a25f0a04SGreg Roach /** 1156a25f0a04SGreg Roach * Convert a name record into ‘full’ and ‘sort’ versions. 1157a25f0a04SGreg Roach * Use the NAME field to generate the ‘full’ version, as the 1158a25f0a04SGreg Roach * gedcom spec says that this is the individual’s name, as they would write it. 1159a25f0a04SGreg Roach * Use the SURN field to generate the sortable names. Note that this field 1160a25f0a04SGreg Roach * may also be used for the ‘true’ surname, perhaps spelt differently to that 1161a25f0a04SGreg Roach * recorded in the NAME field. e.g. 1162a25f0a04SGreg Roach * 1163a25f0a04SGreg Roach * 1 NAME Robert /de Gliderow/ 1164a25f0a04SGreg Roach * 2 GIVN Robert 1165a25f0a04SGreg Roach * 2 SPFX de 1166a25f0a04SGreg Roach * 2 SURN CLITHEROW 1167a25f0a04SGreg Roach * 2 NICK The Bald 1168a25f0a04SGreg Roach * 1169a25f0a04SGreg Roach * full=>'Robert de Gliderow 'The Bald'' 1170a25f0a04SGreg Roach * sort=>'CLITHEROW, ROBERT' 1171a25f0a04SGreg Roach * 1172a25f0a04SGreg Roach * Handle multiple surnames, either as; 1173a25f0a04SGreg Roach * 1174a25f0a04SGreg Roach * 1 NAME Carlos /Vasquez/ y /Sante/ 1175a25f0a04SGreg Roach * or 1176a25f0a04SGreg Roach * 1 NAME Carlos /Vasquez y Sante/ 1177a25f0a04SGreg Roach * 2 GIVN Carlos 1178a25f0a04SGreg Roach * 2 SURN Vasquez,Sante 1179a25f0a04SGreg Roach * 1180a25f0a04SGreg Roach * @param string $type 1181a25f0a04SGreg Roach * @param string $full 1182a25f0a04SGreg Roach * @param string $gedcom 1183a25f0a04SGreg Roach */ 118476f666f4SGreg Roach protected function addName(string $type, string $full, string $gedcom) 1185c1010edaSGreg Roach { 1186a25f0a04SGreg Roach //////////////////////////////////////////////////////////////////////////// 1187a25f0a04SGreg Roach // Extract the structured name parts - use for "sortable" names and indexes 1188a25f0a04SGreg Roach //////////////////////////////////////////////////////////////////////////// 1189a25f0a04SGreg Roach 119076f666f4SGreg Roach $sublevel = 1 + (int) substr($gedcom, 0, 1); 1191a25f0a04SGreg Roach $GIVN = preg_match("/\n{$sublevel} GIVN (.+)/", $gedcom, $match) ? $match[1] : ''; 1192a25f0a04SGreg Roach $SURN = preg_match("/\n{$sublevel} SURN (.+)/", $gedcom, $match) ? $match[1] : ''; 1193a25f0a04SGreg Roach $NICK = preg_match("/\n{$sublevel} NICK (.+)/", $gedcom, $match) ? $match[1] : ''; 1194a25f0a04SGreg Roach 1195a25f0a04SGreg Roach // SURN is an comma-separated list of surnames... 119676f666f4SGreg Roach if ($SURN !== '') { 1197a25f0a04SGreg Roach $SURNS = preg_split('/ *, */', $SURN); 1198a25f0a04SGreg Roach } else { 119913abd6f3SGreg Roach $SURNS = []; 1200a25f0a04SGreg Roach } 120176f666f4SGreg Roach 1202a25f0a04SGreg Roach // ...so is GIVN - but nobody uses it like that 1203a25f0a04SGreg Roach $GIVN = str_replace('/ *, */', ' ', $GIVN); 1204a25f0a04SGreg Roach 1205a25f0a04SGreg Roach //////////////////////////////////////////////////////////////////////////// 1206a25f0a04SGreg Roach // Extract the components from NAME - use for the "full" names 1207a25f0a04SGreg Roach //////////////////////////////////////////////////////////////////////////// 1208a25f0a04SGreg Roach 1209a25f0a04SGreg Roach // Fix bad slashes. e.g. 'John/Smith' => 'John/Smith/' 121076f666f4SGreg Roach if (substr_count($full, '/') % 2 === 1) { 1211a25f0a04SGreg Roach $full = $full . '/'; 1212a25f0a04SGreg Roach } 1213a25f0a04SGreg Roach 1214a25f0a04SGreg Roach // GEDCOM uses "//" to indicate an unknown surname 1215a25f0a04SGreg Roach $full = preg_replace('/\/\//', '/@N.N./', $full); 1216a25f0a04SGreg Roach 1217a25f0a04SGreg Roach // Extract the surname. 1218a25f0a04SGreg Roach // Note, there may be multiple surnames, e.g. Jean /Vasquez/ y /Cortes/ 1219a25f0a04SGreg Roach if (preg_match('/\/.*\//', $full, $match)) { 1220a25f0a04SGreg Roach $surname = str_replace('/', '', $match[0]); 1221a25f0a04SGreg Roach } else { 1222a25f0a04SGreg Roach $surname = ''; 1223a25f0a04SGreg Roach } 1224a25f0a04SGreg Roach 1225a25f0a04SGreg Roach // If we don’t have a SURN record, extract it from the NAME 1226a25f0a04SGreg Roach if (!$SURNS) { 1227a25f0a04SGreg Roach if (preg_match_all('/\/([^\/]*)\//', $full, $matches)) { 1228a25f0a04SGreg Roach // There can be many surnames, each wrapped with '/' 1229a25f0a04SGreg Roach $SURNS = $matches[1]; 1230a25f0a04SGreg Roach foreach ($SURNS as $n => $SURN) { 1231a25f0a04SGreg Roach // Remove surname prefixes, such as "van de ", "d'" and "'t " (lower case only) 1232a25f0a04SGreg Roach $SURNS[$n] = preg_replace('/^(?:[a-z]+ |[a-z]+\' ?|\'[a-z]+ )+/', '', $SURN); 1233a25f0a04SGreg Roach } 1234a25f0a04SGreg Roach } else { 1235a25f0a04SGreg Roach // It is valid not to have a surname at all 123613abd6f3SGreg Roach $SURNS = ['']; 1237a25f0a04SGreg Roach } 1238a25f0a04SGreg Roach } 1239a25f0a04SGreg Roach 1240a25f0a04SGreg Roach // If we don’t have a GIVN record, extract it from the NAME 1241a25f0a04SGreg Roach if (!$GIVN) { 1242a25f0a04SGreg Roach $GIVN = preg_replace( 124313abd6f3SGreg Roach [ 1244c1010edaSGreg Roach '/ ?\/.*\/ ?/', 1245c1010edaSGreg Roach // remove surname 1246c1010edaSGreg Roach '/ ?".+"/', 1247c1010edaSGreg Roach // remove nickname 1248c1010edaSGreg Roach '/ {2,}/', 1249c1010edaSGreg Roach // multiple spaces, caused by the above 1250c1010edaSGreg Roach '/^ | $/', 1251c1010edaSGreg Roach // leading/trailing spaces, caused by the above 125213abd6f3SGreg Roach ], 125313abd6f3SGreg Roach [ 1254a25f0a04SGreg Roach ' ', 1255a25f0a04SGreg Roach ' ', 1256a25f0a04SGreg Roach ' ', 1257a25f0a04SGreg Roach '', 125813abd6f3SGreg Roach ], 1259a25f0a04SGreg Roach $full 1260a25f0a04SGreg Roach ); 1261a25f0a04SGreg Roach } 1262a25f0a04SGreg Roach 1263a25f0a04SGreg Roach // Add placeholder for unknown given name 1264a25f0a04SGreg Roach if (!$GIVN) { 1265a25f0a04SGreg Roach $GIVN = '@P.N.'; 126673f4f553SGreg Roach $pos = (int) strpos($full, '/'); 1267a25f0a04SGreg Roach $full = substr($full, 0, $pos) . '@P.N. ' . substr($full, $pos); 1268a25f0a04SGreg Roach } 1269a25f0a04SGreg Roach 12707b0e71c3SGreg Roach // GEDCOM 5.5.1 nicknames should be specificied in a NICK field 12717b0e71c3SGreg Roach // GEDCOM 5.5 nicknames should be specified in the NAME field, surrounded by quotes 1272c6f196c3SGreg Roach if ($NICK && strpos($full, '"' . $NICK . '"') === false) { 12737b0e71c3SGreg Roach // A NICK field is present, but not included in the NAME. Show it at the end. 1274c6f196c3SGreg Roach $full .= ' "' . $NICK . '"'; 1275a25f0a04SGreg Roach } 1276a25f0a04SGreg Roach 1277a25f0a04SGreg Roach // Remove slashes - they don’t get displayed 1278a25f0a04SGreg Roach // $fullNN keeps the @N.N. placeholders, for the database 1279a25f0a04SGreg Roach // $full is for display on-screen 1280a25f0a04SGreg Roach $fullNN = str_replace('/', '', $full); 1281a25f0a04SGreg Roach 1282a25f0a04SGreg Roach // Insert placeholders for any missing/unknown names 1283ad1a1cd2SGreg Roach $full = str_replace('@N.N.', I18N::translateContext('Unknown surname', '…'), $full); 1284ad1a1cd2SGreg Roach $full = str_replace('@P.N.', I18N::translateContext('Unknown given name', '…'), $full); 1285c6f196c3SGreg Roach // Format for display 1286d53324c9SGreg Roach $full = '<span class="NAME" dir="auto" translate="no">' . preg_replace('/\/([^\/]*)\//', '<span class="SURN">$1</span>', e($full)) . '</span>'; 1287acc34ea1SGreg Roach // Localise quotation marks around the nickname 128818d7a90dSGreg Roach $full = preg_replace_callback('/"([^&]*)"/', function (array $matches): string { 12898d68cabeSGreg Roach return I18N::translate('“%s”', $matches[1]); 12908d68cabeSGreg Roach }, $full); 1291a25f0a04SGreg Roach 1292c6f196c3SGreg Roach // A suffix of “*” indicates a preferred name 1293a25f0a04SGreg Roach $full = preg_replace('/([^ >]*)\*/', '<span class="starredname">\\1</span>', $full); 1294a25f0a04SGreg Roach 1295a25f0a04SGreg Roach // Remove prefered-name indicater - they don’t go in the database 1296a25f0a04SGreg Roach $GIVN = str_replace('*', '', $GIVN); 1297a25f0a04SGreg Roach $fullNN = str_replace('*', '', $fullNN); 1298a25f0a04SGreg Roach 1299ffd703eaSGreg Roach foreach ($SURNS as $SURN) { 1300a25f0a04SGreg Roach // Scottish 'Mc and Mac ' prefixes both sort under 'Mac' 1301a25f0a04SGreg Roach if (strcasecmp(substr($SURN, 0, 2), 'Mc') == 0) { 1302a25f0a04SGreg Roach $SURN = substr_replace($SURN, 'Mac', 0, 2); 1303a25f0a04SGreg Roach } elseif (strcasecmp(substr($SURN, 0, 4), 'Mac ') == 0) { 1304a25f0a04SGreg Roach $SURN = substr_replace($SURN, 'Mac', 0, 4); 1305a25f0a04SGreg Roach } 1306a25f0a04SGreg Roach 1307bdb3725aSGreg Roach $this->getAllNames[] = [ 1308a25f0a04SGreg Roach 'type' => $type, 1309a25f0a04SGreg Roach 'sort' => $SURN . ',' . $GIVN, 1310c1010edaSGreg Roach 'full' => $full, 1311c1010edaSGreg Roach // This is used for display 1312c1010edaSGreg Roach 'fullNN' => $fullNN, 1313c1010edaSGreg Roach // This goes into the database 1314c1010edaSGreg Roach 'surname' => $surname, 1315c1010edaSGreg Roach // This goes into the database 1316c1010edaSGreg Roach 'givn' => $GIVN, 1317c1010edaSGreg Roach // This goes into the database 1318c1010edaSGreg Roach 'surn' => $SURN, 1319c1010edaSGreg Roach // This goes into the database 132013abd6f3SGreg Roach ]; 1321a25f0a04SGreg Roach } 1322a25f0a04SGreg Roach } 1323a25f0a04SGreg Roach 1324a25f0a04SGreg Roach /** 132576692c8bSGreg Roach * Extract names from the GEDCOM record. 1326c7ff4153SGreg Roach * 1327c7ff4153SGreg Roach * @return void 1328a25f0a04SGreg Roach */ 1329c1010edaSGreg Roach public function extractNames() 1330c1010edaSGreg Roach { 13318f53f488SRico Sonntag $this->extractNamesFromFacts( 13328f53f488SRico Sonntag 1, 13338f53f488SRico Sonntag 'NAME', 133430158ae7SGreg Roach $this->facts( 13358d0ebef0SGreg Roach ['NAME'], 13368f53f488SRico Sonntag false, 13378f53f488SRico Sonntag Auth::accessLevel($this->tree), 13388f53f488SRico Sonntag $this->canShowName() 13398f53f488SRico Sonntag ) 13408f53f488SRico Sonntag ); 1341a25f0a04SGreg Roach } 1342a25f0a04SGreg Roach 1343a25f0a04SGreg Roach /** 1344a25f0a04SGreg Roach * Extra info to display when displaying this record in a list of 1345a25f0a04SGreg Roach * selection items or favorites. 1346a25f0a04SGreg Roach * 1347a25f0a04SGreg Roach * @return string 1348a25f0a04SGreg Roach */ 13498f53f488SRico Sonntag public function formatListDetails(): string 1350c1010edaSGreg Roach { 1351a25f0a04SGreg Roach return 13528d0ebef0SGreg Roach $this->formatFirstMajorFact(Gedcom::BIRTH_EVENTS, 1) . 13538d0ebef0SGreg Roach $this->formatFirstMajorFact(Gedcom::DEATH_EVENTS, 1); 1354a25f0a04SGreg Roach } 1355a25f0a04SGreg Roach} 1356