1a25f0a04SGreg Roach<?php 23976b470SGreg Roach 3a25f0a04SGreg Roach/** 4a25f0a04SGreg Roach * webtrees: online genealogy 58fcd0d32SGreg Roach * Copyright (C) 2019 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; 33a25f0a04SGreg Roach 3422e73debSGreg Roachuse function app; 3522e73debSGreg Roach 36a25f0a04SGreg Roach/** 3776692c8bSGreg Roach * A GEDCOM object. 38a25f0a04SGreg Roach */ 39c1010edaSGreg Roachclass GedcomRecord 40c1010edaSGreg Roach{ 4116d6367aSGreg Roach public const RECORD_TYPE = 'UNKNOWN'; 4216d6367aSGreg Roach 435818a371SGreg Roach protected const ROUTE_NAME = GedcomRecordPage::class; 445818a371SGreg Roach 4576692c8bSGreg Roach /** @var GedcomRecord[][] Allow getInstance() to return references to existing objects */ 46bec87e94SGreg Roach public static $gedcom_record_cache; 4779529c87SGreg Roach /** @var stdClass[][] Fetch all pending edits in one database query */ 48bec87e94SGreg Roach public static $pending_record_cache; 4922e73debSGreg Roach /** @var string The record identifier */ 5022e73debSGreg Roach protected $xref; 5122e73debSGreg Roach /** @var Tree The family tree to which this record belongs */ 5222e73debSGreg Roach protected $tree; 5322e73debSGreg Roach /** @var string GEDCOM data (before any pending edits) */ 5422e73debSGreg Roach protected $gedcom; 5522e73debSGreg Roach /** @var string|null GEDCOM data (after any pending edits) */ 5622e73debSGreg Roach protected $pending; 5722e73debSGreg Roach /** @var Fact[] facts extracted from $gedcom/$pending */ 5822e73debSGreg Roach protected $facts; 5922e73debSGreg Roach /** @var string[][] All the names of this individual */ 6022e73debSGreg Roach protected $getAllNames; 6122e73debSGreg Roach /** @var int|null Cached result */ 6222e73debSGreg Roach protected $getPrimaryName; 6322e73debSGreg Roach /** @var int|null Cached result */ 6422e73debSGreg Roach protected $getSecondaryName; 65a25f0a04SGreg Roach 66a25f0a04SGreg Roach /** 67a25f0a04SGreg Roach * Create a GedcomRecord object from raw GEDCOM data. 68a25f0a04SGreg Roach * 69a25f0a04SGreg Roach * @param string $xref 70a25f0a04SGreg Roach * @param string $gedcom an empty string for new/pending records 71a25f0a04SGreg Roach * @param string|null $pending null for a record with no pending edits, 72a25f0a04SGreg Roach * empty string for records with pending deletions 7324ec66ceSGreg Roach * @param Tree $tree 74a25f0a04SGreg Roach */ 75e364afe4SGreg Roach public function __construct(string $xref, string $gedcom, ?string $pending, Tree $tree) 76c1010edaSGreg Roach { 77a25f0a04SGreg Roach $this->xref = $xref; 78a25f0a04SGreg Roach $this->gedcom = $gedcom; 79a25f0a04SGreg Roach $this->pending = $pending; 8024ec66ceSGreg Roach $this->tree = $tree; 81a25f0a04SGreg Roach 82a25f0a04SGreg Roach $this->parseFacts(); 83a25f0a04SGreg Roach } 84a25f0a04SGreg Roach 85a25f0a04SGreg Roach /** 86886b77daSGreg Roach * A closure which will create a record from a database row. 87886b77daSGreg Roach * 88d5ad3db0SGreg Roach * @param Tree $tree 89d5ad3db0SGreg Roach * 90886b77daSGreg Roach * @return Closure 91886b77daSGreg Roach */ 92d5ad3db0SGreg Roach public static function rowMapper(Tree $tree): Closure 93886b77daSGreg Roach { 94d5ad3db0SGreg Roach return static function (stdClass $row) use ($tree): GedcomRecord { 95ffc0a61fSGreg Roach $record = GedcomRecord::getInstance($row->o_id, $tree, $row->o_gedcom); 96ffc0a61fSGreg Roach assert($record instanceof GedcomRecord); 97ffc0a61fSGreg Roach 98ffc0a61fSGreg Roach return $record; 99886b77daSGreg Roach }; 100886b77daSGreg Roach } 101886b77daSGreg Roach 102886b77daSGreg Roach /** 103886b77daSGreg Roach * A closure which will filter out private records. 104886b77daSGreg Roach * 105886b77daSGreg Roach * @return Closure 106886b77daSGreg Roach */ 1074146fabcSGreg Roach public static function accessFilter(): Closure 108886b77daSGreg Roach { 1096c2179e2SGreg Roach return static function (GedcomRecord $record): bool { 110886b77daSGreg Roach return $record->canShow(); 111886b77daSGreg Roach }; 112886b77daSGreg Roach } 113886b77daSGreg Roach 114886b77daSGreg Roach /** 115c156e8f5SGreg Roach * A closure which will compare records by name. 116c156e8f5SGreg Roach * 117c156e8f5SGreg Roach * @return Closure 118c156e8f5SGreg Roach */ 119c156e8f5SGreg Roach public static function nameComparator(): Closure 120c156e8f5SGreg Roach { 1216c2179e2SGreg Roach return static function (GedcomRecord $x, GedcomRecord $y): int { 122c156e8f5SGreg Roach if ($x->canShowName()) { 123c156e8f5SGreg Roach if ($y->canShowName()) { 12439ca88baSGreg Roach return I18N::strcasecmp($x->sortName(), $y->sortName()); 125c156e8f5SGreg Roach } 126c156e8f5SGreg Roach 127c156e8f5SGreg Roach return -1; // only $y is private 128c156e8f5SGreg Roach } 129c156e8f5SGreg Roach 130c156e8f5SGreg Roach if ($y->canShowName()) { 131c156e8f5SGreg Roach return 1; // only $x is private 132c156e8f5SGreg Roach } 133c156e8f5SGreg Roach 134c156e8f5SGreg Roach return 0; // both $x and $y private 135c156e8f5SGreg Roach }; 136c156e8f5SGreg Roach } 137c156e8f5SGreg Roach 138c156e8f5SGreg Roach /** 139c156e8f5SGreg Roach * A closure which will compare records by change time. 140c156e8f5SGreg Roach * 141c156e8f5SGreg Roach * @param int $direction +1 to sort ascending, -1 to sort descending 142c156e8f5SGreg Roach * 143c156e8f5SGreg Roach * @return Closure 144c156e8f5SGreg Roach */ 145c156e8f5SGreg Roach public static function lastChangeComparator(int $direction = 1): Closure 146c156e8f5SGreg Roach { 1476c2179e2SGreg Roach return static function (GedcomRecord $x, GedcomRecord $y) use ($direction): int { 1484459dc9aSGreg Roach return $direction * ($x->lastChangeTimestamp() <=> $y->lastChangeTimestamp()); 149c156e8f5SGreg Roach }; 150c156e8f5SGreg Roach } 151c156e8f5SGreg Roach 152c156e8f5SGreg Roach /** 153a25f0a04SGreg Roach * Get an instance of a GedcomRecord object. For single records, 154a25f0a04SGreg Roach * we just receive the XREF. For bulk records (such as lists 155a25f0a04SGreg Roach * and search results) we can receive the GEDCOM data as well. 156a25f0a04SGreg Roach * 157a25f0a04SGreg Roach * @param string $xref 15824ec66ceSGreg Roach * @param Tree $tree 159a25f0a04SGreg Roach * @param string|null $gedcom 160a25f0a04SGreg Roach * 161ffc0a61fSGreg Roach * @return GedcomRecord|Individual|Family|Source|Repository|Media|Note|Submitter|null 16222e73debSGreg Roach * @throws Exception 163a25f0a04SGreg Roach */ 16476f666f4SGreg Roach public static function getInstance(string $xref, Tree $tree, string $gedcom = null) 165c1010edaSGreg Roach { 16672cf66d4SGreg Roach $tree_id = $tree->id(); 16724ec66ceSGreg Roach 168e71ef9d2SGreg Roach // Is this record already in the cache? 16924ec66ceSGreg Roach if (isset(self::$gedcom_record_cache[$xref][$tree_id])) { 170e71ef9d2SGreg Roach return self::$gedcom_record_cache[$xref][$tree_id]; 171a25f0a04SGreg Roach } 172a25f0a04SGreg Roach 173a25f0a04SGreg Roach // Do we need to fetch the record from the database? 174a25f0a04SGreg Roach if ($gedcom === null) { 17524ec66ceSGreg Roach $gedcom = static::fetchGedcomRecord($xref, $tree_id); 176a25f0a04SGreg Roach } 177a25f0a04SGreg Roach 178a25f0a04SGreg Roach // If we can edit, then we also need to be able to see pending records. 17994075df0SGreg Roach if (Auth::isEditor($tree)) { 18024ec66ceSGreg Roach if (!isset(self::$pending_record_cache[$tree_id])) { 181a25f0a04SGreg Roach // Fetch all pending records in one database query 18213abd6f3SGreg Roach self::$pending_record_cache[$tree_id] = []; 18385fc8064SGreg Roach $rows = DB::table('change') 18485fc8064SGreg Roach ->where('gedcom_id', '=', $tree_id) 18585fc8064SGreg Roach ->where('status', '=', 'pending') 18685fc8064SGreg Roach ->orderBy('change_id') 18785fc8064SGreg Roach ->select(['xref', 'new_gedcom']) 18885fc8064SGreg Roach ->get(); 189d17d7b9eSGreg Roach 190a25f0a04SGreg Roach foreach ($rows as $row) { 19124ec66ceSGreg Roach self::$pending_record_cache[$tree_id][$row->xref] = $row->new_gedcom; 192a25f0a04SGreg Roach } 193a25f0a04SGreg Roach } 194a25f0a04SGreg Roach 195d17d7b9eSGreg Roach $pending = self::$pending_record_cache[$tree_id][$xref] ?? null; 196a25f0a04SGreg Roach } else { 197a25f0a04SGreg Roach // There are no pending changes for this record 198a25f0a04SGreg Roach $pending = null; 199a25f0a04SGreg Roach } 200a25f0a04SGreg Roach 201a25f0a04SGreg Roach // No such record exists 202a25f0a04SGreg Roach if ($gedcom === null && $pending === null) { 203a25f0a04SGreg Roach return null; 204a25f0a04SGreg Roach } 205a25f0a04SGreg Roach 206fc3ccce4SGreg Roach // No such record, but a pending creation exists 207fc3ccce4SGreg Roach if ($gedcom === null) { 208fc3ccce4SGreg Roach $gedcom = ''; 209fc3ccce4SGreg Roach } 210fc3ccce4SGreg Roach 211a25f0a04SGreg Roach // Create the object 2128d0ebef0SGreg Roach if (preg_match('/^0 @(' . Gedcom::REGEX_XREF . ')@ (' . Gedcom::REGEX_TAG . ')/', $gedcom . $pending, $match)) { 213a25f0a04SGreg Roach $xref = $match[1]; // Collation - we may have requested I123 and found i123 214a25f0a04SGreg Roach $type = $match[2]; 215a25f0a04SGreg Roach } elseif (preg_match('/^0 (HEAD|TRLR)/', $gedcom . $pending, $match)) { 216a25f0a04SGreg Roach $xref = $match[1]; 217a25f0a04SGreg Roach $type = $match[1]; 218a25f0a04SGreg Roach } elseif ($gedcom . $pending) { 2197e96c925SGreg Roach throw new Exception('Unrecognized GEDCOM record: ' . $gedcom); 220a25f0a04SGreg Roach } else { 221a25f0a04SGreg Roach // A record with both pending creation and pending deletion 222a25f0a04SGreg Roach $type = static::RECORD_TYPE; 223a25f0a04SGreg Roach } 224a25f0a04SGreg Roach 225a25f0a04SGreg Roach switch ($type) { 226a25f0a04SGreg Roach case 'INDI': 22724ec66ceSGreg Roach $record = new Individual($xref, $gedcom, $pending, $tree); 228a25f0a04SGreg Roach break; 229a25f0a04SGreg Roach case 'FAM': 23024ec66ceSGreg Roach $record = new Family($xref, $gedcom, $pending, $tree); 231a25f0a04SGreg Roach break; 232a25f0a04SGreg Roach case 'SOUR': 23324ec66ceSGreg Roach $record = new Source($xref, $gedcom, $pending, $tree); 234a25f0a04SGreg Roach break; 235a25f0a04SGreg Roach case 'OBJE': 23624ec66ceSGreg Roach $record = new Media($xref, $gedcom, $pending, $tree); 237a25f0a04SGreg Roach break; 238a25f0a04SGreg Roach case 'REPO': 23924ec66ceSGreg Roach $record = new Repository($xref, $gedcom, $pending, $tree); 240a25f0a04SGreg Roach break; 241a25f0a04SGreg Roach case 'NOTE': 24224ec66ceSGreg Roach $record = new Note($xref, $gedcom, $pending, $tree); 243a25f0a04SGreg Roach break; 244ffc0a61fSGreg Roach case 'SUBM': 245ffc0a61fSGreg Roach $record = new Submitter($xref, $gedcom, $pending, $tree); 246ffc0a61fSGreg Roach break; 247a25f0a04SGreg Roach default: 24806ef8e02SGreg Roach $record = new self($xref, $gedcom, $pending, $tree); 249a25f0a04SGreg Roach break; 250a25f0a04SGreg Roach } 251a25f0a04SGreg Roach 252a25f0a04SGreg Roach // Store it in the cache 25324ec66ceSGreg Roach self::$gedcom_record_cache[$xref][$tree_id] = $record; 254a25f0a04SGreg Roach 255a25f0a04SGreg Roach return $record; 256a25f0a04SGreg Roach } 257a25f0a04SGreg Roach 258a25f0a04SGreg Roach /** 259a25f0a04SGreg Roach * Fetch data from the database 260a25f0a04SGreg Roach * 261a25f0a04SGreg Roach * @param string $xref 262cbc1590aSGreg Roach * @param int $tree_id 263a25f0a04SGreg Roach * 264e364afe4SGreg Roach * @return string|null 265a25f0a04SGreg Roach */ 266e364afe4SGreg Roach protected static function fetchGedcomRecord(string $xref, int $tree_id): ?string 267c1010edaSGreg Roach { 268a25f0a04SGreg Roach // We don't know what type of object this is. Try each one in turn. 26964d9078aSGreg Roach $data = Individual::fetchGedcomRecord($xref, $tree_id); 27085fc8064SGreg Roach if ($data !== null) { 271a25f0a04SGreg Roach return $data; 272a25f0a04SGreg Roach } 27364d9078aSGreg Roach $data = Family::fetchGedcomRecord($xref, $tree_id); 27485fc8064SGreg Roach if ($data !== null) { 275a25f0a04SGreg Roach return $data; 276a25f0a04SGreg Roach } 27764d9078aSGreg Roach $data = Source::fetchGedcomRecord($xref, $tree_id); 27885fc8064SGreg Roach if ($data !== null) { 279a25f0a04SGreg Roach return $data; 280a25f0a04SGreg Roach } 28164d9078aSGreg Roach $data = Repository::fetchGedcomRecord($xref, $tree_id); 28285fc8064SGreg Roach if ($data !== null) { 283a25f0a04SGreg Roach return $data; 284a25f0a04SGreg Roach } 28564d9078aSGreg Roach $data = Media::fetchGedcomRecord($xref, $tree_id); 28685fc8064SGreg Roach if ($data !== null) { 287a25f0a04SGreg Roach return $data; 288a25f0a04SGreg Roach } 28964d9078aSGreg Roach $data = Note::fetchGedcomRecord($xref, $tree_id); 29085fc8064SGreg Roach if ($data !== null) { 291a25f0a04SGreg Roach return $data; 292a25f0a04SGreg Roach } 293ffc0a61fSGreg Roach $data = Submitter::fetchGedcomRecord($xref, $tree_id); 294ffc0a61fSGreg Roach if ($data !== null) { 295ffc0a61fSGreg Roach return $data; 296ffc0a61fSGreg Roach } 297c1010edaSGreg Roach 298a25f0a04SGreg Roach // Some other type of record... 299d09b6323SGreg Roach return DB::table('other') 30085fc8064SGreg Roach ->where('o_file', '=', $tree_id) 30185fc8064SGreg Roach ->where('o_id', '=', $xref) 30285fc8064SGreg Roach ->value('o_gedcom'); 303a25f0a04SGreg Roach } 304a25f0a04SGreg Roach 305a25f0a04SGreg Roach /** 306a25f0a04SGreg Roach * Get the XREF for this record 307a25f0a04SGreg Roach * 308a25f0a04SGreg Roach * @return string 309a25f0a04SGreg Roach */ 310c0935879SGreg Roach public function xref(): string 311c1010edaSGreg Roach { 312a25f0a04SGreg Roach return $this->xref; 313a25f0a04SGreg Roach } 314a25f0a04SGreg Roach 315a25f0a04SGreg Roach /** 316000959d9SGreg Roach * Get the tree to which this record belongs 317000959d9SGreg Roach * 318000959d9SGreg Roach * @return Tree 319000959d9SGreg Roach */ 320f4afa648SGreg Roach public function tree(): Tree 321c1010edaSGreg Roach { 322518bbdc1SGreg Roach return $this->tree; 323000959d9SGreg Roach } 324000959d9SGreg Roach 325000959d9SGreg Roach /** 326a25f0a04SGreg Roach * Application code should access data via Fact objects. 327a25f0a04SGreg Roach * This function exists to support old code. 328a25f0a04SGreg Roach * 329a25f0a04SGreg Roach * @return string 330a25f0a04SGreg Roach */ 331e364afe4SGreg Roach public function gedcom(): string 332c1010edaSGreg Roach { 333b2ce94c6SRico Sonntag return $this->pending ?? $this->gedcom; 334a25f0a04SGreg Roach } 335a25f0a04SGreg Roach 336a25f0a04SGreg Roach /** 337a25f0a04SGreg Roach * Does this record have a pending change? 338a25f0a04SGreg Roach * 339cbc1590aSGreg Roach * @return bool 340a25f0a04SGreg Roach */ 3418f53f488SRico Sonntag public function isPendingAddition(): bool 342c1010edaSGreg Roach { 343a25f0a04SGreg Roach return $this->pending !== null; 344a25f0a04SGreg Roach } 345a25f0a04SGreg Roach 346a25f0a04SGreg Roach /** 347a25f0a04SGreg Roach * Does this record have a pending deletion? 348a25f0a04SGreg Roach * 349cbc1590aSGreg Roach * @return bool 350a25f0a04SGreg Roach */ 3518f53f488SRico Sonntag public function isPendingDeletion(): bool 352c1010edaSGreg Roach { 353a25f0a04SGreg Roach return $this->pending === ''; 354a25f0a04SGreg Roach } 355a25f0a04SGreg Roach 356a25f0a04SGreg Roach /** 357ee4364daSGreg Roach * Generate a "slug" to use in pretty URLs. 358ee4364daSGreg Roach * 359ee4364daSGreg Roach * @return string 360ee4364daSGreg Roach */ 361ee4364daSGreg Roach public function slug(): string 362ee4364daSGreg Roach { 363*05b6dd19SGreg Roach $text = strip_tags($this->fullName()); 364*05b6dd19SGreg Roach $text = strtr($text, '\\/?:;@=&<>#%{}|^~[]`"\'', '----------------------'); 365*05b6dd19SGreg Roach 366*05b6dd19SGreg Roach return trim($text, '-'); 367ee4364daSGreg Roach } 368ee4364daSGreg Roach 369ee4364daSGreg Roach /** 370225e381fSGreg Roach * Generate a URL to this record. 371a25f0a04SGreg Roach * 372a25f0a04SGreg Roach * @return string 373a25f0a04SGreg Roach */ 3748f53f488SRico Sonntag public function url(): string 375c1010edaSGreg Roach { 376225e381fSGreg Roach return route(static::ROUTE_NAME, [ 377c0935879SGreg Roach 'xref' => $this->xref(), 378ee4364daSGreg Roach 'tree' => $this->tree->name(), 379ee4364daSGreg Roach 'slug' => $this->slug(), 380225e381fSGreg Roach ]); 381a25f0a04SGreg Roach } 382a25f0a04SGreg Roach 383a25f0a04SGreg Roach /** 384a25f0a04SGreg Roach * Can the details of this record be shown? 385a25f0a04SGreg Roach * 386cbc1590aSGreg Roach * @param int|null $access_level 387a25f0a04SGreg Roach * 388cbc1590aSGreg Roach * @return bool 389a25f0a04SGreg Roach */ 39035584196SGreg Roach public function canShow(int $access_level = null): bool 391c1010edaSGreg Roach { 392f0b9c048SGreg Roach $access_level = $access_level ?? Auth::accessLevel($this->tree); 3934b9ff166SGreg Roach 394a25f0a04SGreg Roach // We use this value to bypass privacy checks. For example, 395a25f0a04SGreg Roach // when downloading data or when calculating privacy itself. 396f0b9c048SGreg Roach if ($access_level === Auth::PRIV_HIDE) { 397a25f0a04SGreg Roach return true; 398a25f0a04SGreg Roach } 399f0b9c048SGreg Roach 4007476e8a5SGreg Roach $cache_key = 'show-' . $this->xref . '-' . $this->tree->id() . '-' . $access_level; 401f0b9c048SGreg Roach 402c692965aSGreg Roach return app('cache.array')->remember($cache_key, function () use ($access_level) { 403f0b9c048SGreg Roach return $this->canShowRecord($access_level); 404f0b9c048SGreg Roach }); 405a25f0a04SGreg Roach } 406a25f0a04SGreg Roach 407a25f0a04SGreg Roach /** 408a25f0a04SGreg Roach * Can the name of this record be shown? 409a25f0a04SGreg Roach * 410cbc1590aSGreg Roach * @param int|null $access_level 411a25f0a04SGreg Roach * 412cbc1590aSGreg Roach * @return bool 413a25f0a04SGreg Roach */ 41476f666f4SGreg Roach public function canShowName(int $access_level = null): bool 415c1010edaSGreg Roach { 416a25f0a04SGreg Roach return $this->canShow($access_level); 417a25f0a04SGreg Roach } 418a25f0a04SGreg Roach 419a25f0a04SGreg Roach /** 420a25f0a04SGreg Roach * Can we edit this record? 421a25f0a04SGreg Roach * 422cbc1590aSGreg Roach * @return bool 423a25f0a04SGreg Roach */ 4248f53f488SRico Sonntag public function canEdit(): bool 425c1010edaSGreg Roach { 4261450f098SGreg Roach if ($this->isPendingDeletion()) { 4271450f098SGreg Roach return false; 4281450f098SGreg Roach } 4291450f098SGreg Roach 4301450f098SGreg Roach if (Auth::isManager($this->tree)) { 4311450f098SGreg Roach return true; 4321450f098SGreg Roach } 4331450f098SGreg Roach 4341450f098SGreg Roach return Auth::isEditor($this->tree) && strpos($this->gedcom, "\n1 RESN locked") === false; 435a25f0a04SGreg Roach } 436a25f0a04SGreg Roach 437a25f0a04SGreg Roach /** 438a25f0a04SGreg Roach * Remove private data from the raw gedcom record. 439a25f0a04SGreg Roach * Return both the visible and invisible data. We need the invisible data when editing. 440a25f0a04SGreg Roach * 441cbc1590aSGreg Roach * @param int $access_level 442a25f0a04SGreg Roach * 443a25f0a04SGreg Roach * @return string 444a25f0a04SGreg Roach */ 445e364afe4SGreg Roach public function privatizeGedcom(int $access_level): string 446c1010edaSGreg Roach { 447e364afe4SGreg Roach if ($access_level === Auth::PRIV_HIDE) { 448a25f0a04SGreg Roach // We may need the original record, for example when downloading a GEDCOM or clippings cart 449a25f0a04SGreg Roach return $this->gedcom; 450b2ce94c6SRico Sonntag } 451b2ce94c6SRico Sonntag 452b2ce94c6SRico Sonntag if ($this->canShow($access_level)) { 453a25f0a04SGreg Roach // The record is not private, but the individual facts may be. 454a25f0a04SGreg Roach 455a25f0a04SGreg Roach // Include the entire first line (for NOTE records) 45665e02381SGreg Roach [$gedrec] = explode("\n", $this->gedcom, 2); 457a25f0a04SGreg Roach 458a25f0a04SGreg Roach // Check each of the facts for access 4598d0ebef0SGreg Roach foreach ($this->facts([], false, $access_level) as $fact) { 460138ca96cSGreg Roach $gedrec .= "\n" . $fact->gedcom(); 461a25f0a04SGreg Roach } 462cbc1590aSGreg Roach 463a25f0a04SGreg Roach return $gedrec; 464b2ce94c6SRico Sonntag } 465b2ce94c6SRico Sonntag 466a25f0a04SGreg Roach // We cannot display the details, but we may be able to display 467a25f0a04SGreg Roach // limited data, such as links to other records. 468a25f0a04SGreg Roach return $this->createPrivateGedcomRecord($access_level); 469a25f0a04SGreg Roach } 470a25f0a04SGreg Roach 471a25f0a04SGreg Roach /** 472a25f0a04SGreg Roach * Default for "other" object types 473c7ff4153SGreg Roach * 474c7ff4153SGreg Roach * @return void 475a25f0a04SGreg Roach */ 476e364afe4SGreg Roach public function extractNames(): void 477c1010edaSGreg Roach { 47876f666f4SGreg Roach $this->addName(static::RECORD_TYPE, $this->getFallBackName(), ''); 479a25f0a04SGreg Roach } 480a25f0a04SGreg Roach 481a25f0a04SGreg Roach /** 482a25f0a04SGreg Roach * Derived classes should redefine this function, otherwise the object will have no name 483a25f0a04SGreg Roach * 484a25f0a04SGreg Roach * @return string[][] 485a25f0a04SGreg Roach */ 4868f53f488SRico Sonntag public function getAllNames(): array 487c1010edaSGreg Roach { 488bdb3725aSGreg Roach if ($this->getAllNames === null) { 489bdb3725aSGreg Roach $this->getAllNames = []; 490a25f0a04SGreg Roach if ($this->canShowName()) { 491a25f0a04SGreg Roach // Ask the record to extract its names 492a25f0a04SGreg Roach $this->extractNames(); 493a25f0a04SGreg Roach // No name found? Use a fallback. 494bdb3725aSGreg Roach if (!$this->getAllNames) { 495db7bb364SGreg Roach $this->addName(static::RECORD_TYPE, $this->getFallBackName(), ''); 496a25f0a04SGreg Roach } 497a25f0a04SGreg Roach } else { 498db7bb364SGreg Roach $this->addName(static::RECORD_TYPE, I18N::translate('Private'), ''); 499a25f0a04SGreg Roach } 500a25f0a04SGreg Roach } 501cbc1590aSGreg Roach 502bdb3725aSGreg Roach return $this->getAllNames; 503a25f0a04SGreg Roach } 504a25f0a04SGreg Roach 505a25f0a04SGreg Roach /** 506a25f0a04SGreg Roach * If this object has no name, what do we call it? 507a25f0a04SGreg Roach * 508a25f0a04SGreg Roach * @return string 509a25f0a04SGreg Roach */ 5108f53f488SRico Sonntag public function getFallBackName(): string 511c1010edaSGreg Roach { 512c0935879SGreg Roach return e($this->xref()); 513a25f0a04SGreg Roach } 514a25f0a04SGreg Roach 515a25f0a04SGreg Roach /** 516a25f0a04SGreg Roach * Which of the (possibly several) names of this record is the primary one. 517a25f0a04SGreg Roach * 518cbc1590aSGreg Roach * @return int 519a25f0a04SGreg Roach */ 5208f53f488SRico Sonntag public function getPrimaryName(): int 521c1010edaSGreg Roach { 522a25f0a04SGreg Roach static $language_script; 523a25f0a04SGreg Roach 524a25f0a04SGreg Roach if ($language_script === null) { 52565cf5706SGreg Roach $language_script = $language_script ?? I18N::locale()->script()->code(); 526a25f0a04SGreg Roach } 527a25f0a04SGreg Roach 528bdb3725aSGreg Roach if ($this->getPrimaryName === null) { 529a25f0a04SGreg Roach // Generally, the first name is the primary one.... 530bdb3725aSGreg Roach $this->getPrimaryName = 0; 531a25f0a04SGreg Roach // ...except when the language/name use different character sets 532a25f0a04SGreg Roach foreach ($this->getAllNames() as $n => $name) { 53369546be1SGreg Roach if (I18N::textScript($name['sort']) === $language_script) { 534bdb3725aSGreg Roach $this->getPrimaryName = $n; 535a25f0a04SGreg Roach break; 536a25f0a04SGreg Roach } 537a25f0a04SGreg Roach } 538a25f0a04SGreg Roach } 539a25f0a04SGreg Roach 540bdb3725aSGreg Roach return $this->getPrimaryName; 541a25f0a04SGreg Roach } 542a25f0a04SGreg Roach 543a25f0a04SGreg Roach /** 544a25f0a04SGreg Roach * Which of the (possibly several) names of this record is the secondary one. 545a25f0a04SGreg Roach * 546cbc1590aSGreg Roach * @return int 547a25f0a04SGreg Roach */ 5488f53f488SRico Sonntag public function getSecondaryName(): int 549c1010edaSGreg Roach { 5508f038c36SRico Sonntag if ($this->getSecondaryName === null) { 551a25f0a04SGreg Roach // Generally, the primary and secondary names are the same 552bdb3725aSGreg Roach $this->getSecondaryName = $this->getPrimaryName(); 553a25f0a04SGreg Roach // ....except when there are names with different character sets 554a25f0a04SGreg Roach $all_names = $this->getAllNames(); 555a25f0a04SGreg Roach if (count($all_names) > 1) { 556a25f0a04SGreg Roach $primary_script = I18N::textScript($all_names[$this->getPrimaryName()]['sort']); 557a25f0a04SGreg Roach foreach ($all_names as $n => $name) { 558e364afe4SGreg Roach if ($n !== $this->getPrimaryName() && $name['type'] !== '_MARNM' && I18N::textScript($name['sort']) !== $primary_script) { 559bdb3725aSGreg Roach $this->getSecondaryName = $n; 560a25f0a04SGreg Roach break; 561a25f0a04SGreg Roach } 562a25f0a04SGreg Roach } 563a25f0a04SGreg Roach } 564a25f0a04SGreg Roach } 565cbc1590aSGreg Roach 566bdb3725aSGreg Roach return $this->getSecondaryName; 567a25f0a04SGreg Roach } 568a25f0a04SGreg Roach 569a25f0a04SGreg Roach /** 570a25f0a04SGreg Roach * Allow the choice of primary name to be overidden, e.g. in a search result 571a25f0a04SGreg Roach * 57276f666f4SGreg Roach * @param int|null $n 5737e96c925SGreg Roach * 5747e96c925SGreg Roach * @return void 575a25f0a04SGreg Roach */ 576e364afe4SGreg Roach public function setPrimaryName(int $n = null): void 577c1010edaSGreg Roach { 578bdb3725aSGreg Roach $this->getPrimaryName = $n; 579bdb3725aSGreg Roach $this->getSecondaryName = null; 580a25f0a04SGreg Roach } 581a25f0a04SGreg Roach 582a25f0a04SGreg Roach /** 583a25f0a04SGreg Roach * Allow native PHP functions such as array_unique() to work with objects 584a25f0a04SGreg Roach * 585a25f0a04SGreg Roach * @return string 586a25f0a04SGreg Roach */ 587c1010edaSGreg Roach public function __toString() 588c1010edaSGreg Roach { 58972cf66d4SGreg Roach return $this->xref . '@' . $this->tree->id(); 590a25f0a04SGreg Roach } 591a25f0a04SGreg Roach 592a25f0a04SGreg Roach /** 593c156e8f5SGreg Roach * /** 594a25f0a04SGreg Roach * Get variants of the name 595a25f0a04SGreg Roach * 596a25f0a04SGreg Roach * @return string 597a25f0a04SGreg Roach */ 598e364afe4SGreg Roach public function fullName(): string 599c1010edaSGreg Roach { 600a25f0a04SGreg Roach if ($this->canShowName()) { 601a25f0a04SGreg Roach $tmp = $this->getAllNames(); 602cbc1590aSGreg Roach 603a25f0a04SGreg Roach return $tmp[$this->getPrimaryName()]['full']; 604a25f0a04SGreg Roach } 605b2ce94c6SRico Sonntag 606b2ce94c6SRico Sonntag return I18N::translate('Private'); 607a25f0a04SGreg Roach } 608a25f0a04SGreg Roach 609a25f0a04SGreg Roach /** 610a25f0a04SGreg Roach * Get a sortable version of the name. Do not display this! 611a25f0a04SGreg Roach * 612a25f0a04SGreg Roach * @return string 613a25f0a04SGreg Roach */ 61439ca88baSGreg Roach public function sortName(): string 615c1010edaSGreg Roach { 616a25f0a04SGreg Roach // The sortable name is never displayed, no need to call canShowName() 617a25f0a04SGreg Roach $tmp = $this->getAllNames(); 618cbc1590aSGreg Roach 619a25f0a04SGreg Roach return $tmp[$this->getPrimaryName()]['sort']; 620a25f0a04SGreg Roach } 621a25f0a04SGreg Roach 622a25f0a04SGreg Roach /** 623a25f0a04SGreg Roach * Get the full name in an alternative character set 624a25f0a04SGreg Roach * 625e364afe4SGreg Roach * @return string|null 626a25f0a04SGreg Roach */ 627e364afe4SGreg Roach public function alternateName(): ?string 628c1010edaSGreg Roach { 629e364afe4SGreg Roach if ($this->canShowName() && $this->getPrimaryName() !== $this->getSecondaryName()) { 630a25f0a04SGreg Roach $all_names = $this->getAllNames(); 631cbc1590aSGreg Roach 632a25f0a04SGreg Roach return $all_names[$this->getSecondaryName()]['full']; 633a25f0a04SGreg Roach } 634b2ce94c6SRico Sonntag 635b2ce94c6SRico Sonntag return null; 636a25f0a04SGreg Roach } 637a25f0a04SGreg Roach 638a25f0a04SGreg Roach /** 639a25f0a04SGreg Roach * Format this object for display in a list 640a25f0a04SGreg Roach * 641a25f0a04SGreg Roach * @return string 642a25f0a04SGreg Roach */ 6438f53f488SRico Sonntag public function formatList(): string 644c1010edaSGreg Roach { 645b165e17cSGreg Roach $html = '<a href="' . e($this->url()) . '" class="list_item">'; 64639ca88baSGreg Roach $html .= '<b>' . $this->fullName() . '</b>'; 647a25f0a04SGreg Roach $html .= $this->formatListDetails(); 648b165e17cSGreg Roach $html .= '</a>'; 649cbc1590aSGreg Roach 650a25f0a04SGreg Roach return $html; 651a25f0a04SGreg Roach } 652a25f0a04SGreg Roach 653a25f0a04SGreg Roach /** 654a25f0a04SGreg Roach * This function should be redefined in derived classes to show any major 655a25f0a04SGreg Roach * identifying characteristics of this record. 656a25f0a04SGreg Roach * 657a25f0a04SGreg Roach * @return string 658a25f0a04SGreg Roach */ 6598f53f488SRico Sonntag public function formatListDetails(): string 660c1010edaSGreg Roach { 661a25f0a04SGreg Roach return ''; 662a25f0a04SGreg Roach } 663a25f0a04SGreg Roach 664a25f0a04SGreg Roach /** 665a25f0a04SGreg Roach * Extract/format the first fact from a list of facts. 666a25f0a04SGreg Roach * 6678d0ebef0SGreg Roach * @param string[] $facts 668cbc1590aSGreg Roach * @param int $style 669a25f0a04SGreg Roach * 670a25f0a04SGreg Roach * @return string 671a25f0a04SGreg Roach */ 6728d0ebef0SGreg Roach public function formatFirstMajorFact(array $facts, int $style): string 673c1010edaSGreg Roach { 67430158ae7SGreg Roach foreach ($this->facts($facts, true) as $event) { 675a25f0a04SGreg Roach // Only display if it has a date or place (or both) 676e364afe4SGreg Roach if ($event->date()->isOK() && $event->place()->gedcomName() !== '') { 677d93f11b5SGreg Roach $joiner = ' — '; 678d93f11b5SGreg Roach } else { 679d93f11b5SGreg Roach $joiner = ''; 680d93f11b5SGreg Roach } 681e364afe4SGreg Roach if ($event->date()->isOK() || $event->place()->gedcomName() !== '') { 682a25f0a04SGreg Roach switch ($style) { 683a25f0a04SGreg Roach case 1: 6847b7d8067SGreg Roach return '<br><em>' . $event->label() . ' ' . FunctionsPrint::formatFactDate($event, $this, false, false) . $joiner . FunctionsPrint::formatFactPlace($event) . '</em>'; 685a25f0a04SGreg Roach case 2: 6867b7d8067SGreg Roach return '<dl><dt class="label">' . $event->label() . '</dt><dd class="field">' . FunctionsPrint::formatFactDate($event, $this, false, false) . $joiner . FunctionsPrint::formatFactPlace($event) . '</dd></dl>'; 687a25f0a04SGreg Roach } 688a25f0a04SGreg Roach } 689a25f0a04SGreg Roach } 690cbc1590aSGreg Roach 691a25f0a04SGreg Roach return ''; 692a25f0a04SGreg Roach } 693a25f0a04SGreg Roach 694a25f0a04SGreg Roach /** 695a25f0a04SGreg Roach * Find individuals linked to this record. 696a25f0a04SGreg Roach * 697a25f0a04SGreg Roach * @param string $link 698a25f0a04SGreg Roach * 699b5c8fd7eSGreg Roach * @return Collection<Individual> 700a25f0a04SGreg Roach */ 701907c1109SGreg Roach public function linkedIndividuals(string $link): Collection 702c1010edaSGreg Roach { 703907c1109SGreg Roach return DB::table('individuals') 7040b5fd0a6SGreg Roach ->join('link', static function (JoinClause $join): void { 705907c1109SGreg Roach $join 706907c1109SGreg Roach ->on('l_file', '=', 'i_file') 707907c1109SGreg Roach ->on('l_from', '=', 'i_id'); 708ba1c12e8SGreg Roach }) 709ba1c12e8SGreg Roach ->where('i_file', '=', $this->tree->id()) 710ba1c12e8SGreg Roach ->where('l_type', '=', $link) 711ba1c12e8SGreg Roach ->where('l_to', '=', $this->xref) 712907c1109SGreg Roach ->select(['individuals.*']) 713907c1109SGreg Roach ->get() 714d5ad3db0SGreg Roach ->map(Individual::rowMapper($this->tree)) 715907c1109SGreg Roach ->filter(self::accessFilter()); 716a25f0a04SGreg Roach } 717a25f0a04SGreg Roach 718a25f0a04SGreg Roach /** 719a25f0a04SGreg Roach * Find families linked to this record. 720a25f0a04SGreg Roach * 721a25f0a04SGreg Roach * @param string $link 722a25f0a04SGreg Roach * 723b5c8fd7eSGreg Roach * @return Collection<Family> 724a25f0a04SGreg Roach */ 725907c1109SGreg Roach public function linkedFamilies(string $link): Collection 726c1010edaSGreg Roach { 727907c1109SGreg Roach return DB::table('families') 7280b5fd0a6SGreg Roach ->join('link', static function (JoinClause $join): void { 729907c1109SGreg Roach $join 730907c1109SGreg Roach ->on('l_file', '=', 'f_file') 731907c1109SGreg Roach ->on('l_from', '=', 'f_id'); 732ba1c12e8SGreg Roach }) 733ba1c12e8SGreg Roach ->where('f_file', '=', $this->tree->id()) 734ba1c12e8SGreg Roach ->where('l_type', '=', $link) 735ba1c12e8SGreg Roach ->where('l_to', '=', $this->xref) 736907c1109SGreg Roach ->select(['families.*']) 737907c1109SGreg Roach ->get() 738d5ad3db0SGreg Roach ->map(Family::rowMapper($this->tree)) 739907c1109SGreg Roach ->filter(self::accessFilter()); 740a25f0a04SGreg Roach } 741a25f0a04SGreg Roach 742a25f0a04SGreg Roach /** 743a25f0a04SGreg Roach * Find sources linked to this record. 744a25f0a04SGreg Roach * 745a25f0a04SGreg Roach * @param string $link 746a25f0a04SGreg Roach * 747b5c8fd7eSGreg Roach * @return Collection<Source> 748a25f0a04SGreg Roach */ 749907c1109SGreg Roach public function linkedSources(string $link): Collection 750c1010edaSGreg Roach { 751907c1109SGreg Roach return DB::table('sources') 7520b5fd0a6SGreg Roach ->join('link', static function (JoinClause $join): void { 753907c1109SGreg Roach $join 754907c1109SGreg Roach ->on('l_file', '=', 's_file') 755907c1109SGreg Roach ->on('l_from', '=', 's_id'); 756ba1c12e8SGreg Roach }) 757ba1c12e8SGreg Roach ->where('s_file', '=', $this->tree->id()) 758ba1c12e8SGreg Roach ->where('l_type', '=', $link) 759ba1c12e8SGreg Roach ->where('l_to', '=', $this->xref) 760907c1109SGreg Roach ->select(['sources.*']) 761907c1109SGreg Roach ->get() 762d5ad3db0SGreg Roach ->map(Source::rowMapper($this->tree)) 763907c1109SGreg Roach ->filter(self::accessFilter()); 764a25f0a04SGreg Roach } 765a25f0a04SGreg Roach 766a25f0a04SGreg Roach /** 767a25f0a04SGreg Roach * Find media objects linked to this record. 768a25f0a04SGreg Roach * 769a25f0a04SGreg Roach * @param string $link 770a25f0a04SGreg Roach * 771b5c8fd7eSGreg Roach * @return Collection<Media> 772a25f0a04SGreg Roach */ 773907c1109SGreg Roach public function linkedMedia(string $link): Collection 774c1010edaSGreg Roach { 775907c1109SGreg Roach return DB::table('media') 7760b5fd0a6SGreg Roach ->join('link', static function (JoinClause $join): void { 777907c1109SGreg Roach $join 778907c1109SGreg Roach ->on('l_file', '=', 'm_file') 779907c1109SGreg Roach ->on('l_from', '=', 'm_id'); 780ba1c12e8SGreg Roach }) 781ba1c12e8SGreg Roach ->where('m_file', '=', $this->tree->id()) 782ba1c12e8SGreg Roach ->where('l_type', '=', $link) 783ba1c12e8SGreg Roach ->where('l_to', '=', $this->xref) 784907c1109SGreg Roach ->select(['media.*']) 785907c1109SGreg Roach ->get() 786d5ad3db0SGreg Roach ->map(Media::rowMapper($this->tree)) 787907c1109SGreg Roach ->filter(self::accessFilter()); 788a25f0a04SGreg Roach } 789a25f0a04SGreg Roach 790a25f0a04SGreg Roach /** 791a25f0a04SGreg Roach * Find notes linked to this record. 792a25f0a04SGreg Roach * 793a25f0a04SGreg Roach * @param string $link 794a25f0a04SGreg Roach * 795b5c8fd7eSGreg Roach * @return Collection<Note> 796a25f0a04SGreg Roach */ 797907c1109SGreg Roach public function linkedNotes(string $link): Collection 798c1010edaSGreg Roach { 799907c1109SGreg Roach return DB::table('other') 8000b5fd0a6SGreg Roach ->join('link', static function (JoinClause $join): void { 801907c1109SGreg Roach $join 802907c1109SGreg Roach ->on('l_file', '=', 'o_file') 803907c1109SGreg Roach ->on('l_from', '=', 'o_id'); 804ba1c12e8SGreg Roach }) 805ba1c12e8SGreg Roach ->where('o_file', '=', $this->tree->id()) 806ba1c12e8SGreg Roach ->where('o_type', '=', 'NOTE') 807ba1c12e8SGreg Roach ->where('l_type', '=', $link) 808ba1c12e8SGreg Roach ->where('l_to', '=', $this->xref) 809907c1109SGreg Roach ->select(['other.*']) 810907c1109SGreg Roach ->get() 811d5ad3db0SGreg Roach ->map(Note::rowMapper($this->tree)) 812907c1109SGreg Roach ->filter(self::accessFilter()); 813a25f0a04SGreg Roach } 814a25f0a04SGreg Roach 815a25f0a04SGreg Roach /** 816a25f0a04SGreg Roach * Find repositories linked to this record. 817a25f0a04SGreg Roach * 818a25f0a04SGreg Roach * @param string $link 819a25f0a04SGreg Roach * 820b5c8fd7eSGreg Roach * @return Collection<Repository> 821a25f0a04SGreg Roach */ 822907c1109SGreg Roach public function linkedRepositories(string $link): Collection 823c1010edaSGreg Roach { 824907c1109SGreg Roach return DB::table('other') 8250b5fd0a6SGreg Roach ->join('link', static function (JoinClause $join): void { 826907c1109SGreg Roach $join 827907c1109SGreg Roach ->on('l_file', '=', 'o_file') 828907c1109SGreg Roach ->on('l_from', '=', 'o_id'); 829ba1c12e8SGreg Roach }) 830ba1c12e8SGreg Roach ->where('o_file', '=', $this->tree->id()) 831ba1c12e8SGreg Roach ->where('o_type', '=', 'REPO') 832ba1c12e8SGreg Roach ->where('l_type', '=', $link) 833ba1c12e8SGreg Roach ->where('l_to', '=', $this->xref) 834907c1109SGreg Roach ->select(['other.*']) 835907c1109SGreg Roach ->get() 836d5ad3db0SGreg Roach ->map(Repository::rowMapper($this->tree)) 837907c1109SGreg Roach ->filter(self::accessFilter()); 838a25f0a04SGreg Roach } 839a25f0a04SGreg Roach 840a25f0a04SGreg Roach /** 841a25f0a04SGreg Roach * Get all attributes (e.g. DATE or PLAC) from an event (e.g. BIRT or MARR). 842a25f0a04SGreg Roach * This is used to display multiple events on the individual/family lists. 843a25f0a04SGreg Roach * Multiple events can exist because of uncertainty in dates, dates in different 844a25f0a04SGreg Roach * calendars, place-names in both latin and hebrew character sets, etc. 845a25f0a04SGreg Roach * It also allows us to combine dates/places from different events in the summaries. 846a25f0a04SGreg Roach * 8478d0ebef0SGreg Roach * @param string[] $events 848a25f0a04SGreg Roach * 849a25f0a04SGreg Roach * @return Date[] 850a25f0a04SGreg Roach */ 8518d0ebef0SGreg Roach public function getAllEventDates(array $events): array 852c1010edaSGreg Roach { 85313abd6f3SGreg Roach $dates = []; 8548d0ebef0SGreg Roach foreach ($this->facts($events) as $event) { 8552decada7SGreg Roach if ($event->date()->isOK()) { 8562decada7SGreg Roach $dates[] = $event->date(); 857a25f0a04SGreg Roach } 858a25f0a04SGreg Roach } 859a25f0a04SGreg Roach 860a25f0a04SGreg Roach return $dates; 861a25f0a04SGreg Roach } 862a25f0a04SGreg Roach 863a25f0a04SGreg Roach /** 864a25f0a04SGreg Roach * Get all the places for a particular type of event 865a25f0a04SGreg Roach * 8668d0ebef0SGreg Roach * @param string[] $events 867a25f0a04SGreg Roach * 8684080d558SGreg Roach * @return Place[] 869a25f0a04SGreg Roach */ 8708d0ebef0SGreg Roach public function getAllEventPlaces(array $events): array 871c1010edaSGreg Roach { 87213abd6f3SGreg Roach $places = []; 8738d0ebef0SGreg Roach foreach ($this->facts($events) as $event) { 874138ca96cSGreg Roach if (preg_match_all('/\n(?:2 PLAC|3 (?:ROMN|FONE|_HEB)) +(.+)/', $event->gedcom(), $ged_places)) { 875a25f0a04SGreg Roach foreach ($ged_places[1] as $ged_place) { 87616d0b7f7SRico Sonntag $places[] = new Place($ged_place, $this->tree); 877a25f0a04SGreg Roach } 878a25f0a04SGreg Roach } 879a25f0a04SGreg Roach } 880a25f0a04SGreg Roach 881a25f0a04SGreg Roach return $places; 882a25f0a04SGreg Roach } 883a25f0a04SGreg Roach 884a25f0a04SGreg Roach /** 885a25f0a04SGreg Roach * The facts and events for this record. 886a25f0a04SGreg Roach * 8878d0ebef0SGreg Roach * @param string[] $filter 888cbc1590aSGreg Roach * @param bool $sort 889cbc1590aSGreg Roach * @param int|null $access_level 890cbc1590aSGreg Roach * @param bool $override Include private records, to allow us to implement $SHOW_PRIVATE_RELATIONSHIPS and $SHOW_LIVING_NAMES. 891a25f0a04SGreg Roach * 892b5c8fd7eSGreg Roach * @return Collection<Fact> 893a25f0a04SGreg Roach */ 89439ca88baSGreg Roach public function facts(array $filter = [], bool $sort = false, int $access_level = null, bool $override = false): Collection 895c1010edaSGreg Roach { 896d9e083e7SGreg Roach $access_level = $access_level ?? Auth::accessLevel($this->tree); 8974b9ff166SGreg Roach 8988af3e5c1SGreg Roach $facts = new Collection(); 899a25f0a04SGreg Roach if ($this->canShow($access_level) || $override) { 900a25f0a04SGreg Roach foreach ($this->facts as $fact) { 90122d65e5aSGreg Roach if (($filter === [] || in_array($fact->getTag(), $filter, true)) && $fact->canShow($access_level)) { 9028af3e5c1SGreg Roach $facts->push($fact); 903a25f0a04SGreg Roach } 904a25f0a04SGreg Roach } 905a25f0a04SGreg Roach } 906d17d7b9eSGreg Roach 907a25f0a04SGreg Roach if ($sort) { 908580a4d11SGreg Roach $facts = Fact::sortFacts($facts); 909a25f0a04SGreg Roach } 910cbc1590aSGreg Roach 91139ca88baSGreg Roach return new Collection($facts); 912a25f0a04SGreg Roach } 913a25f0a04SGreg Roach 914a25f0a04SGreg Roach /** 9154459dc9aSGreg Roach * Get the last-change timestamp for this record 916a25f0a04SGreg Roach * 9174459dc9aSGreg Roach * @return Carbon 918a25f0a04SGreg Roach */ 9194459dc9aSGreg Roach public function lastChangeTimestamp(): Carbon 920c1010edaSGreg Roach { 9214459dc9aSGreg Roach /** @var Fact|null $chan */ 922820b62dfSGreg Roach $chan = $this->facts(['CHAN'])->first(); 923a25f0a04SGreg Roach 9244459dc9aSGreg Roach if ($chan instanceof Fact) { 925a25f0a04SGreg Roach // The record does have a CHAN event 9262decada7SGreg Roach $d = $chan->date()->minimumDate(); 9274459dc9aSGreg Roach 928138ca96cSGreg Roach if (preg_match('/\n3 TIME (\d\d):(\d\d):(\d\d)/', $chan->gedcom(), $match)) { 9294459dc9aSGreg Roach return Carbon::create($d->year(), $d->month(), $d->day(), (int) $match[1], (int) $match[2], (int) $match[3]); 930e364afe4SGreg Roach } 931e364afe4SGreg Roach 932e364afe4SGreg Roach if (preg_match('/\n3 TIME (\d\d):(\d\d)/', $chan->gedcom(), $match)) { 9334459dc9aSGreg Roach return Carbon::create($d->year(), $d->month(), $d->day(), (int) $match[1], (int) $match[2]); 934b2ce94c6SRico Sonntag } 935b2ce94c6SRico Sonntag 9364459dc9aSGreg Roach return Carbon::create($d->year(), $d->month(), $d->day()); 937a25f0a04SGreg Roach } 938b2ce94c6SRico Sonntag 939a25f0a04SGreg Roach // The record does not have a CHAN event 9404459dc9aSGreg Roach return Carbon::createFromTimestamp(0); 941a25f0a04SGreg Roach } 942a25f0a04SGreg Roach 943a25f0a04SGreg Roach /** 944a25f0a04SGreg Roach * Get the last-change user for this record 945a25f0a04SGreg Roach * 946a25f0a04SGreg Roach * @return string 947a25f0a04SGreg Roach */ 948e364afe4SGreg Roach public function lastChangeUser(): string 949c1010edaSGreg Roach { 950820b62dfSGreg Roach $chan = $this->facts(['CHAN'])->first(); 951a25f0a04SGreg Roach 952a25f0a04SGreg Roach if ($chan === null) { 953a25f0a04SGreg Roach return I18N::translate('Unknown'); 954b2ce94c6SRico Sonntag } 955b2ce94c6SRico Sonntag 9563425616eSGreg Roach $chan_user = $chan->attribute('_WT_USER'); 957baacc364SGreg Roach if ($chan_user === '') { 958a25f0a04SGreg Roach return I18N::translate('Unknown'); 959b2ce94c6SRico Sonntag } 960b2ce94c6SRico Sonntag 961a25f0a04SGreg Roach return $chan_user; 962a25f0a04SGreg Roach } 963a25f0a04SGreg Roach 964a25f0a04SGreg Roach /** 965a25f0a04SGreg Roach * Add a new fact to this record 966a25f0a04SGreg Roach * 967a25f0a04SGreg Roach * @param string $gedcom 968cbc1590aSGreg Roach * @param bool $update_chan 9697e96c925SGreg Roach * 9707e96c925SGreg Roach * @return void 971a25f0a04SGreg Roach */ 972e364afe4SGreg Roach public function createFact(string $gedcom, bool $update_chan): void 973c1010edaSGreg Roach { 974fc3ccce4SGreg Roach $this->updateFact('', $gedcom, $update_chan); 975a25f0a04SGreg Roach } 976a25f0a04SGreg Roach 977a25f0a04SGreg Roach /** 978a25f0a04SGreg Roach * Delete a fact from this record 979a25f0a04SGreg Roach * 980a25f0a04SGreg Roach * @param string $fact_id 981cbc1590aSGreg Roach * @param bool $update_chan 9827e96c925SGreg Roach * 9837e96c925SGreg Roach * @return void 984a25f0a04SGreg Roach */ 985e364afe4SGreg Roach public function deleteFact(string $fact_id, bool $update_chan): void 986c1010edaSGreg Roach { 987db7bb364SGreg Roach $this->updateFact($fact_id, '', $update_chan); 988a25f0a04SGreg Roach } 989a25f0a04SGreg Roach 990a25f0a04SGreg Roach /** 991a25f0a04SGreg Roach * Replace a fact with a new gedcom data. 992a25f0a04SGreg Roach * 993a25f0a04SGreg Roach * @param string $fact_id 994a25f0a04SGreg Roach * @param string $gedcom 995cbc1590aSGreg Roach * @param bool $update_chan 996a25f0a04SGreg Roach * 9977e96c925SGreg Roach * @return void 9987e96c925SGreg Roach * @throws Exception 999a25f0a04SGreg Roach */ 1000e364afe4SGreg Roach public function updateFact(string $fact_id, string $gedcom, bool $update_chan): void 1001c1010edaSGreg Roach { 1002a25f0a04SGreg Roach // MSDOS line endings will break things in horrible ways 1003a25f0a04SGreg Roach $gedcom = preg_replace('/[\r\n]+/', "\n", $gedcom); 1004a25f0a04SGreg Roach $gedcom = trim($gedcom); 1005a25f0a04SGreg Roach 1006a25f0a04SGreg Roach if ($this->pending === '') { 10077e96c925SGreg Roach throw new Exception('Cannot edit a deleted record'); 1008a25f0a04SGreg Roach } 10098d0ebef0SGreg Roach if ($gedcom !== '' && !preg_match('/^1 ' . Gedcom::REGEX_TAG . '/', $gedcom)) { 10107e96c925SGreg Roach throw new Exception('Invalid GEDCOM data passed to GedcomRecord::updateFact(' . $gedcom . ')'); 1011a25f0a04SGreg Roach } 1012a25f0a04SGreg Roach 1013a25f0a04SGreg Roach if ($this->pending) { 1014a25f0a04SGreg Roach $old_gedcom = $this->pending; 1015a25f0a04SGreg Roach } else { 1016a25f0a04SGreg Roach $old_gedcom = $this->gedcom; 1017a25f0a04SGreg Roach } 1018a25f0a04SGreg Roach 1019a25f0a04SGreg Roach // First line of record may contain data - e.g. NOTE records. 102065e02381SGreg Roach [$new_gedcom] = explode("\n", $old_gedcom, 2); 1021a25f0a04SGreg Roach 1022a25f0a04SGreg Roach // Replacing (or deleting) an existing fact 10238d0ebef0SGreg Roach foreach ($this->facts([], false, Auth::PRIV_HIDE) as $fact) { 1024a25f0a04SGreg Roach if (!$fact->isPendingDeletion()) { 1025905ab80aSGreg Roach if ($fact->id() === $fact_id) { 1026db7bb364SGreg Roach if ($gedcom !== '') { 1027a25f0a04SGreg Roach $new_gedcom .= "\n" . $gedcom; 1028a25f0a04SGreg Roach } 1029fc3ccce4SGreg Roach $fact_id = 'NOT A VALID FACT ID'; // Only replace/delete one copy of a duplicate fact 1030e364afe4SGreg Roach } elseif ($fact->getTag() !== 'CHAN' || !$update_chan) { 1031138ca96cSGreg Roach $new_gedcom .= "\n" . $fact->gedcom(); 1032a25f0a04SGreg Roach } 1033a25f0a04SGreg Roach } 1034a25f0a04SGreg Roach } 1035a25f0a04SGreg Roach if ($update_chan) { 1036e5a6b4d4SGreg Roach $new_gedcom .= "\n1 CHAN\n2 DATE " . strtoupper(date('d M Y')) . "\n3 TIME " . date('H:i:s') . "\n2 _WT_USER " . Auth::user()->userName(); 1037a25f0a04SGreg Roach } 1038a25f0a04SGreg Roach 1039a25f0a04SGreg Roach // Adding a new fact 1040fc3ccce4SGreg Roach if ($fact_id === '') { 1041a25f0a04SGreg Roach $new_gedcom .= "\n" . $gedcom; 1042a25f0a04SGreg Roach } 1043a25f0a04SGreg Roach 1044e364afe4SGreg Roach if ($new_gedcom !== $old_gedcom) { 1045a25f0a04SGreg Roach // Save the changes 1046d09b6323SGreg Roach DB::table('change')->insert([ 1047d09b6323SGreg Roach 'gedcom_id' => $this->tree->id(), 1048d09b6323SGreg Roach 'xref' => $this->xref, 1049d09b6323SGreg Roach 'old_gedcom' => $old_gedcom, 1050d09b6323SGreg Roach 'new_gedcom' => $new_gedcom, 1051d09b6323SGreg Roach 'user_id' => Auth::id(), 105213abd6f3SGreg Roach ]); 1053a25f0a04SGreg Roach 1054a25f0a04SGreg Roach $this->pending = $new_gedcom; 1055a25f0a04SGreg Roach 10567c4add84SGreg Roach if (Auth::user()->getPreference(User::PREF_AUTO_ACCEPT_EDITS) === '1') { 105722e73debSGreg Roach app(PendingChangesService::class)->acceptRecord($this); 1058a25f0a04SGreg Roach $this->gedcom = $new_gedcom; 1059a25f0a04SGreg Roach $this->pending = null; 1060a25f0a04SGreg Roach } 1061a25f0a04SGreg Roach } 1062a25f0a04SGreg Roach $this->parseFacts(); 1063a25f0a04SGreg Roach } 1064a25f0a04SGreg Roach 1065a25f0a04SGreg Roach /** 1066a25f0a04SGreg Roach * Update this record 1067a25f0a04SGreg Roach * 1068a25f0a04SGreg Roach * @param string $gedcom 1069cbc1590aSGreg Roach * @param bool $update_chan 10707e96c925SGreg Roach * 10717e96c925SGreg Roach * @return void 1072a25f0a04SGreg Roach */ 1073e364afe4SGreg Roach public function updateRecord(string $gedcom, bool $update_chan): void 1074c1010edaSGreg Roach { 1075a25f0a04SGreg Roach // MSDOS line endings will break things in horrible ways 1076a25f0a04SGreg Roach $gedcom = preg_replace('/[\r\n]+/', "\n", $gedcom); 1077a25f0a04SGreg Roach $gedcom = trim($gedcom); 1078a25f0a04SGreg Roach 1079a25f0a04SGreg Roach // Update the CHAN record 1080a25f0a04SGreg Roach if ($update_chan) { 1081a25f0a04SGreg Roach $gedcom = preg_replace('/\n1 CHAN(\n[2-9].*)*/', '', $gedcom); 1082e5a6b4d4SGreg Roach $gedcom .= "\n1 CHAN\n2 DATE " . date('d M Y') . "\n3 TIME " . date('H:i:s') . "\n2 _WT_USER " . Auth::user()->userName(); 1083a25f0a04SGreg Roach } 1084a25f0a04SGreg Roach 1085a25f0a04SGreg Roach // Create a pending change 1086d09b6323SGreg Roach DB::table('change')->insert([ 1087d09b6323SGreg Roach 'gedcom_id' => $this->tree->id(), 1088d09b6323SGreg Roach 'xref' => $this->xref, 1089d09b6323SGreg Roach 'old_gedcom' => $this->gedcom(), 1090d09b6323SGreg Roach 'new_gedcom' => $gedcom, 1091d09b6323SGreg Roach 'user_id' => Auth::id(), 109213abd6f3SGreg Roach ]); 1093a25f0a04SGreg Roach 1094a25f0a04SGreg Roach // Clear the cache 1095a25f0a04SGreg Roach $this->pending = $gedcom; 1096a25f0a04SGreg Roach 1097a25f0a04SGreg Roach // Accept this pending change 10987c4add84SGreg Roach if (Auth::user()->getPreference(User::PREF_AUTO_ACCEPT_EDITS) === '1') { 109922e73debSGreg Roach app(PendingChangesService::class)->acceptRecord($this); 1100a25f0a04SGreg Roach $this->gedcom = $gedcom; 1101a25f0a04SGreg Roach $this->pending = null; 1102a25f0a04SGreg Roach } 1103a25f0a04SGreg Roach 1104a25f0a04SGreg Roach $this->parseFacts(); 1105a25f0a04SGreg Roach 1106847d5489SGreg Roach Log::addEditLog('Update: ' . static::RECORD_TYPE . ' ' . $this->xref, $this->tree); 1107a25f0a04SGreg Roach } 1108a25f0a04SGreg Roach 1109a25f0a04SGreg Roach /** 1110a25f0a04SGreg Roach * Delete this record 1111b874da82SGreg Roach * 1112b874da82SGreg Roach * @return void 1113a25f0a04SGreg Roach */ 1114e364afe4SGreg Roach public function deleteRecord(): void 1115c1010edaSGreg Roach { 1116a25f0a04SGreg Roach // Create a pending change 11174c0b5256SGreg Roach if (!$this->isPendingDeletion()) { 1118d09b6323SGreg Roach DB::table('change')->insert([ 1119d09b6323SGreg Roach 'gedcom_id' => $this->tree->id(), 1120d09b6323SGreg Roach 'xref' => $this->xref, 1121d09b6323SGreg Roach 'old_gedcom' => $this->gedcom(), 1122d09b6323SGreg Roach 'new_gedcom' => '', 1123d09b6323SGreg Roach 'user_id' => Auth::id(), 112413abd6f3SGreg Roach ]); 11254c0b5256SGreg Roach } 1126a25f0a04SGreg Roach 11274c0b5256SGreg Roach // Auto-accept this pending change 11287c4add84SGreg Roach if (Auth::user()->getPreference(User::PREF_AUTO_ACCEPT_EDITS) === '1') { 112922e73debSGreg Roach app(PendingChangesService::class)->acceptRecord($this); 1130a25f0a04SGreg Roach } 1131a25f0a04SGreg Roach 1132a25f0a04SGreg Roach // Clear the cache 1133d17d7b9eSGreg Roach self::$gedcom_record_cache = []; 1134d17d7b9eSGreg Roach self::$pending_record_cache = []; 1135a25f0a04SGreg Roach 1136847d5489SGreg Roach Log::addEditLog('Delete: ' . static::RECORD_TYPE . ' ' . $this->xref, $this->tree); 1137a25f0a04SGreg Roach } 1138a25f0a04SGreg Roach 1139a25f0a04SGreg Roach /** 1140a25f0a04SGreg Roach * Remove all links from this record to $xref 1141a25f0a04SGreg Roach * 1142a25f0a04SGreg Roach * @param string $xref 1143cbc1590aSGreg Roach * @param bool $update_chan 11447e96c925SGreg Roach * 11457e96c925SGreg Roach * @return void 1146a25f0a04SGreg Roach */ 1147e364afe4SGreg Roach public function removeLinks(string $xref, bool $update_chan): void 1148c1010edaSGreg Roach { 1149a25f0a04SGreg Roach $value = '@' . $xref . '@'; 1150a25f0a04SGreg Roach 115130158ae7SGreg Roach foreach ($this->facts() as $fact) { 115284586c02SGreg Roach if ($fact->value() === $value) { 1153905ab80aSGreg Roach $this->deleteFact($fact->id(), $update_chan); 11548d0ebef0SGreg Roach } elseif (preg_match_all('/\n(\d) ' . Gedcom::REGEX_TAG . ' ' . $value . '/', $fact->gedcom(), $matches, PREG_SET_ORDER)) { 1155138ca96cSGreg Roach $gedcom = $fact->gedcom(); 1156a25f0a04SGreg Roach foreach ($matches as $match) { 1157a25f0a04SGreg Roach $next_level = $match[1] + 1; 1158a25f0a04SGreg Roach $next_levels = '[' . $next_level . '-9]'; 1159a25f0a04SGreg Roach $gedcom = preg_replace('/' . $match[0] . '(\n' . $next_levels . '.*)*/', '', $gedcom); 1160a25f0a04SGreg Roach } 1161905ab80aSGreg Roach $this->updateFact($fact->id(), $gedcom, $update_chan); 1162a25f0a04SGreg Roach } 1163a25f0a04SGreg Roach } 1164a25f0a04SGreg Roach } 1165bf4eb542SGreg Roach 1166bf4eb542SGreg Roach /** 1167bf4eb542SGreg Roach * Fetch XREFs of all records linked to a record - when deleting an object, we must 1168bf4eb542SGreg Roach * also delete all links to it. 1169bf4eb542SGreg Roach * 1170bf4eb542SGreg Roach * @return GedcomRecord[] 1171bf4eb542SGreg Roach */ 1172bf4eb542SGreg Roach public function linkingRecords(): array 1173bf4eb542SGreg Roach { 1174bf4eb542SGreg Roach $union = DB::table('change') 1175bf4eb542SGreg Roach ->where('gedcom_id', '=', $this->tree()->id()) 1176fbbe964bSGreg Roach ->whereContains('new_gedcom', '@' . $this->xref() . '@') 1177bf4eb542SGreg Roach ->where('new_gedcom', 'NOT LIKE', '0 @' . $this->xref() . '@%') 117883242252SGreg Roach ->whereIn('change_id', function (Builder $query): void { 117983242252SGreg Roach $query->select(new Expression('MAX(change_id)')) 118083242252SGreg Roach ->from('change') 118183242252SGreg Roach ->where('gedcom_id', '=', $this->tree->id()) 118283242252SGreg Roach ->where('status', '=', 'pending') 11837f5c2944SGreg Roach ->groupBy(['xref']); 118483242252SGreg Roach }) 1185bf4eb542SGreg Roach ->select(['xref']); 1186bf4eb542SGreg Roach 1187bf4eb542SGreg Roach $xrefs = DB::table('link') 1188bf4eb542SGreg Roach ->where('l_file', '=', $this->tree()->id()) 1189bf4eb542SGreg Roach ->where('l_to', '=', $this->xref()) 119047256fc5SGreg Roach ->select(['l_from']) 1191bf4eb542SGreg Roach ->union($union) 1192bf4eb542SGreg Roach ->pluck('l_from'); 1193bf4eb542SGreg Roach 1194bf4eb542SGreg Roach return $xrefs->map(function (string $xref): GedcomRecord { 1195ffc0a61fSGreg Roach $record = GedcomRecord::getInstance($xref, $this->tree); 1196ffc0a61fSGreg Roach assert($record instanceof GedcomRecord); 1197ffc0a61fSGreg Roach 1198ffc0a61fSGreg Roach return $record; 1199bf4eb542SGreg Roach })->all(); 1200bf4eb542SGreg Roach } 120122e73debSGreg Roach 120222e73debSGreg Roach /** 120322e73debSGreg Roach * Each object type may have its own special rules, and re-implement this function. 120422e73debSGreg Roach * 120522e73debSGreg Roach * @param int $access_level 120622e73debSGreg Roach * 120722e73debSGreg Roach * @return bool 120822e73debSGreg Roach */ 120922e73debSGreg Roach protected function canShowByType(int $access_level): bool 121022e73debSGreg Roach { 121122e73debSGreg Roach $fact_privacy = $this->tree->getFactPrivacy(); 121222e73debSGreg Roach 121322e73debSGreg Roach if (isset($fact_privacy[static::RECORD_TYPE])) { 121422e73debSGreg Roach // Restriction found 121522e73debSGreg Roach return $fact_privacy[static::RECORD_TYPE] >= $access_level; 121622e73debSGreg Roach } 121722e73debSGreg Roach 121822e73debSGreg Roach // No restriction found - must be public: 121922e73debSGreg Roach return true; 122022e73debSGreg Roach } 122122e73debSGreg Roach 122222e73debSGreg Roach /** 122322e73debSGreg Roach * Generate a private version of this record 122422e73debSGreg Roach * 122522e73debSGreg Roach * @param int $access_level 122622e73debSGreg Roach * 122722e73debSGreg Roach * @return string 122822e73debSGreg Roach */ 122922e73debSGreg Roach protected function createPrivateGedcomRecord(int $access_level): string 123022e73debSGreg Roach { 123122e73debSGreg Roach return '0 @' . $this->xref . '@ ' . static::RECORD_TYPE . "\n1 NOTE " . I18N::translate('Private'); 123222e73debSGreg Roach } 123322e73debSGreg Roach 123422e73debSGreg Roach /** 123522e73debSGreg Roach * Convert a name record into sortable and full/display versions. This default 123622e73debSGreg Roach * should be OK for simple record types. INDI/FAM records will need to redefine it. 123722e73debSGreg Roach * 123822e73debSGreg Roach * @param string $type 123922e73debSGreg Roach * @param string $value 124022e73debSGreg Roach * @param string $gedcom 124122e73debSGreg Roach * 124222e73debSGreg Roach * @return void 124322e73debSGreg Roach */ 124422e73debSGreg Roach protected function addName(string $type, string $value, string $gedcom): void 124522e73debSGreg Roach { 124622e73debSGreg Roach $this->getAllNames[] = [ 124722e73debSGreg Roach 'type' => $type, 124822e73debSGreg Roach 'sort' => preg_replace_callback('/([0-9]+)/', static function (array $matches): string { 124922e73debSGreg Roach return str_pad($matches[0], 10, '0', STR_PAD_LEFT); 125022e73debSGreg Roach }, $value), 125122e73debSGreg Roach 'full' => '<span dir="auto">' . e($value) . '</span>', 125222e73debSGreg Roach // This is used for display 125322e73debSGreg Roach 'fullNN' => $value, 125422e73debSGreg Roach // This goes into the database 125522e73debSGreg Roach ]; 125622e73debSGreg Roach } 125722e73debSGreg Roach 125822e73debSGreg Roach /** 125922e73debSGreg Roach * Get all the names of a record, including ROMN, FONE and _HEB alternatives. 126022e73debSGreg Roach * Records without a name (e.g. FAM) will need to redefine this function. 126122e73debSGreg Roach * Parameters: the level 1 fact containing the name. 126222e73debSGreg Roach * Return value: an array of name structures, each containing 126322e73debSGreg Roach * ['type'] = the gedcom fact, e.g. NAME, TITL, FONE, _HEB, etc. 126422e73debSGreg Roach * ['full'] = the name as specified in the record, e.g. 'Vincent van Gogh' or 'John Unknown' 126522e73debSGreg Roach * ['sort'] = a sortable version of the name (not for display), e.g. 'Gogh, Vincent' or '@N.N., John' 126622e73debSGreg Roach * 126722e73debSGreg Roach * @param int $level 126822e73debSGreg Roach * @param string $fact_type 126922e73debSGreg Roach * @param Collection $facts 127022e73debSGreg Roach * 127122e73debSGreg Roach * @return void 127222e73debSGreg Roach */ 127322e73debSGreg Roach protected function extractNamesFromFacts(int $level, string $fact_type, Collection $facts): void 127422e73debSGreg Roach { 127522e73debSGreg Roach $sublevel = $level + 1; 127622e73debSGreg Roach $subsublevel = $sublevel + 1; 127722e73debSGreg Roach foreach ($facts as $fact) { 127822e73debSGreg Roach if (preg_match_all("/^{$level} ({$fact_type}) (.+)((\n[{$sublevel}-9].+)*)/m", $fact->gedcom(), $matches, PREG_SET_ORDER)) { 127922e73debSGreg Roach foreach ($matches as $match) { 128022e73debSGreg Roach // Treat 1 NAME / 2 TYPE married the same as _MARNM 128122e73debSGreg Roach if ($match[1] === 'NAME' && strpos($match[3], "\n2 TYPE married") !== false) { 128222e73debSGreg Roach $this->addName('_MARNM', $match[2], $fact->gedcom()); 128322e73debSGreg Roach } else { 128422e73debSGreg Roach $this->addName($match[1], $match[2], $fact->gedcom()); 128522e73debSGreg Roach } 128622e73debSGreg Roach if ($match[3] && preg_match_all("/^{$sublevel} (ROMN|FONE|_\w+) (.+)((\n[{$subsublevel}-9].+)*)/m", $match[3], $submatches, PREG_SET_ORDER)) { 128722e73debSGreg Roach foreach ($submatches as $submatch) { 128822e73debSGreg Roach $this->addName($submatch[1], $submatch[2], $match[3]); 128922e73debSGreg Roach } 129022e73debSGreg Roach } 129122e73debSGreg Roach } 129222e73debSGreg Roach } 129322e73debSGreg Roach } 129422e73debSGreg Roach } 129522e73debSGreg Roach 129622e73debSGreg Roach /** 129722e73debSGreg Roach * Split the record into facts 129822e73debSGreg Roach * 129922e73debSGreg Roach * @return void 130022e73debSGreg Roach */ 130122e73debSGreg Roach private function parseFacts(): void 130222e73debSGreg Roach { 130322e73debSGreg Roach // Split the record into facts 130422e73debSGreg Roach if ($this->gedcom) { 130522e73debSGreg Roach $gedcom_facts = preg_split('/\n(?=1)/s', $this->gedcom); 130622e73debSGreg Roach array_shift($gedcom_facts); 130722e73debSGreg Roach } else { 130822e73debSGreg Roach $gedcom_facts = []; 130922e73debSGreg Roach } 131022e73debSGreg Roach if ($this->pending) { 131122e73debSGreg Roach $pending_facts = preg_split('/\n(?=1)/s', $this->pending); 131222e73debSGreg Roach array_shift($pending_facts); 131322e73debSGreg Roach } else { 131422e73debSGreg Roach $pending_facts = []; 131522e73debSGreg Roach } 131622e73debSGreg Roach 131722e73debSGreg Roach $this->facts = []; 131822e73debSGreg Roach 131922e73debSGreg Roach foreach ($gedcom_facts as $gedcom_fact) { 132022e73debSGreg Roach $fact = new Fact($gedcom_fact, $this, md5($gedcom_fact)); 132122e73debSGreg Roach if ($this->pending !== null && !in_array($gedcom_fact, $pending_facts, true)) { 132222e73debSGreg Roach $fact->setPendingDeletion(); 132322e73debSGreg Roach } 132422e73debSGreg Roach $this->facts[] = $fact; 132522e73debSGreg Roach } 132622e73debSGreg Roach foreach ($pending_facts as $pending_fact) { 132722e73debSGreg Roach if (!in_array($pending_fact, $gedcom_facts, true)) { 132822e73debSGreg Roach $fact = new Fact($pending_fact, $this, md5($pending_fact)); 132922e73debSGreg Roach $fact->setPendingAddition(); 133022e73debSGreg Roach $this->facts[] = $fact; 133122e73debSGreg Roach } 133222e73debSGreg Roach } 133322e73debSGreg Roach } 133422e73debSGreg Roach 133522e73debSGreg Roach /** 133622e73debSGreg Roach * Work out whether this record can be shown to a user with a given access level 133722e73debSGreg Roach * 133822e73debSGreg Roach * @param int $access_level 133922e73debSGreg Roach * 134022e73debSGreg Roach * @return bool 134122e73debSGreg Roach */ 134222e73debSGreg Roach private function canShowRecord(int $access_level): bool 134322e73debSGreg Roach { 134422e73debSGreg Roach // This setting would better be called "$ENABLE_PRIVACY" 134522e73debSGreg Roach if (!$this->tree->getPreference('HIDE_LIVE_PEOPLE')) { 134622e73debSGreg Roach return true; 134722e73debSGreg Roach } 134822e73debSGreg Roach 134922e73debSGreg Roach // We should always be able to see our own record (unless an admin is applying download restrictions) 13507c4add84SGreg Roach if ($this->xref() === $this->tree->getUserPreference(Auth::user(), User::PREF_TREE_ACCOUNT_XREF) && $access_level === Auth::accessLevel($this->tree)) { 135122e73debSGreg Roach return true; 135222e73debSGreg Roach } 135322e73debSGreg Roach 135422e73debSGreg Roach // Does this record have a RESN? 135522e73debSGreg Roach if (strpos($this->gedcom, "\n1 RESN confidential") !== false) { 135622e73debSGreg Roach return Auth::PRIV_NONE >= $access_level; 135722e73debSGreg Roach } 135822e73debSGreg Roach if (strpos($this->gedcom, "\n1 RESN privacy") !== false) { 135922e73debSGreg Roach return Auth::PRIV_USER >= $access_level; 136022e73debSGreg Roach } 136122e73debSGreg Roach if (strpos($this->gedcom, "\n1 RESN none") !== false) { 136222e73debSGreg Roach return true; 136322e73debSGreg Roach } 136422e73debSGreg Roach 136522e73debSGreg Roach // Does this record have a default RESN? 136622e73debSGreg Roach $individual_privacy = $this->tree->getIndividualPrivacy(); 136722e73debSGreg Roach if (isset($individual_privacy[$this->xref()])) { 136822e73debSGreg Roach return $individual_privacy[$this->xref()] >= $access_level; 136922e73debSGreg Roach } 137022e73debSGreg Roach 137122e73debSGreg Roach // Privacy rules do not apply to admins 137222e73debSGreg Roach if (Auth::PRIV_NONE >= $access_level) { 137322e73debSGreg Roach return true; 137422e73debSGreg Roach } 137522e73debSGreg Roach 137622e73debSGreg Roach // Different types of record have different privacy rules 137722e73debSGreg Roach return $this->canShowByType($access_level); 137822e73debSGreg Roach } 1379a25f0a04SGreg Roach} 1380