1a25f0a04SGreg Roach<?php 23976b470SGreg Roach 3a25f0a04SGreg Roach/** 4a25f0a04SGreg Roach * webtrees: online genealogy 55bfc6897SGreg Roach * Copyright (C) 2022 webtrees development team 6a25f0a04SGreg Roach * This program is free software: you can redistribute it and/or modify 7a25f0a04SGreg Roach * it under the terms of the GNU General Public License as published by 8a25f0a04SGreg Roach * the Free Software Foundation, either version 3 of the License, or 9a25f0a04SGreg Roach * (at your option) any later version. 10a25f0a04SGreg Roach * This program is distributed in the hope that it will be useful, 11a25f0a04SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 12a25f0a04SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13a25f0a04SGreg Roach * GNU General Public License for more details. 14a25f0a04SGreg Roach * You should have received a copy of the GNU General Public License 1589f7189bSGreg Roach * along with this program. If not, see <https://www.gnu.org/licenses/>. 16a25f0a04SGreg Roach */ 17fcfa147eSGreg Roach 18e7f56f2aSGreg Roachdeclare(strict_types=1); 19e7f56f2aSGreg Roach 2076692c8bSGreg Roachnamespace Fisharebest\Webtrees; 2176692c8bSGreg Roach 22580a4d11SGreg Roachuse Closure; 238af6bbf8SGreg Roachuse Fisharebest\Webtrees\Services\GedcomService; 241c7a6874SGreg Roachuse Illuminate\Support\Collection; 258f5f5da8SGreg Roachuse InvalidArgumentException; 263976b470SGreg Roach 27ae71f733SGreg Roachuse function array_flip; 28ae71f733SGreg Roachuse function array_key_exists; 29ae71f733SGreg Roachuse function count; 30ae71f733SGreg Roachuse function e; 31ae71f733SGreg Roachuse function implode; 32ae71f733SGreg Roachuse function in_array; 33ae71f733SGreg Roachuse function preg_match; 34ae71f733SGreg Roachuse function preg_match_all; 35ae71f733SGreg Roachuse function preg_replace; 36dec352c1SGreg Roachuse function str_contains; 37ae71f733SGreg Roachuse function usort; 38ae71f733SGreg Roach 39ae71f733SGreg Roachuse const PREG_SET_ORDER; 40a25f0a04SGreg Roach 41a25f0a04SGreg Roach/** 4276692c8bSGreg Roach * A GEDCOM fact or event object. 43a25f0a04SGreg Roach */ 44c1010edaSGreg Roachclass Fact 45c1010edaSGreg Roach{ 4616d6367aSGreg Roach private const FACT_ORDER = [ 47bbe4546fSGreg Roach 'BIRT', 48bbe4546fSGreg Roach '_HNM', 49bbe4546fSGreg Roach 'ALIA', 50bbe4546fSGreg Roach '_AKA', 51bbe4546fSGreg Roach '_AKAN', 52bbe4546fSGreg Roach 'ADOP', 53bbe4546fSGreg Roach '_ADPF', 54bbe4546fSGreg Roach '_ADPF', 55bbe4546fSGreg Roach '_BRTM', 56bbe4546fSGreg Roach 'CHR', 57bbe4546fSGreg Roach 'BAPM', 58bbe4546fSGreg Roach 'FCOM', 59bbe4546fSGreg Roach 'CONF', 60bbe4546fSGreg Roach 'BARM', 61bbe4546fSGreg Roach 'BASM', 62bbe4546fSGreg Roach 'EDUC', 63bbe4546fSGreg Roach 'GRAD', 64bbe4546fSGreg Roach '_DEG', 65bbe4546fSGreg Roach 'EMIG', 66bbe4546fSGreg Roach 'IMMI', 67bbe4546fSGreg Roach 'NATU', 68bbe4546fSGreg Roach '_MILI', 69bbe4546fSGreg Roach '_MILT', 70bbe4546fSGreg Roach 'ENGA', 71bbe4546fSGreg Roach 'MARB', 72bbe4546fSGreg Roach 'MARC', 73bbe4546fSGreg Roach 'MARL', 74bbe4546fSGreg Roach '_MARI', 75bbe4546fSGreg Roach '_MBON', 76bbe4546fSGreg Roach 'MARR', 77bbe4546fSGreg Roach '_COML', 78bbe4546fSGreg Roach '_STAT', 79bbe4546fSGreg Roach '_SEPR', 80bbe4546fSGreg Roach 'DIVF', 81bbe4546fSGreg Roach 'MARS', 82bbe4546fSGreg Roach 'DIV', 83bbe4546fSGreg Roach 'ANUL', 84bbe4546fSGreg Roach 'CENS', 85bbe4546fSGreg Roach 'OCCU', 86bbe4546fSGreg Roach 'RESI', 87bbe4546fSGreg Roach 'PROP', 88bbe4546fSGreg Roach 'CHRA', 89bbe4546fSGreg Roach 'RETI', 90bbe4546fSGreg Roach 'FACT', 91bbe4546fSGreg Roach 'EVEN', 92bbe4546fSGreg Roach '_NMR', 93bbe4546fSGreg Roach '_NMAR', 94bbe4546fSGreg Roach 'NMR', 95bbe4546fSGreg Roach 'NCHI', 96bbe4546fSGreg Roach 'WILL', 97bbe4546fSGreg Roach '_HOL', 98bbe4546fSGreg Roach '_????_', 99bbe4546fSGreg Roach 'DEAT', 100bbe4546fSGreg Roach '_FNRL', 101bbe4546fSGreg Roach 'CREM', 102bbe4546fSGreg Roach 'BURI', 103bbe4546fSGreg Roach '_INTE', 104bbe4546fSGreg Roach '_YART', 105bbe4546fSGreg Roach '_NLIV', 106bbe4546fSGreg Roach 'PROB', 107bbe4546fSGreg Roach 'TITL', 108bbe4546fSGreg Roach 'COMM', 109bbe4546fSGreg Roach 'NATI', 110bbe4546fSGreg Roach 'CITN', 111bbe4546fSGreg Roach 'CAST', 112bbe4546fSGreg Roach 'RELI', 113bbe4546fSGreg Roach 'SSN', 114bbe4546fSGreg Roach 'IDNO', 115bbe4546fSGreg Roach 'TEMP', 116bbe4546fSGreg Roach 'SLGC', 117bbe4546fSGreg Roach 'BAPL', 118bbe4546fSGreg Roach 'CONL', 119bbe4546fSGreg Roach 'ENDL', 120bbe4546fSGreg Roach 'SLGS', 121bbe4546fSGreg Roach 'ADDR', 122bbe4546fSGreg Roach 'PHON', 123bbe4546fSGreg Roach 'EMAIL', 124bbe4546fSGreg Roach '_EMAIL', 125bbe4546fSGreg Roach 'EMAL', 126bbe4546fSGreg Roach 'FAX', 127bbe4546fSGreg Roach 'WWW', 128bbe4546fSGreg Roach 'URL', 129bbe4546fSGreg Roach '_URL', 130bbe4546fSGreg Roach 'AFN', 131bbe4546fSGreg Roach 'REFN', 132bbe4546fSGreg Roach '_PRMN', 133bbe4546fSGreg Roach 'REF', 134bbe4546fSGreg Roach 'RIN', 135bbe4546fSGreg Roach '_UID', 136bbe4546fSGreg Roach 'OBJE', 137bbe4546fSGreg Roach 'NOTE', 138bbe4546fSGreg Roach 'SOUR', 139bbe4546fSGreg Roach 'CHAN', 140bbe4546fSGreg Roach '_TODO', 141bbe4546fSGreg Roach ]; 142bbe4546fSGreg Roach 14333c746f1SGreg Roach // Unique identifier for this fact (currently implemented as a hash of the raw data). 14433c746f1SGreg Roach private string $id; 145a25f0a04SGreg Roach 14633c746f1SGreg Roach // The GEDCOM record from which this fact is taken 14733c746f1SGreg Roach private GedcomRecord $record; 148a25f0a04SGreg Roach 14933c746f1SGreg Roach // The raw GEDCOM data for this fact 15033c746f1SGreg Roach private string $gedcom; 151a25f0a04SGreg Roach 15233c746f1SGreg Roach // The GEDCOM tag for this record 15333c746f1SGreg Roach private string $tag; 154a25f0a04SGreg Roach 15533c746f1SGreg Roach private bool $pending_deletion = false; 156a25f0a04SGreg Roach 15733c746f1SGreg Roach private bool $pending_addition = false; 158a25f0a04SGreg Roach 15933c746f1SGreg Roach private Date $date; 160a25f0a04SGreg Roach 16133c746f1SGreg Roach private Place $place; 162a25f0a04SGreg Roach 163bfed30e4SGreg Roach // Used to sort facts 16433c746f1SGreg Roach public int $sortOrder; 165a25f0a04SGreg Roach 166bfed30e4SGreg Roach // Used by anniversary calculations 167bfed30e4SGreg Roach public int $jd; 168bfed30e4SGreg Roach public int $anniv; 169bfed30e4SGreg Roach 170a25f0a04SGreg Roach /** 171a25f0a04SGreg Roach * Create an event object from a gedcom fragment. 172a25f0a04SGreg Roach * We need the parent object (to check privacy) and a (pseudo) fact ID to 173a25f0a04SGreg Roach * identify the fact within the record. 174a25f0a04SGreg Roach * 175a25f0a04SGreg Roach * @param string $gedcom 176a25f0a04SGreg Roach * @param GedcomRecord $parent 177905ab80aSGreg Roach * @param string $id 178a25f0a04SGreg Roach * 1798f5f5da8SGreg Roach * @throws InvalidArgumentException 180a25f0a04SGreg Roach */ 18124f2a3afSGreg Roach public function __construct(string $gedcom, GedcomRecord $parent, string $id) 182c1010edaSGreg Roach { 1838d0ebef0SGreg Roach if (preg_match('/^1 (' . Gedcom::REGEX_TAG . ')/', $gedcom, $match)) { 184a25f0a04SGreg Roach $this->gedcom = $gedcom; 185e7766c08SGreg Roach $this->record = $parent; 186905ab80aSGreg Roach $this->id = $id; 187a25f0a04SGreg Roach $this->tag = $match[1]; 188a25f0a04SGreg Roach } else { 18952ac7b12SGreg Roach throw new InvalidArgumentException('Invalid GEDCOM data passed to Fact::_construct(' . $gedcom . ',' . $parent->xref() . ')'); 190a25f0a04SGreg Roach } 191a25f0a04SGreg Roach } 192a25f0a04SGreg Roach 193a25f0a04SGreg Roach /** 194a25f0a04SGreg Roach * Get the value of level 1 data in the fact 195a25f0a04SGreg Roach * Allow for multi-line values 196a25f0a04SGreg Roach * 197baacc364SGreg Roach * @return string 198a25f0a04SGreg Roach */ 199dfa848b8SGreg Roach public function value(): string 200c1010edaSGreg Roach { 201d247596dSGreg Roach if (preg_match('/^1 ' . $this->tag . ' ?(.*(?:\n2 CONT ?.*)*)/', $this->gedcom, $match)) { 202a25f0a04SGreg Roach return preg_replace("/\n2 CONT ?/", "\n", $match[1]); 203a25f0a04SGreg Roach } 204b2ce94c6SRico Sonntag 205b2ce94c6SRico Sonntag return ''; 206a25f0a04SGreg Roach } 207a25f0a04SGreg Roach 208a25f0a04SGreg Roach /** 209a25f0a04SGreg Roach * Get the record to which this fact links 210a25f0a04SGreg Roach * 2110d15532eSGreg Roach * @return Family|GedcomRecord|Individual|Location|Media|Note|Repository|Source|Submission|Submitter|null 212a25f0a04SGreg Roach */ 213dc124885SGreg Roach public function target() 214c1010edaSGreg Roach { 21562b52849SGreg Roach if (!preg_match('/^@(' . Gedcom::REGEX_XREF . ')@$/', $this->value(), $match)) { 21662b52849SGreg Roach return null; 21762b52849SGreg Roach } 21862b52849SGreg Roach 21962b52849SGreg Roach $xref = $match[1]; 22062b52849SGreg Roach 221a25f0a04SGreg Roach switch ($this->tag) { 222a25f0a04SGreg Roach case 'FAMC': 223a25f0a04SGreg Roach case 'FAMS': 2246b9cb339SGreg Roach return Registry::familyFactory()->make($xref, $this->record()->tree()); 225a25f0a04SGreg Roach case 'HUSB': 226a25f0a04SGreg Roach case 'WIFE': 22762b52849SGreg Roach case 'ALIA': 228a25f0a04SGreg Roach case 'CHIL': 22962b52849SGreg Roach case '_ASSO': 2306b9cb339SGreg Roach return Registry::individualFactory()->make($xref, $this->record()->tree()); 23162b52849SGreg Roach case 'ASSO': 23262b52849SGreg Roach return 2336b9cb339SGreg Roach Registry::individualFactory()->make($xref, $this->record()->tree()) ?? 2346b9cb339SGreg Roach Registry::submitterFactory()->make($xref, $this->record()->tree()); 235a25f0a04SGreg Roach case 'SOUR': 2366b9cb339SGreg Roach return Registry::sourceFactory()->make($xref, $this->record()->tree()); 237a25f0a04SGreg Roach case 'OBJE': 2386b9cb339SGreg Roach return Registry::mediaFactory()->make($xref, $this->record()->tree()); 239a25f0a04SGreg Roach case 'REPO': 2406b9cb339SGreg Roach return Registry::repositoryFactory()->make($xref, $this->record()->tree()); 241a25f0a04SGreg Roach case 'NOTE': 2426b9cb339SGreg Roach return Registry::noteFactory()->make($xref, $this->record()->tree()); 24362b52849SGreg Roach case 'ANCI': 24462b52849SGreg Roach case 'DESI': 245ffc0a61fSGreg Roach case 'SUBM': 2466b9cb339SGreg Roach return Registry::submitterFactory()->make($xref, $this->record()->tree()); 2471635452cSGreg Roach case 'SUBN': 2486b9cb339SGreg Roach return Registry::submissionFactory()->make($xref, $this->record()->tree()); 2490d15532eSGreg Roach case '_LOC': 2506b9cb339SGreg Roach return Registry::locationFactory()->make($xref, $this->record()->tree()); 251a25f0a04SGreg Roach default: 2526b9cb339SGreg Roach return Registry::gedcomRecordFactory()->make($xref, $this->record()->tree()); 253a25f0a04SGreg Roach } 254a25f0a04SGreg Roach } 255a25f0a04SGreg Roach 256a25f0a04SGreg Roach /** 257a25f0a04SGreg Roach * Get the value of level 2 data in the fact 258a25f0a04SGreg Roach * 259a25f0a04SGreg Roach * @param string $tag 260a25f0a04SGreg Roach * 261baacc364SGreg Roach * @return string 262a25f0a04SGreg Roach */ 26324f2a3afSGreg Roach public function attribute(string $tag): string 264c1010edaSGreg Roach { 265dce4f3a4SGreg Roach if (preg_match('/\n2 ' . $tag . ' ?(.*(?:(?:\n3 CONT ?.*)*)*)/', $this->gedcom, $match)) { 266*49985628SGreg Roach $value = preg_replace("/\n3 CONT ?/", "\n", $match[1]); 267*49985628SGreg Roach 268*49985628SGreg Roach return Registry::elementFactory()->make($this->tag . ':' . $tag)->canonical($value); 269a25f0a04SGreg Roach } 270b2ce94c6SRico Sonntag 271b2ce94c6SRico Sonntag return ''; 272a25f0a04SGreg Roach } 273a25f0a04SGreg Roach 274a25f0a04SGreg Roach /** 2758af6bbf8SGreg Roach * Get the PLAC:MAP:LATI for the fact. 2768af6bbf8SGreg Roach * 27790949315SGreg Roach * @return float|null 2788af6bbf8SGreg Roach */ 27990949315SGreg Roach public function latitude(): ?float 2808af6bbf8SGreg Roach { 2818af6bbf8SGreg Roach if (preg_match('/\n4 LATI (.+)/', $this->gedcom, $match)) { 2828af6bbf8SGreg Roach $gedcom_service = new GedcomService(); 2838af6bbf8SGreg Roach 2848af6bbf8SGreg Roach return $gedcom_service->readLatitude($match[1]); 2858af6bbf8SGreg Roach } 2868af6bbf8SGreg Roach 2870ec592a7SDavid Drury return null; 2888af6bbf8SGreg Roach } 2898af6bbf8SGreg Roach 2908af6bbf8SGreg Roach /** 2918af6bbf8SGreg Roach * Get the PLAC:MAP:LONG for the fact. 2928af6bbf8SGreg Roach * 29390949315SGreg Roach * @return float|null 2948af6bbf8SGreg Roach */ 29590949315SGreg Roach public function longitude(): ?float 2968af6bbf8SGreg Roach { 297819ac503SRico Sonntag if (preg_match('/\n4 LONG (.+)/', $this->gedcom, $match)) { 2988af6bbf8SGreg Roach $gedcom_service = new GedcomService(); 2998af6bbf8SGreg Roach 3008af6bbf8SGreg Roach return $gedcom_service->readLongitude($match[1]); 3018af6bbf8SGreg Roach } 3028af6bbf8SGreg Roach 3030ec592a7SDavid Drury return null; 3048af6bbf8SGreg Roach } 3058af6bbf8SGreg Roach 3068af6bbf8SGreg Roach /** 307a25f0a04SGreg Roach * Do the privacy rules allow us to display this fact to the current user 308a25f0a04SGreg Roach * 309cbc1590aSGreg Roach * @param int|null $access_level 310a25f0a04SGreg Roach * 311cbc1590aSGreg Roach * @return bool 312a25f0a04SGreg Roach */ 31335584196SGreg Roach public function canShow(int $access_level = null): bool 314c1010edaSGreg Roach { 315d9e083e7SGreg Roach $access_level = $access_level ?? Auth::accessLevel($this->record->tree()); 3164b9ff166SGreg Roach 317a25f0a04SGreg Roach // Does this record have an explicit RESN? 318dec352c1SGreg Roach if (str_contains($this->gedcom, "\n2 RESN confidential")) { 3194b9ff166SGreg Roach return Auth::PRIV_NONE >= $access_level; 320a25f0a04SGreg Roach } 321dec352c1SGreg Roach if (str_contains($this->gedcom, "\n2 RESN privacy")) { 3224b9ff166SGreg Roach return Auth::PRIV_USER >= $access_level; 323a25f0a04SGreg Roach } 324dec352c1SGreg Roach if (str_contains($this->gedcom, "\n2 RESN none")) { 325a25f0a04SGreg Roach return true; 326a25f0a04SGreg Roach } 327a25f0a04SGreg Roach 328b0a785fcSGreg Roach // A link to a record of the same type: NOTE=>NOTE, OBJE=>OBJE, SOUR=>SOUR, etc. 329b0a785fcSGreg Roach // Use the privacy of the target record. 330b0a785fcSGreg Roach $target = $this->target(); 331b0a785fcSGreg Roach 332b0a785fcSGreg Roach if ($target instanceof GedcomRecord && $target->tag() === $this->tag) { 333b0a785fcSGreg Roach return $target->canShow($access_level); 334b0a785fcSGreg Roach } 335b0a785fcSGreg Roach 336a25f0a04SGreg Roach // Does this record have a default RESN? 337c0935879SGreg Roach $xref = $this->record->xref(); 338f4afa648SGreg Roach $fact_privacy = $this->record->tree()->getFactPrivacy(); 339f4afa648SGreg Roach $individual_fact_privacy = $this->record->tree()->getIndividualFactPrivacy(); 340518bbdc1SGreg Roach if (isset($individual_fact_privacy[$xref][$this->tag])) { 341518bbdc1SGreg Roach return $individual_fact_privacy[$xref][$this->tag] >= $access_level; 342a25f0a04SGreg Roach } 343518bbdc1SGreg Roach if (isset($fact_privacy[$this->tag])) { 344518bbdc1SGreg Roach return $fact_privacy[$this->tag] >= $access_level; 345a25f0a04SGreg Roach } 346a25f0a04SGreg Roach 347a25f0a04SGreg Roach // No restrictions - it must be public 348a25f0a04SGreg Roach return true; 349a25f0a04SGreg Roach } 350a25f0a04SGreg Roach 351a25f0a04SGreg Roach /** 352a25f0a04SGreg Roach * Check whether this fact is protected against edit 353a25f0a04SGreg Roach * 354cbc1590aSGreg Roach * @return bool 355a25f0a04SGreg Roach */ 3568f53f488SRico Sonntag public function canEdit(): bool 357c1010edaSGreg Roach { 3581450f098SGreg Roach if ($this->isPendingDeletion()) { 3591450f098SGreg Roach return false; 3601450f098SGreg Roach } 3611450f098SGreg Roach 3621450f098SGreg Roach if (Auth::isManager($this->record->tree())) { 3631450f098SGreg Roach return true; 3641450f098SGreg Roach } 3651450f098SGreg Roach 366a25f0a04SGreg Roach // Members cannot edit RESN, CHAN and locked records 367dec352c1SGreg Roach return Auth::isEditor($this->record->tree()) && !str_contains($this->gedcom, "\n2 RESN locked") && $this->tag !== 'RESN' && $this->tag !== 'CHAN'; 368a25f0a04SGreg Roach } 369a25f0a04SGreg Roach 370a25f0a04SGreg Roach /** 371a25f0a04SGreg Roach * The place where the event occured. 372a25f0a04SGreg Roach * 373a25f0a04SGreg Roach * @return Place 374a25f0a04SGreg Roach */ 3754fb14fcbSGreg Roach public function place(): Place 376c1010edaSGreg Roach { 377448d466cSGreg Roach $this->place ??= new Place($this->attribute('PLAC'), $this->record()->tree()); 378a25f0a04SGreg Roach 379a25f0a04SGreg Roach return $this->place; 380a25f0a04SGreg Roach } 381a25f0a04SGreg Roach 382a25f0a04SGreg Roach /** 383a25f0a04SGreg Roach * Get the date for this fact. 384a25f0a04SGreg Roach * We can call this function many times, especially when sorting, 385a25f0a04SGreg Roach * so keep a copy of the date. 386a25f0a04SGreg Roach * 387a25f0a04SGreg Roach * @return Date 388a25f0a04SGreg Roach */ 3892decada7SGreg Roach public function date(): Date 390c1010edaSGreg Roach { 391448d466cSGreg Roach $this->date ??= new Date($this->attribute('DATE')); 392a25f0a04SGreg Roach 393a25f0a04SGreg Roach return $this->date; 394a25f0a04SGreg Roach } 395a25f0a04SGreg Roach 396a25f0a04SGreg Roach /** 397a25f0a04SGreg Roach * The raw GEDCOM data for this fact 398a25f0a04SGreg Roach * 399a25f0a04SGreg Roach * @return string 400a25f0a04SGreg Roach */ 401138ca96cSGreg Roach public function gedcom(): string 402c1010edaSGreg Roach { 403a25f0a04SGreg Roach return $this->gedcom; 404a25f0a04SGreg Roach } 405a25f0a04SGreg Roach 406a25f0a04SGreg Roach /** 407a25f0a04SGreg Roach * Get a (pseudo) primary key for this fact. 408a25f0a04SGreg Roach * 409a25f0a04SGreg Roach * @return string 410a25f0a04SGreg Roach */ 411905ab80aSGreg Roach public function id(): string 412c1010edaSGreg Roach { 413905ab80aSGreg Roach return $this->id; 414a25f0a04SGreg Roach } 415a25f0a04SGreg Roach 416a25f0a04SGreg Roach /** 417a25f0a04SGreg Roach * What is the tag (type) of this fact, such as BIRT, MARR or DEAT. 418a25f0a04SGreg Roach * 419a25f0a04SGreg Roach * @return string 420a25f0a04SGreg Roach */ 4219ecabc6aSGreg Roach public function tag(): string 422c1010edaSGreg Roach { 42302467d32SGreg Roach return $this->record->tag() . ':' . $this->tag; 424a25f0a04SGreg Roach } 425a25f0a04SGreg Roach 426a25f0a04SGreg Roach /** 427decb512fSGreg Roach * The GEDCOM record where this Fact came from 428a25f0a04SGreg Roach * 429decb512fSGreg Roach * @return GedcomRecord 430a25f0a04SGreg Roach */ 431decb512fSGreg Roach public function record(): GedcomRecord 432c1010edaSGreg Roach { 433e7766c08SGreg Roach return $this->record; 434a25f0a04SGreg Roach } 435a25f0a04SGreg Roach 436a25f0a04SGreg Roach /** 437a25f0a04SGreg Roach * Get the name of this fact type, for use as a label. 438a25f0a04SGreg Roach * 439a25f0a04SGreg Roach * @return string 440a25f0a04SGreg Roach */ 4417b7d8067SGreg Roach public function label(): string 442c1010edaSGreg Roach { 44370ac1a22SGreg Roach // Marriages 44470ac1a22SGreg Roach if ($this->tag() === 'FAM:MARR') { 44570ac1a22SGreg Roach $element = Registry::elementFactory()->make('FAM:MARR:TYPE'); 44670ac1a22SGreg Roach $type = $this->attribute('TYPE'); 44770ac1a22SGreg Roach 44870ac1a22SGreg Roach if ($type !== '') { 44970ac1a22SGreg Roach return $element->value($type, $this->record->tree()); 45070ac1a22SGreg Roach } 45170ac1a22SGreg Roach } 45270ac1a22SGreg Roach 453a25f0a04SGreg Roach // Custom FACT/EVEN - with a TYPE 45418475794SGreg Roach if ($this->tag === 'FACT' || $this->tag === 'EVEN') { 45518475794SGreg Roach $type = $this->attribute('TYPE'); 45618475794SGreg Roach 45718475794SGreg Roach if ($type !== '') { 4583f9fe4ddSGreg Roach if (!str_contains($type, '%')) { 45918475794SGreg Roach // Allow user-translations of custom types. 46018475794SGreg Roach $translated = I18N::translate($type); 46118475794SGreg Roach 46218475794SGreg Roach if ($translated !== $type) { 46318475794SGreg Roach return $translated; 464a25f0a04SGreg Roach } 4653f9fe4ddSGreg Roach } 4664e5adf68SGreg Roach 46718475794SGreg Roach return e($type); 46818475794SGreg Roach } 46918475794SGreg Roach } 47018475794SGreg Roach 471455a30feSGreg Roach return Registry::elementFactory()->make($this->tag())->label(); 472a25f0a04SGreg Roach } 473a25f0a04SGreg Roach 474a25f0a04SGreg Roach /** 475a25f0a04SGreg Roach * This is a newly deleted fact, pending approval. 4767e96c925SGreg Roach * 4777e96c925SGreg Roach * @return void 478a25f0a04SGreg Roach */ 479e364afe4SGreg Roach public function setPendingDeletion(): void 480c1010edaSGreg Roach { 481a25f0a04SGreg Roach $this->pending_deletion = true; 482a25f0a04SGreg Roach $this->pending_addition = false; 483a25f0a04SGreg Roach } 484a25f0a04SGreg Roach 485a25f0a04SGreg Roach /** 486a25f0a04SGreg Roach * Is this a newly deleted fact, pending approval. 487a25f0a04SGreg Roach * 488cbc1590aSGreg Roach * @return bool 489a25f0a04SGreg Roach */ 4908f53f488SRico Sonntag public function isPendingDeletion(): bool 491c1010edaSGreg Roach { 492a25f0a04SGreg Roach return $this->pending_deletion; 493a25f0a04SGreg Roach } 494a25f0a04SGreg Roach 495a25f0a04SGreg Roach /** 496a25f0a04SGreg Roach * This is a newly added fact, pending approval. 4977e96c925SGreg Roach * 4987e96c925SGreg Roach * @return void 499a25f0a04SGreg Roach */ 500e364afe4SGreg Roach public function setPendingAddition(): void 501c1010edaSGreg Roach { 502a25f0a04SGreg Roach $this->pending_addition = true; 503a25f0a04SGreg Roach $this->pending_deletion = false; 504a25f0a04SGreg Roach } 505a25f0a04SGreg Roach 506a25f0a04SGreg Roach /** 507a25f0a04SGreg Roach * Is this a newly added fact, pending approval. 508a25f0a04SGreg Roach * 509cbc1590aSGreg Roach * @return bool 510a25f0a04SGreg Roach */ 5118f53f488SRico Sonntag public function isPendingAddition(): bool 512c1010edaSGreg Roach { 513a25f0a04SGreg Roach return $this->pending_addition; 514a25f0a04SGreg Roach } 515a25f0a04SGreg Roach 516a25f0a04SGreg Roach /** 517a25f0a04SGreg Roach * Source citations linked to this fact 518a25f0a04SGreg Roach * 51924f2a3afSGreg Roach * @return array<string> 520a25f0a04SGreg Roach */ 5218f53f488SRico Sonntag public function getCitations(): array 522c1010edaSGreg Roach { 5238d0ebef0SGreg Roach preg_match_all('/\n(2 SOUR @(' . Gedcom::REGEX_XREF . ')@(?:\n[3-9] .*)*)/', $this->gedcom(), $matches, PREG_SET_ORDER); 52413abd6f3SGreg Roach $citations = []; 525a25f0a04SGreg Roach foreach ($matches as $match) { 5266b9cb339SGreg Roach $source = Registry::sourceFactory()->make($match[2], $this->record()->tree()); 5272859ecedSJonathan Jaubart if ($source && $source->canShow()) { 528a25f0a04SGreg Roach $citations[] = $match[1]; 529a25f0a04SGreg Roach } 530a25f0a04SGreg Roach } 531a25f0a04SGreg Roach 532a25f0a04SGreg Roach return $citations; 533a25f0a04SGreg Roach } 534a25f0a04SGreg Roach 535a25f0a04SGreg Roach /** 536a25f0a04SGreg Roach * Notes (inline and objects) linked to this fact 537a25f0a04SGreg Roach * 53809482a55SGreg Roach * @return array<string|Note> 539a25f0a04SGreg Roach */ 5408f53f488SRico Sonntag public function getNotes(): array 541c1010edaSGreg Roach { 54213abd6f3SGreg Roach $notes = []; 543138ca96cSGreg Roach preg_match_all('/\n2 NOTE ?(.*(?:\n3.*)*)/', $this->gedcom(), $matches); 544a25f0a04SGreg Roach foreach ($matches[1] as $match) { 545a25f0a04SGreg Roach $note = preg_replace("/\n3 CONT ?/", "\n", $match); 5468d0ebef0SGreg Roach if (preg_match('/@(' . Gedcom::REGEX_XREF . ')@/', $note, $nmatch)) { 5476b9cb339SGreg Roach $note = Registry::noteFactory()->make($nmatch[1], $this->record()->tree()); 548a25f0a04SGreg Roach if ($note && $note->canShow()) { 549a25f0a04SGreg Roach // A note object 550a25f0a04SGreg Roach $notes[] = $note; 551a25f0a04SGreg Roach } 552a25f0a04SGreg Roach } else { 553a25f0a04SGreg Roach // An inline note 554a25f0a04SGreg Roach $notes[] = $note; 555a25f0a04SGreg Roach } 556a25f0a04SGreg Roach } 557a25f0a04SGreg Roach 558a25f0a04SGreg Roach return $notes; 559a25f0a04SGreg Roach } 560a25f0a04SGreg Roach 561a25f0a04SGreg Roach /** 562a25f0a04SGreg Roach * Media objects linked to this fact 563a25f0a04SGreg Roach * 56409482a55SGreg Roach * @return array<Media> 565a25f0a04SGreg Roach */ 5668f53f488SRico Sonntag public function getMedia(): array 567c1010edaSGreg Roach { 56813abd6f3SGreg Roach $media = []; 5698d0ebef0SGreg Roach preg_match_all('/\n2 OBJE @(' . Gedcom::REGEX_XREF . ')@/', $this->gedcom(), $matches); 570a25f0a04SGreg Roach foreach ($matches[1] as $match) { 5716b9cb339SGreg Roach $obje = Registry::mediaFactory()->make($match, $this->record()->tree()); 5722859ecedSJonathan Jaubart if ($obje && $obje->canShow()) { 573a25f0a04SGreg Roach $media[] = $obje; 574a25f0a04SGreg Roach } 575a25f0a04SGreg Roach } 576a25f0a04SGreg Roach 577a25f0a04SGreg Roach return $media; 578a25f0a04SGreg Roach } 579a25f0a04SGreg Roach 580a25f0a04SGreg Roach /** 581a25f0a04SGreg Roach * A one-line summary of the fact - for charts, etc. 582a25f0a04SGreg Roach * 583a25f0a04SGreg Roach * @return string 584a25f0a04SGreg Roach */ 5858f53f488SRico Sonntag public function summary(): string 586c1010edaSGreg Roach { 58713abd6f3SGreg Roach $attributes = []; 588dc124885SGreg Roach $target = $this->target(); 589db7bb364SGreg Roach if ($target instanceof GedcomRecord) { 59039ca88baSGreg Roach $attributes[] = $target->fullName(); 591a25f0a04SGreg Roach } else { 592726d7b07SGreg Roach // Fact value 59384586c02SGreg Roach $value = $this->value(); 594726d7b07SGreg Roach if ($value !== '' && $value !== 'Y') { 595315eb316SGreg Roach $attributes[] = '<bdi>' . e($value) . '</bdi>'; 596a25f0a04SGreg Roach } 597726d7b07SGreg Roach // Fact date 5982decada7SGreg Roach $date = $this->date(); 599726d7b07SGreg Roach if ($date->isOK()) { 6007fe676e5SGreg Roach if ($this->record() instanceof Individual && in_array($this->tag, Gedcom::BIRTH_EVENTS, true) && $this->record()->tree()->getPreference('SHOW_PARENTS_AGE')) { 601b315f3e1SGreg Roach $attributes[] = $date->display() . view('fact-parents-age', ['individual' => $this->record(), 'birth_date' => $date]); 602a25f0a04SGreg Roach } else { 603a25f0a04SGreg Roach $attributes[] = $date->display(); 604a25f0a04SGreg Roach } 605726d7b07SGreg Roach } 606726d7b07SGreg Roach // Fact place 607e364afe4SGreg Roach if ($this->place()->gedcomName() !== '') { 608392561bbSGreg Roach $attributes[] = $this->place()->shortName(); 609a25f0a04SGreg Roach } 610a25f0a04SGreg Roach } 6112d8f08abSGreg Roach 6127fe676e5SGreg Roach $class = 'fact_' . $this->tag; 613a25f0a04SGreg Roach if ($this->isPendingAddition()) { 61471a69701SGreg Roach $class .= ' wt-new'; 615a25f0a04SGreg Roach } elseif ($this->isPendingDeletion()) { 61671a69701SGreg Roach $class .= ' wt-old'; 617a25f0a04SGreg Roach } 6182d8f08abSGreg Roach 61906c87791SGreg Roach $label = '<span class="label">' . $this->label() . '</span>'; 62006c87791SGreg Roach $value = '<span class="field" dir="auto">' . implode(' — ', $attributes) . '</span>'; 62106c87791SGreg Roach 6222d8f08abSGreg Roach /* I18N: a label/value pair, such as “Occupation: Farmer”. Some languages may need to change the punctuation. */ 62306c87791SGreg Roach return '<div class="' . $class . '">' . I18N::translate('%1$s: %2$s', $label, $value) . '</div>'; 624a25f0a04SGreg Roach } 625a25f0a04SGreg Roach 626a25f0a04SGreg Roach /** 6279927f70fSGreg Roach * A one-line summary of the fact - for the clipboard, etc. 6289927f70fSGreg Roach * 6299927f70fSGreg Roach * @return string 6309927f70fSGreg Roach */ 6319927f70fSGreg Roach public function name(): string 6329927f70fSGreg Roach { 6339927f70fSGreg Roach $items = [$this->label()]; 6349927f70fSGreg Roach $target = $this->target(); 6359927f70fSGreg Roach 6369927f70fSGreg Roach if ($target instanceof GedcomRecord) { 637315eb316SGreg Roach $items[] = '<bdi>' . $target->fullName() . '</bdi>'; 6389927f70fSGreg Roach } else { 6399927f70fSGreg Roach // Fact value 6409927f70fSGreg Roach $value = $this->value(); 6419927f70fSGreg Roach if ($value !== '' && $value !== 'Y') { 642315eb316SGreg Roach $items[] = '<bdi>' . e($value) . '</bdi>'; 6439927f70fSGreg Roach } 6449927f70fSGreg Roach 6459927f70fSGreg Roach // Fact date 6469927f70fSGreg Roach if ($this->date()->isOK()) { 6479927f70fSGreg Roach $items[] = $this->date()->minimumDate()->format('%Y'); 6489927f70fSGreg Roach } 6499927f70fSGreg Roach 6509927f70fSGreg Roach // Fact place 6519927f70fSGreg Roach if ($this->place()->gedcomName() !== '') { 6529927f70fSGreg Roach $items[] = $this->place()->shortName(); 6539927f70fSGreg Roach } 6549927f70fSGreg Roach } 6559927f70fSGreg Roach 6569927f70fSGreg Roach return implode(' — ', $items); 6579927f70fSGreg Roach } 6589927f70fSGreg Roach 6599927f70fSGreg Roach /** 660580a4d11SGreg Roach * Helper functions to sort facts 661a25f0a04SGreg Roach * 662580a4d11SGreg Roach * @return Closure 663a25f0a04SGreg Roach */ 664580a4d11SGreg Roach private static function dateComparator(): Closure 665c1010edaSGreg Roach { 6666c2179e2SGreg Roach return static function (Fact $a, Fact $b): int { 6672decada7SGreg Roach if ($a->date()->isOK() && $b->date()->isOK()) { 668a25f0a04SGreg Roach // If both events have dates, compare by date 6692decada7SGreg Roach $ret = Date::compare($a->date(), $b->date()); 670a25f0a04SGreg Roach 671dfa848b8SGreg Roach if ($ret === 0) { 672580a4d11SGreg Roach // If dates overlap, compare by fact type 673580a4d11SGreg Roach $ret = self::typeComparator()($a, $b); 674a25f0a04SGreg Roach 675a25f0a04SGreg Roach // If the fact type is also the same, retain the initial order 676dfa848b8SGreg Roach if ($ret === 0) { 677580a4d11SGreg Roach $ret = $a->sortOrder <=> $b->sortOrder; 678a25f0a04SGreg Roach } 679a25f0a04SGreg Roach } 680a25f0a04SGreg Roach 681a25f0a04SGreg Roach return $ret; 682b2ce94c6SRico Sonntag } 683b2ce94c6SRico Sonntag 684a25f0a04SGreg Roach // One or both events have no date - retain the initial order 685580a4d11SGreg Roach return $a->sortOrder <=> $b->sortOrder; 686580a4d11SGreg Roach }; 687a25f0a04SGreg Roach } 688a25f0a04SGreg Roach 689a25f0a04SGreg Roach /** 690580a4d11SGreg Roach * Helper functions to sort facts. 691a25f0a04SGreg Roach * 692580a4d11SGreg Roach * @return Closure 693a25f0a04SGreg Roach */ 694580a4d11SGreg Roach public static function typeComparator(): Closure 695c1010edaSGreg Roach { 696bbe4546fSGreg Roach static $factsort = []; 697a25f0a04SGreg Roach 69854c1ab5eSGreg Roach if ($factsort === []) { 699bbe4546fSGreg Roach $factsort = array_flip(self::FACT_ORDER); 700a25f0a04SGreg Roach } 701a25f0a04SGreg Roach 7026c2179e2SGreg Roach return static function (Fact $a, Fact $b) use ($factsort): int { 703a25f0a04SGreg Roach // Facts from same families stay grouped together 704a25f0a04SGreg Roach // Keep MARR and DIV from the same families from mixing with events from other FAMs 705a25f0a04SGreg Roach // Use the original order in which the facts were added 706e7766c08SGreg Roach if ($a->record instanceof Family && $b->record instanceof Family && $a->record !== $b->record) { 707a25f0a04SGreg Roach return $a->sortOrder - $b->sortOrder; 708a25f0a04SGreg Roach } 709a25f0a04SGreg Roach 7107fe676e5SGreg Roach $atag = $a->tag; 7117fe676e5SGreg Roach $btag = $b->tag; 712a25f0a04SGreg Roach 713a25f0a04SGreg Roach // Events not in the above list get mapped onto one that is. 714a25f0a04SGreg Roach if (!array_key_exists($atag, $factsort)) { 7157a6ee1acSGreg Roach $atag = '_????_'; 716a25f0a04SGreg Roach } 717a25f0a04SGreg Roach 718a25f0a04SGreg Roach if (!array_key_exists($btag, $factsort)) { 7197a6ee1acSGreg Roach $btag = '_????_'; 720a25f0a04SGreg Roach } 721a25f0a04SGreg Roach 722a25f0a04SGreg Roach // - Don't let dated after DEAT/BURI facts sort non-dated facts before DEAT/BURI 723a25f0a04SGreg Roach // - Treat dated after BURI facts as BURI instead 7243425616eSGreg Roach if ($a->attribute('DATE') !== '' && $factsort[$atag] > $factsort['BURI'] && $factsort[$atag] < $factsort['CHAN']) { 725a25f0a04SGreg Roach $atag = 'BURI'; 726a25f0a04SGreg Roach } 727a25f0a04SGreg Roach 7283425616eSGreg Roach if ($b->attribute('DATE') !== '' && $factsort[$btag] > $factsort['BURI'] && $factsort[$btag] < $factsort['CHAN']) { 729a25f0a04SGreg Roach $btag = 'BURI'; 730a25f0a04SGreg Roach } 731a25f0a04SGreg Roach 732a25f0a04SGreg Roach $ret = $factsort[$atag] - $factsort[$btag]; 733a25f0a04SGreg Roach 734a25f0a04SGreg Roach // If facts are the same then put dated facts before non-dated facts 7357fa97a69SGreg Roach if ($ret === 0) { 7363425616eSGreg Roach if ($a->attribute('DATE') !== '' && $b->attribute('DATE') === '') { 737a25f0a04SGreg Roach return -1; 738a25f0a04SGreg Roach } 739a25f0a04SGreg Roach 7403425616eSGreg Roach if ($b->attribute('DATE') !== '' && $a->attribute('DATE') === '') { 741a25f0a04SGreg Roach return 1; 742a25f0a04SGreg Roach } 743a25f0a04SGreg Roach 744a25f0a04SGreg Roach // If no sorting preference, then keep original ordering 745a25f0a04SGreg Roach $ret = $a->sortOrder - $b->sortOrder; 746a25f0a04SGreg Roach } 747a25f0a04SGreg Roach 748a25f0a04SGreg Roach return $ret; 749580a4d11SGreg Roach }; 750580a4d11SGreg Roach } 751580a4d11SGreg Roach 752580a4d11SGreg Roach /** 753580a4d11SGreg Roach * A multi-key sort 754580a4d11SGreg Roach * 1. First divide the facts into two arrays one set with dates and one set without dates 755580a4d11SGreg Roach * 2. Sort each of the two new arrays, the date using the compare date function, the non-dated 756580a4d11SGreg Roach * using the compare type function 757580a4d11SGreg Roach * 3. Then merge the arrays back into the original array using the compare type function 758580a4d11SGreg Roach * 75936779af1SGreg Roach * @param Collection<int,Fact> $unsorted 760580a4d11SGreg Roach * 76136779af1SGreg Roach * @return Collection<int,Fact> 762580a4d11SGreg Roach */ 7638af3e5c1SGreg Roach public static function sortFacts(Collection $unsorted): Collection 764580a4d11SGreg Roach { 765580a4d11SGreg Roach $dated = []; 766580a4d11SGreg Roach $nondated = []; 767580a4d11SGreg Roach $sorted = []; 768580a4d11SGreg Roach 769580a4d11SGreg Roach // Split the array into dated and non-dated arrays 770580a4d11SGreg Roach $order = 0; 771580a4d11SGreg Roach 772580a4d11SGreg Roach foreach ($unsorted as $fact) { 773580a4d11SGreg Roach $fact->sortOrder = $order; 774580a4d11SGreg Roach $order++; 775580a4d11SGreg Roach 776580a4d11SGreg Roach if ($fact->date()->isOK()) { 777580a4d11SGreg Roach $dated[] = $fact; 778580a4d11SGreg Roach } else { 779580a4d11SGreg Roach $nondated[] = $fact; 780580a4d11SGreg Roach } 781580a4d11SGreg Roach } 782580a4d11SGreg Roach 783580a4d11SGreg Roach usort($dated, self::dateComparator()); 784580a4d11SGreg Roach usort($nondated, self::typeComparator()); 785580a4d11SGreg Roach 786580a4d11SGreg Roach // Merge the arrays 787580a4d11SGreg Roach $dc = count($dated); 788580a4d11SGreg Roach $nc = count($nondated); 789580a4d11SGreg Roach $i = 0; 790580a4d11SGreg Roach $j = 0; 791580a4d11SGreg Roach 792580a4d11SGreg Roach // while there is anything in the dated array continue merging 793580a4d11SGreg Roach while ($i < $dc) { 794580a4d11SGreg Roach // compare each fact by type to merge them in order 795580a4d11SGreg Roach if ($j < $nc && self::typeComparator()($dated[$i], $nondated[$j]) > 0) { 796580a4d11SGreg Roach $sorted[] = $nondated[$j]; 797580a4d11SGreg Roach $j++; 798580a4d11SGreg Roach } else { 799580a4d11SGreg Roach $sorted[] = $dated[$i]; 800580a4d11SGreg Roach $i++; 801580a4d11SGreg Roach } 802580a4d11SGreg Roach } 803580a4d11SGreg Roach 804580a4d11SGreg Roach // get anything that might be left in the nondated array 805580a4d11SGreg Roach while ($j < $nc) { 806580a4d11SGreg Roach $sorted[] = $nondated[$j]; 807580a4d11SGreg Roach $j++; 808580a4d11SGreg Roach } 809580a4d11SGreg Roach 8101c7a6874SGreg Roach return new Collection($sorted); 811a25f0a04SGreg Roach } 812a25f0a04SGreg Roach 813a25f0a04SGreg Roach /** 814ae71f733SGreg Roach * Sort fact/event tags using the same order that we use for facts. 815ae71f733SGreg Roach * 81636779af1SGreg Roach * @param Collection<int,string> $unsorted 817ae71f733SGreg Roach * 81836779af1SGreg Roach * @return Collection<int,string> 819ae71f733SGreg Roach */ 820ae71f733SGreg Roach public static function sortFactTags(Collection $unsorted): Collection 821ae71f733SGreg Roach { 822ae71f733SGreg Roach $tag_order = array_flip(self::FACT_ORDER); 823ae71f733SGreg Roach 824ae71f733SGreg Roach return $unsorted->sort(static function (string $x, string $y) use ($tag_order): int { 825ae71f733SGreg Roach $sort_x = $tag_order[$x] ?? $tag_order['_????_']; 826ae71f733SGreg Roach $sort_y = $tag_order[$y] ?? $tag_order['_????_']; 827ae71f733SGreg Roach 828ae71f733SGreg Roach return $sort_x - $sort_y; 829ae71f733SGreg Roach }); 830ae71f733SGreg Roach } 831ae71f733SGreg Roach 832ae71f733SGreg Roach /** 833a25f0a04SGreg Roach * Allow native PHP functions such as array_unique() to work with objects 834a25f0a04SGreg Roach * 835a25f0a04SGreg Roach * @return string 836a25f0a04SGreg Roach */ 837dfa848b8SGreg Roach public function __toString(): string 838c1010edaSGreg Roach { 839c0935879SGreg Roach return $this->id . '@' . $this->record->xref(); 840a25f0a04SGreg Roach } 841a25f0a04SGreg Roach} 842