1a25f0a04SGreg Roach<?php 23976b470SGreg Roach 3a25f0a04SGreg Roach/** 4a25f0a04SGreg Roach * webtrees: online genealogy 519aed3a1SGreg Roach * Copyright (C) 2020 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 15a25f0a04SGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>. 16a25f0a04SGreg Roach */ 17fcfa147eSGreg Roach 18e7f56f2aSGreg Roachdeclare(strict_types=1); 19e7f56f2aSGreg Roach 2076692c8bSGreg Roachnamespace Fisharebest\Webtrees; 2176692c8bSGreg Roach 22886b77daSGreg Roachuse Closure; 237e96c925SGreg Roachuse Exception; 243d7a8a4cSGreg Roachuse Fisharebest\Webtrees\Functions\FunctionsPrint; 255818a371SGreg Roachuse Fisharebest\Webtrees\Http\RequestHandlers\GedcomRecordPage; 2622e73debSGreg Roachuse Fisharebest\Webtrees\Services\PendingChangesService; 27bf4eb542SGreg Roachuse Illuminate\Database\Capsule\Manager as DB; 2883242252SGreg Roachuse Illuminate\Database\Query\Builder; 2983242252SGreg Roachuse Illuminate\Database\Query\Expression; 30ba1c12e8SGreg Roachuse Illuminate\Database\Query\JoinClause; 3139ca88baSGreg Roachuse Illuminate\Support\Collection; 3279529c87SGreg Roachuse stdClass; 3374670d65SGreg Roachuse Throwable; 345ab92b3fSGreg Roachuse Transliterator; 35a25f0a04SGreg Roach 36*b5961194SGreg Roachuse function addcslashes; 3722e73debSGreg Roachuse function app; 38f7440925SGreg Roachuse function array_shift; 39f7440925SGreg Roachuse function assert; 40f7440925SGreg Roachuse function count; 41f7440925SGreg Roachuse function date; 42f7440925SGreg Roachuse function e; 43f7440925SGreg Roachuse function explode; 44f7440925SGreg Roachuse function in_array; 45f7440925SGreg Roachuse function md5; 46f7440925SGreg Roachuse function preg_match; 47f7440925SGreg Roachuse function preg_match_all; 48f7440925SGreg Roachuse function preg_replace; 49f7440925SGreg Roachuse function preg_replace_callback; 50f7440925SGreg Roachuse function preg_split; 51f7440925SGreg Roachuse function route; 52f7440925SGreg Roachuse function str_pad; 53f7440925SGreg Roachuse function strip_tags; 54f7440925SGreg Roachuse function strpos; 55f7440925SGreg Roachuse function strtoupper; 56f7440925SGreg Roachuse function trim; 57f7440925SGreg Roach 58f7440925SGreg Roachuse const PREG_SET_ORDER; 59f7440925SGreg Roachuse const STR_PAD_LEFT; 6022e73debSGreg Roach 61a25f0a04SGreg Roach/** 6276692c8bSGreg Roach * A GEDCOM object. 63a25f0a04SGreg Roach */ 64c1010edaSGreg Roachclass GedcomRecord 65c1010edaSGreg Roach{ 6616d6367aSGreg Roach public const RECORD_TYPE = 'UNKNOWN'; 6716d6367aSGreg Roach 685818a371SGreg Roach protected const ROUTE_NAME = GedcomRecordPage::class; 695818a371SGreg Roach 7076692c8bSGreg Roach /** @var GedcomRecord[][] Allow getInstance() to return references to existing objects */ 71bec87e94SGreg Roach public static $gedcom_record_cache; 7279529c87SGreg Roach /** @var stdClass[][] Fetch all pending edits in one database query */ 73bec87e94SGreg Roach public static $pending_record_cache; 7422e73debSGreg Roach /** @var string The record identifier */ 7522e73debSGreg Roach protected $xref; 7622e73debSGreg Roach /** @var Tree The family tree to which this record belongs */ 7722e73debSGreg Roach protected $tree; 7822e73debSGreg Roach /** @var string GEDCOM data (before any pending edits) */ 7922e73debSGreg Roach protected $gedcom; 8022e73debSGreg Roach /** @var string|null GEDCOM data (after any pending edits) */ 8122e73debSGreg Roach protected $pending; 8222e73debSGreg Roach /** @var Fact[] facts extracted from $gedcom/$pending */ 8322e73debSGreg Roach protected $facts; 8422e73debSGreg Roach /** @var string[][] All the names of this individual */ 8522e73debSGreg Roach protected $getAllNames; 8622e73debSGreg Roach /** @var int|null Cached result */ 8722e73debSGreg Roach protected $getPrimaryName; 8822e73debSGreg Roach /** @var int|null Cached result */ 8922e73debSGreg Roach protected $getSecondaryName; 90a25f0a04SGreg Roach 91a25f0a04SGreg Roach /** 92a25f0a04SGreg Roach * Create a GedcomRecord object from raw GEDCOM data. 93a25f0a04SGreg Roach * 94a25f0a04SGreg Roach * @param string $xref 95a25f0a04SGreg Roach * @param string $gedcom an empty string for new/pending records 96a25f0a04SGreg Roach * @param string|null $pending null for a record with no pending edits, 97a25f0a04SGreg Roach * empty string for records with pending deletions 9824ec66ceSGreg Roach * @param Tree $tree 99a25f0a04SGreg Roach */ 100e364afe4SGreg Roach public function __construct(string $xref, string $gedcom, ?string $pending, Tree $tree) 101c1010edaSGreg Roach { 102a25f0a04SGreg Roach $this->xref = $xref; 103a25f0a04SGreg Roach $this->gedcom = $gedcom; 104a25f0a04SGreg Roach $this->pending = $pending; 10524ec66ceSGreg Roach $this->tree = $tree; 106a25f0a04SGreg Roach 107a25f0a04SGreg Roach $this->parseFacts(); 108a25f0a04SGreg Roach } 109a25f0a04SGreg Roach 110a25f0a04SGreg Roach /** 111886b77daSGreg Roach * A closure which will create a record from a database row. 112886b77daSGreg Roach * 113d5ad3db0SGreg Roach * @param Tree $tree 114d5ad3db0SGreg Roach * 115886b77daSGreg Roach * @return Closure 116886b77daSGreg Roach */ 117d5ad3db0SGreg Roach public static function rowMapper(Tree $tree): Closure 118886b77daSGreg Roach { 119d5ad3db0SGreg Roach return static function (stdClass $row) use ($tree): GedcomRecord { 120ffc0a61fSGreg Roach $record = GedcomRecord::getInstance($row->o_id, $tree, $row->o_gedcom); 121ffc0a61fSGreg Roach assert($record instanceof GedcomRecord); 122ffc0a61fSGreg Roach 123ffc0a61fSGreg Roach return $record; 124886b77daSGreg Roach }; 125886b77daSGreg Roach } 126886b77daSGreg Roach 127886b77daSGreg Roach /** 128886b77daSGreg Roach * A closure which will filter out private records. 129886b77daSGreg Roach * 130886b77daSGreg Roach * @return Closure 131886b77daSGreg Roach */ 1324146fabcSGreg Roach public static function accessFilter(): Closure 133886b77daSGreg Roach { 1346c2179e2SGreg Roach return static function (GedcomRecord $record): bool { 135886b77daSGreg Roach return $record->canShow(); 136886b77daSGreg Roach }; 137886b77daSGreg Roach } 138886b77daSGreg Roach 139886b77daSGreg Roach /** 140c156e8f5SGreg Roach * A closure which will compare records by name. 141c156e8f5SGreg Roach * 142c156e8f5SGreg Roach * @return Closure 143c156e8f5SGreg Roach */ 144c156e8f5SGreg Roach public static function nameComparator(): Closure 145c156e8f5SGreg Roach { 1466c2179e2SGreg Roach return static function (GedcomRecord $x, GedcomRecord $y): int { 147c156e8f5SGreg Roach if ($x->canShowName()) { 148c156e8f5SGreg Roach if ($y->canShowName()) { 14939ca88baSGreg Roach return I18N::strcasecmp($x->sortName(), $y->sortName()); 150c156e8f5SGreg Roach } 151c156e8f5SGreg Roach 152c156e8f5SGreg Roach return -1; // only $y is private 153c156e8f5SGreg Roach } 154c156e8f5SGreg Roach 155c156e8f5SGreg Roach if ($y->canShowName()) { 156c156e8f5SGreg Roach return 1; // only $x is private 157c156e8f5SGreg Roach } 158c156e8f5SGreg Roach 159c156e8f5SGreg Roach return 0; // both $x and $y private 160c156e8f5SGreg Roach }; 161c156e8f5SGreg Roach } 162c156e8f5SGreg Roach 163c156e8f5SGreg Roach /** 164c156e8f5SGreg Roach * A closure which will compare records by change time. 165c156e8f5SGreg Roach * 166c156e8f5SGreg Roach * @param int $direction +1 to sort ascending, -1 to sort descending 167c156e8f5SGreg Roach * 168c156e8f5SGreg Roach * @return Closure 169c156e8f5SGreg Roach */ 170c156e8f5SGreg Roach public static function lastChangeComparator(int $direction = 1): Closure 171c156e8f5SGreg Roach { 1726c2179e2SGreg Roach return static function (GedcomRecord $x, GedcomRecord $y) use ($direction): int { 1734459dc9aSGreg Roach return $direction * ($x->lastChangeTimestamp() <=> $y->lastChangeTimestamp()); 174c156e8f5SGreg Roach }; 175c156e8f5SGreg Roach } 176c156e8f5SGreg Roach 177c156e8f5SGreg Roach /** 178a25f0a04SGreg Roach * Get an instance of a GedcomRecord object. For single records, 179a25f0a04SGreg Roach * we just receive the XREF. For bulk records (such as lists 180a25f0a04SGreg Roach * and search results) we can receive the GEDCOM data as well. 181a25f0a04SGreg Roach * 182a25f0a04SGreg Roach * @param string $xref 18324ec66ceSGreg Roach * @param Tree $tree 184a25f0a04SGreg Roach * @param string|null $gedcom 185a25f0a04SGreg Roach * 186ffc0a61fSGreg Roach * @return GedcomRecord|Individual|Family|Source|Repository|Media|Note|Submitter|null 18722e73debSGreg Roach * @throws Exception 188a25f0a04SGreg Roach */ 18976f666f4SGreg Roach public static function getInstance(string $xref, Tree $tree, string $gedcom = null) 190c1010edaSGreg Roach { 19172cf66d4SGreg Roach $tree_id = $tree->id(); 19224ec66ceSGreg Roach 193e71ef9d2SGreg Roach // Is this record already in the cache? 19424ec66ceSGreg Roach if (isset(self::$gedcom_record_cache[$xref][$tree_id])) { 195e71ef9d2SGreg Roach return self::$gedcom_record_cache[$xref][$tree_id]; 196a25f0a04SGreg Roach } 197a25f0a04SGreg Roach 198a25f0a04SGreg Roach // Do we need to fetch the record from the database? 199a25f0a04SGreg Roach if ($gedcom === null) { 20024ec66ceSGreg Roach $gedcom = static::fetchGedcomRecord($xref, $tree_id); 201a25f0a04SGreg Roach } 202a25f0a04SGreg Roach 203a25f0a04SGreg Roach // If we can edit, then we also need to be able to see pending records. 20494075df0SGreg Roach if (Auth::isEditor($tree)) { 20524ec66ceSGreg Roach if (!isset(self::$pending_record_cache[$tree_id])) { 206a25f0a04SGreg Roach // Fetch all pending records in one database query 20713abd6f3SGreg Roach self::$pending_record_cache[$tree_id] = []; 20885fc8064SGreg Roach $rows = DB::table('change') 20985fc8064SGreg Roach ->where('gedcom_id', '=', $tree_id) 21085fc8064SGreg Roach ->where('status', '=', 'pending') 21185fc8064SGreg Roach ->orderBy('change_id') 21285fc8064SGreg Roach ->select(['xref', 'new_gedcom']) 21385fc8064SGreg Roach ->get(); 214d17d7b9eSGreg Roach 215a25f0a04SGreg Roach foreach ($rows as $row) { 21624ec66ceSGreg Roach self::$pending_record_cache[$tree_id][$row->xref] = $row->new_gedcom; 217a25f0a04SGreg Roach } 218a25f0a04SGreg Roach } 219a25f0a04SGreg Roach 220d17d7b9eSGreg Roach $pending = self::$pending_record_cache[$tree_id][$xref] ?? null; 221a25f0a04SGreg Roach } else { 222a25f0a04SGreg Roach // There are no pending changes for this record 223a25f0a04SGreg Roach $pending = null; 224a25f0a04SGreg Roach } 225a25f0a04SGreg Roach 226a25f0a04SGreg Roach // No such record exists 227a25f0a04SGreg Roach if ($gedcom === null && $pending === null) { 228a25f0a04SGreg Roach return null; 229a25f0a04SGreg Roach } 230a25f0a04SGreg Roach 231fc3ccce4SGreg Roach // No such record, but a pending creation exists 232fc3ccce4SGreg Roach if ($gedcom === null) { 233fc3ccce4SGreg Roach $gedcom = ''; 234fc3ccce4SGreg Roach } 235fc3ccce4SGreg Roach 236a25f0a04SGreg Roach // Create the object 2378d0ebef0SGreg Roach if (preg_match('/^0 @(' . Gedcom::REGEX_XREF . ')@ (' . Gedcom::REGEX_TAG . ')/', $gedcom . $pending, $match)) { 238a25f0a04SGreg Roach $xref = $match[1]; // Collation - we may have requested I123 and found i123 239a25f0a04SGreg Roach $type = $match[2]; 240a25f0a04SGreg Roach } elseif (preg_match('/^0 (HEAD|TRLR)/', $gedcom . $pending, $match)) { 241a25f0a04SGreg Roach $xref = $match[1]; 242a25f0a04SGreg Roach $type = $match[1]; 243a25f0a04SGreg Roach } elseif ($gedcom . $pending) { 2447e96c925SGreg Roach throw new Exception('Unrecognized GEDCOM record: ' . $gedcom); 245a25f0a04SGreg Roach } else { 246a25f0a04SGreg Roach // A record with both pending creation and pending deletion 247a25f0a04SGreg Roach $type = static::RECORD_TYPE; 248a25f0a04SGreg Roach } 249a25f0a04SGreg Roach 250a25f0a04SGreg Roach switch ($type) { 251ac107fcfSGreg Roach case Individual::RECORD_TYPE: 25224ec66ceSGreg Roach $record = new Individual($xref, $gedcom, $pending, $tree); 253a25f0a04SGreg Roach break; 254ac107fcfSGreg Roach 255ac107fcfSGreg Roach case Family::RECORD_TYPE: 25624ec66ceSGreg Roach $record = new Family($xref, $gedcom, $pending, $tree); 257a25f0a04SGreg Roach break; 258ac107fcfSGreg Roach 259ac107fcfSGreg Roach case Source::RECORD_TYPE: 26024ec66ceSGreg Roach $record = new Source($xref, $gedcom, $pending, $tree); 261a25f0a04SGreg Roach break; 262ac107fcfSGreg Roach 263ac107fcfSGreg Roach case Media::RECORD_TYPE: 26424ec66ceSGreg Roach $record = new Media($xref, $gedcom, $pending, $tree); 265a25f0a04SGreg Roach break; 266ac107fcfSGreg Roach 267ac107fcfSGreg Roach case Repository::RECORD_TYPE: 26824ec66ceSGreg Roach $record = new Repository($xref, $gedcom, $pending, $tree); 269a25f0a04SGreg Roach break; 270ac107fcfSGreg Roach 271ac107fcfSGreg Roach case Note::RECORD_TYPE: 27224ec66ceSGreg Roach $record = new Note($xref, $gedcom, $pending, $tree); 273a25f0a04SGreg Roach break; 274ac107fcfSGreg Roach 275ac107fcfSGreg Roach case Submitter::RECORD_TYPE: 276ffc0a61fSGreg Roach $record = new Submitter($xref, $gedcom, $pending, $tree); 277ffc0a61fSGreg Roach break; 278ac107fcfSGreg Roach 2791635452cSGreg Roach case Submission::RECORD_TYPE: 2801635452cSGreg Roach $record = new Submission($xref, $gedcom, $pending, $tree); 2811635452cSGreg Roach break; 2821635452cSGreg Roach 2831635452cSGreg Roach case Header::RECORD_TYPE: 2841635452cSGreg Roach $record = new Header($xref, $gedcom, $pending, $tree); 2851635452cSGreg Roach break; 2861635452cSGreg Roach 287a25f0a04SGreg Roach default: 28806ef8e02SGreg Roach $record = new self($xref, $gedcom, $pending, $tree); 289a25f0a04SGreg Roach break; 290a25f0a04SGreg Roach } 291a25f0a04SGreg Roach 292a25f0a04SGreg Roach // Store it in the cache 29324ec66ceSGreg Roach self::$gedcom_record_cache[$xref][$tree_id] = $record; 294a25f0a04SGreg Roach 295a25f0a04SGreg Roach return $record; 296a25f0a04SGreg Roach } 297a25f0a04SGreg Roach 298a25f0a04SGreg Roach /** 299a25f0a04SGreg Roach * Fetch data from the database 300a25f0a04SGreg Roach * 301a25f0a04SGreg Roach * @param string $xref 302cbc1590aSGreg Roach * @param int $tree_id 303a25f0a04SGreg Roach * 304e364afe4SGreg Roach * @return string|null 305a25f0a04SGreg Roach */ 306e364afe4SGreg Roach protected static function fetchGedcomRecord(string $xref, int $tree_id): ?string 307c1010edaSGreg Roach { 308a25f0a04SGreg Roach // We don't know what type of object this is. Try each one in turn. 3091635452cSGreg Roach return 3101635452cSGreg Roach Individual::fetchGedcomRecord($xref, $tree_id) ?? 3111635452cSGreg Roach Family::fetchGedcomRecord($xref, $tree_id) ?? 3121635452cSGreg Roach Source::fetchGedcomRecord($xref, $tree_id) ?? 3131635452cSGreg Roach Repository::fetchGedcomRecord($xref, $tree_id) ?? 3141635452cSGreg Roach Media::fetchGedcomRecord($xref, $tree_id) ?? 3151635452cSGreg Roach Note::fetchGedcomRecord($xref, $tree_id) ?? 3161635452cSGreg Roach Submitter::fetchGedcomRecord($xref, $tree_id) ?? 3171635452cSGreg Roach Submission::fetchGedcomRecord($xref, $tree_id) ?? 3181635452cSGreg Roach Header::fetchGedcomRecord($xref, $tree_id) ?? 3191635452cSGreg Roach DB::table('other') 32085fc8064SGreg Roach ->where('o_file', '=', $tree_id) 32185fc8064SGreg Roach ->where('o_id', '=', $xref) 32285fc8064SGreg Roach ->value('o_gedcom'); 323a25f0a04SGreg Roach } 324a25f0a04SGreg Roach 325a25f0a04SGreg Roach /** 326a25f0a04SGreg Roach * Get the XREF for this record 327a25f0a04SGreg Roach * 328a25f0a04SGreg Roach * @return string 329a25f0a04SGreg Roach */ 330c0935879SGreg Roach public function xref(): string 331c1010edaSGreg Roach { 332a25f0a04SGreg Roach return $this->xref; 333a25f0a04SGreg Roach } 334a25f0a04SGreg Roach 335a25f0a04SGreg Roach /** 336000959d9SGreg Roach * Get the tree to which this record belongs 337000959d9SGreg Roach * 338000959d9SGreg Roach * @return Tree 339000959d9SGreg Roach */ 340f4afa648SGreg Roach public function tree(): Tree 341c1010edaSGreg Roach { 342518bbdc1SGreg Roach return $this->tree; 343000959d9SGreg Roach } 344000959d9SGreg Roach 345000959d9SGreg Roach /** 346a25f0a04SGreg Roach * Application code should access data via Fact objects. 347a25f0a04SGreg Roach * This function exists to support old code. 348a25f0a04SGreg Roach * 349a25f0a04SGreg Roach * @return string 350a25f0a04SGreg Roach */ 351e364afe4SGreg Roach public function gedcom(): string 352c1010edaSGreg Roach { 353b2ce94c6SRico Sonntag return $this->pending ?? $this->gedcom; 354a25f0a04SGreg Roach } 355a25f0a04SGreg Roach 356a25f0a04SGreg Roach /** 357a25f0a04SGreg Roach * Does this record have a pending change? 358a25f0a04SGreg Roach * 359cbc1590aSGreg Roach * @return bool 360a25f0a04SGreg Roach */ 3618f53f488SRico Sonntag public function isPendingAddition(): bool 362c1010edaSGreg Roach { 363a25f0a04SGreg Roach return $this->pending !== null; 364a25f0a04SGreg Roach } 365a25f0a04SGreg Roach 366a25f0a04SGreg Roach /** 367a25f0a04SGreg Roach * Does this record have a pending deletion? 368a25f0a04SGreg Roach * 369cbc1590aSGreg Roach * @return bool 370a25f0a04SGreg Roach */ 3718f53f488SRico Sonntag public function isPendingDeletion(): bool 372c1010edaSGreg Roach { 373a25f0a04SGreg Roach return $this->pending === ''; 374a25f0a04SGreg Roach } 375a25f0a04SGreg Roach 376a25f0a04SGreg Roach /** 377ee4364daSGreg Roach * Generate a "slug" to use in pretty URLs. 378ee4364daSGreg Roach * 379ee4364daSGreg Roach * @return string 380ee4364daSGreg Roach */ 381ee4364daSGreg Roach public function slug(): string 382ee4364daSGreg Roach { 3835ab92b3fSGreg Roach $slug = strip_tags($this->fullName()); 384f7440925SGreg Roach 38574670d65SGreg Roach try { 386f7440925SGreg Roach $transliterator = Transliterator::create('Any-Latin;Latin-ASCII'); 3875ab92b3fSGreg Roach $slug = $transliterator->transliterate($slug); 38874670d65SGreg Roach } catch (Throwable $ex) { 38974670d65SGreg Roach // ext-intl not installed? 39074670d65SGreg Roach // Transliteration algorithms not present in lib-icu? 391f7440925SGreg Roach } 392f7440925SGreg Roach 3935ab92b3fSGreg Roach $slug = preg_replace('/[^A-Za-z0-9]+/', '-', $slug); 3945ab92b3fSGreg Roach 3955ab92b3fSGreg Roach return trim($slug, '-') ?: '-'; 396ee4364daSGreg Roach } 397ee4364daSGreg Roach 398ee4364daSGreg Roach /** 399225e381fSGreg Roach * Generate a URL to this record. 400a25f0a04SGreg Roach * 401a25f0a04SGreg Roach * @return string 402a25f0a04SGreg Roach */ 4038f53f488SRico Sonntag public function url(): string 404c1010edaSGreg Roach { 405225e381fSGreg Roach return route(static::ROUTE_NAME, [ 406c0935879SGreg Roach 'xref' => $this->xref(), 407ee4364daSGreg Roach 'tree' => $this->tree->name(), 408ee4364daSGreg Roach 'slug' => $this->slug(), 409225e381fSGreg Roach ]); 410a25f0a04SGreg Roach } 411a25f0a04SGreg Roach 412a25f0a04SGreg Roach /** 413a25f0a04SGreg Roach * Can the details of this record be shown? 414a25f0a04SGreg Roach * 415cbc1590aSGreg Roach * @param int|null $access_level 416a25f0a04SGreg Roach * 417cbc1590aSGreg Roach * @return bool 418a25f0a04SGreg Roach */ 41935584196SGreg Roach public function canShow(int $access_level = null): bool 420c1010edaSGreg Roach { 421f0b9c048SGreg Roach $access_level = $access_level ?? Auth::accessLevel($this->tree); 4224b9ff166SGreg Roach 423a25f0a04SGreg Roach // We use this value to bypass privacy checks. For example, 424a25f0a04SGreg Roach // when downloading data or when calculating privacy itself. 425f0b9c048SGreg Roach if ($access_level === Auth::PRIV_HIDE) { 426a25f0a04SGreg Roach return true; 427a25f0a04SGreg Roach } 428f0b9c048SGreg Roach 4297476e8a5SGreg Roach $cache_key = 'show-' . $this->xref . '-' . $this->tree->id() . '-' . $access_level; 430f0b9c048SGreg Roach 431c692965aSGreg Roach return app('cache.array')->remember($cache_key, function () use ($access_level) { 432f0b9c048SGreg Roach return $this->canShowRecord($access_level); 433f0b9c048SGreg Roach }); 434a25f0a04SGreg Roach } 435a25f0a04SGreg Roach 436a25f0a04SGreg Roach /** 437a25f0a04SGreg Roach * Can the name of this record be shown? 438a25f0a04SGreg Roach * 439cbc1590aSGreg Roach * @param int|null $access_level 440a25f0a04SGreg Roach * 441cbc1590aSGreg Roach * @return bool 442a25f0a04SGreg Roach */ 44376f666f4SGreg Roach public function canShowName(int $access_level = null): bool 444c1010edaSGreg Roach { 445a25f0a04SGreg Roach return $this->canShow($access_level); 446a25f0a04SGreg Roach } 447a25f0a04SGreg Roach 448a25f0a04SGreg Roach /** 449a25f0a04SGreg Roach * Can we edit this record? 450a25f0a04SGreg Roach * 451cbc1590aSGreg Roach * @return bool 452a25f0a04SGreg Roach */ 4538f53f488SRico Sonntag public function canEdit(): bool 454c1010edaSGreg Roach { 4551450f098SGreg Roach if ($this->isPendingDeletion()) { 4561450f098SGreg Roach return false; 4571450f098SGreg Roach } 4581450f098SGreg Roach 4591450f098SGreg Roach if (Auth::isManager($this->tree)) { 4601450f098SGreg Roach return true; 4611450f098SGreg Roach } 4621450f098SGreg Roach 4631450f098SGreg Roach return Auth::isEditor($this->tree) && strpos($this->gedcom, "\n1 RESN locked") === false; 464a25f0a04SGreg Roach } 465a25f0a04SGreg Roach 466a25f0a04SGreg Roach /** 467a25f0a04SGreg Roach * Remove private data from the raw gedcom record. 468a25f0a04SGreg Roach * Return both the visible and invisible data. We need the invisible data when editing. 469a25f0a04SGreg Roach * 470cbc1590aSGreg Roach * @param int $access_level 471a25f0a04SGreg Roach * 472a25f0a04SGreg Roach * @return string 473a25f0a04SGreg Roach */ 474e364afe4SGreg Roach public function privatizeGedcom(int $access_level): string 475c1010edaSGreg Roach { 476e364afe4SGreg Roach if ($access_level === Auth::PRIV_HIDE) { 477a25f0a04SGreg Roach // We may need the original record, for example when downloading a GEDCOM or clippings cart 478a25f0a04SGreg Roach return $this->gedcom; 479b2ce94c6SRico Sonntag } 480b2ce94c6SRico Sonntag 481b2ce94c6SRico Sonntag if ($this->canShow($access_level)) { 482a25f0a04SGreg Roach // The record is not private, but the individual facts may be. 483a25f0a04SGreg Roach 484a25f0a04SGreg Roach // Include the entire first line (for NOTE records) 485dc141db3SGreg Roach [$gedrec] = explode("\n", $this->gedcom . $this->pending, 2); 486a25f0a04SGreg Roach 487a25f0a04SGreg Roach // Check each of the facts for access 4888d0ebef0SGreg Roach foreach ($this->facts([], false, $access_level) as $fact) { 489138ca96cSGreg Roach $gedrec .= "\n" . $fact->gedcom(); 490a25f0a04SGreg Roach } 491cbc1590aSGreg Roach 492a25f0a04SGreg Roach return $gedrec; 493b2ce94c6SRico Sonntag } 494b2ce94c6SRico Sonntag 495a25f0a04SGreg Roach // We cannot display the details, but we may be able to display 496a25f0a04SGreg Roach // limited data, such as links to other records. 497a25f0a04SGreg Roach return $this->createPrivateGedcomRecord($access_level); 498a25f0a04SGreg Roach } 499a25f0a04SGreg Roach 500a25f0a04SGreg Roach /** 501a25f0a04SGreg Roach * Default for "other" object types 502c7ff4153SGreg Roach * 503c7ff4153SGreg Roach * @return void 504a25f0a04SGreg Roach */ 505e364afe4SGreg Roach public function extractNames(): void 506c1010edaSGreg Roach { 50776f666f4SGreg Roach $this->addName(static::RECORD_TYPE, $this->getFallBackName(), ''); 508a25f0a04SGreg Roach } 509a25f0a04SGreg Roach 510a25f0a04SGreg Roach /** 511a25f0a04SGreg Roach * Derived classes should redefine this function, otherwise the object will have no name 512a25f0a04SGreg Roach * 513a25f0a04SGreg Roach * @return string[][] 514a25f0a04SGreg Roach */ 5158f53f488SRico Sonntag public function getAllNames(): array 516c1010edaSGreg Roach { 517bdb3725aSGreg Roach if ($this->getAllNames === null) { 518bdb3725aSGreg Roach $this->getAllNames = []; 519a25f0a04SGreg Roach if ($this->canShowName()) { 520a25f0a04SGreg Roach // Ask the record to extract its names 521a25f0a04SGreg Roach $this->extractNames(); 522a25f0a04SGreg Roach // No name found? Use a fallback. 523bdb3725aSGreg Roach if (!$this->getAllNames) { 524db7bb364SGreg Roach $this->addName(static::RECORD_TYPE, $this->getFallBackName(), ''); 525a25f0a04SGreg Roach } 526a25f0a04SGreg Roach } else { 527db7bb364SGreg Roach $this->addName(static::RECORD_TYPE, I18N::translate('Private'), ''); 528a25f0a04SGreg Roach } 529a25f0a04SGreg Roach } 530cbc1590aSGreg Roach 531bdb3725aSGreg Roach return $this->getAllNames; 532a25f0a04SGreg Roach } 533a25f0a04SGreg Roach 534a25f0a04SGreg Roach /** 535a25f0a04SGreg Roach * If this object has no name, what do we call it? 536a25f0a04SGreg Roach * 537a25f0a04SGreg Roach * @return string 538a25f0a04SGreg Roach */ 5398f53f488SRico Sonntag public function getFallBackName(): string 540c1010edaSGreg Roach { 541c0935879SGreg Roach return e($this->xref()); 542a25f0a04SGreg Roach } 543a25f0a04SGreg Roach 544a25f0a04SGreg Roach /** 545a25f0a04SGreg Roach * Which of the (possibly several) names of this record is the primary one. 546a25f0a04SGreg Roach * 547cbc1590aSGreg Roach * @return int 548a25f0a04SGreg Roach */ 5498f53f488SRico Sonntag public function getPrimaryName(): int 550c1010edaSGreg Roach { 551a25f0a04SGreg Roach static $language_script; 552a25f0a04SGreg Roach 553a25f0a04SGreg Roach if ($language_script === null) { 55465cf5706SGreg Roach $language_script = $language_script ?? I18N::locale()->script()->code(); 555a25f0a04SGreg Roach } 556a25f0a04SGreg Roach 557bdb3725aSGreg Roach if ($this->getPrimaryName === null) { 558a25f0a04SGreg Roach // Generally, the first name is the primary one.... 559bdb3725aSGreg Roach $this->getPrimaryName = 0; 560a25f0a04SGreg Roach // ...except when the language/name use different character sets 561a25f0a04SGreg Roach foreach ($this->getAllNames() as $n => $name) { 56269546be1SGreg Roach if (I18N::textScript($name['sort']) === $language_script) { 563bdb3725aSGreg Roach $this->getPrimaryName = $n; 564a25f0a04SGreg Roach break; 565a25f0a04SGreg Roach } 566a25f0a04SGreg Roach } 567a25f0a04SGreg Roach } 568a25f0a04SGreg Roach 569bdb3725aSGreg Roach return $this->getPrimaryName; 570a25f0a04SGreg Roach } 571a25f0a04SGreg Roach 572a25f0a04SGreg Roach /** 573a25f0a04SGreg Roach * Which of the (possibly several) names of this record is the secondary one. 574a25f0a04SGreg Roach * 575cbc1590aSGreg Roach * @return int 576a25f0a04SGreg Roach */ 5778f53f488SRico Sonntag public function getSecondaryName(): int 578c1010edaSGreg Roach { 5798f038c36SRico Sonntag if ($this->getSecondaryName === null) { 580a25f0a04SGreg Roach // Generally, the primary and secondary names are the same 581bdb3725aSGreg Roach $this->getSecondaryName = $this->getPrimaryName(); 582a25f0a04SGreg Roach // ....except when there are names with different character sets 583a25f0a04SGreg Roach $all_names = $this->getAllNames(); 584a25f0a04SGreg Roach if (count($all_names) > 1) { 585a25f0a04SGreg Roach $primary_script = I18N::textScript($all_names[$this->getPrimaryName()]['sort']); 586a25f0a04SGreg Roach foreach ($all_names as $n => $name) { 587e364afe4SGreg Roach if ($n !== $this->getPrimaryName() && $name['type'] !== '_MARNM' && I18N::textScript($name['sort']) !== $primary_script) { 588bdb3725aSGreg Roach $this->getSecondaryName = $n; 589a25f0a04SGreg Roach break; 590a25f0a04SGreg Roach } 591a25f0a04SGreg Roach } 592a25f0a04SGreg Roach } 593a25f0a04SGreg Roach } 594cbc1590aSGreg Roach 595bdb3725aSGreg Roach return $this->getSecondaryName; 596a25f0a04SGreg Roach } 597a25f0a04SGreg Roach 598a25f0a04SGreg Roach /** 599a25f0a04SGreg Roach * Allow the choice of primary name to be overidden, e.g. in a search result 600a25f0a04SGreg Roach * 60176f666f4SGreg Roach * @param int|null $n 6027e96c925SGreg Roach * 6037e96c925SGreg Roach * @return void 604a25f0a04SGreg Roach */ 605e364afe4SGreg Roach public function setPrimaryName(int $n = null): void 606c1010edaSGreg Roach { 607bdb3725aSGreg Roach $this->getPrimaryName = $n; 608bdb3725aSGreg Roach $this->getSecondaryName = null; 609a25f0a04SGreg Roach } 610a25f0a04SGreg Roach 611a25f0a04SGreg Roach /** 612a25f0a04SGreg Roach * Allow native PHP functions such as array_unique() to work with objects 613a25f0a04SGreg Roach * 614a25f0a04SGreg Roach * @return string 615a25f0a04SGreg Roach */ 616c1010edaSGreg Roach public function __toString() 617c1010edaSGreg Roach { 61872cf66d4SGreg Roach return $this->xref . '@' . $this->tree->id(); 619a25f0a04SGreg Roach } 620a25f0a04SGreg Roach 621a25f0a04SGreg Roach /** 622c156e8f5SGreg Roach * /** 623a25f0a04SGreg Roach * Get variants of the name 624a25f0a04SGreg Roach * 625a25f0a04SGreg Roach * @return string 626a25f0a04SGreg Roach */ 627e364afe4SGreg Roach public function fullName(): string 628c1010edaSGreg Roach { 629a25f0a04SGreg Roach if ($this->canShowName()) { 630a25f0a04SGreg Roach $tmp = $this->getAllNames(); 631cbc1590aSGreg Roach 632a25f0a04SGreg Roach return $tmp[$this->getPrimaryName()]['full']; 633a25f0a04SGreg Roach } 634b2ce94c6SRico Sonntag 635b2ce94c6SRico Sonntag return I18N::translate('Private'); 636a25f0a04SGreg Roach } 637a25f0a04SGreg Roach 638a25f0a04SGreg Roach /** 639a25f0a04SGreg Roach * Get a sortable version of the name. Do not display this! 640a25f0a04SGreg Roach * 641a25f0a04SGreg Roach * @return string 642a25f0a04SGreg Roach */ 64339ca88baSGreg Roach public function sortName(): string 644c1010edaSGreg Roach { 645a25f0a04SGreg Roach // The sortable name is never displayed, no need to call canShowName() 646a25f0a04SGreg Roach $tmp = $this->getAllNames(); 647cbc1590aSGreg Roach 648a25f0a04SGreg Roach return $tmp[$this->getPrimaryName()]['sort']; 649a25f0a04SGreg Roach } 650a25f0a04SGreg Roach 651a25f0a04SGreg Roach /** 652a25f0a04SGreg Roach * Get the full name in an alternative character set 653a25f0a04SGreg Roach * 654e364afe4SGreg Roach * @return string|null 655a25f0a04SGreg Roach */ 656e364afe4SGreg Roach public function alternateName(): ?string 657c1010edaSGreg Roach { 658e364afe4SGreg Roach if ($this->canShowName() && $this->getPrimaryName() !== $this->getSecondaryName()) { 659a25f0a04SGreg Roach $all_names = $this->getAllNames(); 660cbc1590aSGreg Roach 661a25f0a04SGreg Roach return $all_names[$this->getSecondaryName()]['full']; 662a25f0a04SGreg Roach } 663b2ce94c6SRico Sonntag 664b2ce94c6SRico Sonntag return null; 665a25f0a04SGreg Roach } 666a25f0a04SGreg Roach 667a25f0a04SGreg Roach /** 668a25f0a04SGreg Roach * Format this object for display in a list 669a25f0a04SGreg Roach * 670a25f0a04SGreg Roach * @return string 671a25f0a04SGreg Roach */ 6728f53f488SRico Sonntag public function formatList(): string 673c1010edaSGreg Roach { 674b165e17cSGreg Roach $html = '<a href="' . e($this->url()) . '" class="list_item">'; 67539ca88baSGreg Roach $html .= '<b>' . $this->fullName() . '</b>'; 676a25f0a04SGreg Roach $html .= $this->formatListDetails(); 677b165e17cSGreg Roach $html .= '</a>'; 678cbc1590aSGreg Roach 679a25f0a04SGreg Roach return $html; 680a25f0a04SGreg Roach } 681a25f0a04SGreg Roach 682a25f0a04SGreg Roach /** 683a25f0a04SGreg Roach * This function should be redefined in derived classes to show any major 684a25f0a04SGreg Roach * identifying characteristics of this record. 685a25f0a04SGreg Roach * 686a25f0a04SGreg Roach * @return string 687a25f0a04SGreg Roach */ 6888f53f488SRico Sonntag public function formatListDetails(): string 689c1010edaSGreg Roach { 690a25f0a04SGreg Roach return ''; 691a25f0a04SGreg Roach } 692a25f0a04SGreg Roach 693a25f0a04SGreg Roach /** 694a25f0a04SGreg Roach * Extract/format the first fact from a list of facts. 695a25f0a04SGreg Roach * 6968d0ebef0SGreg Roach * @param string[] $facts 697cbc1590aSGreg Roach * @param int $style 698a25f0a04SGreg Roach * 699a25f0a04SGreg Roach * @return string 700a25f0a04SGreg Roach */ 7018d0ebef0SGreg Roach public function formatFirstMajorFact(array $facts, int $style): string 702c1010edaSGreg Roach { 70330158ae7SGreg Roach foreach ($this->facts($facts, true) as $event) { 704a25f0a04SGreg Roach // Only display if it has a date or place (or both) 705e364afe4SGreg Roach if ($event->date()->isOK() && $event->place()->gedcomName() !== '') { 706d93f11b5SGreg Roach $joiner = ' — '; 707d93f11b5SGreg Roach } else { 708d93f11b5SGreg Roach $joiner = ''; 709d93f11b5SGreg Roach } 710e364afe4SGreg Roach if ($event->date()->isOK() || $event->place()->gedcomName() !== '') { 711a25f0a04SGreg Roach switch ($style) { 712a25f0a04SGreg Roach case 1: 7137b7d8067SGreg Roach return '<br><em>' . $event->label() . ' ' . FunctionsPrint::formatFactDate($event, $this, false, false) . $joiner . FunctionsPrint::formatFactPlace($event) . '</em>'; 714a25f0a04SGreg Roach case 2: 7157b7d8067SGreg Roach return '<dl><dt class="label">' . $event->label() . '</dt><dd class="field">' . FunctionsPrint::formatFactDate($event, $this, false, false) . $joiner . FunctionsPrint::formatFactPlace($event) . '</dd></dl>'; 716a25f0a04SGreg Roach } 717a25f0a04SGreg Roach } 718a25f0a04SGreg Roach } 719cbc1590aSGreg Roach 720a25f0a04SGreg Roach return ''; 721a25f0a04SGreg Roach } 722a25f0a04SGreg Roach 723a25f0a04SGreg Roach /** 724a25f0a04SGreg Roach * Find individuals linked to this record. 725a25f0a04SGreg Roach * 726a25f0a04SGreg Roach * @param string $link 727a25f0a04SGreg Roach * 728b5c8fd7eSGreg Roach * @return Collection<Individual> 729a25f0a04SGreg Roach */ 730907c1109SGreg Roach public function linkedIndividuals(string $link): Collection 731c1010edaSGreg Roach { 732907c1109SGreg Roach return DB::table('individuals') 7330b5fd0a6SGreg Roach ->join('link', static function (JoinClause $join): void { 734907c1109SGreg Roach $join 735907c1109SGreg Roach ->on('l_file', '=', 'i_file') 736907c1109SGreg Roach ->on('l_from', '=', 'i_id'); 737ba1c12e8SGreg Roach }) 738ba1c12e8SGreg Roach ->where('i_file', '=', $this->tree->id()) 739ba1c12e8SGreg Roach ->where('l_type', '=', $link) 740ba1c12e8SGreg Roach ->where('l_to', '=', $this->xref) 741907c1109SGreg Roach ->select(['individuals.*']) 742907c1109SGreg Roach ->get() 743d5ad3db0SGreg Roach ->map(Individual::rowMapper($this->tree)) 744907c1109SGreg Roach ->filter(self::accessFilter()); 745a25f0a04SGreg Roach } 746a25f0a04SGreg Roach 747a25f0a04SGreg Roach /** 748a25f0a04SGreg Roach * Find families linked to this record. 749a25f0a04SGreg Roach * 750a25f0a04SGreg Roach * @param string $link 751a25f0a04SGreg Roach * 752b5c8fd7eSGreg Roach * @return Collection<Family> 753a25f0a04SGreg Roach */ 754907c1109SGreg Roach public function linkedFamilies(string $link): Collection 755c1010edaSGreg Roach { 756907c1109SGreg Roach return DB::table('families') 7570b5fd0a6SGreg Roach ->join('link', static function (JoinClause $join): void { 758907c1109SGreg Roach $join 759907c1109SGreg Roach ->on('l_file', '=', 'f_file') 760907c1109SGreg Roach ->on('l_from', '=', 'f_id'); 761ba1c12e8SGreg Roach }) 762ba1c12e8SGreg Roach ->where('f_file', '=', $this->tree->id()) 763ba1c12e8SGreg Roach ->where('l_type', '=', $link) 764ba1c12e8SGreg Roach ->where('l_to', '=', $this->xref) 765907c1109SGreg Roach ->select(['families.*']) 766907c1109SGreg Roach ->get() 767d5ad3db0SGreg Roach ->map(Family::rowMapper($this->tree)) 768907c1109SGreg Roach ->filter(self::accessFilter()); 769a25f0a04SGreg Roach } 770a25f0a04SGreg Roach 771a25f0a04SGreg Roach /** 772a25f0a04SGreg Roach * Find sources linked to this record. 773a25f0a04SGreg Roach * 774a25f0a04SGreg Roach * @param string $link 775a25f0a04SGreg Roach * 776b5c8fd7eSGreg Roach * @return Collection<Source> 777a25f0a04SGreg Roach */ 778907c1109SGreg Roach public function linkedSources(string $link): Collection 779c1010edaSGreg Roach { 780907c1109SGreg Roach return DB::table('sources') 7810b5fd0a6SGreg Roach ->join('link', static function (JoinClause $join): void { 782907c1109SGreg Roach $join 783907c1109SGreg Roach ->on('l_file', '=', 's_file') 784907c1109SGreg Roach ->on('l_from', '=', 's_id'); 785ba1c12e8SGreg Roach }) 786ba1c12e8SGreg Roach ->where('s_file', '=', $this->tree->id()) 787ba1c12e8SGreg Roach ->where('l_type', '=', $link) 788ba1c12e8SGreg Roach ->where('l_to', '=', $this->xref) 789907c1109SGreg Roach ->select(['sources.*']) 790907c1109SGreg Roach ->get() 791d5ad3db0SGreg Roach ->map(Source::rowMapper($this->tree)) 792907c1109SGreg Roach ->filter(self::accessFilter()); 793a25f0a04SGreg Roach } 794a25f0a04SGreg Roach 795a25f0a04SGreg Roach /** 796a25f0a04SGreg Roach * Find media objects linked to this record. 797a25f0a04SGreg Roach * 798a25f0a04SGreg Roach * @param string $link 799a25f0a04SGreg Roach * 800b5c8fd7eSGreg Roach * @return Collection<Media> 801a25f0a04SGreg Roach */ 802907c1109SGreg Roach public function linkedMedia(string $link): Collection 803c1010edaSGreg Roach { 804907c1109SGreg Roach return DB::table('media') 8050b5fd0a6SGreg Roach ->join('link', static function (JoinClause $join): void { 806907c1109SGreg Roach $join 807907c1109SGreg Roach ->on('l_file', '=', 'm_file') 808907c1109SGreg Roach ->on('l_from', '=', 'm_id'); 809ba1c12e8SGreg Roach }) 810ba1c12e8SGreg Roach ->where('m_file', '=', $this->tree->id()) 811ba1c12e8SGreg Roach ->where('l_type', '=', $link) 812ba1c12e8SGreg Roach ->where('l_to', '=', $this->xref) 813907c1109SGreg Roach ->select(['media.*']) 814907c1109SGreg Roach ->get() 815d5ad3db0SGreg Roach ->map(Media::rowMapper($this->tree)) 816907c1109SGreg Roach ->filter(self::accessFilter()); 817a25f0a04SGreg Roach } 818a25f0a04SGreg Roach 819a25f0a04SGreg Roach /** 820a25f0a04SGreg Roach * Find notes linked to this record. 821a25f0a04SGreg Roach * 822a25f0a04SGreg Roach * @param string $link 823a25f0a04SGreg Roach * 824b5c8fd7eSGreg Roach * @return Collection<Note> 825a25f0a04SGreg Roach */ 826907c1109SGreg Roach public function linkedNotes(string $link): Collection 827c1010edaSGreg Roach { 828907c1109SGreg Roach return DB::table('other') 8290b5fd0a6SGreg Roach ->join('link', static function (JoinClause $join): void { 830907c1109SGreg Roach $join 831907c1109SGreg Roach ->on('l_file', '=', 'o_file') 832907c1109SGreg Roach ->on('l_from', '=', 'o_id'); 833ba1c12e8SGreg Roach }) 834ba1c12e8SGreg Roach ->where('o_file', '=', $this->tree->id()) 835ba1c12e8SGreg Roach ->where('o_type', '=', 'NOTE') 836ba1c12e8SGreg Roach ->where('l_type', '=', $link) 837ba1c12e8SGreg Roach ->where('l_to', '=', $this->xref) 838907c1109SGreg Roach ->select(['other.*']) 839907c1109SGreg Roach ->get() 840d5ad3db0SGreg Roach ->map(Note::rowMapper($this->tree)) 841907c1109SGreg Roach ->filter(self::accessFilter()); 842a25f0a04SGreg Roach } 843a25f0a04SGreg Roach 844a25f0a04SGreg Roach /** 845a25f0a04SGreg Roach * Find repositories linked to this record. 846a25f0a04SGreg Roach * 847a25f0a04SGreg Roach * @param string $link 848a25f0a04SGreg Roach * 849b5c8fd7eSGreg Roach * @return Collection<Repository> 850a25f0a04SGreg Roach */ 851907c1109SGreg Roach public function linkedRepositories(string $link): Collection 852c1010edaSGreg Roach { 853907c1109SGreg Roach return DB::table('other') 8540b5fd0a6SGreg Roach ->join('link', static function (JoinClause $join): void { 855907c1109SGreg Roach $join 856907c1109SGreg Roach ->on('l_file', '=', 'o_file') 857907c1109SGreg Roach ->on('l_from', '=', 'o_id'); 858ba1c12e8SGreg Roach }) 859ba1c12e8SGreg Roach ->where('o_file', '=', $this->tree->id()) 860ba1c12e8SGreg Roach ->where('o_type', '=', 'REPO') 861ba1c12e8SGreg Roach ->where('l_type', '=', $link) 862ba1c12e8SGreg Roach ->where('l_to', '=', $this->xref) 863907c1109SGreg Roach ->select(['other.*']) 864907c1109SGreg Roach ->get() 865d5ad3db0SGreg Roach ->map(Repository::rowMapper($this->tree)) 866907c1109SGreg Roach ->filter(self::accessFilter()); 867a25f0a04SGreg Roach } 868a25f0a04SGreg Roach 869a25f0a04SGreg Roach /** 870a25f0a04SGreg Roach * Get all attributes (e.g. DATE or PLAC) from an event (e.g. BIRT or MARR). 871a25f0a04SGreg Roach * This is used to display multiple events on the individual/family lists. 872a25f0a04SGreg Roach * Multiple events can exist because of uncertainty in dates, dates in different 873a25f0a04SGreg Roach * calendars, place-names in both latin and hebrew character sets, etc. 874a25f0a04SGreg Roach * It also allows us to combine dates/places from different events in the summaries. 875a25f0a04SGreg Roach * 8768d0ebef0SGreg Roach * @param string[] $events 877a25f0a04SGreg Roach * 878a25f0a04SGreg Roach * @return Date[] 879a25f0a04SGreg Roach */ 8808d0ebef0SGreg Roach public function getAllEventDates(array $events): array 881c1010edaSGreg Roach { 88213abd6f3SGreg Roach $dates = []; 8838d0ebef0SGreg Roach foreach ($this->facts($events) as $event) { 8842decada7SGreg Roach if ($event->date()->isOK()) { 8852decada7SGreg Roach $dates[] = $event->date(); 886a25f0a04SGreg Roach } 887a25f0a04SGreg Roach } 888a25f0a04SGreg Roach 889a25f0a04SGreg Roach return $dates; 890a25f0a04SGreg Roach } 891a25f0a04SGreg Roach 892a25f0a04SGreg Roach /** 893a25f0a04SGreg Roach * Get all the places for a particular type of event 894a25f0a04SGreg Roach * 8958d0ebef0SGreg Roach * @param string[] $events 896a25f0a04SGreg Roach * 8974080d558SGreg Roach * @return Place[] 898a25f0a04SGreg Roach */ 8998d0ebef0SGreg Roach public function getAllEventPlaces(array $events): array 900c1010edaSGreg Roach { 90113abd6f3SGreg Roach $places = []; 9028d0ebef0SGreg Roach foreach ($this->facts($events) as $event) { 903138ca96cSGreg Roach if (preg_match_all('/\n(?:2 PLAC|3 (?:ROMN|FONE|_HEB)) +(.+)/', $event->gedcom(), $ged_places)) { 904a25f0a04SGreg Roach foreach ($ged_places[1] as $ged_place) { 90516d0b7f7SRico Sonntag $places[] = new Place($ged_place, $this->tree); 906a25f0a04SGreg Roach } 907a25f0a04SGreg Roach } 908a25f0a04SGreg Roach } 909a25f0a04SGreg Roach 910a25f0a04SGreg Roach return $places; 911a25f0a04SGreg Roach } 912a25f0a04SGreg Roach 913a25f0a04SGreg Roach /** 914a25f0a04SGreg Roach * The facts and events for this record. 915a25f0a04SGreg Roach * 9168d0ebef0SGreg Roach * @param string[] $filter 917cbc1590aSGreg Roach * @param bool $sort 918cbc1590aSGreg Roach * @param int|null $access_level 919ce42304aSGreg Roach * @param bool $ignore_deleted 920a25f0a04SGreg Roach * 921b5c8fd7eSGreg Roach * @return Collection<Fact> 922a25f0a04SGreg Roach */ 923ce42304aSGreg Roach public function facts( 924ce42304aSGreg Roach array $filter = [], 925ce42304aSGreg Roach bool $sort = false, 926ce42304aSGreg Roach int $access_level = null, 927ce42304aSGreg Roach bool $ignore_deleted = false 928ce42304aSGreg Roach ): Collection { 929d9e083e7SGreg Roach $access_level = $access_level ?? Auth::accessLevel($this->tree); 9304b9ff166SGreg Roach 9318af3e5c1SGreg Roach $facts = new Collection(); 932ce42304aSGreg Roach if ($this->canShow($access_level)) { 933a25f0a04SGreg Roach foreach ($this->facts as $fact) { 93422d65e5aSGreg Roach if (($filter === [] || in_array($fact->getTag(), $filter, true)) && $fact->canShow($access_level)) { 9358af3e5c1SGreg Roach $facts->push($fact); 936a25f0a04SGreg Roach } 937a25f0a04SGreg Roach } 938a25f0a04SGreg Roach } 939d17d7b9eSGreg Roach 940a25f0a04SGreg Roach if ($sort) { 941580a4d11SGreg Roach $facts = Fact::sortFacts($facts); 942a25f0a04SGreg Roach } 943cbc1590aSGreg Roach 944ce42304aSGreg Roach if ($ignore_deleted) { 945ce42304aSGreg Roach $facts = $facts->filter(static function (Fact $fact): bool { 946ce42304aSGreg Roach return !$fact->isPendingDeletion(); 947ce42304aSGreg Roach }); 948ce42304aSGreg Roach } 949ce42304aSGreg Roach 95039ca88baSGreg Roach return new Collection($facts); 951a25f0a04SGreg Roach } 952a25f0a04SGreg Roach 953a25f0a04SGreg Roach /** 9544459dc9aSGreg Roach * Get the last-change timestamp for this record 955a25f0a04SGreg Roach * 9564459dc9aSGreg Roach * @return Carbon 957a25f0a04SGreg Roach */ 9584459dc9aSGreg Roach public function lastChangeTimestamp(): Carbon 959c1010edaSGreg Roach { 9604459dc9aSGreg Roach /** @var Fact|null $chan */ 961820b62dfSGreg Roach $chan = $this->facts(['CHAN'])->first(); 962a25f0a04SGreg Roach 9634459dc9aSGreg Roach if ($chan instanceof Fact) { 964a25f0a04SGreg Roach // The record does have a CHAN event 9652decada7SGreg Roach $d = $chan->date()->minimumDate(); 9664459dc9aSGreg Roach 967138ca96cSGreg Roach if (preg_match('/\n3 TIME (\d\d):(\d\d):(\d\d)/', $chan->gedcom(), $match)) { 9684459dc9aSGreg Roach return Carbon::create($d->year(), $d->month(), $d->day(), (int) $match[1], (int) $match[2], (int) $match[3]); 969e364afe4SGreg Roach } 970e364afe4SGreg Roach 971e364afe4SGreg Roach if (preg_match('/\n3 TIME (\d\d):(\d\d)/', $chan->gedcom(), $match)) { 9724459dc9aSGreg Roach return Carbon::create($d->year(), $d->month(), $d->day(), (int) $match[1], (int) $match[2]); 973b2ce94c6SRico Sonntag } 974b2ce94c6SRico Sonntag 9754459dc9aSGreg Roach return Carbon::create($d->year(), $d->month(), $d->day()); 976a25f0a04SGreg Roach } 977b2ce94c6SRico Sonntag 978a25f0a04SGreg Roach // The record does not have a CHAN event 9794459dc9aSGreg Roach return Carbon::createFromTimestamp(0); 980a25f0a04SGreg Roach } 981a25f0a04SGreg Roach 982a25f0a04SGreg Roach /** 983a25f0a04SGreg Roach * Get the last-change user for this record 984a25f0a04SGreg Roach * 985a25f0a04SGreg Roach * @return string 986a25f0a04SGreg Roach */ 987e364afe4SGreg Roach public function lastChangeUser(): string 988c1010edaSGreg Roach { 989820b62dfSGreg Roach $chan = $this->facts(['CHAN'])->first(); 990a25f0a04SGreg Roach 991a25f0a04SGreg Roach if ($chan === null) { 992a25f0a04SGreg Roach return I18N::translate('Unknown'); 993b2ce94c6SRico Sonntag } 994b2ce94c6SRico Sonntag 9953425616eSGreg Roach $chan_user = $chan->attribute('_WT_USER'); 996baacc364SGreg Roach if ($chan_user === '') { 997a25f0a04SGreg Roach return I18N::translate('Unknown'); 998b2ce94c6SRico Sonntag } 999b2ce94c6SRico Sonntag 1000a25f0a04SGreg Roach return $chan_user; 1001a25f0a04SGreg Roach } 1002a25f0a04SGreg Roach 1003a25f0a04SGreg Roach /** 1004a25f0a04SGreg Roach * Add a new fact to this record 1005a25f0a04SGreg Roach * 1006a25f0a04SGreg Roach * @param string $gedcom 1007cbc1590aSGreg Roach * @param bool $update_chan 10087e96c925SGreg Roach * 10097e96c925SGreg Roach * @return void 1010a25f0a04SGreg Roach */ 1011e364afe4SGreg Roach public function createFact(string $gedcom, bool $update_chan): void 1012c1010edaSGreg Roach { 1013fc3ccce4SGreg Roach $this->updateFact('', $gedcom, $update_chan); 1014a25f0a04SGreg Roach } 1015a25f0a04SGreg Roach 1016a25f0a04SGreg Roach /** 1017a25f0a04SGreg Roach * Delete a fact from this record 1018a25f0a04SGreg Roach * 1019a25f0a04SGreg Roach * @param string $fact_id 1020cbc1590aSGreg Roach * @param bool $update_chan 10217e96c925SGreg Roach * 10227e96c925SGreg Roach * @return void 1023a25f0a04SGreg Roach */ 1024e364afe4SGreg Roach public function deleteFact(string $fact_id, bool $update_chan): void 1025c1010edaSGreg Roach { 1026db7bb364SGreg Roach $this->updateFact($fact_id, '', $update_chan); 1027a25f0a04SGreg Roach } 1028a25f0a04SGreg Roach 1029a25f0a04SGreg Roach /** 1030a25f0a04SGreg Roach * Replace a fact with a new gedcom data. 1031a25f0a04SGreg Roach * 1032a25f0a04SGreg Roach * @param string $fact_id 1033a25f0a04SGreg Roach * @param string $gedcom 1034cbc1590aSGreg Roach * @param bool $update_chan 1035a25f0a04SGreg Roach * 10367e96c925SGreg Roach * @return void 10377e96c925SGreg Roach * @throws Exception 1038a25f0a04SGreg Roach */ 1039e364afe4SGreg Roach public function updateFact(string $fact_id, string $gedcom, bool $update_chan): void 1040c1010edaSGreg Roach { 104171f696adSGreg Roach // Not all record types allow a CHAN event. 104271f696adSGreg Roach $update_chan = $update_chan && in_array(static::RECORD_TYPE, Gedcom::RECORDS_WITH_CHAN, true); 104371f696adSGreg Roach 1044a25f0a04SGreg Roach // MSDOS line endings will break things in horrible ways 1045a25f0a04SGreg Roach $gedcom = preg_replace('/[\r\n]+/', "\n", $gedcom); 1046a25f0a04SGreg Roach $gedcom = trim($gedcom); 1047a25f0a04SGreg Roach 1048a25f0a04SGreg Roach if ($this->pending === '') { 10497e96c925SGreg Roach throw new Exception('Cannot edit a deleted record'); 1050a25f0a04SGreg Roach } 10518d0ebef0SGreg Roach if ($gedcom !== '' && !preg_match('/^1 ' . Gedcom::REGEX_TAG . '/', $gedcom)) { 10527e96c925SGreg Roach throw new Exception('Invalid GEDCOM data passed to GedcomRecord::updateFact(' . $gedcom . ')'); 1053a25f0a04SGreg Roach } 1054a25f0a04SGreg Roach 1055a25f0a04SGreg Roach if ($this->pending) { 1056a25f0a04SGreg Roach $old_gedcom = $this->pending; 1057a25f0a04SGreg Roach } else { 1058a25f0a04SGreg Roach $old_gedcom = $this->gedcom; 1059a25f0a04SGreg Roach } 1060a25f0a04SGreg Roach 1061a25f0a04SGreg Roach // First line of record may contain data - e.g. NOTE records. 106265e02381SGreg Roach [$new_gedcom] = explode("\n", $old_gedcom, 2); 1063a25f0a04SGreg Roach 1064a25f0a04SGreg Roach // Replacing (or deleting) an existing fact 106519aed3a1SGreg Roach foreach ($this->facts([], false, Auth::PRIV_HIDE, true) as $fact) { 1066905ab80aSGreg Roach if ($fact->id() === $fact_id) { 1067db7bb364SGreg Roach if ($gedcom !== '') { 1068a25f0a04SGreg Roach $new_gedcom .= "\n" . $gedcom; 1069a25f0a04SGreg Roach } 1070fc3ccce4SGreg Roach $fact_id = 'NOT A VALID FACT ID'; // Only replace/delete one copy of a duplicate fact 1071e364afe4SGreg Roach } elseif ($fact->getTag() !== 'CHAN' || !$update_chan) { 1072138ca96cSGreg Roach $new_gedcom .= "\n" . $fact->gedcom(); 1073a25f0a04SGreg Roach } 1074a25f0a04SGreg Roach } 1075a25f0a04SGreg Roach 1076a25f0a04SGreg Roach // Adding a new fact 1077fc3ccce4SGreg Roach if ($fact_id === '') { 1078a25f0a04SGreg Roach $new_gedcom .= "\n" . $gedcom; 1079a25f0a04SGreg Roach } 1080a25f0a04SGreg Roach 108119aed3a1SGreg Roach if ($update_chan && strpos($new_gedcom, "\n1 CHAN") === false) { 108219aed3a1SGreg Roach $today = strtoupper(date('d M Y')); 108319aed3a1SGreg Roach $now = date('H:i:s'); 108419aed3a1SGreg Roach $new_gedcom .= "\n1 CHAN\n2 DATE " . $today . "\n3 TIME " . $now . "\n2 _WT_USER " . Auth::user()->userName(); 108519aed3a1SGreg Roach } 108619aed3a1SGreg Roach 1087e364afe4SGreg Roach if ($new_gedcom !== $old_gedcom) { 1088a25f0a04SGreg Roach // Save the changes 1089d09b6323SGreg Roach DB::table('change')->insert([ 1090d09b6323SGreg Roach 'gedcom_id' => $this->tree->id(), 1091d09b6323SGreg Roach 'xref' => $this->xref, 1092d09b6323SGreg Roach 'old_gedcom' => $old_gedcom, 1093d09b6323SGreg Roach 'new_gedcom' => $new_gedcom, 1094d09b6323SGreg Roach 'user_id' => Auth::id(), 109513abd6f3SGreg Roach ]); 1096a25f0a04SGreg Roach 1097a25f0a04SGreg Roach $this->pending = $new_gedcom; 1098a25f0a04SGreg Roach 10997c4add84SGreg Roach if (Auth::user()->getPreference(User::PREF_AUTO_ACCEPT_EDITS) === '1') { 110022e73debSGreg Roach app(PendingChangesService::class)->acceptRecord($this); 1101a25f0a04SGreg Roach $this->gedcom = $new_gedcom; 1102a25f0a04SGreg Roach $this->pending = null; 1103a25f0a04SGreg Roach } 1104a25f0a04SGreg Roach } 1105a25f0a04SGreg Roach $this->parseFacts(); 1106a25f0a04SGreg Roach } 1107a25f0a04SGreg Roach 1108a25f0a04SGreg Roach /** 1109a25f0a04SGreg Roach * Update this record 1110a25f0a04SGreg Roach * 1111a25f0a04SGreg Roach * @param string $gedcom 1112cbc1590aSGreg Roach * @param bool $update_chan 11137e96c925SGreg Roach * 11147e96c925SGreg Roach * @return void 1115a25f0a04SGreg Roach */ 1116e364afe4SGreg Roach public function updateRecord(string $gedcom, bool $update_chan): void 1117c1010edaSGreg Roach { 111871f696adSGreg Roach // Not all record types allow a CHAN event. 111971f696adSGreg Roach $update_chan = $update_chan && in_array(static::RECORD_TYPE, Gedcom::RECORDS_WITH_CHAN, true); 112071f696adSGreg Roach 1121a25f0a04SGreg Roach // MSDOS line endings will break things in horrible ways 1122a25f0a04SGreg Roach $gedcom = preg_replace('/[\r\n]+/', "\n", $gedcom); 1123a25f0a04SGreg Roach $gedcom = trim($gedcom); 1124a25f0a04SGreg Roach 1125a25f0a04SGreg Roach // Update the CHAN record 1126a25f0a04SGreg Roach if ($update_chan) { 1127a25f0a04SGreg Roach $gedcom = preg_replace('/\n1 CHAN(\n[2-9].*)*/', '', $gedcom); 112853432476SGreg Roach $today = strtoupper(date('d M Y')); 112953432476SGreg Roach $now = date('H:i:s'); 113053432476SGreg Roach $gedcom .= "\n1 CHAN\n2 DATE " . $today . "\n3 TIME " . $now . "\n2 _WT_USER " . Auth::user()->userName(); 1131a25f0a04SGreg Roach } 1132a25f0a04SGreg Roach 1133a25f0a04SGreg Roach // Create a pending change 1134d09b6323SGreg Roach DB::table('change')->insert([ 1135d09b6323SGreg Roach 'gedcom_id' => $this->tree->id(), 1136d09b6323SGreg Roach 'xref' => $this->xref, 1137d09b6323SGreg Roach 'old_gedcom' => $this->gedcom(), 1138d09b6323SGreg Roach 'new_gedcom' => $gedcom, 1139d09b6323SGreg Roach 'user_id' => Auth::id(), 114013abd6f3SGreg Roach ]); 1141a25f0a04SGreg Roach 1142a25f0a04SGreg Roach // Clear the cache 1143a25f0a04SGreg Roach $this->pending = $gedcom; 1144a25f0a04SGreg Roach 1145a25f0a04SGreg Roach // Accept this pending change 11467c4add84SGreg Roach if (Auth::user()->getPreference(User::PREF_AUTO_ACCEPT_EDITS) === '1') { 114722e73debSGreg Roach app(PendingChangesService::class)->acceptRecord($this); 1148a25f0a04SGreg Roach $this->gedcom = $gedcom; 1149a25f0a04SGreg Roach $this->pending = null; 1150a25f0a04SGreg Roach } 1151a25f0a04SGreg Roach 1152a25f0a04SGreg Roach $this->parseFacts(); 1153a25f0a04SGreg Roach 1154847d5489SGreg Roach Log::addEditLog('Update: ' . static::RECORD_TYPE . ' ' . $this->xref, $this->tree); 1155a25f0a04SGreg Roach } 1156a25f0a04SGreg Roach 1157a25f0a04SGreg Roach /** 1158a25f0a04SGreg Roach * Delete this record 1159b874da82SGreg Roach * 1160b874da82SGreg Roach * @return void 1161a25f0a04SGreg Roach */ 1162e364afe4SGreg Roach public function deleteRecord(): void 1163c1010edaSGreg Roach { 1164a25f0a04SGreg Roach // Create a pending change 11654c0b5256SGreg Roach if (!$this->isPendingDeletion()) { 1166d09b6323SGreg Roach DB::table('change')->insert([ 1167d09b6323SGreg Roach 'gedcom_id' => $this->tree->id(), 1168d09b6323SGreg Roach 'xref' => $this->xref, 1169d09b6323SGreg Roach 'old_gedcom' => $this->gedcom(), 1170d09b6323SGreg Roach 'new_gedcom' => '', 1171d09b6323SGreg Roach 'user_id' => Auth::id(), 117213abd6f3SGreg Roach ]); 11734c0b5256SGreg Roach } 1174a25f0a04SGreg Roach 11754c0b5256SGreg Roach // Auto-accept this pending change 11767c4add84SGreg Roach if (Auth::user()->getPreference(User::PREF_AUTO_ACCEPT_EDITS) === '1') { 117722e73debSGreg Roach app(PendingChangesService::class)->acceptRecord($this); 1178a25f0a04SGreg Roach } 1179a25f0a04SGreg Roach 1180a25f0a04SGreg Roach // Clear the cache 1181d17d7b9eSGreg Roach self::$gedcom_record_cache = []; 1182d17d7b9eSGreg Roach self::$pending_record_cache = []; 1183a25f0a04SGreg Roach 1184847d5489SGreg Roach Log::addEditLog('Delete: ' . static::RECORD_TYPE . ' ' . $this->xref, $this->tree); 1185a25f0a04SGreg Roach } 1186a25f0a04SGreg Roach 1187a25f0a04SGreg Roach /** 1188a25f0a04SGreg Roach * Remove all links from this record to $xref 1189a25f0a04SGreg Roach * 1190a25f0a04SGreg Roach * @param string $xref 1191cbc1590aSGreg Roach * @param bool $update_chan 11927e96c925SGreg Roach * 11937e96c925SGreg Roach * @return void 1194a25f0a04SGreg Roach */ 1195e364afe4SGreg Roach public function removeLinks(string $xref, bool $update_chan): void 1196c1010edaSGreg Roach { 1197a25f0a04SGreg Roach $value = '@' . $xref . '@'; 1198a25f0a04SGreg Roach 119930158ae7SGreg Roach foreach ($this->facts() as $fact) { 120084586c02SGreg Roach if ($fact->value() === $value) { 1201905ab80aSGreg Roach $this->deleteFact($fact->id(), $update_chan); 12028d0ebef0SGreg Roach } elseif (preg_match_all('/\n(\d) ' . Gedcom::REGEX_TAG . ' ' . $value . '/', $fact->gedcom(), $matches, PREG_SET_ORDER)) { 1203138ca96cSGreg Roach $gedcom = $fact->gedcom(); 1204a25f0a04SGreg Roach foreach ($matches as $match) { 1205a25f0a04SGreg Roach $next_level = $match[1] + 1; 1206a25f0a04SGreg Roach $next_levels = '[' . $next_level . '-9]'; 1207a25f0a04SGreg Roach $gedcom = preg_replace('/' . $match[0] . '(\n' . $next_levels . '.*)*/', '', $gedcom); 1208a25f0a04SGreg Roach } 1209905ab80aSGreg Roach $this->updateFact($fact->id(), $gedcom, $update_chan); 1210a25f0a04SGreg Roach } 1211a25f0a04SGreg Roach } 1212a25f0a04SGreg Roach } 1213bf4eb542SGreg Roach 1214bf4eb542SGreg Roach /** 1215bf4eb542SGreg Roach * Fetch XREFs of all records linked to a record - when deleting an object, we must 1216bf4eb542SGreg Roach * also delete all links to it. 1217bf4eb542SGreg Roach * 1218bf4eb542SGreg Roach * @return GedcomRecord[] 1219bf4eb542SGreg Roach */ 1220bf4eb542SGreg Roach public function linkingRecords(): array 1221bf4eb542SGreg Roach { 1222*b5961194SGreg Roach $like = addcslashes($this->xref(), '\\%_'); 1223*b5961194SGreg Roach 1224bf4eb542SGreg Roach $union = DB::table('change') 1225bf4eb542SGreg Roach ->where('gedcom_id', '=', $this->tree()->id()) 1226*b5961194SGreg Roach ->where('new_gedcom', 'LIKE', '%@' . $like . '@%') 1227*b5961194SGreg Roach ->where('new_gedcom', 'NOT LIKE', '0 @' . $like . '@%') 122883242252SGreg Roach ->whereIn('change_id', function (Builder $query): void { 122983242252SGreg Roach $query->select(new Expression('MAX(change_id)')) 123083242252SGreg Roach ->from('change') 123183242252SGreg Roach ->where('gedcom_id', '=', $this->tree->id()) 123283242252SGreg Roach ->where('status', '=', 'pending') 12337f5c2944SGreg Roach ->groupBy(['xref']); 123483242252SGreg Roach }) 1235bf4eb542SGreg Roach ->select(['xref']); 1236bf4eb542SGreg Roach 1237bf4eb542SGreg Roach $xrefs = DB::table('link') 1238bf4eb542SGreg Roach ->where('l_file', '=', $this->tree()->id()) 1239bf4eb542SGreg Roach ->where('l_to', '=', $this->xref()) 124047256fc5SGreg Roach ->select(['l_from']) 1241bf4eb542SGreg Roach ->union($union) 1242bf4eb542SGreg Roach ->pluck('l_from'); 1243bf4eb542SGreg Roach 1244bf4eb542SGreg Roach return $xrefs->map(function (string $xref): GedcomRecord { 1245ffc0a61fSGreg Roach $record = GedcomRecord::getInstance($xref, $this->tree); 1246ffc0a61fSGreg Roach assert($record instanceof GedcomRecord); 1247ffc0a61fSGreg Roach 1248ffc0a61fSGreg Roach return $record; 1249bf4eb542SGreg Roach })->all(); 1250bf4eb542SGreg Roach } 125122e73debSGreg Roach 125222e73debSGreg Roach /** 125322e73debSGreg Roach * Each object type may have its own special rules, and re-implement this function. 125422e73debSGreg Roach * 125522e73debSGreg Roach * @param int $access_level 125622e73debSGreg Roach * 125722e73debSGreg Roach * @return bool 125822e73debSGreg Roach */ 125922e73debSGreg Roach protected function canShowByType(int $access_level): bool 126022e73debSGreg Roach { 126122e73debSGreg Roach $fact_privacy = $this->tree->getFactPrivacy(); 126222e73debSGreg Roach 126322e73debSGreg Roach if (isset($fact_privacy[static::RECORD_TYPE])) { 126422e73debSGreg Roach // Restriction found 126522e73debSGreg Roach return $fact_privacy[static::RECORD_TYPE] >= $access_level; 126622e73debSGreg Roach } 126722e73debSGreg Roach 126822e73debSGreg Roach // No restriction found - must be public: 126922e73debSGreg Roach return true; 127022e73debSGreg Roach } 127122e73debSGreg Roach 127222e73debSGreg Roach /** 127322e73debSGreg Roach * Generate a private version of this record 127422e73debSGreg Roach * 127522e73debSGreg Roach * @param int $access_level 127622e73debSGreg Roach * 127722e73debSGreg Roach * @return string 127822e73debSGreg Roach */ 127922e73debSGreg Roach protected function createPrivateGedcomRecord(int $access_level): string 128022e73debSGreg Roach { 128122e73debSGreg Roach return '0 @' . $this->xref . '@ ' . static::RECORD_TYPE . "\n1 NOTE " . I18N::translate('Private'); 128222e73debSGreg Roach } 128322e73debSGreg Roach 128422e73debSGreg Roach /** 128522e73debSGreg Roach * Convert a name record into sortable and full/display versions. This default 128622e73debSGreg Roach * should be OK for simple record types. INDI/FAM records will need to redefine it. 128722e73debSGreg Roach * 128822e73debSGreg Roach * @param string $type 128922e73debSGreg Roach * @param string $value 129022e73debSGreg Roach * @param string $gedcom 129122e73debSGreg Roach * 129222e73debSGreg Roach * @return void 129322e73debSGreg Roach */ 129422e73debSGreg Roach protected function addName(string $type, string $value, string $gedcom): void 129522e73debSGreg Roach { 129622e73debSGreg Roach $this->getAllNames[] = [ 129722e73debSGreg Roach 'type' => $type, 129822e73debSGreg Roach 'sort' => preg_replace_callback('/([0-9]+)/', static function (array $matches): string { 129922e73debSGreg Roach return str_pad($matches[0], 10, '0', STR_PAD_LEFT); 130022e73debSGreg Roach }, $value), 130122e73debSGreg Roach 'full' => '<span dir="auto">' . e($value) . '</span>', 130222e73debSGreg Roach // This is used for display 130322e73debSGreg Roach 'fullNN' => $value, 130422e73debSGreg Roach // This goes into the database 130522e73debSGreg Roach ]; 130622e73debSGreg Roach } 130722e73debSGreg Roach 130822e73debSGreg Roach /** 130922e73debSGreg Roach * Get all the names of a record, including ROMN, FONE and _HEB alternatives. 131022e73debSGreg Roach * Records without a name (e.g. FAM) will need to redefine this function. 131122e73debSGreg Roach * Parameters: the level 1 fact containing the name. 131222e73debSGreg Roach * Return value: an array of name structures, each containing 131322e73debSGreg Roach * ['type'] = the gedcom fact, e.g. NAME, TITL, FONE, _HEB, etc. 131422e73debSGreg Roach * ['full'] = the name as specified in the record, e.g. 'Vincent van Gogh' or 'John Unknown' 131522e73debSGreg Roach * ['sort'] = a sortable version of the name (not for display), e.g. 'Gogh, Vincent' or '@N.N., John' 131622e73debSGreg Roach * 131722e73debSGreg Roach * @param int $level 131822e73debSGreg Roach * @param string $fact_type 131922e73debSGreg Roach * @param Collection $facts 132022e73debSGreg Roach * 132122e73debSGreg Roach * @return void 132222e73debSGreg Roach */ 132322e73debSGreg Roach protected function extractNamesFromFacts(int $level, string $fact_type, Collection $facts): void 132422e73debSGreg Roach { 132522e73debSGreg Roach $sublevel = $level + 1; 132622e73debSGreg Roach $subsublevel = $sublevel + 1; 132722e73debSGreg Roach foreach ($facts as $fact) { 132822e73debSGreg Roach if (preg_match_all("/^{$level} ({$fact_type}) (.+)((\n[{$sublevel}-9].+)*)/m", $fact->gedcom(), $matches, PREG_SET_ORDER)) { 132922e73debSGreg Roach foreach ($matches as $match) { 133022e73debSGreg Roach // Treat 1 NAME / 2 TYPE married the same as _MARNM 133122e73debSGreg Roach if ($match[1] === 'NAME' && strpos($match[3], "\n2 TYPE married") !== false) { 133222e73debSGreg Roach $this->addName('_MARNM', $match[2], $fact->gedcom()); 133322e73debSGreg Roach } else { 133422e73debSGreg Roach $this->addName($match[1], $match[2], $fact->gedcom()); 133522e73debSGreg Roach } 133622e73debSGreg Roach if ($match[3] && preg_match_all("/^{$sublevel} (ROMN|FONE|_\w+) (.+)((\n[{$subsublevel}-9].+)*)/m", $match[3], $submatches, PREG_SET_ORDER)) { 133722e73debSGreg Roach foreach ($submatches as $submatch) { 133822e73debSGreg Roach $this->addName($submatch[1], $submatch[2], $match[3]); 133922e73debSGreg Roach } 134022e73debSGreg Roach } 134122e73debSGreg Roach } 134222e73debSGreg Roach } 134322e73debSGreg Roach } 134422e73debSGreg Roach } 134522e73debSGreg Roach 134622e73debSGreg Roach /** 134722e73debSGreg Roach * Split the record into facts 134822e73debSGreg Roach * 134922e73debSGreg Roach * @return void 135022e73debSGreg Roach */ 135122e73debSGreg Roach private function parseFacts(): void 135222e73debSGreg Roach { 135322e73debSGreg Roach // Split the record into facts 135422e73debSGreg Roach if ($this->gedcom) { 135522e73debSGreg Roach $gedcom_facts = preg_split('/\n(?=1)/s', $this->gedcom); 135622e73debSGreg Roach array_shift($gedcom_facts); 135722e73debSGreg Roach } else { 135822e73debSGreg Roach $gedcom_facts = []; 135922e73debSGreg Roach } 136022e73debSGreg Roach if ($this->pending) { 136122e73debSGreg Roach $pending_facts = preg_split('/\n(?=1)/s', $this->pending); 136222e73debSGreg Roach array_shift($pending_facts); 136322e73debSGreg Roach } else { 136422e73debSGreg Roach $pending_facts = []; 136522e73debSGreg Roach } 136622e73debSGreg Roach 136722e73debSGreg Roach $this->facts = []; 136822e73debSGreg Roach 136922e73debSGreg Roach foreach ($gedcom_facts as $gedcom_fact) { 137022e73debSGreg Roach $fact = new Fact($gedcom_fact, $this, md5($gedcom_fact)); 137122e73debSGreg Roach if ($this->pending !== null && !in_array($gedcom_fact, $pending_facts, true)) { 137222e73debSGreg Roach $fact->setPendingDeletion(); 137322e73debSGreg Roach } 137422e73debSGreg Roach $this->facts[] = $fact; 137522e73debSGreg Roach } 137622e73debSGreg Roach foreach ($pending_facts as $pending_fact) { 137722e73debSGreg Roach if (!in_array($pending_fact, $gedcom_facts, true)) { 137822e73debSGreg Roach $fact = new Fact($pending_fact, $this, md5($pending_fact)); 137922e73debSGreg Roach $fact->setPendingAddition(); 138022e73debSGreg Roach $this->facts[] = $fact; 138122e73debSGreg Roach } 138222e73debSGreg Roach } 138322e73debSGreg Roach } 138422e73debSGreg Roach 138522e73debSGreg Roach /** 138622e73debSGreg Roach * Work out whether this record can be shown to a user with a given access level 138722e73debSGreg Roach * 138822e73debSGreg Roach * @param int $access_level 138922e73debSGreg Roach * 139022e73debSGreg Roach * @return bool 139122e73debSGreg Roach */ 139222e73debSGreg Roach private function canShowRecord(int $access_level): bool 139322e73debSGreg Roach { 139422e73debSGreg Roach // This setting would better be called "$ENABLE_PRIVACY" 139522e73debSGreg Roach if (!$this->tree->getPreference('HIDE_LIVE_PEOPLE')) { 139622e73debSGreg Roach return true; 139722e73debSGreg Roach } 139822e73debSGreg Roach 139922e73debSGreg Roach // We should always be able to see our own record (unless an admin is applying download restrictions) 14007c4add84SGreg Roach if ($this->xref() === $this->tree->getUserPreference(Auth::user(), User::PREF_TREE_ACCOUNT_XREF) && $access_level === Auth::accessLevel($this->tree)) { 140122e73debSGreg Roach return true; 140222e73debSGreg Roach } 140322e73debSGreg Roach 140422e73debSGreg Roach // Does this record have a RESN? 140522e73debSGreg Roach if (strpos($this->gedcom, "\n1 RESN confidential") !== false) { 140622e73debSGreg Roach return Auth::PRIV_NONE >= $access_level; 140722e73debSGreg Roach } 140822e73debSGreg Roach if (strpos($this->gedcom, "\n1 RESN privacy") !== false) { 140922e73debSGreg Roach return Auth::PRIV_USER >= $access_level; 141022e73debSGreg Roach } 141122e73debSGreg Roach if (strpos($this->gedcom, "\n1 RESN none") !== false) { 141222e73debSGreg Roach return true; 141322e73debSGreg Roach } 141422e73debSGreg Roach 141522e73debSGreg Roach // Does this record have a default RESN? 141622e73debSGreg Roach $individual_privacy = $this->tree->getIndividualPrivacy(); 141722e73debSGreg Roach if (isset($individual_privacy[$this->xref()])) { 141822e73debSGreg Roach return $individual_privacy[$this->xref()] >= $access_level; 141922e73debSGreg Roach } 142022e73debSGreg Roach 142122e73debSGreg Roach // Privacy rules do not apply to admins 142222e73debSGreg Roach if (Auth::PRIV_NONE >= $access_level) { 142322e73debSGreg Roach return true; 142422e73debSGreg Roach } 142522e73debSGreg Roach 142622e73debSGreg Roach // Different types of record have different privacy rules 142722e73debSGreg Roach return $this->canShowByType($access_level); 142822e73debSGreg Roach } 1429a25f0a04SGreg Roach} 1430