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) { 226*ac107fcfSGreg Roach case Individual::RECORD_TYPE: 22724ec66ceSGreg Roach $record = new Individual($xref, $gedcom, $pending, $tree); 228a25f0a04SGreg Roach break; 229*ac107fcfSGreg Roach 230*ac107fcfSGreg Roach case Family::RECORD_TYPE: 23124ec66ceSGreg Roach $record = new Family($xref, $gedcom, $pending, $tree); 232a25f0a04SGreg Roach break; 233*ac107fcfSGreg Roach 234*ac107fcfSGreg Roach case Source::RECORD_TYPE: 23524ec66ceSGreg Roach $record = new Source($xref, $gedcom, $pending, $tree); 236a25f0a04SGreg Roach break; 237*ac107fcfSGreg Roach 238*ac107fcfSGreg Roach case Media::RECORD_TYPE: 23924ec66ceSGreg Roach $record = new Media($xref, $gedcom, $pending, $tree); 240a25f0a04SGreg Roach break; 241*ac107fcfSGreg Roach 242*ac107fcfSGreg Roach case Repository::RECORD_TYPE: 24324ec66ceSGreg Roach $record = new Repository($xref, $gedcom, $pending, $tree); 244a25f0a04SGreg Roach break; 245*ac107fcfSGreg Roach 246*ac107fcfSGreg Roach case Note::RECORD_TYPE: 24724ec66ceSGreg Roach $record = new Note($xref, $gedcom, $pending, $tree); 248a25f0a04SGreg Roach break; 249*ac107fcfSGreg Roach 250*ac107fcfSGreg Roach case Submitter::RECORD_TYPE: 251ffc0a61fSGreg Roach $record = new Submitter($xref, $gedcom, $pending, $tree); 252ffc0a61fSGreg Roach break; 253*ac107fcfSGreg Roach 254a25f0a04SGreg Roach default: 25506ef8e02SGreg Roach $record = new self($xref, $gedcom, $pending, $tree); 256a25f0a04SGreg Roach break; 257a25f0a04SGreg Roach } 258a25f0a04SGreg Roach 259a25f0a04SGreg Roach // Store it in the cache 26024ec66ceSGreg Roach self::$gedcom_record_cache[$xref][$tree_id] = $record; 261a25f0a04SGreg Roach 262a25f0a04SGreg Roach return $record; 263a25f0a04SGreg Roach } 264a25f0a04SGreg Roach 265a25f0a04SGreg Roach /** 266a25f0a04SGreg Roach * Fetch data from the database 267a25f0a04SGreg Roach * 268a25f0a04SGreg Roach * @param string $xref 269cbc1590aSGreg Roach * @param int $tree_id 270a25f0a04SGreg Roach * 271e364afe4SGreg Roach * @return string|null 272a25f0a04SGreg Roach */ 273e364afe4SGreg Roach protected static function fetchGedcomRecord(string $xref, int $tree_id): ?string 274c1010edaSGreg Roach { 275a25f0a04SGreg Roach // We don't know what type of object this is. Try each one in turn. 27664d9078aSGreg Roach $data = Individual::fetchGedcomRecord($xref, $tree_id); 27785fc8064SGreg Roach if ($data !== null) { 278a25f0a04SGreg Roach return $data; 279a25f0a04SGreg Roach } 28064d9078aSGreg Roach $data = Family::fetchGedcomRecord($xref, $tree_id); 28185fc8064SGreg Roach if ($data !== null) { 282a25f0a04SGreg Roach return $data; 283a25f0a04SGreg Roach } 28464d9078aSGreg Roach $data = Source::fetchGedcomRecord($xref, $tree_id); 28585fc8064SGreg Roach if ($data !== null) { 286a25f0a04SGreg Roach return $data; 287a25f0a04SGreg Roach } 28864d9078aSGreg Roach $data = Repository::fetchGedcomRecord($xref, $tree_id); 28985fc8064SGreg Roach if ($data !== null) { 290a25f0a04SGreg Roach return $data; 291a25f0a04SGreg Roach } 29264d9078aSGreg Roach $data = Media::fetchGedcomRecord($xref, $tree_id); 29385fc8064SGreg Roach if ($data !== null) { 294a25f0a04SGreg Roach return $data; 295a25f0a04SGreg Roach } 29664d9078aSGreg Roach $data = Note::fetchGedcomRecord($xref, $tree_id); 29785fc8064SGreg Roach if ($data !== null) { 298a25f0a04SGreg Roach return $data; 299a25f0a04SGreg Roach } 300ffc0a61fSGreg Roach $data = Submitter::fetchGedcomRecord($xref, $tree_id); 301ffc0a61fSGreg Roach if ($data !== null) { 302ffc0a61fSGreg Roach return $data; 303ffc0a61fSGreg Roach } 304c1010edaSGreg Roach 305a25f0a04SGreg Roach // Some other type of record... 306d09b6323SGreg Roach return DB::table('other') 30785fc8064SGreg Roach ->where('o_file', '=', $tree_id) 30885fc8064SGreg Roach ->where('o_id', '=', $xref) 30985fc8064SGreg Roach ->value('o_gedcom'); 310a25f0a04SGreg Roach } 311a25f0a04SGreg Roach 312a25f0a04SGreg Roach /** 313a25f0a04SGreg Roach * Get the XREF for this record 314a25f0a04SGreg Roach * 315a25f0a04SGreg Roach * @return string 316a25f0a04SGreg Roach */ 317c0935879SGreg Roach public function xref(): string 318c1010edaSGreg Roach { 319a25f0a04SGreg Roach return $this->xref; 320a25f0a04SGreg Roach } 321a25f0a04SGreg Roach 322a25f0a04SGreg Roach /** 323000959d9SGreg Roach * Get the tree to which this record belongs 324000959d9SGreg Roach * 325000959d9SGreg Roach * @return Tree 326000959d9SGreg Roach */ 327f4afa648SGreg Roach public function tree(): Tree 328c1010edaSGreg Roach { 329518bbdc1SGreg Roach return $this->tree; 330000959d9SGreg Roach } 331000959d9SGreg Roach 332000959d9SGreg Roach /** 333a25f0a04SGreg Roach * Application code should access data via Fact objects. 334a25f0a04SGreg Roach * This function exists to support old code. 335a25f0a04SGreg Roach * 336a25f0a04SGreg Roach * @return string 337a25f0a04SGreg Roach */ 338e364afe4SGreg Roach public function gedcom(): string 339c1010edaSGreg Roach { 340b2ce94c6SRico Sonntag return $this->pending ?? $this->gedcom; 341a25f0a04SGreg Roach } 342a25f0a04SGreg Roach 343a25f0a04SGreg Roach /** 344a25f0a04SGreg Roach * Does this record have a pending change? 345a25f0a04SGreg Roach * 346cbc1590aSGreg Roach * @return bool 347a25f0a04SGreg Roach */ 3488f53f488SRico Sonntag public function isPendingAddition(): bool 349c1010edaSGreg Roach { 350a25f0a04SGreg Roach return $this->pending !== null; 351a25f0a04SGreg Roach } 352a25f0a04SGreg Roach 353a25f0a04SGreg Roach /** 354a25f0a04SGreg Roach * Does this record have a pending deletion? 355a25f0a04SGreg Roach * 356cbc1590aSGreg Roach * @return bool 357a25f0a04SGreg Roach */ 3588f53f488SRico Sonntag public function isPendingDeletion(): bool 359c1010edaSGreg Roach { 360a25f0a04SGreg Roach return $this->pending === ''; 361a25f0a04SGreg Roach } 362a25f0a04SGreg Roach 363a25f0a04SGreg Roach /** 364ee4364daSGreg Roach * Generate a "slug" to use in pretty URLs. 365ee4364daSGreg Roach * 366ee4364daSGreg Roach * @return string 367ee4364daSGreg Roach */ 368ee4364daSGreg Roach public function slug(): string 369ee4364daSGreg Roach { 37005b6dd19SGreg Roach $text = strip_tags($this->fullName()); 37105b6dd19SGreg Roach $text = strtr($text, '\\/?:;@=&<>#%{}|^~[]`"\'', '----------------------'); 37205b6dd19SGreg Roach 37305b6dd19SGreg Roach return trim($text, '-'); 374ee4364daSGreg Roach } 375ee4364daSGreg Roach 376ee4364daSGreg Roach /** 377225e381fSGreg Roach * Generate a URL to this record. 378a25f0a04SGreg Roach * 379a25f0a04SGreg Roach * @return string 380a25f0a04SGreg Roach */ 3818f53f488SRico Sonntag public function url(): string 382c1010edaSGreg Roach { 383225e381fSGreg Roach return route(static::ROUTE_NAME, [ 384c0935879SGreg Roach 'xref' => $this->xref(), 385ee4364daSGreg Roach 'tree' => $this->tree->name(), 386ee4364daSGreg Roach 'slug' => $this->slug(), 387225e381fSGreg Roach ]); 388a25f0a04SGreg Roach } 389a25f0a04SGreg Roach 390a25f0a04SGreg Roach /** 391a25f0a04SGreg Roach * Can the details of this record be shown? 392a25f0a04SGreg Roach * 393cbc1590aSGreg Roach * @param int|null $access_level 394a25f0a04SGreg Roach * 395cbc1590aSGreg Roach * @return bool 396a25f0a04SGreg Roach */ 39735584196SGreg Roach public function canShow(int $access_level = null): bool 398c1010edaSGreg Roach { 399f0b9c048SGreg Roach $access_level = $access_level ?? Auth::accessLevel($this->tree); 4004b9ff166SGreg Roach 401a25f0a04SGreg Roach // We use this value to bypass privacy checks. For example, 402a25f0a04SGreg Roach // when downloading data or when calculating privacy itself. 403f0b9c048SGreg Roach if ($access_level === Auth::PRIV_HIDE) { 404a25f0a04SGreg Roach return true; 405a25f0a04SGreg Roach } 406f0b9c048SGreg Roach 4077476e8a5SGreg Roach $cache_key = 'show-' . $this->xref . '-' . $this->tree->id() . '-' . $access_level; 408f0b9c048SGreg Roach 409c692965aSGreg Roach return app('cache.array')->remember($cache_key, function () use ($access_level) { 410f0b9c048SGreg Roach return $this->canShowRecord($access_level); 411f0b9c048SGreg Roach }); 412a25f0a04SGreg Roach } 413a25f0a04SGreg Roach 414a25f0a04SGreg Roach /** 415a25f0a04SGreg Roach * Can the name of this record be shown? 416a25f0a04SGreg Roach * 417cbc1590aSGreg Roach * @param int|null $access_level 418a25f0a04SGreg Roach * 419cbc1590aSGreg Roach * @return bool 420a25f0a04SGreg Roach */ 42176f666f4SGreg Roach public function canShowName(int $access_level = null): bool 422c1010edaSGreg Roach { 423a25f0a04SGreg Roach return $this->canShow($access_level); 424a25f0a04SGreg Roach } 425a25f0a04SGreg Roach 426a25f0a04SGreg Roach /** 427a25f0a04SGreg Roach * Can we edit this record? 428a25f0a04SGreg Roach * 429cbc1590aSGreg Roach * @return bool 430a25f0a04SGreg Roach */ 4318f53f488SRico Sonntag public function canEdit(): bool 432c1010edaSGreg Roach { 4331450f098SGreg Roach if ($this->isPendingDeletion()) { 4341450f098SGreg Roach return false; 4351450f098SGreg Roach } 4361450f098SGreg Roach 4371450f098SGreg Roach if (Auth::isManager($this->tree)) { 4381450f098SGreg Roach return true; 4391450f098SGreg Roach } 4401450f098SGreg Roach 4411450f098SGreg Roach return Auth::isEditor($this->tree) && strpos($this->gedcom, "\n1 RESN locked") === false; 442a25f0a04SGreg Roach } 443a25f0a04SGreg Roach 444a25f0a04SGreg Roach /** 445a25f0a04SGreg Roach * Remove private data from the raw gedcom record. 446a25f0a04SGreg Roach * Return both the visible and invisible data. We need the invisible data when editing. 447a25f0a04SGreg Roach * 448cbc1590aSGreg Roach * @param int $access_level 449a25f0a04SGreg Roach * 450a25f0a04SGreg Roach * @return string 451a25f0a04SGreg Roach */ 452e364afe4SGreg Roach public function privatizeGedcom(int $access_level): string 453c1010edaSGreg Roach { 454e364afe4SGreg Roach if ($access_level === Auth::PRIV_HIDE) { 455a25f0a04SGreg Roach // We may need the original record, for example when downloading a GEDCOM or clippings cart 456a25f0a04SGreg Roach return $this->gedcom; 457b2ce94c6SRico Sonntag } 458b2ce94c6SRico Sonntag 459b2ce94c6SRico Sonntag if ($this->canShow($access_level)) { 460a25f0a04SGreg Roach // The record is not private, but the individual facts may be. 461a25f0a04SGreg Roach 462a25f0a04SGreg Roach // Include the entire first line (for NOTE records) 46365e02381SGreg Roach [$gedrec] = explode("\n", $this->gedcom, 2); 464a25f0a04SGreg Roach 465a25f0a04SGreg Roach // Check each of the facts for access 4668d0ebef0SGreg Roach foreach ($this->facts([], false, $access_level) as $fact) { 467138ca96cSGreg Roach $gedrec .= "\n" . $fact->gedcom(); 468a25f0a04SGreg Roach } 469cbc1590aSGreg Roach 470a25f0a04SGreg Roach return $gedrec; 471b2ce94c6SRico Sonntag } 472b2ce94c6SRico Sonntag 473a25f0a04SGreg Roach // We cannot display the details, but we may be able to display 474a25f0a04SGreg Roach // limited data, such as links to other records. 475a25f0a04SGreg Roach return $this->createPrivateGedcomRecord($access_level); 476a25f0a04SGreg Roach } 477a25f0a04SGreg Roach 478a25f0a04SGreg Roach /** 479a25f0a04SGreg Roach * Default for "other" object types 480c7ff4153SGreg Roach * 481c7ff4153SGreg Roach * @return void 482a25f0a04SGreg Roach */ 483e364afe4SGreg Roach public function extractNames(): void 484c1010edaSGreg Roach { 48576f666f4SGreg Roach $this->addName(static::RECORD_TYPE, $this->getFallBackName(), ''); 486a25f0a04SGreg Roach } 487a25f0a04SGreg Roach 488a25f0a04SGreg Roach /** 489a25f0a04SGreg Roach * Derived classes should redefine this function, otherwise the object will have no name 490a25f0a04SGreg Roach * 491a25f0a04SGreg Roach * @return string[][] 492a25f0a04SGreg Roach */ 4938f53f488SRico Sonntag public function getAllNames(): array 494c1010edaSGreg Roach { 495bdb3725aSGreg Roach if ($this->getAllNames === null) { 496bdb3725aSGreg Roach $this->getAllNames = []; 497a25f0a04SGreg Roach if ($this->canShowName()) { 498a25f0a04SGreg Roach // Ask the record to extract its names 499a25f0a04SGreg Roach $this->extractNames(); 500a25f0a04SGreg Roach // No name found? Use a fallback. 501bdb3725aSGreg Roach if (!$this->getAllNames) { 502db7bb364SGreg Roach $this->addName(static::RECORD_TYPE, $this->getFallBackName(), ''); 503a25f0a04SGreg Roach } 504a25f0a04SGreg Roach } else { 505db7bb364SGreg Roach $this->addName(static::RECORD_TYPE, I18N::translate('Private'), ''); 506a25f0a04SGreg Roach } 507a25f0a04SGreg Roach } 508cbc1590aSGreg Roach 509bdb3725aSGreg Roach return $this->getAllNames; 510a25f0a04SGreg Roach } 511a25f0a04SGreg Roach 512a25f0a04SGreg Roach /** 513a25f0a04SGreg Roach * If this object has no name, what do we call it? 514a25f0a04SGreg Roach * 515a25f0a04SGreg Roach * @return string 516a25f0a04SGreg Roach */ 5178f53f488SRico Sonntag public function getFallBackName(): string 518c1010edaSGreg Roach { 519c0935879SGreg Roach return e($this->xref()); 520a25f0a04SGreg Roach } 521a25f0a04SGreg Roach 522a25f0a04SGreg Roach /** 523a25f0a04SGreg Roach * Which of the (possibly several) names of this record is the primary one. 524a25f0a04SGreg Roach * 525cbc1590aSGreg Roach * @return int 526a25f0a04SGreg Roach */ 5278f53f488SRico Sonntag public function getPrimaryName(): int 528c1010edaSGreg Roach { 529a25f0a04SGreg Roach static $language_script; 530a25f0a04SGreg Roach 531a25f0a04SGreg Roach if ($language_script === null) { 53265cf5706SGreg Roach $language_script = $language_script ?? I18N::locale()->script()->code(); 533a25f0a04SGreg Roach } 534a25f0a04SGreg Roach 535bdb3725aSGreg Roach if ($this->getPrimaryName === null) { 536a25f0a04SGreg Roach // Generally, the first name is the primary one.... 537bdb3725aSGreg Roach $this->getPrimaryName = 0; 538a25f0a04SGreg Roach // ...except when the language/name use different character sets 539a25f0a04SGreg Roach foreach ($this->getAllNames() as $n => $name) { 54069546be1SGreg Roach if (I18N::textScript($name['sort']) === $language_script) { 541bdb3725aSGreg Roach $this->getPrimaryName = $n; 542a25f0a04SGreg Roach break; 543a25f0a04SGreg Roach } 544a25f0a04SGreg Roach } 545a25f0a04SGreg Roach } 546a25f0a04SGreg Roach 547bdb3725aSGreg Roach return $this->getPrimaryName; 548a25f0a04SGreg Roach } 549a25f0a04SGreg Roach 550a25f0a04SGreg Roach /** 551a25f0a04SGreg Roach * Which of the (possibly several) names of this record is the secondary one. 552a25f0a04SGreg Roach * 553cbc1590aSGreg Roach * @return int 554a25f0a04SGreg Roach */ 5558f53f488SRico Sonntag public function getSecondaryName(): int 556c1010edaSGreg Roach { 5578f038c36SRico Sonntag if ($this->getSecondaryName === null) { 558a25f0a04SGreg Roach // Generally, the primary and secondary names are the same 559bdb3725aSGreg Roach $this->getSecondaryName = $this->getPrimaryName(); 560a25f0a04SGreg Roach // ....except when there are names with different character sets 561a25f0a04SGreg Roach $all_names = $this->getAllNames(); 562a25f0a04SGreg Roach if (count($all_names) > 1) { 563a25f0a04SGreg Roach $primary_script = I18N::textScript($all_names[$this->getPrimaryName()]['sort']); 564a25f0a04SGreg Roach foreach ($all_names as $n => $name) { 565e364afe4SGreg Roach if ($n !== $this->getPrimaryName() && $name['type'] !== '_MARNM' && I18N::textScript($name['sort']) !== $primary_script) { 566bdb3725aSGreg Roach $this->getSecondaryName = $n; 567a25f0a04SGreg Roach break; 568a25f0a04SGreg Roach } 569a25f0a04SGreg Roach } 570a25f0a04SGreg Roach } 571a25f0a04SGreg Roach } 572cbc1590aSGreg Roach 573bdb3725aSGreg Roach return $this->getSecondaryName; 574a25f0a04SGreg Roach } 575a25f0a04SGreg Roach 576a25f0a04SGreg Roach /** 577a25f0a04SGreg Roach * Allow the choice of primary name to be overidden, e.g. in a search result 578a25f0a04SGreg Roach * 57976f666f4SGreg Roach * @param int|null $n 5807e96c925SGreg Roach * 5817e96c925SGreg Roach * @return void 582a25f0a04SGreg Roach */ 583e364afe4SGreg Roach public function setPrimaryName(int $n = null): void 584c1010edaSGreg Roach { 585bdb3725aSGreg Roach $this->getPrimaryName = $n; 586bdb3725aSGreg Roach $this->getSecondaryName = null; 587a25f0a04SGreg Roach } 588a25f0a04SGreg Roach 589a25f0a04SGreg Roach /** 590a25f0a04SGreg Roach * Allow native PHP functions such as array_unique() to work with objects 591a25f0a04SGreg Roach * 592a25f0a04SGreg Roach * @return string 593a25f0a04SGreg Roach */ 594c1010edaSGreg Roach public function __toString() 595c1010edaSGreg Roach { 59672cf66d4SGreg Roach return $this->xref . '@' . $this->tree->id(); 597a25f0a04SGreg Roach } 598a25f0a04SGreg Roach 599a25f0a04SGreg Roach /** 600c156e8f5SGreg Roach * /** 601a25f0a04SGreg Roach * Get variants of the name 602a25f0a04SGreg Roach * 603a25f0a04SGreg Roach * @return string 604a25f0a04SGreg Roach */ 605e364afe4SGreg Roach public function fullName(): string 606c1010edaSGreg Roach { 607a25f0a04SGreg Roach if ($this->canShowName()) { 608a25f0a04SGreg Roach $tmp = $this->getAllNames(); 609cbc1590aSGreg Roach 610a25f0a04SGreg Roach return $tmp[$this->getPrimaryName()]['full']; 611a25f0a04SGreg Roach } 612b2ce94c6SRico Sonntag 613b2ce94c6SRico Sonntag return I18N::translate('Private'); 614a25f0a04SGreg Roach } 615a25f0a04SGreg Roach 616a25f0a04SGreg Roach /** 617a25f0a04SGreg Roach * Get a sortable version of the name. Do not display this! 618a25f0a04SGreg Roach * 619a25f0a04SGreg Roach * @return string 620a25f0a04SGreg Roach */ 62139ca88baSGreg Roach public function sortName(): string 622c1010edaSGreg Roach { 623a25f0a04SGreg Roach // The sortable name is never displayed, no need to call canShowName() 624a25f0a04SGreg Roach $tmp = $this->getAllNames(); 625cbc1590aSGreg Roach 626a25f0a04SGreg Roach return $tmp[$this->getPrimaryName()]['sort']; 627a25f0a04SGreg Roach } 628a25f0a04SGreg Roach 629a25f0a04SGreg Roach /** 630a25f0a04SGreg Roach * Get the full name in an alternative character set 631a25f0a04SGreg Roach * 632e364afe4SGreg Roach * @return string|null 633a25f0a04SGreg Roach */ 634e364afe4SGreg Roach public function alternateName(): ?string 635c1010edaSGreg Roach { 636e364afe4SGreg Roach if ($this->canShowName() && $this->getPrimaryName() !== $this->getSecondaryName()) { 637a25f0a04SGreg Roach $all_names = $this->getAllNames(); 638cbc1590aSGreg Roach 639a25f0a04SGreg Roach return $all_names[$this->getSecondaryName()]['full']; 640a25f0a04SGreg Roach } 641b2ce94c6SRico Sonntag 642b2ce94c6SRico Sonntag return null; 643a25f0a04SGreg Roach } 644a25f0a04SGreg Roach 645a25f0a04SGreg Roach /** 646a25f0a04SGreg Roach * Format this object for display in a list 647a25f0a04SGreg Roach * 648a25f0a04SGreg Roach * @return string 649a25f0a04SGreg Roach */ 6508f53f488SRico Sonntag public function formatList(): string 651c1010edaSGreg Roach { 652b165e17cSGreg Roach $html = '<a href="' . e($this->url()) . '" class="list_item">'; 65339ca88baSGreg Roach $html .= '<b>' . $this->fullName() . '</b>'; 654a25f0a04SGreg Roach $html .= $this->formatListDetails(); 655b165e17cSGreg Roach $html .= '</a>'; 656cbc1590aSGreg Roach 657a25f0a04SGreg Roach return $html; 658a25f0a04SGreg Roach } 659a25f0a04SGreg Roach 660a25f0a04SGreg Roach /** 661a25f0a04SGreg Roach * This function should be redefined in derived classes to show any major 662a25f0a04SGreg Roach * identifying characteristics of this record. 663a25f0a04SGreg Roach * 664a25f0a04SGreg Roach * @return string 665a25f0a04SGreg Roach */ 6668f53f488SRico Sonntag public function formatListDetails(): string 667c1010edaSGreg Roach { 668a25f0a04SGreg Roach return ''; 669a25f0a04SGreg Roach } 670a25f0a04SGreg Roach 671a25f0a04SGreg Roach /** 672a25f0a04SGreg Roach * Extract/format the first fact from a list of facts. 673a25f0a04SGreg Roach * 6748d0ebef0SGreg Roach * @param string[] $facts 675cbc1590aSGreg Roach * @param int $style 676a25f0a04SGreg Roach * 677a25f0a04SGreg Roach * @return string 678a25f0a04SGreg Roach */ 6798d0ebef0SGreg Roach public function formatFirstMajorFact(array $facts, int $style): string 680c1010edaSGreg Roach { 68130158ae7SGreg Roach foreach ($this->facts($facts, true) as $event) { 682a25f0a04SGreg Roach // Only display if it has a date or place (or both) 683e364afe4SGreg Roach if ($event->date()->isOK() && $event->place()->gedcomName() !== '') { 684d93f11b5SGreg Roach $joiner = ' — '; 685d93f11b5SGreg Roach } else { 686d93f11b5SGreg Roach $joiner = ''; 687d93f11b5SGreg Roach } 688e364afe4SGreg Roach if ($event->date()->isOK() || $event->place()->gedcomName() !== '') { 689a25f0a04SGreg Roach switch ($style) { 690a25f0a04SGreg Roach case 1: 6917b7d8067SGreg Roach return '<br><em>' . $event->label() . ' ' . FunctionsPrint::formatFactDate($event, $this, false, false) . $joiner . FunctionsPrint::formatFactPlace($event) . '</em>'; 692a25f0a04SGreg Roach case 2: 6937b7d8067SGreg Roach return '<dl><dt class="label">' . $event->label() . '</dt><dd class="field">' . FunctionsPrint::formatFactDate($event, $this, false, false) . $joiner . FunctionsPrint::formatFactPlace($event) . '</dd></dl>'; 694a25f0a04SGreg Roach } 695a25f0a04SGreg Roach } 696a25f0a04SGreg Roach } 697cbc1590aSGreg Roach 698a25f0a04SGreg Roach return ''; 699a25f0a04SGreg Roach } 700a25f0a04SGreg Roach 701a25f0a04SGreg Roach /** 702a25f0a04SGreg Roach * Find individuals linked to this record. 703a25f0a04SGreg Roach * 704a25f0a04SGreg Roach * @param string $link 705a25f0a04SGreg Roach * 706b5c8fd7eSGreg Roach * @return Collection<Individual> 707a25f0a04SGreg Roach */ 708907c1109SGreg Roach public function linkedIndividuals(string $link): Collection 709c1010edaSGreg Roach { 710907c1109SGreg Roach return DB::table('individuals') 7110b5fd0a6SGreg Roach ->join('link', static function (JoinClause $join): void { 712907c1109SGreg Roach $join 713907c1109SGreg Roach ->on('l_file', '=', 'i_file') 714907c1109SGreg Roach ->on('l_from', '=', 'i_id'); 715ba1c12e8SGreg Roach }) 716ba1c12e8SGreg Roach ->where('i_file', '=', $this->tree->id()) 717ba1c12e8SGreg Roach ->where('l_type', '=', $link) 718ba1c12e8SGreg Roach ->where('l_to', '=', $this->xref) 719907c1109SGreg Roach ->select(['individuals.*']) 720907c1109SGreg Roach ->get() 721d5ad3db0SGreg Roach ->map(Individual::rowMapper($this->tree)) 722907c1109SGreg Roach ->filter(self::accessFilter()); 723a25f0a04SGreg Roach } 724a25f0a04SGreg Roach 725a25f0a04SGreg Roach /** 726a25f0a04SGreg Roach * Find families linked to this record. 727a25f0a04SGreg Roach * 728a25f0a04SGreg Roach * @param string $link 729a25f0a04SGreg Roach * 730b5c8fd7eSGreg Roach * @return Collection<Family> 731a25f0a04SGreg Roach */ 732907c1109SGreg Roach public function linkedFamilies(string $link): Collection 733c1010edaSGreg Roach { 734907c1109SGreg Roach return DB::table('families') 7350b5fd0a6SGreg Roach ->join('link', static function (JoinClause $join): void { 736907c1109SGreg Roach $join 737907c1109SGreg Roach ->on('l_file', '=', 'f_file') 738907c1109SGreg Roach ->on('l_from', '=', 'f_id'); 739ba1c12e8SGreg Roach }) 740ba1c12e8SGreg Roach ->where('f_file', '=', $this->tree->id()) 741ba1c12e8SGreg Roach ->where('l_type', '=', $link) 742ba1c12e8SGreg Roach ->where('l_to', '=', $this->xref) 743907c1109SGreg Roach ->select(['families.*']) 744907c1109SGreg Roach ->get() 745d5ad3db0SGreg Roach ->map(Family::rowMapper($this->tree)) 746907c1109SGreg Roach ->filter(self::accessFilter()); 747a25f0a04SGreg Roach } 748a25f0a04SGreg Roach 749a25f0a04SGreg Roach /** 750a25f0a04SGreg Roach * Find sources linked to this record. 751a25f0a04SGreg Roach * 752a25f0a04SGreg Roach * @param string $link 753a25f0a04SGreg Roach * 754b5c8fd7eSGreg Roach * @return Collection<Source> 755a25f0a04SGreg Roach */ 756907c1109SGreg Roach public function linkedSources(string $link): Collection 757c1010edaSGreg Roach { 758907c1109SGreg Roach return DB::table('sources') 7590b5fd0a6SGreg Roach ->join('link', static function (JoinClause $join): void { 760907c1109SGreg Roach $join 761907c1109SGreg Roach ->on('l_file', '=', 's_file') 762907c1109SGreg Roach ->on('l_from', '=', 's_id'); 763ba1c12e8SGreg Roach }) 764ba1c12e8SGreg Roach ->where('s_file', '=', $this->tree->id()) 765ba1c12e8SGreg Roach ->where('l_type', '=', $link) 766ba1c12e8SGreg Roach ->where('l_to', '=', $this->xref) 767907c1109SGreg Roach ->select(['sources.*']) 768907c1109SGreg Roach ->get() 769d5ad3db0SGreg Roach ->map(Source::rowMapper($this->tree)) 770907c1109SGreg Roach ->filter(self::accessFilter()); 771a25f0a04SGreg Roach } 772a25f0a04SGreg Roach 773a25f0a04SGreg Roach /** 774a25f0a04SGreg Roach * Find media objects linked to this record. 775a25f0a04SGreg Roach * 776a25f0a04SGreg Roach * @param string $link 777a25f0a04SGreg Roach * 778b5c8fd7eSGreg Roach * @return Collection<Media> 779a25f0a04SGreg Roach */ 780907c1109SGreg Roach public function linkedMedia(string $link): Collection 781c1010edaSGreg Roach { 782907c1109SGreg Roach return DB::table('media') 7830b5fd0a6SGreg Roach ->join('link', static function (JoinClause $join): void { 784907c1109SGreg Roach $join 785907c1109SGreg Roach ->on('l_file', '=', 'm_file') 786907c1109SGreg Roach ->on('l_from', '=', 'm_id'); 787ba1c12e8SGreg Roach }) 788ba1c12e8SGreg Roach ->where('m_file', '=', $this->tree->id()) 789ba1c12e8SGreg Roach ->where('l_type', '=', $link) 790ba1c12e8SGreg Roach ->where('l_to', '=', $this->xref) 791907c1109SGreg Roach ->select(['media.*']) 792907c1109SGreg Roach ->get() 793d5ad3db0SGreg Roach ->map(Media::rowMapper($this->tree)) 794907c1109SGreg Roach ->filter(self::accessFilter()); 795a25f0a04SGreg Roach } 796a25f0a04SGreg Roach 797a25f0a04SGreg Roach /** 798a25f0a04SGreg Roach * Find notes linked to this record. 799a25f0a04SGreg Roach * 800a25f0a04SGreg Roach * @param string $link 801a25f0a04SGreg Roach * 802b5c8fd7eSGreg Roach * @return Collection<Note> 803a25f0a04SGreg Roach */ 804907c1109SGreg Roach public function linkedNotes(string $link): Collection 805c1010edaSGreg Roach { 806907c1109SGreg Roach return DB::table('other') 8070b5fd0a6SGreg Roach ->join('link', static function (JoinClause $join): void { 808907c1109SGreg Roach $join 809907c1109SGreg Roach ->on('l_file', '=', 'o_file') 810907c1109SGreg Roach ->on('l_from', '=', 'o_id'); 811ba1c12e8SGreg Roach }) 812ba1c12e8SGreg Roach ->where('o_file', '=', $this->tree->id()) 813ba1c12e8SGreg Roach ->where('o_type', '=', 'NOTE') 814ba1c12e8SGreg Roach ->where('l_type', '=', $link) 815ba1c12e8SGreg Roach ->where('l_to', '=', $this->xref) 816907c1109SGreg Roach ->select(['other.*']) 817907c1109SGreg Roach ->get() 818d5ad3db0SGreg Roach ->map(Note::rowMapper($this->tree)) 819907c1109SGreg Roach ->filter(self::accessFilter()); 820a25f0a04SGreg Roach } 821a25f0a04SGreg Roach 822a25f0a04SGreg Roach /** 823a25f0a04SGreg Roach * Find repositories linked to this record. 824a25f0a04SGreg Roach * 825a25f0a04SGreg Roach * @param string $link 826a25f0a04SGreg Roach * 827b5c8fd7eSGreg Roach * @return Collection<Repository> 828a25f0a04SGreg Roach */ 829907c1109SGreg Roach public function linkedRepositories(string $link): Collection 830c1010edaSGreg Roach { 831907c1109SGreg Roach return DB::table('other') 8320b5fd0a6SGreg Roach ->join('link', static function (JoinClause $join): void { 833907c1109SGreg Roach $join 834907c1109SGreg Roach ->on('l_file', '=', 'o_file') 835907c1109SGreg Roach ->on('l_from', '=', 'o_id'); 836ba1c12e8SGreg Roach }) 837ba1c12e8SGreg Roach ->where('o_file', '=', $this->tree->id()) 838ba1c12e8SGreg Roach ->where('o_type', '=', 'REPO') 839ba1c12e8SGreg Roach ->where('l_type', '=', $link) 840ba1c12e8SGreg Roach ->where('l_to', '=', $this->xref) 841907c1109SGreg Roach ->select(['other.*']) 842907c1109SGreg Roach ->get() 843d5ad3db0SGreg Roach ->map(Repository::rowMapper($this->tree)) 844907c1109SGreg Roach ->filter(self::accessFilter()); 845a25f0a04SGreg Roach } 846a25f0a04SGreg Roach 847a25f0a04SGreg Roach /** 848a25f0a04SGreg Roach * Get all attributes (e.g. DATE or PLAC) from an event (e.g. BIRT or MARR). 849a25f0a04SGreg Roach * This is used to display multiple events on the individual/family lists. 850a25f0a04SGreg Roach * Multiple events can exist because of uncertainty in dates, dates in different 851a25f0a04SGreg Roach * calendars, place-names in both latin and hebrew character sets, etc. 852a25f0a04SGreg Roach * It also allows us to combine dates/places from different events in the summaries. 853a25f0a04SGreg Roach * 8548d0ebef0SGreg Roach * @param string[] $events 855a25f0a04SGreg Roach * 856a25f0a04SGreg Roach * @return Date[] 857a25f0a04SGreg Roach */ 8588d0ebef0SGreg Roach public function getAllEventDates(array $events): array 859c1010edaSGreg Roach { 86013abd6f3SGreg Roach $dates = []; 8618d0ebef0SGreg Roach foreach ($this->facts($events) as $event) { 8622decada7SGreg Roach if ($event->date()->isOK()) { 8632decada7SGreg Roach $dates[] = $event->date(); 864a25f0a04SGreg Roach } 865a25f0a04SGreg Roach } 866a25f0a04SGreg Roach 867a25f0a04SGreg Roach return $dates; 868a25f0a04SGreg Roach } 869a25f0a04SGreg Roach 870a25f0a04SGreg Roach /** 871a25f0a04SGreg Roach * Get all the places for a particular type of event 872a25f0a04SGreg Roach * 8738d0ebef0SGreg Roach * @param string[] $events 874a25f0a04SGreg Roach * 8754080d558SGreg Roach * @return Place[] 876a25f0a04SGreg Roach */ 8778d0ebef0SGreg Roach public function getAllEventPlaces(array $events): array 878c1010edaSGreg Roach { 87913abd6f3SGreg Roach $places = []; 8808d0ebef0SGreg Roach foreach ($this->facts($events) as $event) { 881138ca96cSGreg Roach if (preg_match_all('/\n(?:2 PLAC|3 (?:ROMN|FONE|_HEB)) +(.+)/', $event->gedcom(), $ged_places)) { 882a25f0a04SGreg Roach foreach ($ged_places[1] as $ged_place) { 88316d0b7f7SRico Sonntag $places[] = new Place($ged_place, $this->tree); 884a25f0a04SGreg Roach } 885a25f0a04SGreg Roach } 886a25f0a04SGreg Roach } 887a25f0a04SGreg Roach 888a25f0a04SGreg Roach return $places; 889a25f0a04SGreg Roach } 890a25f0a04SGreg Roach 891a25f0a04SGreg Roach /** 892a25f0a04SGreg Roach * The facts and events for this record. 893a25f0a04SGreg Roach * 8948d0ebef0SGreg Roach * @param string[] $filter 895cbc1590aSGreg Roach * @param bool $sort 896cbc1590aSGreg Roach * @param int|null $access_level 897ce42304aSGreg Roach * @param bool $ignore_deleted 898a25f0a04SGreg Roach * 899b5c8fd7eSGreg Roach * @return Collection<Fact> 900a25f0a04SGreg Roach */ 901ce42304aSGreg Roach public function facts( 902ce42304aSGreg Roach array $filter = [], 903ce42304aSGreg Roach bool $sort = false, 904ce42304aSGreg Roach int $access_level = null, 905ce42304aSGreg Roach bool $ignore_deleted = false 906ce42304aSGreg Roach ): Collection { 907d9e083e7SGreg Roach $access_level = $access_level ?? Auth::accessLevel($this->tree); 9084b9ff166SGreg Roach 9098af3e5c1SGreg Roach $facts = new Collection(); 910ce42304aSGreg Roach if ($this->canShow($access_level)) { 911a25f0a04SGreg Roach foreach ($this->facts as $fact) { 91222d65e5aSGreg Roach if (($filter === [] || in_array($fact->getTag(), $filter, true)) && $fact->canShow($access_level)) { 9138af3e5c1SGreg Roach $facts->push($fact); 914a25f0a04SGreg Roach } 915a25f0a04SGreg Roach } 916a25f0a04SGreg Roach } 917d17d7b9eSGreg Roach 918a25f0a04SGreg Roach if ($sort) { 919580a4d11SGreg Roach $facts = Fact::sortFacts($facts); 920a25f0a04SGreg Roach } 921cbc1590aSGreg Roach 922ce42304aSGreg Roach if ($ignore_deleted) { 923ce42304aSGreg Roach $facts = $facts->filter(static function (Fact $fact): bool { 924ce42304aSGreg Roach return !$fact->isPendingDeletion(); 925ce42304aSGreg Roach }); 926ce42304aSGreg Roach } 927ce42304aSGreg Roach 92839ca88baSGreg Roach return new Collection($facts); 929a25f0a04SGreg Roach } 930a25f0a04SGreg Roach 931a25f0a04SGreg Roach /** 9324459dc9aSGreg Roach * Get the last-change timestamp for this record 933a25f0a04SGreg Roach * 9344459dc9aSGreg Roach * @return Carbon 935a25f0a04SGreg Roach */ 9364459dc9aSGreg Roach public function lastChangeTimestamp(): Carbon 937c1010edaSGreg Roach { 9384459dc9aSGreg Roach /** @var Fact|null $chan */ 939820b62dfSGreg Roach $chan = $this->facts(['CHAN'])->first(); 940a25f0a04SGreg Roach 9414459dc9aSGreg Roach if ($chan instanceof Fact) { 942a25f0a04SGreg Roach // The record does have a CHAN event 9432decada7SGreg Roach $d = $chan->date()->minimumDate(); 9444459dc9aSGreg Roach 945138ca96cSGreg Roach if (preg_match('/\n3 TIME (\d\d):(\d\d):(\d\d)/', $chan->gedcom(), $match)) { 9464459dc9aSGreg Roach return Carbon::create($d->year(), $d->month(), $d->day(), (int) $match[1], (int) $match[2], (int) $match[3]); 947e364afe4SGreg Roach } 948e364afe4SGreg Roach 949e364afe4SGreg Roach if (preg_match('/\n3 TIME (\d\d):(\d\d)/', $chan->gedcom(), $match)) { 9504459dc9aSGreg Roach return Carbon::create($d->year(), $d->month(), $d->day(), (int) $match[1], (int) $match[2]); 951b2ce94c6SRico Sonntag } 952b2ce94c6SRico Sonntag 9534459dc9aSGreg Roach return Carbon::create($d->year(), $d->month(), $d->day()); 954a25f0a04SGreg Roach } 955b2ce94c6SRico Sonntag 956a25f0a04SGreg Roach // The record does not have a CHAN event 9574459dc9aSGreg Roach return Carbon::createFromTimestamp(0); 958a25f0a04SGreg Roach } 959a25f0a04SGreg Roach 960a25f0a04SGreg Roach /** 961a25f0a04SGreg Roach * Get the last-change user for this record 962a25f0a04SGreg Roach * 963a25f0a04SGreg Roach * @return string 964a25f0a04SGreg Roach */ 965e364afe4SGreg Roach public function lastChangeUser(): string 966c1010edaSGreg Roach { 967820b62dfSGreg Roach $chan = $this->facts(['CHAN'])->first(); 968a25f0a04SGreg Roach 969a25f0a04SGreg Roach if ($chan === null) { 970a25f0a04SGreg Roach return I18N::translate('Unknown'); 971b2ce94c6SRico Sonntag } 972b2ce94c6SRico Sonntag 9733425616eSGreg Roach $chan_user = $chan->attribute('_WT_USER'); 974baacc364SGreg Roach if ($chan_user === '') { 975a25f0a04SGreg Roach return I18N::translate('Unknown'); 976b2ce94c6SRico Sonntag } 977b2ce94c6SRico Sonntag 978a25f0a04SGreg Roach return $chan_user; 979a25f0a04SGreg Roach } 980a25f0a04SGreg Roach 981a25f0a04SGreg Roach /** 982a25f0a04SGreg Roach * Add a new fact to this record 983a25f0a04SGreg Roach * 984a25f0a04SGreg Roach * @param string $gedcom 985cbc1590aSGreg Roach * @param bool $update_chan 9867e96c925SGreg Roach * 9877e96c925SGreg Roach * @return void 988a25f0a04SGreg Roach */ 989e364afe4SGreg Roach public function createFact(string $gedcom, bool $update_chan): void 990c1010edaSGreg Roach { 991fc3ccce4SGreg Roach $this->updateFact('', $gedcom, $update_chan); 992a25f0a04SGreg Roach } 993a25f0a04SGreg Roach 994a25f0a04SGreg Roach /** 995a25f0a04SGreg Roach * Delete a fact from this record 996a25f0a04SGreg Roach * 997a25f0a04SGreg Roach * @param string $fact_id 998cbc1590aSGreg Roach * @param bool $update_chan 9997e96c925SGreg Roach * 10007e96c925SGreg Roach * @return void 1001a25f0a04SGreg Roach */ 1002e364afe4SGreg Roach public function deleteFact(string $fact_id, bool $update_chan): void 1003c1010edaSGreg Roach { 1004db7bb364SGreg Roach $this->updateFact($fact_id, '', $update_chan); 1005a25f0a04SGreg Roach } 1006a25f0a04SGreg Roach 1007a25f0a04SGreg Roach /** 1008a25f0a04SGreg Roach * Replace a fact with a new gedcom data. 1009a25f0a04SGreg Roach * 1010a25f0a04SGreg Roach * @param string $fact_id 1011a25f0a04SGreg Roach * @param string $gedcom 1012cbc1590aSGreg Roach * @param bool $update_chan 1013a25f0a04SGreg Roach * 10147e96c925SGreg Roach * @return void 10157e96c925SGreg Roach * @throws Exception 1016a25f0a04SGreg Roach */ 1017e364afe4SGreg Roach public function updateFact(string $fact_id, string $gedcom, bool $update_chan): void 1018c1010edaSGreg Roach { 1019a25f0a04SGreg Roach // MSDOS line endings will break things in horrible ways 1020a25f0a04SGreg Roach $gedcom = preg_replace('/[\r\n]+/', "\n", $gedcom); 1021a25f0a04SGreg Roach $gedcom = trim($gedcom); 1022a25f0a04SGreg Roach 1023a25f0a04SGreg Roach if ($this->pending === '') { 10247e96c925SGreg Roach throw new Exception('Cannot edit a deleted record'); 1025a25f0a04SGreg Roach } 10268d0ebef0SGreg Roach if ($gedcom !== '' && !preg_match('/^1 ' . Gedcom::REGEX_TAG . '/', $gedcom)) { 10277e96c925SGreg Roach throw new Exception('Invalid GEDCOM data passed to GedcomRecord::updateFact(' . $gedcom . ')'); 1028a25f0a04SGreg Roach } 1029a25f0a04SGreg Roach 1030a25f0a04SGreg Roach if ($this->pending) { 1031a25f0a04SGreg Roach $old_gedcom = $this->pending; 1032a25f0a04SGreg Roach } else { 1033a25f0a04SGreg Roach $old_gedcom = $this->gedcom; 1034a25f0a04SGreg Roach } 1035a25f0a04SGreg Roach 1036a25f0a04SGreg Roach // First line of record may contain data - e.g. NOTE records. 103765e02381SGreg Roach [$new_gedcom] = explode("\n", $old_gedcom, 2); 1038a25f0a04SGreg Roach 1039a25f0a04SGreg Roach // Replacing (or deleting) an existing fact 10408d0ebef0SGreg Roach foreach ($this->facts([], false, Auth::PRIV_HIDE) as $fact) { 1041a25f0a04SGreg Roach if (!$fact->isPendingDeletion()) { 1042905ab80aSGreg Roach if ($fact->id() === $fact_id) { 1043db7bb364SGreg Roach if ($gedcom !== '') { 1044a25f0a04SGreg Roach $new_gedcom .= "\n" . $gedcom; 1045a25f0a04SGreg Roach } 1046fc3ccce4SGreg Roach $fact_id = 'NOT A VALID FACT ID'; // Only replace/delete one copy of a duplicate fact 1047e364afe4SGreg Roach } elseif ($fact->getTag() !== 'CHAN' || !$update_chan) { 1048138ca96cSGreg Roach $new_gedcom .= "\n" . $fact->gedcom(); 1049a25f0a04SGreg Roach } 1050a25f0a04SGreg Roach } 1051a25f0a04SGreg Roach } 1052a25f0a04SGreg Roach if ($update_chan) { 1053e5a6b4d4SGreg Roach $new_gedcom .= "\n1 CHAN\n2 DATE " . strtoupper(date('d M Y')) . "\n3 TIME " . date('H:i:s') . "\n2 _WT_USER " . Auth::user()->userName(); 1054a25f0a04SGreg Roach } 1055a25f0a04SGreg Roach 1056a25f0a04SGreg Roach // Adding a new fact 1057fc3ccce4SGreg Roach if ($fact_id === '') { 1058a25f0a04SGreg Roach $new_gedcom .= "\n" . $gedcom; 1059a25f0a04SGreg Roach } 1060a25f0a04SGreg Roach 1061e364afe4SGreg Roach if ($new_gedcom !== $old_gedcom) { 1062a25f0a04SGreg Roach // Save the changes 1063d09b6323SGreg Roach DB::table('change')->insert([ 1064d09b6323SGreg Roach 'gedcom_id' => $this->tree->id(), 1065d09b6323SGreg Roach 'xref' => $this->xref, 1066d09b6323SGreg Roach 'old_gedcom' => $old_gedcom, 1067d09b6323SGreg Roach 'new_gedcom' => $new_gedcom, 1068d09b6323SGreg Roach 'user_id' => Auth::id(), 106913abd6f3SGreg Roach ]); 1070a25f0a04SGreg Roach 1071a25f0a04SGreg Roach $this->pending = $new_gedcom; 1072a25f0a04SGreg Roach 10737c4add84SGreg Roach if (Auth::user()->getPreference(User::PREF_AUTO_ACCEPT_EDITS) === '1') { 107422e73debSGreg Roach app(PendingChangesService::class)->acceptRecord($this); 1075a25f0a04SGreg Roach $this->gedcom = $new_gedcom; 1076a25f0a04SGreg Roach $this->pending = null; 1077a25f0a04SGreg Roach } 1078a25f0a04SGreg Roach } 1079a25f0a04SGreg Roach $this->parseFacts(); 1080a25f0a04SGreg Roach } 1081a25f0a04SGreg Roach 1082a25f0a04SGreg Roach /** 1083a25f0a04SGreg Roach * Update this record 1084a25f0a04SGreg Roach * 1085a25f0a04SGreg Roach * @param string $gedcom 1086cbc1590aSGreg Roach * @param bool $update_chan 10877e96c925SGreg Roach * 10887e96c925SGreg Roach * @return void 1089a25f0a04SGreg Roach */ 1090e364afe4SGreg Roach public function updateRecord(string $gedcom, bool $update_chan): void 1091c1010edaSGreg Roach { 1092a25f0a04SGreg Roach // MSDOS line endings will break things in horrible ways 1093a25f0a04SGreg Roach $gedcom = preg_replace('/[\r\n]+/', "\n", $gedcom); 1094a25f0a04SGreg Roach $gedcom = trim($gedcom); 1095a25f0a04SGreg Roach 1096a25f0a04SGreg Roach // Update the CHAN record 1097a25f0a04SGreg Roach if ($update_chan) { 1098a25f0a04SGreg Roach $gedcom = preg_replace('/\n1 CHAN(\n[2-9].*)*/', '', $gedcom); 1099e5a6b4d4SGreg Roach $gedcom .= "\n1 CHAN\n2 DATE " . date('d M Y') . "\n3 TIME " . date('H:i:s') . "\n2 _WT_USER " . Auth::user()->userName(); 1100a25f0a04SGreg Roach } 1101a25f0a04SGreg Roach 1102a25f0a04SGreg Roach // Create a pending change 1103d09b6323SGreg Roach DB::table('change')->insert([ 1104d09b6323SGreg Roach 'gedcom_id' => $this->tree->id(), 1105d09b6323SGreg Roach 'xref' => $this->xref, 1106d09b6323SGreg Roach 'old_gedcom' => $this->gedcom(), 1107d09b6323SGreg Roach 'new_gedcom' => $gedcom, 1108d09b6323SGreg Roach 'user_id' => Auth::id(), 110913abd6f3SGreg Roach ]); 1110a25f0a04SGreg Roach 1111a25f0a04SGreg Roach // Clear the cache 1112a25f0a04SGreg Roach $this->pending = $gedcom; 1113a25f0a04SGreg Roach 1114a25f0a04SGreg Roach // Accept this pending change 11157c4add84SGreg Roach if (Auth::user()->getPreference(User::PREF_AUTO_ACCEPT_EDITS) === '1') { 111622e73debSGreg Roach app(PendingChangesService::class)->acceptRecord($this); 1117a25f0a04SGreg Roach $this->gedcom = $gedcom; 1118a25f0a04SGreg Roach $this->pending = null; 1119a25f0a04SGreg Roach } 1120a25f0a04SGreg Roach 1121a25f0a04SGreg Roach $this->parseFacts(); 1122a25f0a04SGreg Roach 1123847d5489SGreg Roach Log::addEditLog('Update: ' . static::RECORD_TYPE . ' ' . $this->xref, $this->tree); 1124a25f0a04SGreg Roach } 1125a25f0a04SGreg Roach 1126a25f0a04SGreg Roach /** 1127a25f0a04SGreg Roach * Delete this record 1128b874da82SGreg Roach * 1129b874da82SGreg Roach * @return void 1130a25f0a04SGreg Roach */ 1131e364afe4SGreg Roach public function deleteRecord(): void 1132c1010edaSGreg Roach { 1133a25f0a04SGreg Roach // Create a pending change 11344c0b5256SGreg Roach if (!$this->isPendingDeletion()) { 1135d09b6323SGreg Roach DB::table('change')->insert([ 1136d09b6323SGreg Roach 'gedcom_id' => $this->tree->id(), 1137d09b6323SGreg Roach 'xref' => $this->xref, 1138d09b6323SGreg Roach 'old_gedcom' => $this->gedcom(), 1139d09b6323SGreg Roach 'new_gedcom' => '', 1140d09b6323SGreg Roach 'user_id' => Auth::id(), 114113abd6f3SGreg Roach ]); 11424c0b5256SGreg Roach } 1143a25f0a04SGreg Roach 11444c0b5256SGreg Roach // Auto-accept this pending change 11457c4add84SGreg Roach if (Auth::user()->getPreference(User::PREF_AUTO_ACCEPT_EDITS) === '1') { 114622e73debSGreg Roach app(PendingChangesService::class)->acceptRecord($this); 1147a25f0a04SGreg Roach } 1148a25f0a04SGreg Roach 1149a25f0a04SGreg Roach // Clear the cache 1150d17d7b9eSGreg Roach self::$gedcom_record_cache = []; 1151d17d7b9eSGreg Roach self::$pending_record_cache = []; 1152a25f0a04SGreg Roach 1153847d5489SGreg Roach Log::addEditLog('Delete: ' . static::RECORD_TYPE . ' ' . $this->xref, $this->tree); 1154a25f0a04SGreg Roach } 1155a25f0a04SGreg Roach 1156a25f0a04SGreg Roach /** 1157a25f0a04SGreg Roach * Remove all links from this record to $xref 1158a25f0a04SGreg Roach * 1159a25f0a04SGreg Roach * @param string $xref 1160cbc1590aSGreg Roach * @param bool $update_chan 11617e96c925SGreg Roach * 11627e96c925SGreg Roach * @return void 1163a25f0a04SGreg Roach */ 1164e364afe4SGreg Roach public function removeLinks(string $xref, bool $update_chan): void 1165c1010edaSGreg Roach { 1166a25f0a04SGreg Roach $value = '@' . $xref . '@'; 1167a25f0a04SGreg Roach 116830158ae7SGreg Roach foreach ($this->facts() as $fact) { 116984586c02SGreg Roach if ($fact->value() === $value) { 1170905ab80aSGreg Roach $this->deleteFact($fact->id(), $update_chan); 11718d0ebef0SGreg Roach } elseif (preg_match_all('/\n(\d) ' . Gedcom::REGEX_TAG . ' ' . $value . '/', $fact->gedcom(), $matches, PREG_SET_ORDER)) { 1172138ca96cSGreg Roach $gedcom = $fact->gedcom(); 1173a25f0a04SGreg Roach foreach ($matches as $match) { 1174a25f0a04SGreg Roach $next_level = $match[1] + 1; 1175a25f0a04SGreg Roach $next_levels = '[' . $next_level . '-9]'; 1176a25f0a04SGreg Roach $gedcom = preg_replace('/' . $match[0] . '(\n' . $next_levels . '.*)*/', '', $gedcom); 1177a25f0a04SGreg Roach } 1178905ab80aSGreg Roach $this->updateFact($fact->id(), $gedcom, $update_chan); 1179a25f0a04SGreg Roach } 1180a25f0a04SGreg Roach } 1181a25f0a04SGreg Roach } 1182bf4eb542SGreg Roach 1183bf4eb542SGreg Roach /** 1184bf4eb542SGreg Roach * Fetch XREFs of all records linked to a record - when deleting an object, we must 1185bf4eb542SGreg Roach * also delete all links to it. 1186bf4eb542SGreg Roach * 1187bf4eb542SGreg Roach * @return GedcomRecord[] 1188bf4eb542SGreg Roach */ 1189bf4eb542SGreg Roach public function linkingRecords(): array 1190bf4eb542SGreg Roach { 1191bf4eb542SGreg Roach $union = DB::table('change') 1192bf4eb542SGreg Roach ->where('gedcom_id', '=', $this->tree()->id()) 1193fbbe964bSGreg Roach ->whereContains('new_gedcom', '@' . $this->xref() . '@') 1194bf4eb542SGreg Roach ->where('new_gedcom', 'NOT LIKE', '0 @' . $this->xref() . '@%') 119583242252SGreg Roach ->whereIn('change_id', function (Builder $query): void { 119683242252SGreg Roach $query->select(new Expression('MAX(change_id)')) 119783242252SGreg Roach ->from('change') 119883242252SGreg Roach ->where('gedcom_id', '=', $this->tree->id()) 119983242252SGreg Roach ->where('status', '=', 'pending') 12007f5c2944SGreg Roach ->groupBy(['xref']); 120183242252SGreg Roach }) 1202bf4eb542SGreg Roach ->select(['xref']); 1203bf4eb542SGreg Roach 1204bf4eb542SGreg Roach $xrefs = DB::table('link') 1205bf4eb542SGreg Roach ->where('l_file', '=', $this->tree()->id()) 1206bf4eb542SGreg Roach ->where('l_to', '=', $this->xref()) 120747256fc5SGreg Roach ->select(['l_from']) 1208bf4eb542SGreg Roach ->union($union) 1209bf4eb542SGreg Roach ->pluck('l_from'); 1210bf4eb542SGreg Roach 1211bf4eb542SGreg Roach return $xrefs->map(function (string $xref): GedcomRecord { 1212ffc0a61fSGreg Roach $record = GedcomRecord::getInstance($xref, $this->tree); 1213ffc0a61fSGreg Roach assert($record instanceof GedcomRecord); 1214ffc0a61fSGreg Roach 1215ffc0a61fSGreg Roach return $record; 1216bf4eb542SGreg Roach })->all(); 1217bf4eb542SGreg Roach } 121822e73debSGreg Roach 121922e73debSGreg Roach /** 122022e73debSGreg Roach * Each object type may have its own special rules, and re-implement this function. 122122e73debSGreg Roach * 122222e73debSGreg Roach * @param int $access_level 122322e73debSGreg Roach * 122422e73debSGreg Roach * @return bool 122522e73debSGreg Roach */ 122622e73debSGreg Roach protected function canShowByType(int $access_level): bool 122722e73debSGreg Roach { 122822e73debSGreg Roach $fact_privacy = $this->tree->getFactPrivacy(); 122922e73debSGreg Roach 123022e73debSGreg Roach if (isset($fact_privacy[static::RECORD_TYPE])) { 123122e73debSGreg Roach // Restriction found 123222e73debSGreg Roach return $fact_privacy[static::RECORD_TYPE] >= $access_level; 123322e73debSGreg Roach } 123422e73debSGreg Roach 123522e73debSGreg Roach // No restriction found - must be public: 123622e73debSGreg Roach return true; 123722e73debSGreg Roach } 123822e73debSGreg Roach 123922e73debSGreg Roach /** 124022e73debSGreg Roach * Generate a private version of this record 124122e73debSGreg Roach * 124222e73debSGreg Roach * @param int $access_level 124322e73debSGreg Roach * 124422e73debSGreg Roach * @return string 124522e73debSGreg Roach */ 124622e73debSGreg Roach protected function createPrivateGedcomRecord(int $access_level): string 124722e73debSGreg Roach { 124822e73debSGreg Roach return '0 @' . $this->xref . '@ ' . static::RECORD_TYPE . "\n1 NOTE " . I18N::translate('Private'); 124922e73debSGreg Roach } 125022e73debSGreg Roach 125122e73debSGreg Roach /** 125222e73debSGreg Roach * Convert a name record into sortable and full/display versions. This default 125322e73debSGreg Roach * should be OK for simple record types. INDI/FAM records will need to redefine it. 125422e73debSGreg Roach * 125522e73debSGreg Roach * @param string $type 125622e73debSGreg Roach * @param string $value 125722e73debSGreg Roach * @param string $gedcom 125822e73debSGreg Roach * 125922e73debSGreg Roach * @return void 126022e73debSGreg Roach */ 126122e73debSGreg Roach protected function addName(string $type, string $value, string $gedcom): void 126222e73debSGreg Roach { 126322e73debSGreg Roach $this->getAllNames[] = [ 126422e73debSGreg Roach 'type' => $type, 126522e73debSGreg Roach 'sort' => preg_replace_callback('/([0-9]+)/', static function (array $matches): string { 126622e73debSGreg Roach return str_pad($matches[0], 10, '0', STR_PAD_LEFT); 126722e73debSGreg Roach }, $value), 126822e73debSGreg Roach 'full' => '<span dir="auto">' . e($value) . '</span>', 126922e73debSGreg Roach // This is used for display 127022e73debSGreg Roach 'fullNN' => $value, 127122e73debSGreg Roach // This goes into the database 127222e73debSGreg Roach ]; 127322e73debSGreg Roach } 127422e73debSGreg Roach 127522e73debSGreg Roach /** 127622e73debSGreg Roach * Get all the names of a record, including ROMN, FONE and _HEB alternatives. 127722e73debSGreg Roach * Records without a name (e.g. FAM) will need to redefine this function. 127822e73debSGreg Roach * Parameters: the level 1 fact containing the name. 127922e73debSGreg Roach * Return value: an array of name structures, each containing 128022e73debSGreg Roach * ['type'] = the gedcom fact, e.g. NAME, TITL, FONE, _HEB, etc. 128122e73debSGreg Roach * ['full'] = the name as specified in the record, e.g. 'Vincent van Gogh' or 'John Unknown' 128222e73debSGreg Roach * ['sort'] = a sortable version of the name (not for display), e.g. 'Gogh, Vincent' or '@N.N., John' 128322e73debSGreg Roach * 128422e73debSGreg Roach * @param int $level 128522e73debSGreg Roach * @param string $fact_type 128622e73debSGreg Roach * @param Collection $facts 128722e73debSGreg Roach * 128822e73debSGreg Roach * @return void 128922e73debSGreg Roach */ 129022e73debSGreg Roach protected function extractNamesFromFacts(int $level, string $fact_type, Collection $facts): void 129122e73debSGreg Roach { 129222e73debSGreg Roach $sublevel = $level + 1; 129322e73debSGreg Roach $subsublevel = $sublevel + 1; 129422e73debSGreg Roach foreach ($facts as $fact) { 129522e73debSGreg Roach if (preg_match_all("/^{$level} ({$fact_type}) (.+)((\n[{$sublevel}-9].+)*)/m", $fact->gedcom(), $matches, PREG_SET_ORDER)) { 129622e73debSGreg Roach foreach ($matches as $match) { 129722e73debSGreg Roach // Treat 1 NAME / 2 TYPE married the same as _MARNM 129822e73debSGreg Roach if ($match[1] === 'NAME' && strpos($match[3], "\n2 TYPE married") !== false) { 129922e73debSGreg Roach $this->addName('_MARNM', $match[2], $fact->gedcom()); 130022e73debSGreg Roach } else { 130122e73debSGreg Roach $this->addName($match[1], $match[2], $fact->gedcom()); 130222e73debSGreg Roach } 130322e73debSGreg Roach if ($match[3] && preg_match_all("/^{$sublevel} (ROMN|FONE|_\w+) (.+)((\n[{$subsublevel}-9].+)*)/m", $match[3], $submatches, PREG_SET_ORDER)) { 130422e73debSGreg Roach foreach ($submatches as $submatch) { 130522e73debSGreg Roach $this->addName($submatch[1], $submatch[2], $match[3]); 130622e73debSGreg Roach } 130722e73debSGreg Roach } 130822e73debSGreg Roach } 130922e73debSGreg Roach } 131022e73debSGreg Roach } 131122e73debSGreg Roach } 131222e73debSGreg Roach 131322e73debSGreg Roach /** 131422e73debSGreg Roach * Split the record into facts 131522e73debSGreg Roach * 131622e73debSGreg Roach * @return void 131722e73debSGreg Roach */ 131822e73debSGreg Roach private function parseFacts(): void 131922e73debSGreg Roach { 132022e73debSGreg Roach // Split the record into facts 132122e73debSGreg Roach if ($this->gedcom) { 132222e73debSGreg Roach $gedcom_facts = preg_split('/\n(?=1)/s', $this->gedcom); 132322e73debSGreg Roach array_shift($gedcom_facts); 132422e73debSGreg Roach } else { 132522e73debSGreg Roach $gedcom_facts = []; 132622e73debSGreg Roach } 132722e73debSGreg Roach if ($this->pending) { 132822e73debSGreg Roach $pending_facts = preg_split('/\n(?=1)/s', $this->pending); 132922e73debSGreg Roach array_shift($pending_facts); 133022e73debSGreg Roach } else { 133122e73debSGreg Roach $pending_facts = []; 133222e73debSGreg Roach } 133322e73debSGreg Roach 133422e73debSGreg Roach $this->facts = []; 133522e73debSGreg Roach 133622e73debSGreg Roach foreach ($gedcom_facts as $gedcom_fact) { 133722e73debSGreg Roach $fact = new Fact($gedcom_fact, $this, md5($gedcom_fact)); 133822e73debSGreg Roach if ($this->pending !== null && !in_array($gedcom_fact, $pending_facts, true)) { 133922e73debSGreg Roach $fact->setPendingDeletion(); 134022e73debSGreg Roach } 134122e73debSGreg Roach $this->facts[] = $fact; 134222e73debSGreg Roach } 134322e73debSGreg Roach foreach ($pending_facts as $pending_fact) { 134422e73debSGreg Roach if (!in_array($pending_fact, $gedcom_facts, true)) { 134522e73debSGreg Roach $fact = new Fact($pending_fact, $this, md5($pending_fact)); 134622e73debSGreg Roach $fact->setPendingAddition(); 134722e73debSGreg Roach $this->facts[] = $fact; 134822e73debSGreg Roach } 134922e73debSGreg Roach } 135022e73debSGreg Roach } 135122e73debSGreg Roach 135222e73debSGreg Roach /** 135322e73debSGreg Roach * Work out whether this record can be shown to a user with a given access level 135422e73debSGreg Roach * 135522e73debSGreg Roach * @param int $access_level 135622e73debSGreg Roach * 135722e73debSGreg Roach * @return bool 135822e73debSGreg Roach */ 135922e73debSGreg Roach private function canShowRecord(int $access_level): bool 136022e73debSGreg Roach { 136122e73debSGreg Roach // This setting would better be called "$ENABLE_PRIVACY" 136222e73debSGreg Roach if (!$this->tree->getPreference('HIDE_LIVE_PEOPLE')) { 136322e73debSGreg Roach return true; 136422e73debSGreg Roach } 136522e73debSGreg Roach 136622e73debSGreg Roach // We should always be able to see our own record (unless an admin is applying download restrictions) 13677c4add84SGreg Roach if ($this->xref() === $this->tree->getUserPreference(Auth::user(), User::PREF_TREE_ACCOUNT_XREF) && $access_level === Auth::accessLevel($this->tree)) { 136822e73debSGreg Roach return true; 136922e73debSGreg Roach } 137022e73debSGreg Roach 137122e73debSGreg Roach // Does this record have a RESN? 137222e73debSGreg Roach if (strpos($this->gedcom, "\n1 RESN confidential") !== false) { 137322e73debSGreg Roach return Auth::PRIV_NONE >= $access_level; 137422e73debSGreg Roach } 137522e73debSGreg Roach if (strpos($this->gedcom, "\n1 RESN privacy") !== false) { 137622e73debSGreg Roach return Auth::PRIV_USER >= $access_level; 137722e73debSGreg Roach } 137822e73debSGreg Roach if (strpos($this->gedcom, "\n1 RESN none") !== false) { 137922e73debSGreg Roach return true; 138022e73debSGreg Roach } 138122e73debSGreg Roach 138222e73debSGreg Roach // Does this record have a default RESN? 138322e73debSGreg Roach $individual_privacy = $this->tree->getIndividualPrivacy(); 138422e73debSGreg Roach if (isset($individual_privacy[$this->xref()])) { 138522e73debSGreg Roach return $individual_privacy[$this->xref()] >= $access_level; 138622e73debSGreg Roach } 138722e73debSGreg Roach 138822e73debSGreg Roach // Privacy rules do not apply to admins 138922e73debSGreg Roach if (Auth::PRIV_NONE >= $access_level) { 139022e73debSGreg Roach return true; 139122e73debSGreg Roach } 139222e73debSGreg Roach 139322e73debSGreg Roach // Different types of record have different privacy rules 139422e73debSGreg Roach return $this->canShowByType($access_level); 139522e73debSGreg Roach } 1396a25f0a04SGreg Roach} 1397