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; 2355105892SGreg Roachuse Fisharebest\Webtrees\Elements\RestrictionNotice; 248af6bbf8SGreg Roachuse Fisharebest\Webtrees\Services\GedcomService; 251c7a6874SGreg Roachuse Illuminate\Support\Collection; 268f5f5da8SGreg Roachuse InvalidArgumentException; 273976b470SGreg Roach 28ae71f733SGreg Roachuse function array_flip; 29ae71f733SGreg Roachuse function array_key_exists; 30ae71f733SGreg Roachuse function count; 31ae71f733SGreg Roachuse function e; 32ae71f733SGreg Roachuse function implode; 33ae71f733SGreg Roachuse function in_array; 34ae71f733SGreg Roachuse function preg_match; 35ae71f733SGreg Roachuse function preg_match_all; 36ae71f733SGreg Roachuse function preg_replace; 37dec352c1SGreg Roachuse function str_contains; 3855105892SGreg Roachuse function str_ends_with; 39ae71f733SGreg Roachuse function usort; 40ae71f733SGreg Roach 41ae71f733SGreg Roachuse const PREG_SET_ORDER; 42a25f0a04SGreg Roach 43a25f0a04SGreg Roach/** 4476692c8bSGreg Roach * A GEDCOM fact or event object. 45a25f0a04SGreg Roach */ 46c1010edaSGreg Roachclass Fact 47c1010edaSGreg Roach{ 4816d6367aSGreg Roach private const FACT_ORDER = [ 49bbe4546fSGreg Roach 'BIRT', 50bbe4546fSGreg Roach '_HNM', 51bbe4546fSGreg Roach 'ALIA', 52bbe4546fSGreg Roach '_AKA', 53bbe4546fSGreg Roach '_AKAN', 54bbe4546fSGreg Roach 'ADOP', 55bbe4546fSGreg Roach '_ADPF', 56bbe4546fSGreg Roach '_ADPF', 57bbe4546fSGreg Roach '_BRTM', 58bbe4546fSGreg Roach 'CHR', 59bbe4546fSGreg Roach 'BAPM', 60bbe4546fSGreg Roach 'FCOM', 61bbe4546fSGreg Roach 'CONF', 62bbe4546fSGreg Roach 'BARM', 63bbe4546fSGreg Roach 'BASM', 64bbe4546fSGreg Roach 'EDUC', 65bbe4546fSGreg Roach 'GRAD', 66bbe4546fSGreg Roach '_DEG', 67bbe4546fSGreg Roach 'EMIG', 68bbe4546fSGreg Roach 'IMMI', 69bbe4546fSGreg Roach 'NATU', 70bbe4546fSGreg Roach '_MILI', 71bbe4546fSGreg Roach '_MILT', 72bbe4546fSGreg Roach 'ENGA', 73bbe4546fSGreg Roach 'MARB', 74bbe4546fSGreg Roach 'MARC', 75bbe4546fSGreg Roach 'MARL', 76bbe4546fSGreg Roach '_MARI', 77bbe4546fSGreg Roach '_MBON', 78bbe4546fSGreg Roach 'MARR', 79bbe4546fSGreg Roach '_COML', 80bbe4546fSGreg Roach '_STAT', 81bbe4546fSGreg Roach '_SEPR', 82bbe4546fSGreg Roach 'DIVF', 83bbe4546fSGreg Roach 'MARS', 84bbe4546fSGreg Roach 'DIV', 85bbe4546fSGreg Roach 'ANUL', 86bbe4546fSGreg Roach 'CENS', 87bbe4546fSGreg Roach 'OCCU', 88bbe4546fSGreg Roach 'RESI', 89bbe4546fSGreg Roach 'PROP', 90bbe4546fSGreg Roach 'CHRA', 91bbe4546fSGreg Roach 'RETI', 92bbe4546fSGreg Roach 'FACT', 93bbe4546fSGreg Roach 'EVEN', 94bbe4546fSGreg Roach '_NMR', 95bbe4546fSGreg Roach '_NMAR', 96bbe4546fSGreg Roach 'NMR', 97bbe4546fSGreg Roach 'NCHI', 98bbe4546fSGreg Roach 'WILL', 99bbe4546fSGreg Roach '_HOL', 100bbe4546fSGreg Roach '_????_', 101bbe4546fSGreg Roach 'DEAT', 102bbe4546fSGreg Roach '_FNRL', 103bbe4546fSGreg Roach 'CREM', 104bbe4546fSGreg Roach 'BURI', 105bbe4546fSGreg Roach '_INTE', 106bbe4546fSGreg Roach '_YART', 107bbe4546fSGreg Roach '_NLIV', 108bbe4546fSGreg Roach 'PROB', 109bbe4546fSGreg Roach 'TITL', 110bbe4546fSGreg Roach 'COMM', 111bbe4546fSGreg Roach 'NATI', 112bbe4546fSGreg Roach 'CITN', 113bbe4546fSGreg Roach 'CAST', 114bbe4546fSGreg Roach 'RELI', 115bbe4546fSGreg Roach 'SSN', 116bbe4546fSGreg Roach 'IDNO', 117bbe4546fSGreg Roach 'TEMP', 118bbe4546fSGreg Roach 'SLGC', 119bbe4546fSGreg Roach 'BAPL', 120bbe4546fSGreg Roach 'CONL', 121bbe4546fSGreg Roach 'ENDL', 122bbe4546fSGreg Roach 'SLGS', 123701f5d18SGreg Roach 'NO', 124bbe4546fSGreg Roach 'ADDR', 125bbe4546fSGreg Roach 'PHON', 126bbe4546fSGreg Roach 'EMAIL', 127bbe4546fSGreg Roach '_EMAIL', 128bbe4546fSGreg Roach 'EMAL', 129bbe4546fSGreg Roach 'FAX', 130bbe4546fSGreg Roach 'WWW', 131bbe4546fSGreg Roach 'URL', 132bbe4546fSGreg Roach '_URL', 133544f68e3SGreg Roach '_FSFTID', 134bbe4546fSGreg Roach 'AFN', 135bbe4546fSGreg Roach 'REFN', 136bbe4546fSGreg Roach '_PRMN', 137bbe4546fSGreg Roach 'REF', 138bbe4546fSGreg Roach 'RIN', 139bbe4546fSGreg Roach '_UID', 140bbe4546fSGreg Roach 'OBJE', 141bbe4546fSGreg Roach 'NOTE', 142bbe4546fSGreg Roach 'SOUR', 143701f5d18SGreg Roach 'CREA', 144bbe4546fSGreg Roach 'CHAN', 145bbe4546fSGreg Roach '_TODO', 146bbe4546fSGreg Roach ]; 147bbe4546fSGreg Roach 14833c746f1SGreg Roach // Unique identifier for this fact (currently implemented as a hash of the raw data). 14933c746f1SGreg Roach private string $id; 150a25f0a04SGreg Roach 15133c746f1SGreg Roach // The GEDCOM record from which this fact is taken 15233c746f1SGreg Roach private GedcomRecord $record; 153a25f0a04SGreg Roach 15433c746f1SGreg Roach // The raw GEDCOM data for this fact 15533c746f1SGreg Roach private string $gedcom; 156a25f0a04SGreg Roach 15733c746f1SGreg Roach // The GEDCOM tag for this record 15833c746f1SGreg Roach private string $tag; 159a25f0a04SGreg Roach 16033c746f1SGreg Roach private bool $pending_deletion = false; 161a25f0a04SGreg Roach 16233c746f1SGreg Roach private bool $pending_addition = false; 163a25f0a04SGreg Roach 16433c746f1SGreg Roach private Date $date; 165a25f0a04SGreg Roach 16633c746f1SGreg Roach private Place $place; 167a25f0a04SGreg Roach 168bfed30e4SGreg Roach // Used to sort facts 16933c746f1SGreg Roach public int $sortOrder; 170a25f0a04SGreg Roach 171bfed30e4SGreg Roach // Used by anniversary calculations 172bfed30e4SGreg Roach public int $jd; 173bfed30e4SGreg Roach public int $anniv; 174bfed30e4SGreg Roach 175a25f0a04SGreg Roach /** 176a25f0a04SGreg Roach * Create an event object from a gedcom fragment. 177a25f0a04SGreg Roach * We need the parent object (to check privacy) and a (pseudo) fact ID to 178a25f0a04SGreg Roach * identify the fact within the record. 179a25f0a04SGreg Roach * 180a25f0a04SGreg Roach * @param string $gedcom 181a25f0a04SGreg Roach * @param GedcomRecord $parent 182905ab80aSGreg Roach * @param string $id 183a25f0a04SGreg Roach * 1848f5f5da8SGreg Roach * @throws InvalidArgumentException 185a25f0a04SGreg Roach */ 18624f2a3afSGreg Roach public function __construct(string $gedcom, GedcomRecord $parent, string $id) 187c1010edaSGreg Roach { 1888d0ebef0SGreg Roach if (preg_match('/^1 (' . Gedcom::REGEX_TAG . ')/', $gedcom, $match)) { 189a25f0a04SGreg Roach $this->gedcom = $gedcom; 190e7766c08SGreg Roach $this->record = $parent; 191905ab80aSGreg Roach $this->id = $id; 192a25f0a04SGreg Roach $this->tag = $match[1]; 193a25f0a04SGreg Roach } else { 19452ac7b12SGreg Roach throw new InvalidArgumentException('Invalid GEDCOM data passed to Fact::_construct(' . $gedcom . ',' . $parent->xref() . ')'); 195a25f0a04SGreg Roach } 196a25f0a04SGreg Roach } 197a25f0a04SGreg Roach 198a25f0a04SGreg Roach /** 199a25f0a04SGreg Roach * Get the value of level 1 data in the fact 200a25f0a04SGreg Roach * Allow for multi-line values 201a25f0a04SGreg Roach * 202baacc364SGreg Roach * @return string 203a25f0a04SGreg Roach */ 204dfa848b8SGreg Roach public function value(): string 205c1010edaSGreg Roach { 206d247596dSGreg Roach if (preg_match('/^1 ' . $this->tag . ' ?(.*(?:\n2 CONT ?.*)*)/', $this->gedcom, $match)) { 207a25f0a04SGreg Roach return preg_replace("/\n2 CONT ?/", "\n", $match[1]); 208a25f0a04SGreg Roach } 209b2ce94c6SRico Sonntag 210b2ce94c6SRico Sonntag return ''; 211a25f0a04SGreg Roach } 212a25f0a04SGreg Roach 213a25f0a04SGreg Roach /** 214a25f0a04SGreg Roach * Get the record to which this fact links 215a25f0a04SGreg Roach * 2160d15532eSGreg Roach * @return Family|GedcomRecord|Individual|Location|Media|Note|Repository|Source|Submission|Submitter|null 217a25f0a04SGreg Roach */ 218dc124885SGreg Roach public function target() 219c1010edaSGreg Roach { 22062b52849SGreg Roach if (!preg_match('/^@(' . Gedcom::REGEX_XREF . ')@$/', $this->value(), $match)) { 22162b52849SGreg Roach return null; 22262b52849SGreg Roach } 22362b52849SGreg Roach 22462b52849SGreg Roach $xref = $match[1]; 22562b52849SGreg Roach 226a25f0a04SGreg Roach switch ($this->tag) { 227a25f0a04SGreg Roach case 'FAMC': 228a25f0a04SGreg Roach case 'FAMS': 2296b9cb339SGreg Roach return Registry::familyFactory()->make($xref, $this->record()->tree()); 230a25f0a04SGreg Roach case 'HUSB': 231a25f0a04SGreg Roach case 'WIFE': 23262b52849SGreg Roach case 'ALIA': 233a25f0a04SGreg Roach case 'CHIL': 23462b52849SGreg Roach case '_ASSO': 2356b9cb339SGreg Roach return Registry::individualFactory()->make($xref, $this->record()->tree()); 23662b52849SGreg Roach case 'ASSO': 23762b52849SGreg Roach return 2386b9cb339SGreg Roach Registry::individualFactory()->make($xref, $this->record()->tree()) ?? 2396b9cb339SGreg Roach Registry::submitterFactory()->make($xref, $this->record()->tree()); 240a25f0a04SGreg Roach case 'SOUR': 2416b9cb339SGreg Roach return Registry::sourceFactory()->make($xref, $this->record()->tree()); 242a25f0a04SGreg Roach case 'OBJE': 2436b9cb339SGreg Roach return Registry::mediaFactory()->make($xref, $this->record()->tree()); 244a25f0a04SGreg Roach case 'REPO': 2456b9cb339SGreg Roach return Registry::repositoryFactory()->make($xref, $this->record()->tree()); 246a25f0a04SGreg Roach case 'NOTE': 2476b9cb339SGreg Roach return Registry::noteFactory()->make($xref, $this->record()->tree()); 24862b52849SGreg Roach case 'ANCI': 24962b52849SGreg Roach case 'DESI': 250ffc0a61fSGreg Roach case 'SUBM': 2516b9cb339SGreg Roach return Registry::submitterFactory()->make($xref, $this->record()->tree()); 2521635452cSGreg Roach case 'SUBN': 2536b9cb339SGreg Roach return Registry::submissionFactory()->make($xref, $this->record()->tree()); 2540d15532eSGreg Roach case '_LOC': 2556b9cb339SGreg Roach return Registry::locationFactory()->make($xref, $this->record()->tree()); 256a25f0a04SGreg Roach default: 2576b9cb339SGreg Roach return Registry::gedcomRecordFactory()->make($xref, $this->record()->tree()); 258a25f0a04SGreg Roach } 259a25f0a04SGreg Roach } 260a25f0a04SGreg Roach 261a25f0a04SGreg Roach /** 262a25f0a04SGreg Roach * Get the value of level 2 data in the fact 263a25f0a04SGreg Roach * 264a25f0a04SGreg Roach * @param string $tag 265a25f0a04SGreg Roach * 266baacc364SGreg Roach * @return string 267a25f0a04SGreg Roach */ 26824f2a3afSGreg Roach public function attribute(string $tag): string 269c1010edaSGreg Roach { 27010d6d973SGreg Roach if (preg_match('/\n2 ' . $tag . '\b ?(.*(?:(?:\n3 CONT ?.*)*)*)/', $this->gedcom, $match)) { 27149985628SGreg Roach $value = preg_replace("/\n3 CONT ?/", "\n", $match[1]); 27249985628SGreg Roach 2738939e2c2SGreg Roach return Registry::elementFactory()->make($this->tag() . ':' . $tag)->canonical($value); 274a25f0a04SGreg Roach } 275b2ce94c6SRico Sonntag 276b2ce94c6SRico Sonntag return ''; 277a25f0a04SGreg Roach } 278a25f0a04SGreg Roach 279a25f0a04SGreg Roach /** 2808af6bbf8SGreg Roach * Get the PLAC:MAP:LATI for the fact. 2818af6bbf8SGreg Roach * 28290949315SGreg Roach * @return float|null 2838af6bbf8SGreg Roach */ 28490949315SGreg Roach public function latitude(): ?float 2858af6bbf8SGreg Roach { 2868af6bbf8SGreg Roach if (preg_match('/\n4 LATI (.+)/', $this->gedcom, $match)) { 2878af6bbf8SGreg Roach $gedcom_service = new GedcomService(); 2888af6bbf8SGreg Roach 2898af6bbf8SGreg Roach return $gedcom_service->readLatitude($match[1]); 2908af6bbf8SGreg Roach } 2918af6bbf8SGreg Roach 2920ec592a7SDavid Drury return null; 2938af6bbf8SGreg Roach } 2948af6bbf8SGreg Roach 2958af6bbf8SGreg Roach /** 2968af6bbf8SGreg Roach * Get the PLAC:MAP:LONG for the fact. 2978af6bbf8SGreg Roach * 29890949315SGreg Roach * @return float|null 2998af6bbf8SGreg Roach */ 30090949315SGreg Roach public function longitude(): ?float 3018af6bbf8SGreg Roach { 302819ac503SRico Sonntag if (preg_match('/\n4 LONG (.+)/', $this->gedcom, $match)) { 3038af6bbf8SGreg Roach $gedcom_service = new GedcomService(); 3048af6bbf8SGreg Roach 3058af6bbf8SGreg Roach return $gedcom_service->readLongitude($match[1]); 3068af6bbf8SGreg Roach } 3078af6bbf8SGreg Roach 3080ec592a7SDavid Drury return null; 3098af6bbf8SGreg Roach } 3108af6bbf8SGreg Roach 3118af6bbf8SGreg Roach /** 312a25f0a04SGreg Roach * Do the privacy rules allow us to display this fact to the current user 313a25f0a04SGreg Roach * 314cbc1590aSGreg Roach * @param int|null $access_level 315a25f0a04SGreg Roach * 316cbc1590aSGreg Roach * @return bool 317a25f0a04SGreg Roach */ 31835584196SGreg Roach public function canShow(int $access_level = null): bool 319c1010edaSGreg Roach { 320d9e083e7SGreg Roach $access_level = $access_level ?? Auth::accessLevel($this->record->tree()); 3214b9ff166SGreg Roach 32255105892SGreg Roach // Does this record have an explicit restriction notice? 32355105892SGreg Roach $restriction = $this->attribute('RESN'); 32455105892SGreg Roach 32555105892SGreg Roach if (str_ends_with($restriction, RestrictionNotice::VALUE_CONFIDENTIAL)) { 3264b9ff166SGreg Roach return Auth::PRIV_NONE >= $access_level; 327a25f0a04SGreg Roach } 32855105892SGreg Roach 32955105892SGreg Roach if (str_ends_with($restriction, RestrictionNotice::VALUE_PRIVACY)) { 3304b9ff166SGreg Roach return Auth::PRIV_USER >= $access_level; 331a25f0a04SGreg Roach } 33255105892SGreg Roach if (str_ends_with($restriction, RestrictionNotice::VALUE_NONE)) { 333a25f0a04SGreg Roach return true; 334a25f0a04SGreg Roach } 335a25f0a04SGreg Roach 336b0a785fcSGreg Roach // A link to a record of the same type: NOTE=>NOTE, OBJE=>OBJE, SOUR=>SOUR, etc. 337b0a785fcSGreg Roach // Use the privacy of the target record. 338b0a785fcSGreg Roach $target = $this->target(); 339b0a785fcSGreg Roach 340b0a785fcSGreg Roach if ($target instanceof GedcomRecord && $target->tag() === $this->tag) { 341b0a785fcSGreg Roach return $target->canShow($access_level); 342b0a785fcSGreg Roach } 343b0a785fcSGreg Roach 344a25f0a04SGreg Roach // Does this record have a default RESN? 345c0935879SGreg Roach $xref = $this->record->xref(); 346f4afa648SGreg Roach $fact_privacy = $this->record->tree()->getFactPrivacy(); 347f4afa648SGreg Roach $individual_fact_privacy = $this->record->tree()->getIndividualFactPrivacy(); 348518bbdc1SGreg Roach if (isset($individual_fact_privacy[$xref][$this->tag])) { 349518bbdc1SGreg Roach return $individual_fact_privacy[$xref][$this->tag] >= $access_level; 350a25f0a04SGreg Roach } 351518bbdc1SGreg Roach if (isset($fact_privacy[$this->tag])) { 352518bbdc1SGreg Roach return $fact_privacy[$this->tag] >= $access_level; 353a25f0a04SGreg Roach } 354a25f0a04SGreg Roach 355a25f0a04SGreg Roach // No restrictions - it must be public 356a25f0a04SGreg Roach return true; 357a25f0a04SGreg Roach } 358a25f0a04SGreg Roach 359a25f0a04SGreg Roach /** 360a25f0a04SGreg Roach * Check whether this fact is protected against edit 361a25f0a04SGreg Roach * 362cbc1590aSGreg Roach * @return bool 363a25f0a04SGreg Roach */ 3648f53f488SRico Sonntag public function canEdit(): bool 365c1010edaSGreg Roach { 3661450f098SGreg Roach if ($this->isPendingDeletion()) { 3671450f098SGreg Roach return false; 3681450f098SGreg Roach } 3691450f098SGreg Roach 3701450f098SGreg Roach if (Auth::isManager($this->record->tree())) { 3711450f098SGreg Roach return true; 3721450f098SGreg Roach } 3731450f098SGreg Roach 374a25f0a04SGreg Roach // Members cannot edit RESN, CHAN and locked records 37555105892SGreg Roach return Auth::isEditor($this->record->tree()) && !str_ends_with($this->attribute('RESN'), RestrictionNotice::VALUE_LOCKED) && $this->tag !== 'RESN' && $this->tag !== 'CHAN'; 376a25f0a04SGreg Roach } 377a25f0a04SGreg Roach 378a25f0a04SGreg Roach /** 379a25f0a04SGreg Roach * The place where the event occured. 380a25f0a04SGreg Roach * 381a25f0a04SGreg Roach * @return Place 382a25f0a04SGreg Roach */ 3834fb14fcbSGreg Roach public function place(): Place 384c1010edaSGreg Roach { 385448d466cSGreg Roach $this->place ??= new Place($this->attribute('PLAC'), $this->record()->tree()); 386a25f0a04SGreg Roach 387a25f0a04SGreg Roach return $this->place; 388a25f0a04SGreg Roach } 389a25f0a04SGreg Roach 390a25f0a04SGreg Roach /** 391a25f0a04SGreg Roach * Get the date for this fact. 392a25f0a04SGreg Roach * We can call this function many times, especially when sorting, 393a25f0a04SGreg Roach * so keep a copy of the date. 394a25f0a04SGreg Roach * 395a25f0a04SGreg Roach * @return Date 396a25f0a04SGreg Roach */ 3972decada7SGreg Roach public function date(): Date 398c1010edaSGreg Roach { 399448d466cSGreg Roach $this->date ??= new Date($this->attribute('DATE')); 400a25f0a04SGreg Roach 401a25f0a04SGreg Roach return $this->date; 402a25f0a04SGreg Roach } 403a25f0a04SGreg Roach 404a25f0a04SGreg Roach /** 405a25f0a04SGreg Roach * The raw GEDCOM data for this fact 406a25f0a04SGreg Roach * 407a25f0a04SGreg Roach * @return string 408a25f0a04SGreg Roach */ 409138ca96cSGreg Roach public function gedcom(): string 410c1010edaSGreg Roach { 411a25f0a04SGreg Roach return $this->gedcom; 412a25f0a04SGreg Roach } 413a25f0a04SGreg Roach 414a25f0a04SGreg Roach /** 415a25f0a04SGreg Roach * Get a (pseudo) primary key for this fact. 416a25f0a04SGreg Roach * 417a25f0a04SGreg Roach * @return string 418a25f0a04SGreg Roach */ 419905ab80aSGreg Roach public function id(): string 420c1010edaSGreg Roach { 421905ab80aSGreg Roach return $this->id; 422a25f0a04SGreg Roach } 423a25f0a04SGreg Roach 424a25f0a04SGreg Roach /** 425a25f0a04SGreg Roach * What is the tag (type) of this fact, such as BIRT, MARR or DEAT. 426a25f0a04SGreg Roach * 427a25f0a04SGreg Roach * @return string 428a25f0a04SGreg Roach */ 4299ecabc6aSGreg Roach public function tag(): string 430c1010edaSGreg Roach { 43102467d32SGreg Roach return $this->record->tag() . ':' . $this->tag; 432a25f0a04SGreg Roach } 433a25f0a04SGreg Roach 434a25f0a04SGreg Roach /** 435decb512fSGreg Roach * The GEDCOM record where this Fact came from 436a25f0a04SGreg Roach * 437decb512fSGreg Roach * @return GedcomRecord 438a25f0a04SGreg Roach */ 439decb512fSGreg Roach public function record(): GedcomRecord 440c1010edaSGreg Roach { 441e7766c08SGreg Roach return $this->record; 442a25f0a04SGreg Roach } 443a25f0a04SGreg Roach 444a25f0a04SGreg Roach /** 445a25f0a04SGreg Roach * Get the name of this fact type, for use as a label. 446a25f0a04SGreg Roach * 447a25f0a04SGreg Roach * @return string 448a25f0a04SGreg Roach */ 4497b7d8067SGreg Roach public function label(): string 450c1010edaSGreg Roach { 451*d0fe92f3SGreg Roach if (str_ends_with($this->tag(), ':NOTE') && preg_match('/^@' . Gedcom::REGEX_XREF . '@$/', $this->value())) { 452ae1057f3SGreg Roach return I18N::translate('Shared note'); 453ae1057f3SGreg Roach } 454ae1057f3SGreg Roach 45570ac1a22SGreg Roach // Marriages 45670ac1a22SGreg Roach if ($this->tag() === 'FAM:MARR') { 45770ac1a22SGreg Roach $element = Registry::elementFactory()->make('FAM:MARR:TYPE'); 45870ac1a22SGreg Roach $type = $this->attribute('TYPE'); 45970ac1a22SGreg Roach 46070ac1a22SGreg Roach if ($type !== '') { 46170ac1a22SGreg Roach return $element->value($type, $this->record->tree()); 46270ac1a22SGreg Roach } 46370ac1a22SGreg Roach } 46470ac1a22SGreg Roach 465a25f0a04SGreg Roach // Custom FACT/EVEN - with a TYPE 46618475794SGreg Roach if ($this->tag === 'FACT' || $this->tag === 'EVEN') { 46718475794SGreg Roach $type = $this->attribute('TYPE'); 46818475794SGreg Roach 46918475794SGreg Roach if ($type !== '') { 4703f9fe4ddSGreg Roach if (!str_contains($type, '%')) { 47118475794SGreg Roach // Allow user-translations of custom types. 47218475794SGreg Roach $translated = I18N::translate($type); 47318475794SGreg Roach 47418475794SGreg Roach if ($translated !== $type) { 47518475794SGreg Roach return $translated; 476a25f0a04SGreg Roach } 4773f9fe4ddSGreg Roach } 4784e5adf68SGreg Roach 47918475794SGreg Roach return e($type); 48018475794SGreg Roach } 48118475794SGreg Roach } 48218475794SGreg Roach 483455a30feSGreg Roach return Registry::elementFactory()->make($this->tag())->label(); 484a25f0a04SGreg Roach } 485a25f0a04SGreg Roach 486a25f0a04SGreg Roach /** 487a25f0a04SGreg Roach * This is a newly deleted fact, pending approval. 4887e96c925SGreg Roach * 4897e96c925SGreg Roach * @return void 490a25f0a04SGreg Roach */ 491e364afe4SGreg Roach public function setPendingDeletion(): void 492c1010edaSGreg Roach { 493a25f0a04SGreg Roach $this->pending_deletion = true; 494a25f0a04SGreg Roach $this->pending_addition = false; 495a25f0a04SGreg Roach } 496a25f0a04SGreg Roach 497a25f0a04SGreg Roach /** 498a25f0a04SGreg Roach * Is this a newly deleted fact, pending approval. 499a25f0a04SGreg Roach * 500cbc1590aSGreg Roach * @return bool 501a25f0a04SGreg Roach */ 5028f53f488SRico Sonntag public function isPendingDeletion(): bool 503c1010edaSGreg Roach { 504a25f0a04SGreg Roach return $this->pending_deletion; 505a25f0a04SGreg Roach } 506a25f0a04SGreg Roach 507a25f0a04SGreg Roach /** 508a25f0a04SGreg Roach * This is a newly added fact, pending approval. 5097e96c925SGreg Roach * 5107e96c925SGreg Roach * @return void 511a25f0a04SGreg Roach */ 512e364afe4SGreg Roach public function setPendingAddition(): void 513c1010edaSGreg Roach { 514a25f0a04SGreg Roach $this->pending_addition = true; 515a25f0a04SGreg Roach $this->pending_deletion = false; 516a25f0a04SGreg Roach } 517a25f0a04SGreg Roach 518a25f0a04SGreg Roach /** 519a25f0a04SGreg Roach * Is this a newly added fact, pending approval. 520a25f0a04SGreg Roach * 521cbc1590aSGreg Roach * @return bool 522a25f0a04SGreg Roach */ 5238f53f488SRico Sonntag public function isPendingAddition(): bool 524c1010edaSGreg Roach { 525a25f0a04SGreg Roach return $this->pending_addition; 526a25f0a04SGreg Roach } 527a25f0a04SGreg Roach 528a25f0a04SGreg Roach /** 529a25f0a04SGreg Roach * Source citations linked to this fact 530a25f0a04SGreg Roach * 53124f2a3afSGreg Roach * @return array<string> 532a25f0a04SGreg Roach */ 5338f53f488SRico Sonntag public function getCitations(): array 534c1010edaSGreg Roach { 5358d0ebef0SGreg Roach preg_match_all('/\n(2 SOUR @(' . Gedcom::REGEX_XREF . ')@(?:\n[3-9] .*)*)/', $this->gedcom(), $matches, PREG_SET_ORDER); 53613abd6f3SGreg Roach $citations = []; 537a25f0a04SGreg Roach foreach ($matches as $match) { 5386b9cb339SGreg Roach $source = Registry::sourceFactory()->make($match[2], $this->record()->tree()); 5392859ecedSJonathan Jaubart if ($source && $source->canShow()) { 540a25f0a04SGreg Roach $citations[] = $match[1]; 541a25f0a04SGreg Roach } 542a25f0a04SGreg Roach } 543a25f0a04SGreg Roach 544a25f0a04SGreg Roach return $citations; 545a25f0a04SGreg Roach } 546a25f0a04SGreg Roach 547a25f0a04SGreg Roach /** 548a25f0a04SGreg Roach * Notes (inline and objects) linked to this fact 549a25f0a04SGreg Roach * 55009482a55SGreg Roach * @return array<string|Note> 551a25f0a04SGreg Roach */ 5528f53f488SRico Sonntag public function getNotes(): array 553c1010edaSGreg Roach { 55413abd6f3SGreg Roach $notes = []; 555138ca96cSGreg Roach preg_match_all('/\n2 NOTE ?(.*(?:\n3.*)*)/', $this->gedcom(), $matches); 556a25f0a04SGreg Roach foreach ($matches[1] as $match) { 557a25f0a04SGreg Roach $note = preg_replace("/\n3 CONT ?/", "\n", $match); 5588d0ebef0SGreg Roach if (preg_match('/@(' . Gedcom::REGEX_XREF . ')@/', $note, $nmatch)) { 5596b9cb339SGreg Roach $note = Registry::noteFactory()->make($nmatch[1], $this->record()->tree()); 560a25f0a04SGreg Roach if ($note && $note->canShow()) { 561a25f0a04SGreg Roach // A note object 562a25f0a04SGreg Roach $notes[] = $note; 563a25f0a04SGreg Roach } 564a25f0a04SGreg Roach } else { 565a25f0a04SGreg Roach // An inline note 566a25f0a04SGreg Roach $notes[] = $note; 567a25f0a04SGreg Roach } 568a25f0a04SGreg Roach } 569a25f0a04SGreg Roach 570a25f0a04SGreg Roach return $notes; 571a25f0a04SGreg Roach } 572a25f0a04SGreg Roach 573a25f0a04SGreg Roach /** 574a25f0a04SGreg Roach * Media objects linked to this fact 575a25f0a04SGreg Roach * 57609482a55SGreg Roach * @return array<Media> 577a25f0a04SGreg Roach */ 5788f53f488SRico Sonntag public function getMedia(): array 579c1010edaSGreg Roach { 58013abd6f3SGreg Roach $media = []; 5818d0ebef0SGreg Roach preg_match_all('/\n2 OBJE @(' . Gedcom::REGEX_XREF . ')@/', $this->gedcom(), $matches); 582a25f0a04SGreg Roach foreach ($matches[1] as $match) { 5836b9cb339SGreg Roach $obje = Registry::mediaFactory()->make($match, $this->record()->tree()); 5842859ecedSJonathan Jaubart if ($obje && $obje->canShow()) { 585a25f0a04SGreg Roach $media[] = $obje; 586a25f0a04SGreg Roach } 587a25f0a04SGreg Roach } 588a25f0a04SGreg Roach 589a25f0a04SGreg Roach return $media; 590a25f0a04SGreg Roach } 591a25f0a04SGreg Roach 592a25f0a04SGreg Roach /** 593a25f0a04SGreg Roach * A one-line summary of the fact - for charts, etc. 594a25f0a04SGreg Roach * 595a25f0a04SGreg Roach * @return string 596a25f0a04SGreg Roach */ 5978f53f488SRico Sonntag public function summary(): string 598c1010edaSGreg Roach { 59913abd6f3SGreg Roach $attributes = []; 600dc124885SGreg Roach $target = $this->target(); 601db7bb364SGreg Roach if ($target instanceof GedcomRecord) { 60239ca88baSGreg Roach $attributes[] = $target->fullName(); 603a25f0a04SGreg Roach } else { 604726d7b07SGreg Roach // Fact value 60584586c02SGreg Roach $value = $this->value(); 606726d7b07SGreg Roach if ($value !== '' && $value !== 'Y') { 607315eb316SGreg Roach $attributes[] = '<bdi>' . e($value) . '</bdi>'; 608a25f0a04SGreg Roach } 609726d7b07SGreg Roach // Fact date 6102decada7SGreg Roach $date = $this->date(); 611726d7b07SGreg Roach if ($date->isOK()) { 6127fe676e5SGreg Roach if ($this->record() instanceof Individual && in_array($this->tag, Gedcom::BIRTH_EVENTS, true) && $this->record()->tree()->getPreference('SHOW_PARENTS_AGE')) { 613b315f3e1SGreg Roach $attributes[] = $date->display() . view('fact-parents-age', ['individual' => $this->record(), 'birth_date' => $date]); 614a25f0a04SGreg Roach } else { 615a25f0a04SGreg Roach $attributes[] = $date->display(); 616a25f0a04SGreg Roach } 617726d7b07SGreg Roach } 618726d7b07SGreg Roach // Fact place 619e364afe4SGreg Roach if ($this->place()->gedcomName() !== '') { 620392561bbSGreg Roach $attributes[] = $this->place()->shortName(); 621a25f0a04SGreg Roach } 622a25f0a04SGreg Roach } 6232d8f08abSGreg Roach 6247fe676e5SGreg Roach $class = 'fact_' . $this->tag; 625a25f0a04SGreg Roach if ($this->isPendingAddition()) { 62671a69701SGreg Roach $class .= ' wt-new'; 627a25f0a04SGreg Roach } elseif ($this->isPendingDeletion()) { 62871a69701SGreg Roach $class .= ' wt-old'; 629a25f0a04SGreg Roach } 6302d8f08abSGreg Roach 63106c87791SGreg Roach $label = '<span class="label">' . $this->label() . '</span>'; 63206c87791SGreg Roach $value = '<span class="field" dir="auto">' . implode(' — ', $attributes) . '</span>'; 63306c87791SGreg Roach 6342d8f08abSGreg Roach /* I18N: a label/value pair, such as “Occupation: Farmer”. Some languages may need to change the punctuation. */ 63506c87791SGreg Roach return '<div class="' . $class . '">' . I18N::translate('%1$s: %2$s', $label, $value) . '</div>'; 636a25f0a04SGreg Roach } 637a25f0a04SGreg Roach 638a25f0a04SGreg Roach /** 6399927f70fSGreg Roach * A one-line summary of the fact - for the clipboard, etc. 6409927f70fSGreg Roach * 6419927f70fSGreg Roach * @return string 6429927f70fSGreg Roach */ 6439927f70fSGreg Roach public function name(): string 6449927f70fSGreg Roach { 6459927f70fSGreg Roach $items = [$this->label()]; 6469927f70fSGreg Roach $target = $this->target(); 6479927f70fSGreg Roach 6489927f70fSGreg Roach if ($target instanceof GedcomRecord) { 649315eb316SGreg Roach $items[] = '<bdi>' . $target->fullName() . '</bdi>'; 6509927f70fSGreg Roach } else { 6519927f70fSGreg Roach // Fact value 6529927f70fSGreg Roach $value = $this->value(); 6539927f70fSGreg Roach if ($value !== '' && $value !== 'Y') { 654315eb316SGreg Roach $items[] = '<bdi>' . e($value) . '</bdi>'; 6559927f70fSGreg Roach } 6569927f70fSGreg Roach 6579927f70fSGreg Roach // Fact date 6589927f70fSGreg Roach if ($this->date()->isOK()) { 6599927f70fSGreg Roach $items[] = $this->date()->minimumDate()->format('%Y'); 6609927f70fSGreg Roach } 6619927f70fSGreg Roach 6629927f70fSGreg Roach // Fact place 6639927f70fSGreg Roach if ($this->place()->gedcomName() !== '') { 6649927f70fSGreg Roach $items[] = $this->place()->shortName(); 6659927f70fSGreg Roach } 6669927f70fSGreg Roach } 6679927f70fSGreg Roach 6689927f70fSGreg Roach return implode(' — ', $items); 6699927f70fSGreg Roach } 6709927f70fSGreg Roach 6719927f70fSGreg Roach /** 672580a4d11SGreg Roach * Helper functions to sort facts 673a25f0a04SGreg Roach * 674580a4d11SGreg Roach * @return Closure 675a25f0a04SGreg Roach */ 676580a4d11SGreg Roach private static function dateComparator(): Closure 677c1010edaSGreg Roach { 6786c2179e2SGreg Roach return static function (Fact $a, Fact $b): int { 6792decada7SGreg Roach if ($a->date()->isOK() && $b->date()->isOK()) { 680a25f0a04SGreg Roach // If both events have dates, compare by date 6812decada7SGreg Roach $ret = Date::compare($a->date(), $b->date()); 682a25f0a04SGreg Roach 683dfa848b8SGreg Roach if ($ret === 0) { 684580a4d11SGreg Roach // If dates overlap, compare by fact type 685580a4d11SGreg Roach $ret = self::typeComparator()($a, $b); 686a25f0a04SGreg Roach 687a25f0a04SGreg Roach // If the fact type is also the same, retain the initial order 688dfa848b8SGreg Roach if ($ret === 0) { 689580a4d11SGreg Roach $ret = $a->sortOrder <=> $b->sortOrder; 690a25f0a04SGreg Roach } 691a25f0a04SGreg Roach } 692a25f0a04SGreg Roach 693a25f0a04SGreg Roach return $ret; 694b2ce94c6SRico Sonntag } 695b2ce94c6SRico Sonntag 696a25f0a04SGreg Roach // One or both events have no date - retain the initial order 697580a4d11SGreg Roach return $a->sortOrder <=> $b->sortOrder; 698580a4d11SGreg Roach }; 699a25f0a04SGreg Roach } 700a25f0a04SGreg Roach 701a25f0a04SGreg Roach /** 702580a4d11SGreg Roach * Helper functions to sort facts. 703a25f0a04SGreg Roach * 704580a4d11SGreg Roach * @return Closure 705a25f0a04SGreg Roach */ 706580a4d11SGreg Roach public static function typeComparator(): Closure 707c1010edaSGreg Roach { 708bbe4546fSGreg Roach static $factsort = []; 709a25f0a04SGreg Roach 71054c1ab5eSGreg Roach if ($factsort === []) { 711bbe4546fSGreg Roach $factsort = array_flip(self::FACT_ORDER); 712a25f0a04SGreg Roach } 713a25f0a04SGreg Roach 7146c2179e2SGreg Roach return static function (Fact $a, Fact $b) use ($factsort): int { 715a25f0a04SGreg Roach // Facts from same families stay grouped together 716a25f0a04SGreg Roach // Keep MARR and DIV from the same families from mixing with events from other FAMs 717a25f0a04SGreg Roach // Use the original order in which the facts were added 718e7766c08SGreg Roach if ($a->record instanceof Family && $b->record instanceof Family && $a->record !== $b->record) { 719a25f0a04SGreg Roach return $a->sortOrder - $b->sortOrder; 720a25f0a04SGreg Roach } 721a25f0a04SGreg Roach 7227fe676e5SGreg Roach $atag = $a->tag; 7237fe676e5SGreg Roach $btag = $b->tag; 724a25f0a04SGreg Roach 725a25f0a04SGreg Roach // Events not in the above list get mapped onto one that is. 726a25f0a04SGreg Roach if (!array_key_exists($atag, $factsort)) { 7277a6ee1acSGreg Roach $atag = '_????_'; 728a25f0a04SGreg Roach } 729a25f0a04SGreg Roach 730a25f0a04SGreg Roach if (!array_key_exists($btag, $factsort)) { 7317a6ee1acSGreg Roach $btag = '_????_'; 732a25f0a04SGreg Roach } 733a25f0a04SGreg Roach 734a25f0a04SGreg Roach // - Don't let dated after DEAT/BURI facts sort non-dated facts before DEAT/BURI 735a25f0a04SGreg Roach // - Treat dated after BURI facts as BURI instead 7363425616eSGreg Roach if ($a->attribute('DATE') !== '' && $factsort[$atag] > $factsort['BURI'] && $factsort[$atag] < $factsort['CHAN']) { 737a25f0a04SGreg Roach $atag = 'BURI'; 738a25f0a04SGreg Roach } 739a25f0a04SGreg Roach 7403425616eSGreg Roach if ($b->attribute('DATE') !== '' && $factsort[$btag] > $factsort['BURI'] && $factsort[$btag] < $factsort['CHAN']) { 741a25f0a04SGreg Roach $btag = 'BURI'; 742a25f0a04SGreg Roach } 743a25f0a04SGreg Roach 744a25f0a04SGreg Roach $ret = $factsort[$atag] - $factsort[$btag]; 745a25f0a04SGreg Roach 746a25f0a04SGreg Roach // If facts are the same then put dated facts before non-dated facts 7477fa97a69SGreg Roach if ($ret === 0) { 7483425616eSGreg Roach if ($a->attribute('DATE') !== '' && $b->attribute('DATE') === '') { 749a25f0a04SGreg Roach return -1; 750a25f0a04SGreg Roach } 751a25f0a04SGreg Roach 7523425616eSGreg Roach if ($b->attribute('DATE') !== '' && $a->attribute('DATE') === '') { 753a25f0a04SGreg Roach return 1; 754a25f0a04SGreg Roach } 755a25f0a04SGreg Roach 756a25f0a04SGreg Roach // If no sorting preference, then keep original ordering 757a25f0a04SGreg Roach $ret = $a->sortOrder - $b->sortOrder; 758a25f0a04SGreg Roach } 759a25f0a04SGreg Roach 760a25f0a04SGreg Roach return $ret; 761580a4d11SGreg Roach }; 762580a4d11SGreg Roach } 763580a4d11SGreg Roach 764580a4d11SGreg Roach /** 765580a4d11SGreg Roach * A multi-key sort 766580a4d11SGreg Roach * 1. First divide the facts into two arrays one set with dates and one set without dates 767580a4d11SGreg Roach * 2. Sort each of the two new arrays, the date using the compare date function, the non-dated 768580a4d11SGreg Roach * using the compare type function 769580a4d11SGreg Roach * 3. Then merge the arrays back into the original array using the compare type function 770580a4d11SGreg Roach * 77136779af1SGreg Roach * @param Collection<int,Fact> $unsorted 772580a4d11SGreg Roach * 77336779af1SGreg Roach * @return Collection<int,Fact> 774580a4d11SGreg Roach */ 7758af3e5c1SGreg Roach public static function sortFacts(Collection $unsorted): Collection 776580a4d11SGreg Roach { 777580a4d11SGreg Roach $dated = []; 778580a4d11SGreg Roach $nondated = []; 779580a4d11SGreg Roach $sorted = []; 780580a4d11SGreg Roach 781580a4d11SGreg Roach // Split the array into dated and non-dated arrays 782580a4d11SGreg Roach $order = 0; 783580a4d11SGreg Roach 784580a4d11SGreg Roach foreach ($unsorted as $fact) { 785580a4d11SGreg Roach $fact->sortOrder = $order; 786580a4d11SGreg Roach $order++; 787580a4d11SGreg Roach 788580a4d11SGreg Roach if ($fact->date()->isOK()) { 789580a4d11SGreg Roach $dated[] = $fact; 790580a4d11SGreg Roach } else { 791580a4d11SGreg Roach $nondated[] = $fact; 792580a4d11SGreg Roach } 793580a4d11SGreg Roach } 794580a4d11SGreg Roach 795580a4d11SGreg Roach usort($dated, self::dateComparator()); 796580a4d11SGreg Roach usort($nondated, self::typeComparator()); 797580a4d11SGreg Roach 798580a4d11SGreg Roach // Merge the arrays 799580a4d11SGreg Roach $dc = count($dated); 800580a4d11SGreg Roach $nc = count($nondated); 801580a4d11SGreg Roach $i = 0; 802580a4d11SGreg Roach $j = 0; 803580a4d11SGreg Roach 804580a4d11SGreg Roach // while there is anything in the dated array continue merging 805580a4d11SGreg Roach while ($i < $dc) { 806580a4d11SGreg Roach // compare each fact by type to merge them in order 807580a4d11SGreg Roach if ($j < $nc && self::typeComparator()($dated[$i], $nondated[$j]) > 0) { 808580a4d11SGreg Roach $sorted[] = $nondated[$j]; 809580a4d11SGreg Roach $j++; 810580a4d11SGreg Roach } else { 811580a4d11SGreg Roach $sorted[] = $dated[$i]; 812580a4d11SGreg Roach $i++; 813580a4d11SGreg Roach } 814580a4d11SGreg Roach } 815580a4d11SGreg Roach 816580a4d11SGreg Roach // get anything that might be left in the nondated array 817580a4d11SGreg Roach while ($j < $nc) { 818580a4d11SGreg Roach $sorted[] = $nondated[$j]; 819580a4d11SGreg Roach $j++; 820580a4d11SGreg Roach } 821580a4d11SGreg Roach 8221c7a6874SGreg Roach return new Collection($sorted); 823a25f0a04SGreg Roach } 824a25f0a04SGreg Roach 825a25f0a04SGreg Roach /** 826ae71f733SGreg Roach * Sort fact/event tags using the same order that we use for facts. 827ae71f733SGreg Roach * 82836779af1SGreg Roach * @param Collection<int,string> $unsorted 829ae71f733SGreg Roach * 83036779af1SGreg Roach * @return Collection<int,string> 831ae71f733SGreg Roach */ 832ae71f733SGreg Roach public static function sortFactTags(Collection $unsorted): Collection 833ae71f733SGreg Roach { 834ae71f733SGreg Roach $tag_order = array_flip(self::FACT_ORDER); 835ae71f733SGreg Roach 836ae71f733SGreg Roach return $unsorted->sort(static function (string $x, string $y) use ($tag_order): int { 837ae71f733SGreg Roach $sort_x = $tag_order[$x] ?? $tag_order['_????_']; 838ae71f733SGreg Roach $sort_y = $tag_order[$y] ?? $tag_order['_????_']; 839ae71f733SGreg Roach 840ae71f733SGreg Roach return $sort_x - $sort_y; 841ae71f733SGreg Roach }); 842ae71f733SGreg Roach } 843ae71f733SGreg Roach 844ae71f733SGreg Roach /** 845a25f0a04SGreg Roach * Allow native PHP functions such as array_unique() to work with objects 846a25f0a04SGreg Roach * 847a25f0a04SGreg Roach * @return string 848a25f0a04SGreg Roach */ 849dfa848b8SGreg Roach public function __toString(): string 850c1010edaSGreg Roach { 851c0935879SGreg Roach return $this->id . '@' . $this->record->xref(); 852a25f0a04SGreg Roach } 853a25f0a04SGreg Roach} 854