xref: /webtrees/app/GedcomRecord.php (revision 5ab92b3f4a3cff76e42a6a8df9a0039f414d1c12)
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;
33*5ab92b3fSGreg Roachuse Transliterator;
34a25f0a04SGreg Roach
3522e73debSGreg Roachuse function app;
3622e73debSGreg Roach
37a25f0a04SGreg Roach/**
3876692c8bSGreg Roach * A GEDCOM object.
39a25f0a04SGreg Roach */
40c1010edaSGreg Roachclass GedcomRecord
41c1010edaSGreg Roach{
4216d6367aSGreg Roach    public const RECORD_TYPE = 'UNKNOWN';
4316d6367aSGreg Roach
445818a371SGreg Roach    protected const ROUTE_NAME = GedcomRecordPage::class;
455818a371SGreg Roach
4676692c8bSGreg Roach    /** @var GedcomRecord[][] Allow getInstance() to return references to existing objects */
47bec87e94SGreg Roach    public static $gedcom_record_cache;
4879529c87SGreg Roach    /** @var stdClass[][] Fetch all pending edits in one database query */
49bec87e94SGreg Roach    public static $pending_record_cache;
5022e73debSGreg Roach    /** @var string The record identifier */
5122e73debSGreg Roach    protected $xref;
5222e73debSGreg Roach    /** @var Tree  The family tree to which this record belongs */
5322e73debSGreg Roach    protected $tree;
5422e73debSGreg Roach    /** @var string  GEDCOM data (before any pending edits) */
5522e73debSGreg Roach    protected $gedcom;
5622e73debSGreg Roach    /** @var string|null  GEDCOM data (after any pending edits) */
5722e73debSGreg Roach    protected $pending;
5822e73debSGreg Roach    /** @var Fact[] facts extracted from $gedcom/$pending */
5922e73debSGreg Roach    protected $facts;
6022e73debSGreg Roach    /** @var string[][] All the names of this individual */
6122e73debSGreg Roach    protected $getAllNames;
6222e73debSGreg Roach    /** @var int|null Cached result */
6322e73debSGreg Roach    protected $getPrimaryName;
6422e73debSGreg Roach    /** @var int|null Cached result */
6522e73debSGreg Roach    protected $getSecondaryName;
66a25f0a04SGreg Roach
67a25f0a04SGreg Roach    /**
68a25f0a04SGreg Roach     * Create a GedcomRecord object from raw GEDCOM data.
69a25f0a04SGreg Roach     *
70a25f0a04SGreg Roach     * @param string      $xref
71a25f0a04SGreg Roach     * @param string      $gedcom  an empty string for new/pending records
72a25f0a04SGreg Roach     * @param string|null $pending null for a record with no pending edits,
73a25f0a04SGreg Roach     *                             empty string for records with pending deletions
7424ec66ceSGreg Roach     * @param Tree        $tree
75a25f0a04SGreg Roach     */
76e364afe4SGreg Roach    public function __construct(string $xref, string $gedcom, ?string $pending, Tree $tree)
77c1010edaSGreg Roach    {
78a25f0a04SGreg Roach        $this->xref    = $xref;
79a25f0a04SGreg Roach        $this->gedcom  = $gedcom;
80a25f0a04SGreg Roach        $this->pending = $pending;
8124ec66ceSGreg Roach        $this->tree    = $tree;
82a25f0a04SGreg Roach
83a25f0a04SGreg Roach        $this->parseFacts();
84a25f0a04SGreg Roach    }
85a25f0a04SGreg Roach
86a25f0a04SGreg Roach    /**
87886b77daSGreg Roach     * A closure which will create a record from a database row.
88886b77daSGreg Roach     *
89d5ad3db0SGreg Roach     * @param Tree $tree
90d5ad3db0SGreg Roach     *
91886b77daSGreg Roach     * @return Closure
92886b77daSGreg Roach     */
93d5ad3db0SGreg Roach    public static function rowMapper(Tree $tree): Closure
94886b77daSGreg Roach    {
95d5ad3db0SGreg Roach        return static function (stdClass $row) use ($tree): GedcomRecord {
96ffc0a61fSGreg Roach            $record = GedcomRecord::getInstance($row->o_id, $tree, $row->o_gedcom);
97ffc0a61fSGreg Roach            assert($record instanceof GedcomRecord);
98ffc0a61fSGreg Roach
99ffc0a61fSGreg Roach            return $record;
100886b77daSGreg Roach        };
101886b77daSGreg Roach    }
102886b77daSGreg Roach
103886b77daSGreg Roach    /**
104886b77daSGreg Roach     * A closure which will filter out private records.
105886b77daSGreg Roach     *
106886b77daSGreg Roach     * @return Closure
107886b77daSGreg Roach     */
1084146fabcSGreg Roach    public static function accessFilter(): Closure
109886b77daSGreg Roach    {
1106c2179e2SGreg Roach        return static function (GedcomRecord $record): bool {
111886b77daSGreg Roach            return $record->canShow();
112886b77daSGreg Roach        };
113886b77daSGreg Roach    }
114886b77daSGreg Roach
115886b77daSGreg Roach    /**
116c156e8f5SGreg Roach     * A closure which will compare records by name.
117c156e8f5SGreg Roach     *
118c156e8f5SGreg Roach     * @return Closure
119c156e8f5SGreg Roach     */
120c156e8f5SGreg Roach    public static function nameComparator(): Closure
121c156e8f5SGreg Roach    {
1226c2179e2SGreg Roach        return static function (GedcomRecord $x, GedcomRecord $y): int {
123c156e8f5SGreg Roach            if ($x->canShowName()) {
124c156e8f5SGreg Roach                if ($y->canShowName()) {
12539ca88baSGreg Roach                    return I18N::strcasecmp($x->sortName(), $y->sortName());
126c156e8f5SGreg Roach                }
127c156e8f5SGreg Roach
128c156e8f5SGreg Roach                return -1; // only $y is private
129c156e8f5SGreg Roach            }
130c156e8f5SGreg Roach
131c156e8f5SGreg Roach            if ($y->canShowName()) {
132c156e8f5SGreg Roach                return 1; // only $x is private
133c156e8f5SGreg Roach            }
134c156e8f5SGreg Roach
135c156e8f5SGreg Roach            return 0; // both $x and $y private
136c156e8f5SGreg Roach        };
137c156e8f5SGreg Roach    }
138c156e8f5SGreg Roach
139c156e8f5SGreg Roach    /**
140c156e8f5SGreg Roach     * A closure which will compare records by change time.
141c156e8f5SGreg Roach     *
142c156e8f5SGreg Roach     * @param int $direction +1 to sort ascending, -1 to sort descending
143c156e8f5SGreg Roach     *
144c156e8f5SGreg Roach     * @return Closure
145c156e8f5SGreg Roach     */
146c156e8f5SGreg Roach    public static function lastChangeComparator(int $direction = 1): Closure
147c156e8f5SGreg Roach    {
1486c2179e2SGreg Roach        return static function (GedcomRecord $x, GedcomRecord $y) use ($direction): int {
1494459dc9aSGreg Roach            return $direction * ($x->lastChangeTimestamp() <=> $y->lastChangeTimestamp());
150c156e8f5SGreg Roach        };
151c156e8f5SGreg Roach    }
152c156e8f5SGreg Roach
153c156e8f5SGreg Roach    /**
154a25f0a04SGreg Roach     * Get an instance of a GedcomRecord object. For single records,
155a25f0a04SGreg Roach     * we just receive the XREF. For bulk records (such as lists
156a25f0a04SGreg Roach     * and search results) we can receive the GEDCOM data as well.
157a25f0a04SGreg Roach     *
158a25f0a04SGreg Roach     * @param string      $xref
15924ec66ceSGreg Roach     * @param Tree        $tree
160a25f0a04SGreg Roach     * @param string|null $gedcom
161a25f0a04SGreg Roach     *
162ffc0a61fSGreg Roach     * @return GedcomRecord|Individual|Family|Source|Repository|Media|Note|Submitter|null
16322e73debSGreg Roach     * @throws Exception
164a25f0a04SGreg Roach     */
16576f666f4SGreg Roach    public static function getInstance(string $xref, Tree $tree, string $gedcom = null)
166c1010edaSGreg Roach    {
16772cf66d4SGreg Roach        $tree_id = $tree->id();
16824ec66ceSGreg Roach
169e71ef9d2SGreg Roach        // Is this record already in the cache?
17024ec66ceSGreg Roach        if (isset(self::$gedcom_record_cache[$xref][$tree_id])) {
171e71ef9d2SGreg Roach            return self::$gedcom_record_cache[$xref][$tree_id];
172a25f0a04SGreg Roach        }
173a25f0a04SGreg Roach
174a25f0a04SGreg Roach        // Do we need to fetch the record from the database?
175a25f0a04SGreg Roach        if ($gedcom === null) {
17624ec66ceSGreg Roach            $gedcom = static::fetchGedcomRecord($xref, $tree_id);
177a25f0a04SGreg Roach        }
178a25f0a04SGreg Roach
179a25f0a04SGreg Roach        // If we can edit, then we also need to be able to see pending records.
18094075df0SGreg Roach        if (Auth::isEditor($tree)) {
18124ec66ceSGreg Roach            if (!isset(self::$pending_record_cache[$tree_id])) {
182a25f0a04SGreg Roach                // Fetch all pending records in one database query
18313abd6f3SGreg Roach                self::$pending_record_cache[$tree_id] = [];
18485fc8064SGreg Roach                $rows                                 = DB::table('change')
18585fc8064SGreg Roach                    ->where('gedcom_id', '=', $tree_id)
18685fc8064SGreg Roach                    ->where('status', '=', 'pending')
18785fc8064SGreg Roach                    ->orderBy('change_id')
18885fc8064SGreg Roach                    ->select(['xref', 'new_gedcom'])
18985fc8064SGreg Roach                    ->get();
190d17d7b9eSGreg Roach
191a25f0a04SGreg Roach                foreach ($rows as $row) {
19224ec66ceSGreg Roach                    self::$pending_record_cache[$tree_id][$row->xref] = $row->new_gedcom;
193a25f0a04SGreg Roach                }
194a25f0a04SGreg Roach            }
195a25f0a04SGreg Roach
196d17d7b9eSGreg Roach            $pending = self::$pending_record_cache[$tree_id][$xref] ?? null;
197a25f0a04SGreg Roach        } else {
198a25f0a04SGreg Roach            // There are no pending changes for this record
199a25f0a04SGreg Roach            $pending = null;
200a25f0a04SGreg Roach        }
201a25f0a04SGreg Roach
202a25f0a04SGreg Roach        // No such record exists
203a25f0a04SGreg Roach        if ($gedcom === null && $pending === null) {
204a25f0a04SGreg Roach            return null;
205a25f0a04SGreg Roach        }
206a25f0a04SGreg Roach
207fc3ccce4SGreg Roach        // No such record, but a pending creation exists
208fc3ccce4SGreg Roach        if ($gedcom === null) {
209fc3ccce4SGreg Roach            $gedcom = '';
210fc3ccce4SGreg Roach        }
211fc3ccce4SGreg Roach
212a25f0a04SGreg Roach        // Create the object
2138d0ebef0SGreg Roach        if (preg_match('/^0 @(' . Gedcom::REGEX_XREF . ')@ (' . Gedcom::REGEX_TAG . ')/', $gedcom . $pending, $match)) {
214a25f0a04SGreg Roach            $xref = $match[1]; // Collation - we may have requested I123 and found i123
215a25f0a04SGreg Roach            $type = $match[2];
216a25f0a04SGreg Roach        } elseif (preg_match('/^0 (HEAD|TRLR)/', $gedcom . $pending, $match)) {
217a25f0a04SGreg Roach            $xref = $match[1];
218a25f0a04SGreg Roach            $type = $match[1];
219a25f0a04SGreg Roach        } elseif ($gedcom . $pending) {
2207e96c925SGreg Roach            throw new Exception('Unrecognized GEDCOM record: ' . $gedcom);
221a25f0a04SGreg Roach        } else {
222a25f0a04SGreg Roach            // A record with both pending creation and pending deletion
223a25f0a04SGreg Roach            $type = static::RECORD_TYPE;
224a25f0a04SGreg Roach        }
225a25f0a04SGreg Roach
226a25f0a04SGreg Roach        switch ($type) {
227ac107fcfSGreg Roach            case Individual::RECORD_TYPE:
22824ec66ceSGreg Roach                $record = new Individual($xref, $gedcom, $pending, $tree);
229a25f0a04SGreg Roach                break;
230ac107fcfSGreg Roach
231ac107fcfSGreg Roach            case Family::RECORD_TYPE:
23224ec66ceSGreg Roach                $record = new Family($xref, $gedcom, $pending, $tree);
233a25f0a04SGreg Roach                break;
234ac107fcfSGreg Roach
235ac107fcfSGreg Roach            case Source::RECORD_TYPE:
23624ec66ceSGreg Roach                $record = new Source($xref, $gedcom, $pending, $tree);
237a25f0a04SGreg Roach                break;
238ac107fcfSGreg Roach
239ac107fcfSGreg Roach            case Media::RECORD_TYPE:
24024ec66ceSGreg Roach                $record = new Media($xref, $gedcom, $pending, $tree);
241a25f0a04SGreg Roach                break;
242ac107fcfSGreg Roach
243ac107fcfSGreg Roach            case Repository::RECORD_TYPE:
24424ec66ceSGreg Roach                $record = new Repository($xref, $gedcom, $pending, $tree);
245a25f0a04SGreg Roach                break;
246ac107fcfSGreg Roach
247ac107fcfSGreg Roach            case Note::RECORD_TYPE:
24824ec66ceSGreg Roach                $record = new Note($xref, $gedcom, $pending, $tree);
249a25f0a04SGreg Roach                break;
250ac107fcfSGreg Roach
251ac107fcfSGreg Roach            case Submitter::RECORD_TYPE:
252ffc0a61fSGreg Roach                $record = new Submitter($xref, $gedcom, $pending, $tree);
253ffc0a61fSGreg Roach                break;
254ac107fcfSGreg Roach
255a25f0a04SGreg Roach            default:
25606ef8e02SGreg Roach                $record = new self($xref, $gedcom, $pending, $tree);
257a25f0a04SGreg Roach                break;
258a25f0a04SGreg Roach        }
259a25f0a04SGreg Roach
260a25f0a04SGreg Roach        // Store it in the cache
26124ec66ceSGreg Roach        self::$gedcom_record_cache[$xref][$tree_id] = $record;
262a25f0a04SGreg Roach
263a25f0a04SGreg Roach        return $record;
264a25f0a04SGreg Roach    }
265a25f0a04SGreg Roach
266a25f0a04SGreg Roach    /**
267a25f0a04SGreg Roach     * Fetch data from the database
268a25f0a04SGreg Roach     *
269a25f0a04SGreg Roach     * @param string $xref
270cbc1590aSGreg Roach     * @param int    $tree_id
271a25f0a04SGreg Roach     *
272e364afe4SGreg Roach     * @return string|null
273a25f0a04SGreg Roach     */
274e364afe4SGreg Roach    protected static function fetchGedcomRecord(string $xref, int $tree_id): ?string
275c1010edaSGreg Roach    {
276a25f0a04SGreg Roach        // We don't know what type of object this is. Try each one in turn.
27764d9078aSGreg Roach        $data = Individual::fetchGedcomRecord($xref, $tree_id);
27885fc8064SGreg Roach        if ($data !== null) {
279a25f0a04SGreg Roach            return $data;
280a25f0a04SGreg Roach        }
28164d9078aSGreg Roach        $data = Family::fetchGedcomRecord($xref, $tree_id);
28285fc8064SGreg Roach        if ($data !== null) {
283a25f0a04SGreg Roach            return $data;
284a25f0a04SGreg Roach        }
28564d9078aSGreg Roach        $data = Source::fetchGedcomRecord($xref, $tree_id);
28685fc8064SGreg Roach        if ($data !== null) {
287a25f0a04SGreg Roach            return $data;
288a25f0a04SGreg Roach        }
28964d9078aSGreg Roach        $data = Repository::fetchGedcomRecord($xref, $tree_id);
29085fc8064SGreg Roach        if ($data !== null) {
291a25f0a04SGreg Roach            return $data;
292a25f0a04SGreg Roach        }
29364d9078aSGreg Roach        $data = Media::fetchGedcomRecord($xref, $tree_id);
29485fc8064SGreg Roach        if ($data !== null) {
295a25f0a04SGreg Roach            return $data;
296a25f0a04SGreg Roach        }
29764d9078aSGreg Roach        $data = Note::fetchGedcomRecord($xref, $tree_id);
29885fc8064SGreg Roach        if ($data !== null) {
299a25f0a04SGreg Roach            return $data;
300a25f0a04SGreg Roach        }
301ffc0a61fSGreg Roach        $data = Submitter::fetchGedcomRecord($xref, $tree_id);
302ffc0a61fSGreg Roach        if ($data !== null) {
303ffc0a61fSGreg Roach            return $data;
304ffc0a61fSGreg Roach        }
305c1010edaSGreg Roach
306a25f0a04SGreg Roach        // Some other type of record...
307d09b6323SGreg Roach        return DB::table('other')
30885fc8064SGreg Roach            ->where('o_file', '=', $tree_id)
30985fc8064SGreg Roach            ->where('o_id', '=', $xref)
31085fc8064SGreg Roach            ->value('o_gedcom');
311a25f0a04SGreg Roach    }
312a25f0a04SGreg Roach
313a25f0a04SGreg Roach    /**
314a25f0a04SGreg Roach     * Get the XREF for this record
315a25f0a04SGreg Roach     *
316a25f0a04SGreg Roach     * @return string
317a25f0a04SGreg Roach     */
318c0935879SGreg Roach    public function xref(): string
319c1010edaSGreg Roach    {
320a25f0a04SGreg Roach        return $this->xref;
321a25f0a04SGreg Roach    }
322a25f0a04SGreg Roach
323a25f0a04SGreg Roach    /**
324000959d9SGreg Roach     * Get the tree to which this record belongs
325000959d9SGreg Roach     *
326000959d9SGreg Roach     * @return Tree
327000959d9SGreg Roach     */
328f4afa648SGreg Roach    public function tree(): Tree
329c1010edaSGreg Roach    {
330518bbdc1SGreg Roach        return $this->tree;
331000959d9SGreg Roach    }
332000959d9SGreg Roach
333000959d9SGreg Roach    /**
334a25f0a04SGreg Roach     * Application code should access data via Fact objects.
335a25f0a04SGreg Roach     * This function exists to support old code.
336a25f0a04SGreg Roach     *
337a25f0a04SGreg Roach     * @return string
338a25f0a04SGreg Roach     */
339e364afe4SGreg Roach    public function gedcom(): string
340c1010edaSGreg Roach    {
341b2ce94c6SRico Sonntag        return $this->pending ?? $this->gedcom;
342a25f0a04SGreg Roach    }
343a25f0a04SGreg Roach
344a25f0a04SGreg Roach    /**
345a25f0a04SGreg Roach     * Does this record have a pending change?
346a25f0a04SGreg Roach     *
347cbc1590aSGreg Roach     * @return bool
348a25f0a04SGreg Roach     */
3498f53f488SRico Sonntag    public function isPendingAddition(): bool
350c1010edaSGreg Roach    {
351a25f0a04SGreg Roach        return $this->pending !== null;
352a25f0a04SGreg Roach    }
353a25f0a04SGreg Roach
354a25f0a04SGreg Roach    /**
355a25f0a04SGreg Roach     * Does this record have a pending deletion?
356a25f0a04SGreg Roach     *
357cbc1590aSGreg Roach     * @return bool
358a25f0a04SGreg Roach     */
3598f53f488SRico Sonntag    public function isPendingDeletion(): bool
360c1010edaSGreg Roach    {
361a25f0a04SGreg Roach        return $this->pending === '';
362a25f0a04SGreg Roach    }
363a25f0a04SGreg Roach
364a25f0a04SGreg Roach    /**
365ee4364daSGreg Roach     * Generate a "slug" to use in pretty URLs.
366ee4364daSGreg Roach     *
367ee4364daSGreg Roach     * @return string
368ee4364daSGreg Roach     */
369ee4364daSGreg Roach    public function slug(): string
370ee4364daSGreg Roach    {
371*5ab92b3fSGreg Roach        $transliterator = Transliterator::create('Any-Latin;Latin-ASCII');
37205b6dd19SGreg Roach
373*5ab92b3fSGreg Roach        $slug = strip_tags($this->fullName());
374*5ab92b3fSGreg Roach        $slug = $transliterator->transliterate($slug);
375*5ab92b3fSGreg Roach        $slug = preg_replace('/[^A-Za-z0-9]+/', '-', $slug);
376*5ab92b3fSGreg Roach
377*5ab92b3fSGreg Roach        return trim($slug, '-') ?: '-';
378ee4364daSGreg Roach    }
379ee4364daSGreg Roach
380ee4364daSGreg Roach    /**
381225e381fSGreg Roach     * Generate a URL to this record.
382a25f0a04SGreg Roach     *
383a25f0a04SGreg Roach     * @return string
384a25f0a04SGreg Roach     */
3858f53f488SRico Sonntag    public function url(): string
386c1010edaSGreg Roach    {
387225e381fSGreg Roach        return route(static::ROUTE_NAME, [
388c0935879SGreg Roach            'xref' => $this->xref(),
389ee4364daSGreg Roach            'tree' => $this->tree->name(),
390ee4364daSGreg Roach            'slug' => $this->slug(),
391225e381fSGreg Roach        ]);
392a25f0a04SGreg Roach    }
393a25f0a04SGreg Roach
394a25f0a04SGreg Roach    /**
395a25f0a04SGreg Roach     * Can the details of this record be shown?
396a25f0a04SGreg Roach     *
397cbc1590aSGreg Roach     * @param int|null $access_level
398a25f0a04SGreg Roach     *
399cbc1590aSGreg Roach     * @return bool
400a25f0a04SGreg Roach     */
40135584196SGreg Roach    public function canShow(int $access_level = null): bool
402c1010edaSGreg Roach    {
403f0b9c048SGreg Roach        $access_level = $access_level ?? Auth::accessLevel($this->tree);
4044b9ff166SGreg Roach
405a25f0a04SGreg Roach        // We use this value to bypass privacy checks. For example,
406a25f0a04SGreg Roach        // when downloading data or when calculating privacy itself.
407f0b9c048SGreg Roach        if ($access_level === Auth::PRIV_HIDE) {
408a25f0a04SGreg Roach            return true;
409a25f0a04SGreg Roach        }
410f0b9c048SGreg Roach
4117476e8a5SGreg Roach        $cache_key = 'show-' . $this->xref . '-' . $this->tree->id() . '-' . $access_level;
412f0b9c048SGreg Roach
413c692965aSGreg Roach        return app('cache.array')->remember($cache_key, function () use ($access_level) {
414f0b9c048SGreg Roach            return $this->canShowRecord($access_level);
415f0b9c048SGreg Roach        });
416a25f0a04SGreg Roach    }
417a25f0a04SGreg Roach
418a25f0a04SGreg Roach    /**
419a25f0a04SGreg Roach     * Can the name of this record be shown?
420a25f0a04SGreg Roach     *
421cbc1590aSGreg Roach     * @param int|null $access_level
422a25f0a04SGreg Roach     *
423cbc1590aSGreg Roach     * @return bool
424a25f0a04SGreg Roach     */
42576f666f4SGreg Roach    public function canShowName(int $access_level = null): bool
426c1010edaSGreg Roach    {
427a25f0a04SGreg Roach        return $this->canShow($access_level);
428a25f0a04SGreg Roach    }
429a25f0a04SGreg Roach
430a25f0a04SGreg Roach    /**
431a25f0a04SGreg Roach     * Can we edit this record?
432a25f0a04SGreg Roach     *
433cbc1590aSGreg Roach     * @return bool
434a25f0a04SGreg Roach     */
4358f53f488SRico Sonntag    public function canEdit(): bool
436c1010edaSGreg Roach    {
4371450f098SGreg Roach        if ($this->isPendingDeletion()) {
4381450f098SGreg Roach            return false;
4391450f098SGreg Roach        }
4401450f098SGreg Roach
4411450f098SGreg Roach        if (Auth::isManager($this->tree)) {
4421450f098SGreg Roach            return true;
4431450f098SGreg Roach        }
4441450f098SGreg Roach
4451450f098SGreg Roach        return Auth::isEditor($this->tree) && strpos($this->gedcom, "\n1 RESN locked") === false;
446a25f0a04SGreg Roach    }
447a25f0a04SGreg Roach
448a25f0a04SGreg Roach    /**
449a25f0a04SGreg Roach     * Remove private data from the raw gedcom record.
450a25f0a04SGreg Roach     * Return both the visible and invisible data. We need the invisible data when editing.
451a25f0a04SGreg Roach     *
452cbc1590aSGreg Roach     * @param int $access_level
453a25f0a04SGreg Roach     *
454a25f0a04SGreg Roach     * @return string
455a25f0a04SGreg Roach     */
456e364afe4SGreg Roach    public function privatizeGedcom(int $access_level): string
457c1010edaSGreg Roach    {
458e364afe4SGreg Roach        if ($access_level === Auth::PRIV_HIDE) {
459a25f0a04SGreg Roach            // We may need the original record, for example when downloading a GEDCOM or clippings cart
460a25f0a04SGreg Roach            return $this->gedcom;
461b2ce94c6SRico Sonntag        }
462b2ce94c6SRico Sonntag
463b2ce94c6SRico Sonntag        if ($this->canShow($access_level)) {
464a25f0a04SGreg Roach            // The record is not private, but the individual facts may be.
465a25f0a04SGreg Roach
466a25f0a04SGreg Roach            // Include the entire first line (for NOTE records)
46765e02381SGreg Roach            [$gedrec] = explode("\n", $this->gedcom, 2);
468a25f0a04SGreg Roach
469a25f0a04SGreg Roach            // Check each of the facts for access
4708d0ebef0SGreg Roach            foreach ($this->facts([], false, $access_level) as $fact) {
471138ca96cSGreg Roach                $gedrec .= "\n" . $fact->gedcom();
472a25f0a04SGreg Roach            }
473cbc1590aSGreg Roach
474a25f0a04SGreg Roach            return $gedrec;
475b2ce94c6SRico Sonntag        }
476b2ce94c6SRico Sonntag
477a25f0a04SGreg Roach        // We cannot display the details, but we may be able to display
478a25f0a04SGreg Roach        // limited data, such as links to other records.
479a25f0a04SGreg Roach        return $this->createPrivateGedcomRecord($access_level);
480a25f0a04SGreg Roach    }
481a25f0a04SGreg Roach
482a25f0a04SGreg Roach    /**
483a25f0a04SGreg Roach     * Default for "other" object types
484c7ff4153SGreg Roach     *
485c7ff4153SGreg Roach     * @return void
486a25f0a04SGreg Roach     */
487e364afe4SGreg Roach    public function extractNames(): void
488c1010edaSGreg Roach    {
48976f666f4SGreg Roach        $this->addName(static::RECORD_TYPE, $this->getFallBackName(), '');
490a25f0a04SGreg Roach    }
491a25f0a04SGreg Roach
492a25f0a04SGreg Roach    /**
493a25f0a04SGreg Roach     * Derived classes should redefine this function, otherwise the object will have no name
494a25f0a04SGreg Roach     *
495a25f0a04SGreg Roach     * @return string[][]
496a25f0a04SGreg Roach     */
4978f53f488SRico Sonntag    public function getAllNames(): array
498c1010edaSGreg Roach    {
499bdb3725aSGreg Roach        if ($this->getAllNames === null) {
500bdb3725aSGreg Roach            $this->getAllNames = [];
501a25f0a04SGreg Roach            if ($this->canShowName()) {
502a25f0a04SGreg Roach                // Ask the record to extract its names
503a25f0a04SGreg Roach                $this->extractNames();
504a25f0a04SGreg Roach                // No name found? Use a fallback.
505bdb3725aSGreg Roach                if (!$this->getAllNames) {
506db7bb364SGreg Roach                    $this->addName(static::RECORD_TYPE, $this->getFallBackName(), '');
507a25f0a04SGreg Roach                }
508a25f0a04SGreg Roach            } else {
509db7bb364SGreg Roach                $this->addName(static::RECORD_TYPE, I18N::translate('Private'), '');
510a25f0a04SGreg Roach            }
511a25f0a04SGreg Roach        }
512cbc1590aSGreg Roach
513bdb3725aSGreg Roach        return $this->getAllNames;
514a25f0a04SGreg Roach    }
515a25f0a04SGreg Roach
516a25f0a04SGreg Roach    /**
517a25f0a04SGreg Roach     * If this object has no name, what do we call it?
518a25f0a04SGreg Roach     *
519a25f0a04SGreg Roach     * @return string
520a25f0a04SGreg Roach     */
5218f53f488SRico Sonntag    public function getFallBackName(): string
522c1010edaSGreg Roach    {
523c0935879SGreg Roach        return e($this->xref());
524a25f0a04SGreg Roach    }
525a25f0a04SGreg Roach
526a25f0a04SGreg Roach    /**
527a25f0a04SGreg Roach     * Which of the (possibly several) names of this record is the primary one.
528a25f0a04SGreg Roach     *
529cbc1590aSGreg Roach     * @return int
530a25f0a04SGreg Roach     */
5318f53f488SRico Sonntag    public function getPrimaryName(): int
532c1010edaSGreg Roach    {
533a25f0a04SGreg Roach        static $language_script;
534a25f0a04SGreg Roach
535a25f0a04SGreg Roach        if ($language_script === null) {
53665cf5706SGreg Roach            $language_script = $language_script ?? I18N::locale()->script()->code();
537a25f0a04SGreg Roach        }
538a25f0a04SGreg Roach
539bdb3725aSGreg Roach        if ($this->getPrimaryName === null) {
540a25f0a04SGreg Roach            // Generally, the first name is the primary one....
541bdb3725aSGreg Roach            $this->getPrimaryName = 0;
542a25f0a04SGreg Roach            // ...except when the language/name use different character sets
543a25f0a04SGreg Roach            foreach ($this->getAllNames() as $n => $name) {
54469546be1SGreg Roach                if (I18N::textScript($name['sort']) === $language_script) {
545bdb3725aSGreg Roach                    $this->getPrimaryName = $n;
546a25f0a04SGreg Roach                    break;
547a25f0a04SGreg Roach                }
548a25f0a04SGreg Roach            }
549a25f0a04SGreg Roach        }
550a25f0a04SGreg Roach
551bdb3725aSGreg Roach        return $this->getPrimaryName;
552a25f0a04SGreg Roach    }
553a25f0a04SGreg Roach
554a25f0a04SGreg Roach    /**
555a25f0a04SGreg Roach     * Which of the (possibly several) names of this record is the secondary one.
556a25f0a04SGreg Roach     *
557cbc1590aSGreg Roach     * @return int
558a25f0a04SGreg Roach     */
5598f53f488SRico Sonntag    public function getSecondaryName(): int
560c1010edaSGreg Roach    {
5618f038c36SRico Sonntag        if ($this->getSecondaryName === null) {
562a25f0a04SGreg Roach            // Generally, the primary and secondary names are the same
563bdb3725aSGreg Roach            $this->getSecondaryName = $this->getPrimaryName();
564a25f0a04SGreg Roach            // ....except when there are names with different character sets
565a25f0a04SGreg Roach            $all_names = $this->getAllNames();
566a25f0a04SGreg Roach            if (count($all_names) > 1) {
567a25f0a04SGreg Roach                $primary_script = I18N::textScript($all_names[$this->getPrimaryName()]['sort']);
568a25f0a04SGreg Roach                foreach ($all_names as $n => $name) {
569e364afe4SGreg Roach                    if ($n !== $this->getPrimaryName() && $name['type'] !== '_MARNM' && I18N::textScript($name['sort']) !== $primary_script) {
570bdb3725aSGreg Roach                        $this->getSecondaryName = $n;
571a25f0a04SGreg Roach                        break;
572a25f0a04SGreg Roach                    }
573a25f0a04SGreg Roach                }
574a25f0a04SGreg Roach            }
575a25f0a04SGreg Roach        }
576cbc1590aSGreg Roach
577bdb3725aSGreg Roach        return $this->getSecondaryName;
578a25f0a04SGreg Roach    }
579a25f0a04SGreg Roach
580a25f0a04SGreg Roach    /**
581a25f0a04SGreg Roach     * Allow the choice of primary name to be overidden, e.g. in a search result
582a25f0a04SGreg Roach     *
58376f666f4SGreg Roach     * @param int|null $n
5847e96c925SGreg Roach     *
5857e96c925SGreg Roach     * @return void
586a25f0a04SGreg Roach     */
587e364afe4SGreg Roach    public function setPrimaryName(int $n = null): void
588c1010edaSGreg Roach    {
589bdb3725aSGreg Roach        $this->getPrimaryName   = $n;
590bdb3725aSGreg Roach        $this->getSecondaryName = null;
591a25f0a04SGreg Roach    }
592a25f0a04SGreg Roach
593a25f0a04SGreg Roach    /**
594a25f0a04SGreg Roach     * Allow native PHP functions such as array_unique() to work with objects
595a25f0a04SGreg Roach     *
596a25f0a04SGreg Roach     * @return string
597a25f0a04SGreg Roach     */
598c1010edaSGreg Roach    public function __toString()
599c1010edaSGreg Roach    {
60072cf66d4SGreg Roach        return $this->xref . '@' . $this->tree->id();
601a25f0a04SGreg Roach    }
602a25f0a04SGreg Roach
603a25f0a04SGreg Roach    /**
604c156e8f5SGreg Roach     * /**
605a25f0a04SGreg Roach     * Get variants of the name
606a25f0a04SGreg Roach     *
607a25f0a04SGreg Roach     * @return string
608a25f0a04SGreg Roach     */
609e364afe4SGreg Roach    public function fullName(): string
610c1010edaSGreg Roach    {
611a25f0a04SGreg Roach        if ($this->canShowName()) {
612a25f0a04SGreg Roach            $tmp = $this->getAllNames();
613cbc1590aSGreg Roach
614a25f0a04SGreg Roach            return $tmp[$this->getPrimaryName()]['full'];
615a25f0a04SGreg Roach        }
616b2ce94c6SRico Sonntag
617b2ce94c6SRico Sonntag        return I18N::translate('Private');
618a25f0a04SGreg Roach    }
619a25f0a04SGreg Roach
620a25f0a04SGreg Roach    /**
621a25f0a04SGreg Roach     * Get a sortable version of the name. Do not display this!
622a25f0a04SGreg Roach     *
623a25f0a04SGreg Roach     * @return string
624a25f0a04SGreg Roach     */
62539ca88baSGreg Roach    public function sortName(): string
626c1010edaSGreg Roach    {
627a25f0a04SGreg Roach        // The sortable name is never displayed, no need to call canShowName()
628a25f0a04SGreg Roach        $tmp = $this->getAllNames();
629cbc1590aSGreg Roach
630a25f0a04SGreg Roach        return $tmp[$this->getPrimaryName()]['sort'];
631a25f0a04SGreg Roach    }
632a25f0a04SGreg Roach
633a25f0a04SGreg Roach    /**
634a25f0a04SGreg Roach     * Get the full name in an alternative character set
635a25f0a04SGreg Roach     *
636e364afe4SGreg Roach     * @return string|null
637a25f0a04SGreg Roach     */
638e364afe4SGreg Roach    public function alternateName(): ?string
639c1010edaSGreg Roach    {
640e364afe4SGreg Roach        if ($this->canShowName() && $this->getPrimaryName() !== $this->getSecondaryName()) {
641a25f0a04SGreg Roach            $all_names = $this->getAllNames();
642cbc1590aSGreg Roach
643a25f0a04SGreg Roach            return $all_names[$this->getSecondaryName()]['full'];
644a25f0a04SGreg Roach        }
645b2ce94c6SRico Sonntag
646b2ce94c6SRico Sonntag        return null;
647a25f0a04SGreg Roach    }
648a25f0a04SGreg Roach
649a25f0a04SGreg Roach    /**
650a25f0a04SGreg Roach     * Format this object for display in a list
651a25f0a04SGreg Roach     *
652a25f0a04SGreg Roach     * @return string
653a25f0a04SGreg Roach     */
6548f53f488SRico Sonntag    public function formatList(): string
655c1010edaSGreg Roach    {
656b165e17cSGreg Roach        $html = '<a href="' . e($this->url()) . '" class="list_item">';
65739ca88baSGreg Roach        $html .= '<b>' . $this->fullName() . '</b>';
658a25f0a04SGreg Roach        $html .= $this->formatListDetails();
659b165e17cSGreg Roach        $html .= '</a>';
660cbc1590aSGreg Roach
661a25f0a04SGreg Roach        return $html;
662a25f0a04SGreg Roach    }
663a25f0a04SGreg Roach
664a25f0a04SGreg Roach    /**
665a25f0a04SGreg Roach     * This function should be redefined in derived classes to show any major
666a25f0a04SGreg Roach     * identifying characteristics of this record.
667a25f0a04SGreg Roach     *
668a25f0a04SGreg Roach     * @return string
669a25f0a04SGreg Roach     */
6708f53f488SRico Sonntag    public function formatListDetails(): string
671c1010edaSGreg Roach    {
672a25f0a04SGreg Roach        return '';
673a25f0a04SGreg Roach    }
674a25f0a04SGreg Roach
675a25f0a04SGreg Roach    /**
676a25f0a04SGreg Roach     * Extract/format the first fact from a list of facts.
677a25f0a04SGreg Roach     *
6788d0ebef0SGreg Roach     * @param string[] $facts
679cbc1590aSGreg Roach     * @param int      $style
680a25f0a04SGreg Roach     *
681a25f0a04SGreg Roach     * @return string
682a25f0a04SGreg Roach     */
6838d0ebef0SGreg Roach    public function formatFirstMajorFact(array $facts, int $style): string
684c1010edaSGreg Roach    {
68530158ae7SGreg Roach        foreach ($this->facts($facts, true) as $event) {
686a25f0a04SGreg Roach            // Only display if it has a date or place (or both)
687e364afe4SGreg Roach            if ($event->date()->isOK() && $event->place()->gedcomName() !== '') {
688d93f11b5SGreg Roach                $joiner = ' — ';
689d93f11b5SGreg Roach            } else {
690d93f11b5SGreg Roach                $joiner = '';
691d93f11b5SGreg Roach            }
692e364afe4SGreg Roach            if ($event->date()->isOK() || $event->place()->gedcomName() !== '') {
693a25f0a04SGreg Roach                switch ($style) {
694a25f0a04SGreg Roach                    case 1:
6957b7d8067SGreg Roach                        return '<br><em>' . $event->label() . ' ' . FunctionsPrint::formatFactDate($event, $this, false, false) . $joiner . FunctionsPrint::formatFactPlace($event) . '</em>';
696a25f0a04SGreg Roach                    case 2:
6977b7d8067SGreg Roach                        return '<dl><dt class="label">' . $event->label() . '</dt><dd class="field">' . FunctionsPrint::formatFactDate($event, $this, false, false) . $joiner . FunctionsPrint::formatFactPlace($event) . '</dd></dl>';
698a25f0a04SGreg Roach                }
699a25f0a04SGreg Roach            }
700a25f0a04SGreg Roach        }
701cbc1590aSGreg Roach
702a25f0a04SGreg Roach        return '';
703a25f0a04SGreg Roach    }
704a25f0a04SGreg Roach
705a25f0a04SGreg Roach    /**
706a25f0a04SGreg Roach     * Find individuals linked to this record.
707a25f0a04SGreg Roach     *
708a25f0a04SGreg Roach     * @param string $link
709a25f0a04SGreg Roach     *
710b5c8fd7eSGreg Roach     * @return Collection<Individual>
711a25f0a04SGreg Roach     */
712907c1109SGreg Roach    public function linkedIndividuals(string $link): Collection
713c1010edaSGreg Roach    {
714907c1109SGreg Roach        return DB::table('individuals')
7150b5fd0a6SGreg Roach            ->join('link', static function (JoinClause $join): void {
716907c1109SGreg Roach                $join
717907c1109SGreg Roach                    ->on('l_file', '=', 'i_file')
718907c1109SGreg Roach                    ->on('l_from', '=', 'i_id');
719ba1c12e8SGreg Roach            })
720ba1c12e8SGreg Roach            ->where('i_file', '=', $this->tree->id())
721ba1c12e8SGreg Roach            ->where('l_type', '=', $link)
722ba1c12e8SGreg Roach            ->where('l_to', '=', $this->xref)
723907c1109SGreg Roach            ->select(['individuals.*'])
724907c1109SGreg Roach            ->get()
725d5ad3db0SGreg Roach            ->map(Individual::rowMapper($this->tree))
726907c1109SGreg Roach            ->filter(self::accessFilter());
727a25f0a04SGreg Roach    }
728a25f0a04SGreg Roach
729a25f0a04SGreg Roach    /**
730a25f0a04SGreg Roach     * Find families linked to this record.
731a25f0a04SGreg Roach     *
732a25f0a04SGreg Roach     * @param string $link
733a25f0a04SGreg Roach     *
734b5c8fd7eSGreg Roach     * @return Collection<Family>
735a25f0a04SGreg Roach     */
736907c1109SGreg Roach    public function linkedFamilies(string $link): Collection
737c1010edaSGreg Roach    {
738907c1109SGreg Roach        return DB::table('families')
7390b5fd0a6SGreg Roach            ->join('link', static function (JoinClause $join): void {
740907c1109SGreg Roach                $join
741907c1109SGreg Roach                    ->on('l_file', '=', 'f_file')
742907c1109SGreg Roach                    ->on('l_from', '=', 'f_id');
743ba1c12e8SGreg Roach            })
744ba1c12e8SGreg Roach            ->where('f_file', '=', $this->tree->id())
745ba1c12e8SGreg Roach            ->where('l_type', '=', $link)
746ba1c12e8SGreg Roach            ->where('l_to', '=', $this->xref)
747907c1109SGreg Roach            ->select(['families.*'])
748907c1109SGreg Roach            ->get()
749d5ad3db0SGreg Roach            ->map(Family::rowMapper($this->tree))
750907c1109SGreg Roach            ->filter(self::accessFilter());
751a25f0a04SGreg Roach    }
752a25f0a04SGreg Roach
753a25f0a04SGreg Roach    /**
754a25f0a04SGreg Roach     * Find sources linked to this record.
755a25f0a04SGreg Roach     *
756a25f0a04SGreg Roach     * @param string $link
757a25f0a04SGreg Roach     *
758b5c8fd7eSGreg Roach     * @return Collection<Source>
759a25f0a04SGreg Roach     */
760907c1109SGreg Roach    public function linkedSources(string $link): Collection
761c1010edaSGreg Roach    {
762907c1109SGreg Roach        return DB::table('sources')
7630b5fd0a6SGreg Roach            ->join('link', static function (JoinClause $join): void {
764907c1109SGreg Roach                $join
765907c1109SGreg Roach                    ->on('l_file', '=', 's_file')
766907c1109SGreg Roach                    ->on('l_from', '=', 's_id');
767ba1c12e8SGreg Roach            })
768ba1c12e8SGreg Roach            ->where('s_file', '=', $this->tree->id())
769ba1c12e8SGreg Roach            ->where('l_type', '=', $link)
770ba1c12e8SGreg Roach            ->where('l_to', '=', $this->xref)
771907c1109SGreg Roach            ->select(['sources.*'])
772907c1109SGreg Roach            ->get()
773d5ad3db0SGreg Roach            ->map(Source::rowMapper($this->tree))
774907c1109SGreg Roach            ->filter(self::accessFilter());
775a25f0a04SGreg Roach    }
776a25f0a04SGreg Roach
777a25f0a04SGreg Roach    /**
778a25f0a04SGreg Roach     * Find media objects linked to this record.
779a25f0a04SGreg Roach     *
780a25f0a04SGreg Roach     * @param string $link
781a25f0a04SGreg Roach     *
782b5c8fd7eSGreg Roach     * @return Collection<Media>
783a25f0a04SGreg Roach     */
784907c1109SGreg Roach    public function linkedMedia(string $link): Collection
785c1010edaSGreg Roach    {
786907c1109SGreg Roach        return DB::table('media')
7870b5fd0a6SGreg Roach            ->join('link', static function (JoinClause $join): void {
788907c1109SGreg Roach                $join
789907c1109SGreg Roach                    ->on('l_file', '=', 'm_file')
790907c1109SGreg Roach                    ->on('l_from', '=', 'm_id');
791ba1c12e8SGreg Roach            })
792ba1c12e8SGreg Roach            ->where('m_file', '=', $this->tree->id())
793ba1c12e8SGreg Roach            ->where('l_type', '=', $link)
794ba1c12e8SGreg Roach            ->where('l_to', '=', $this->xref)
795907c1109SGreg Roach            ->select(['media.*'])
796907c1109SGreg Roach            ->get()
797d5ad3db0SGreg Roach            ->map(Media::rowMapper($this->tree))
798907c1109SGreg Roach            ->filter(self::accessFilter());
799a25f0a04SGreg Roach    }
800a25f0a04SGreg Roach
801a25f0a04SGreg Roach    /**
802a25f0a04SGreg Roach     * Find notes linked to this record.
803a25f0a04SGreg Roach     *
804a25f0a04SGreg Roach     * @param string $link
805a25f0a04SGreg Roach     *
806b5c8fd7eSGreg Roach     * @return Collection<Note>
807a25f0a04SGreg Roach     */
808907c1109SGreg Roach    public function linkedNotes(string $link): Collection
809c1010edaSGreg Roach    {
810907c1109SGreg Roach        return DB::table('other')
8110b5fd0a6SGreg Roach            ->join('link', static function (JoinClause $join): void {
812907c1109SGreg Roach                $join
813907c1109SGreg Roach                    ->on('l_file', '=', 'o_file')
814907c1109SGreg Roach                    ->on('l_from', '=', 'o_id');
815ba1c12e8SGreg Roach            })
816ba1c12e8SGreg Roach            ->where('o_file', '=', $this->tree->id())
817ba1c12e8SGreg Roach            ->where('o_type', '=', 'NOTE')
818ba1c12e8SGreg Roach            ->where('l_type', '=', $link)
819ba1c12e8SGreg Roach            ->where('l_to', '=', $this->xref)
820907c1109SGreg Roach            ->select(['other.*'])
821907c1109SGreg Roach            ->get()
822d5ad3db0SGreg Roach            ->map(Note::rowMapper($this->tree))
823907c1109SGreg Roach            ->filter(self::accessFilter());
824a25f0a04SGreg Roach    }
825a25f0a04SGreg Roach
826a25f0a04SGreg Roach    /**
827a25f0a04SGreg Roach     * Find repositories linked to this record.
828a25f0a04SGreg Roach     *
829a25f0a04SGreg Roach     * @param string $link
830a25f0a04SGreg Roach     *
831b5c8fd7eSGreg Roach     * @return Collection<Repository>
832a25f0a04SGreg Roach     */
833907c1109SGreg Roach    public function linkedRepositories(string $link): Collection
834c1010edaSGreg Roach    {
835907c1109SGreg Roach        return DB::table('other')
8360b5fd0a6SGreg Roach            ->join('link', static function (JoinClause $join): void {
837907c1109SGreg Roach                $join
838907c1109SGreg Roach                    ->on('l_file', '=', 'o_file')
839907c1109SGreg Roach                    ->on('l_from', '=', 'o_id');
840ba1c12e8SGreg Roach            })
841ba1c12e8SGreg Roach            ->where('o_file', '=', $this->tree->id())
842ba1c12e8SGreg Roach            ->where('o_type', '=', 'REPO')
843ba1c12e8SGreg Roach            ->where('l_type', '=', $link)
844ba1c12e8SGreg Roach            ->where('l_to', '=', $this->xref)
845907c1109SGreg Roach            ->select(['other.*'])
846907c1109SGreg Roach            ->get()
847d5ad3db0SGreg Roach            ->map(Repository::rowMapper($this->tree))
848907c1109SGreg Roach            ->filter(self::accessFilter());
849a25f0a04SGreg Roach    }
850a25f0a04SGreg Roach
851a25f0a04SGreg Roach    /**
852a25f0a04SGreg Roach     * Get all attributes (e.g. DATE or PLAC) from an event (e.g. BIRT or MARR).
853a25f0a04SGreg Roach     * This is used to display multiple events on the individual/family lists.
854a25f0a04SGreg Roach     * Multiple events can exist because of uncertainty in dates, dates in different
855a25f0a04SGreg Roach     * calendars, place-names in both latin and hebrew character sets, etc.
856a25f0a04SGreg Roach     * It also allows us to combine dates/places from different events in the summaries.
857a25f0a04SGreg Roach     *
8588d0ebef0SGreg Roach     * @param string[] $events
859a25f0a04SGreg Roach     *
860a25f0a04SGreg Roach     * @return Date[]
861a25f0a04SGreg Roach     */
8628d0ebef0SGreg Roach    public function getAllEventDates(array $events): array
863c1010edaSGreg Roach    {
86413abd6f3SGreg Roach        $dates = [];
8658d0ebef0SGreg Roach        foreach ($this->facts($events) as $event) {
8662decada7SGreg Roach            if ($event->date()->isOK()) {
8672decada7SGreg Roach                $dates[] = $event->date();
868a25f0a04SGreg Roach            }
869a25f0a04SGreg Roach        }
870a25f0a04SGreg Roach
871a25f0a04SGreg Roach        return $dates;
872a25f0a04SGreg Roach    }
873a25f0a04SGreg Roach
874a25f0a04SGreg Roach    /**
875a25f0a04SGreg Roach     * Get all the places for a particular type of event
876a25f0a04SGreg Roach     *
8778d0ebef0SGreg Roach     * @param string[] $events
878a25f0a04SGreg Roach     *
8794080d558SGreg Roach     * @return Place[]
880a25f0a04SGreg Roach     */
8818d0ebef0SGreg Roach    public function getAllEventPlaces(array $events): array
882c1010edaSGreg Roach    {
88313abd6f3SGreg Roach        $places = [];
8848d0ebef0SGreg Roach        foreach ($this->facts($events) as $event) {
885138ca96cSGreg Roach            if (preg_match_all('/\n(?:2 PLAC|3 (?:ROMN|FONE|_HEB)) +(.+)/', $event->gedcom(), $ged_places)) {
886a25f0a04SGreg Roach                foreach ($ged_places[1] as $ged_place) {
88716d0b7f7SRico Sonntag                    $places[] = new Place($ged_place, $this->tree);
888a25f0a04SGreg Roach                }
889a25f0a04SGreg Roach            }
890a25f0a04SGreg Roach        }
891a25f0a04SGreg Roach
892a25f0a04SGreg Roach        return $places;
893a25f0a04SGreg Roach    }
894a25f0a04SGreg Roach
895a25f0a04SGreg Roach    /**
896a25f0a04SGreg Roach     * The facts and events for this record.
897a25f0a04SGreg Roach     *
8988d0ebef0SGreg Roach     * @param string[] $filter
899cbc1590aSGreg Roach     * @param bool     $sort
900cbc1590aSGreg Roach     * @param int|null $access_level
901ce42304aSGreg Roach     * @param bool     $ignore_deleted
902a25f0a04SGreg Roach     *
903b5c8fd7eSGreg Roach     * @return Collection<Fact>
904a25f0a04SGreg Roach     */
905ce42304aSGreg Roach    public function facts(
906ce42304aSGreg Roach        array $filter = [],
907ce42304aSGreg Roach        bool $sort = false,
908ce42304aSGreg Roach        int $access_level = null,
909ce42304aSGreg Roach        bool $ignore_deleted = false
910ce42304aSGreg Roach    ): Collection {
911d9e083e7SGreg Roach        $access_level = $access_level ?? Auth::accessLevel($this->tree);
9124b9ff166SGreg Roach
9138af3e5c1SGreg Roach        $facts = new Collection();
914ce42304aSGreg Roach        if ($this->canShow($access_level)) {
915a25f0a04SGreg Roach            foreach ($this->facts as $fact) {
91622d65e5aSGreg Roach                if (($filter === [] || in_array($fact->getTag(), $filter, true)) && $fact->canShow($access_level)) {
9178af3e5c1SGreg Roach                    $facts->push($fact);
918a25f0a04SGreg Roach                }
919a25f0a04SGreg Roach            }
920a25f0a04SGreg Roach        }
921d17d7b9eSGreg Roach
922a25f0a04SGreg Roach        if ($sort) {
923580a4d11SGreg Roach            $facts = Fact::sortFacts($facts);
924a25f0a04SGreg Roach        }
925cbc1590aSGreg Roach
926ce42304aSGreg Roach        if ($ignore_deleted) {
927ce42304aSGreg Roach            $facts = $facts->filter(static function (Fact $fact): bool {
928ce42304aSGreg Roach                return !$fact->isPendingDeletion();
929ce42304aSGreg Roach            });
930ce42304aSGreg Roach        }
931ce42304aSGreg Roach
93239ca88baSGreg Roach        return new Collection($facts);
933a25f0a04SGreg Roach    }
934a25f0a04SGreg Roach
935a25f0a04SGreg Roach    /**
9364459dc9aSGreg Roach     * Get the last-change timestamp for this record
937a25f0a04SGreg Roach     *
9384459dc9aSGreg Roach     * @return Carbon
939a25f0a04SGreg Roach     */
9404459dc9aSGreg Roach    public function lastChangeTimestamp(): Carbon
941c1010edaSGreg Roach    {
9424459dc9aSGreg Roach        /** @var Fact|null $chan */
943820b62dfSGreg Roach        $chan = $this->facts(['CHAN'])->first();
944a25f0a04SGreg Roach
9454459dc9aSGreg Roach        if ($chan instanceof Fact) {
946a25f0a04SGreg Roach            // The record does have a CHAN event
9472decada7SGreg Roach            $d = $chan->date()->minimumDate();
9484459dc9aSGreg Roach
949138ca96cSGreg Roach            if (preg_match('/\n3 TIME (\d\d):(\d\d):(\d\d)/', $chan->gedcom(), $match)) {
9504459dc9aSGreg Roach                return Carbon::create($d->year(), $d->month(), $d->day(), (int) $match[1], (int) $match[2], (int) $match[3]);
951e364afe4SGreg Roach            }
952e364afe4SGreg Roach
953e364afe4SGreg Roach            if (preg_match('/\n3 TIME (\d\d):(\d\d)/', $chan->gedcom(), $match)) {
9544459dc9aSGreg Roach                return Carbon::create($d->year(), $d->month(), $d->day(), (int) $match[1], (int) $match[2]);
955b2ce94c6SRico Sonntag            }
956b2ce94c6SRico Sonntag
9574459dc9aSGreg Roach            return Carbon::create($d->year(), $d->month(), $d->day());
958a25f0a04SGreg Roach        }
959b2ce94c6SRico Sonntag
960a25f0a04SGreg Roach        // The record does not have a CHAN event
9614459dc9aSGreg Roach        return Carbon::createFromTimestamp(0);
962a25f0a04SGreg Roach    }
963a25f0a04SGreg Roach
964a25f0a04SGreg Roach    /**
965a25f0a04SGreg Roach     * Get the last-change user for this record
966a25f0a04SGreg Roach     *
967a25f0a04SGreg Roach     * @return string
968a25f0a04SGreg Roach     */
969e364afe4SGreg Roach    public function lastChangeUser(): string
970c1010edaSGreg Roach    {
971820b62dfSGreg Roach        $chan = $this->facts(['CHAN'])->first();
972a25f0a04SGreg Roach
973a25f0a04SGreg Roach        if ($chan === null) {
974a25f0a04SGreg Roach            return I18N::translate('Unknown');
975b2ce94c6SRico Sonntag        }
976b2ce94c6SRico Sonntag
9773425616eSGreg Roach        $chan_user = $chan->attribute('_WT_USER');
978baacc364SGreg Roach        if ($chan_user === '') {
979a25f0a04SGreg Roach            return I18N::translate('Unknown');
980b2ce94c6SRico Sonntag        }
981b2ce94c6SRico Sonntag
982a25f0a04SGreg Roach        return $chan_user;
983a25f0a04SGreg Roach    }
984a25f0a04SGreg Roach
985a25f0a04SGreg Roach    /**
986a25f0a04SGreg Roach     * Add a new fact to this record
987a25f0a04SGreg Roach     *
988a25f0a04SGreg Roach     * @param string $gedcom
989cbc1590aSGreg Roach     * @param bool   $update_chan
9907e96c925SGreg Roach     *
9917e96c925SGreg Roach     * @return void
992a25f0a04SGreg Roach     */
993e364afe4SGreg Roach    public function createFact(string $gedcom, bool $update_chan): void
994c1010edaSGreg Roach    {
995fc3ccce4SGreg Roach        $this->updateFact('', $gedcom, $update_chan);
996a25f0a04SGreg Roach    }
997a25f0a04SGreg Roach
998a25f0a04SGreg Roach    /**
999a25f0a04SGreg Roach     * Delete a fact from this record
1000a25f0a04SGreg Roach     *
1001a25f0a04SGreg Roach     * @param string $fact_id
1002cbc1590aSGreg Roach     * @param bool   $update_chan
10037e96c925SGreg Roach     *
10047e96c925SGreg Roach     * @return void
1005a25f0a04SGreg Roach     */
1006e364afe4SGreg Roach    public function deleteFact(string $fact_id, bool $update_chan): void
1007c1010edaSGreg Roach    {
1008db7bb364SGreg Roach        $this->updateFact($fact_id, '', $update_chan);
1009a25f0a04SGreg Roach    }
1010a25f0a04SGreg Roach
1011a25f0a04SGreg Roach    /**
1012a25f0a04SGreg Roach     * Replace a fact with a new gedcom data.
1013a25f0a04SGreg Roach     *
1014a25f0a04SGreg Roach     * @param string $fact_id
1015a25f0a04SGreg Roach     * @param string $gedcom
1016cbc1590aSGreg Roach     * @param bool   $update_chan
1017a25f0a04SGreg Roach     *
10187e96c925SGreg Roach     * @return void
10197e96c925SGreg Roach     * @throws Exception
1020a25f0a04SGreg Roach     */
1021e364afe4SGreg Roach    public function updateFact(string $fact_id, string $gedcom, bool $update_chan): void
1022c1010edaSGreg Roach    {
1023a25f0a04SGreg Roach        // MSDOS line endings will break things in horrible ways
1024a25f0a04SGreg Roach        $gedcom = preg_replace('/[\r\n]+/', "\n", $gedcom);
1025a25f0a04SGreg Roach        $gedcom = trim($gedcom);
1026a25f0a04SGreg Roach
1027a25f0a04SGreg Roach        if ($this->pending === '') {
10287e96c925SGreg Roach            throw new Exception('Cannot edit a deleted record');
1029a25f0a04SGreg Roach        }
10308d0ebef0SGreg Roach        if ($gedcom !== '' && !preg_match('/^1 ' . Gedcom::REGEX_TAG . '/', $gedcom)) {
10317e96c925SGreg Roach            throw new Exception('Invalid GEDCOM data passed to GedcomRecord::updateFact(' . $gedcom . ')');
1032a25f0a04SGreg Roach        }
1033a25f0a04SGreg Roach
1034a25f0a04SGreg Roach        if ($this->pending) {
1035a25f0a04SGreg Roach            $old_gedcom = $this->pending;
1036a25f0a04SGreg Roach        } else {
1037a25f0a04SGreg Roach            $old_gedcom = $this->gedcom;
1038a25f0a04SGreg Roach        }
1039a25f0a04SGreg Roach
1040a25f0a04SGreg Roach        // First line of record may contain data - e.g. NOTE records.
104165e02381SGreg Roach        [$new_gedcom] = explode("\n", $old_gedcom, 2);
1042a25f0a04SGreg Roach
1043a25f0a04SGreg Roach        // Replacing (or deleting) an existing fact
10448d0ebef0SGreg Roach        foreach ($this->facts([], false, Auth::PRIV_HIDE) as $fact) {
1045a25f0a04SGreg Roach            if (!$fact->isPendingDeletion()) {
1046905ab80aSGreg Roach                if ($fact->id() === $fact_id) {
1047db7bb364SGreg Roach                    if ($gedcom !== '') {
1048a25f0a04SGreg Roach                        $new_gedcom .= "\n" . $gedcom;
1049a25f0a04SGreg Roach                    }
1050fc3ccce4SGreg Roach                    $fact_id = 'NOT A VALID FACT ID'; // Only replace/delete one copy of a duplicate fact
1051e364afe4SGreg Roach                } elseif ($fact->getTag() !== 'CHAN' || !$update_chan) {
1052138ca96cSGreg Roach                    $new_gedcom .= "\n" . $fact->gedcom();
1053a25f0a04SGreg Roach                }
1054a25f0a04SGreg Roach            }
1055a25f0a04SGreg Roach        }
1056a25f0a04SGreg Roach        if ($update_chan) {
1057e5a6b4d4SGreg Roach            $new_gedcom .= "\n1 CHAN\n2 DATE " . strtoupper(date('d M Y')) . "\n3 TIME " . date('H:i:s') . "\n2 _WT_USER " . Auth::user()->userName();
1058a25f0a04SGreg Roach        }
1059a25f0a04SGreg Roach
1060a25f0a04SGreg Roach        // Adding a new fact
1061fc3ccce4SGreg Roach        if ($fact_id === '') {
1062a25f0a04SGreg Roach            $new_gedcom .= "\n" . $gedcom;
1063a25f0a04SGreg Roach        }
1064a25f0a04SGreg Roach
1065e364afe4SGreg Roach        if ($new_gedcom !== $old_gedcom) {
1066a25f0a04SGreg Roach            // Save the changes
1067d09b6323SGreg Roach            DB::table('change')->insert([
1068d09b6323SGreg Roach                'gedcom_id'  => $this->tree->id(),
1069d09b6323SGreg Roach                'xref'       => $this->xref,
1070d09b6323SGreg Roach                'old_gedcom' => $old_gedcom,
1071d09b6323SGreg Roach                'new_gedcom' => $new_gedcom,
1072d09b6323SGreg Roach                'user_id'    => Auth::id(),
107313abd6f3SGreg Roach            ]);
1074a25f0a04SGreg Roach
1075a25f0a04SGreg Roach            $this->pending = $new_gedcom;
1076a25f0a04SGreg Roach
10777c4add84SGreg Roach            if (Auth::user()->getPreference(User::PREF_AUTO_ACCEPT_EDITS) === '1') {
107822e73debSGreg Roach                app(PendingChangesService::class)->acceptRecord($this);
1079a25f0a04SGreg Roach                $this->gedcom  = $new_gedcom;
1080a25f0a04SGreg Roach                $this->pending = null;
1081a25f0a04SGreg Roach            }
1082a25f0a04SGreg Roach        }
1083a25f0a04SGreg Roach        $this->parseFacts();
1084a25f0a04SGreg Roach    }
1085a25f0a04SGreg Roach
1086a25f0a04SGreg Roach    /**
1087a25f0a04SGreg Roach     * Update this record
1088a25f0a04SGreg Roach     *
1089a25f0a04SGreg Roach     * @param string $gedcom
1090cbc1590aSGreg Roach     * @param bool   $update_chan
10917e96c925SGreg Roach     *
10927e96c925SGreg Roach     * @return void
1093a25f0a04SGreg Roach     */
1094e364afe4SGreg Roach    public function updateRecord(string $gedcom, bool $update_chan): void
1095c1010edaSGreg Roach    {
1096a25f0a04SGreg Roach        // MSDOS line endings will break things in horrible ways
1097a25f0a04SGreg Roach        $gedcom = preg_replace('/[\r\n]+/', "\n", $gedcom);
1098a25f0a04SGreg Roach        $gedcom = trim($gedcom);
1099a25f0a04SGreg Roach
1100a25f0a04SGreg Roach        // Update the CHAN record
1101a25f0a04SGreg Roach        if ($update_chan) {
1102a25f0a04SGreg Roach            $gedcom = preg_replace('/\n1 CHAN(\n[2-9].*)*/', '', $gedcom);
1103e5a6b4d4SGreg Roach            $gedcom .= "\n1 CHAN\n2 DATE " . date('d M Y') . "\n3 TIME " . date('H:i:s') . "\n2 _WT_USER " . Auth::user()->userName();
1104a25f0a04SGreg Roach        }
1105a25f0a04SGreg Roach
1106a25f0a04SGreg Roach        // Create a pending change
1107d09b6323SGreg Roach        DB::table('change')->insert([
1108d09b6323SGreg Roach            'gedcom_id'  => $this->tree->id(),
1109d09b6323SGreg Roach            'xref'       => $this->xref,
1110d09b6323SGreg Roach            'old_gedcom' => $this->gedcom(),
1111d09b6323SGreg Roach            'new_gedcom' => $gedcom,
1112d09b6323SGreg Roach            'user_id'    => Auth::id(),
111313abd6f3SGreg Roach        ]);
1114a25f0a04SGreg Roach
1115a25f0a04SGreg Roach        // Clear the cache
1116a25f0a04SGreg Roach        $this->pending = $gedcom;
1117a25f0a04SGreg Roach
1118a25f0a04SGreg Roach        // Accept this pending change
11197c4add84SGreg Roach        if (Auth::user()->getPreference(User::PREF_AUTO_ACCEPT_EDITS) === '1') {
112022e73debSGreg Roach            app(PendingChangesService::class)->acceptRecord($this);
1121a25f0a04SGreg Roach            $this->gedcom  = $gedcom;
1122a25f0a04SGreg Roach            $this->pending = null;
1123a25f0a04SGreg Roach        }
1124a25f0a04SGreg Roach
1125a25f0a04SGreg Roach        $this->parseFacts();
1126a25f0a04SGreg Roach
1127847d5489SGreg Roach        Log::addEditLog('Update: ' . static::RECORD_TYPE . ' ' . $this->xref, $this->tree);
1128a25f0a04SGreg Roach    }
1129a25f0a04SGreg Roach
1130a25f0a04SGreg Roach    /**
1131a25f0a04SGreg Roach     * Delete this record
1132b874da82SGreg Roach     *
1133b874da82SGreg Roach     * @return void
1134a25f0a04SGreg Roach     */
1135e364afe4SGreg Roach    public function deleteRecord(): void
1136c1010edaSGreg Roach    {
1137a25f0a04SGreg Roach        // Create a pending change
11384c0b5256SGreg Roach        if (!$this->isPendingDeletion()) {
1139d09b6323SGreg Roach            DB::table('change')->insert([
1140d09b6323SGreg Roach                'gedcom_id'  => $this->tree->id(),
1141d09b6323SGreg Roach                'xref'       => $this->xref,
1142d09b6323SGreg Roach                'old_gedcom' => $this->gedcom(),
1143d09b6323SGreg Roach                'new_gedcom' => '',
1144d09b6323SGreg Roach                'user_id'    => Auth::id(),
114513abd6f3SGreg Roach            ]);
11464c0b5256SGreg Roach        }
1147a25f0a04SGreg Roach
11484c0b5256SGreg Roach        // Auto-accept this pending change
11497c4add84SGreg Roach        if (Auth::user()->getPreference(User::PREF_AUTO_ACCEPT_EDITS) === '1') {
115022e73debSGreg Roach            app(PendingChangesService::class)->acceptRecord($this);
1151a25f0a04SGreg Roach        }
1152a25f0a04SGreg Roach
1153a25f0a04SGreg Roach        // Clear the cache
1154d17d7b9eSGreg Roach        self::$gedcom_record_cache  = [];
1155d17d7b9eSGreg Roach        self::$pending_record_cache = [];
1156a25f0a04SGreg Roach
1157847d5489SGreg Roach        Log::addEditLog('Delete: ' . static::RECORD_TYPE . ' ' . $this->xref, $this->tree);
1158a25f0a04SGreg Roach    }
1159a25f0a04SGreg Roach
1160a25f0a04SGreg Roach    /**
1161a25f0a04SGreg Roach     * Remove all links from this record to $xref
1162a25f0a04SGreg Roach     *
1163a25f0a04SGreg Roach     * @param string $xref
1164cbc1590aSGreg Roach     * @param bool   $update_chan
11657e96c925SGreg Roach     *
11667e96c925SGreg Roach     * @return void
1167a25f0a04SGreg Roach     */
1168e364afe4SGreg Roach    public function removeLinks(string $xref, bool $update_chan): void
1169c1010edaSGreg Roach    {
1170a25f0a04SGreg Roach        $value = '@' . $xref . '@';
1171a25f0a04SGreg Roach
117230158ae7SGreg Roach        foreach ($this->facts() as $fact) {
117384586c02SGreg Roach            if ($fact->value() === $value) {
1174905ab80aSGreg Roach                $this->deleteFact($fact->id(), $update_chan);
11758d0ebef0SGreg Roach            } elseif (preg_match_all('/\n(\d) ' . Gedcom::REGEX_TAG . ' ' . $value . '/', $fact->gedcom(), $matches, PREG_SET_ORDER)) {
1176138ca96cSGreg Roach                $gedcom = $fact->gedcom();
1177a25f0a04SGreg Roach                foreach ($matches as $match) {
1178a25f0a04SGreg Roach                    $next_level  = $match[1] + 1;
1179a25f0a04SGreg Roach                    $next_levels = '[' . $next_level . '-9]';
1180a25f0a04SGreg Roach                    $gedcom      = preg_replace('/' . $match[0] . '(\n' . $next_levels . '.*)*/', '', $gedcom);
1181a25f0a04SGreg Roach                }
1182905ab80aSGreg Roach                $this->updateFact($fact->id(), $gedcom, $update_chan);
1183a25f0a04SGreg Roach            }
1184a25f0a04SGreg Roach        }
1185a25f0a04SGreg Roach    }
1186bf4eb542SGreg Roach
1187bf4eb542SGreg Roach    /**
1188bf4eb542SGreg Roach     * Fetch XREFs of all records linked to a record - when deleting an object, we must
1189bf4eb542SGreg Roach     * also delete all links to it.
1190bf4eb542SGreg Roach     *
1191bf4eb542SGreg Roach     * @return GedcomRecord[]
1192bf4eb542SGreg Roach     */
1193bf4eb542SGreg Roach    public function linkingRecords(): array
1194bf4eb542SGreg Roach    {
1195bf4eb542SGreg Roach        $union = DB::table('change')
1196bf4eb542SGreg Roach            ->where('gedcom_id', '=', $this->tree()->id())
1197fbbe964bSGreg Roach            ->whereContains('new_gedcom', '@' . $this->xref() . '@')
1198bf4eb542SGreg Roach            ->where('new_gedcom', 'NOT LIKE', '0 @' . $this->xref() . '@%')
119983242252SGreg Roach            ->whereIn('change_id', function (Builder $query): void {
120083242252SGreg Roach                $query->select(new Expression('MAX(change_id)'))
120183242252SGreg Roach                    ->from('change')
120283242252SGreg Roach                    ->where('gedcom_id', '=', $this->tree->id())
120383242252SGreg Roach                    ->where('status', '=', 'pending')
12047f5c2944SGreg Roach                    ->groupBy(['xref']);
120583242252SGreg Roach            })
1206bf4eb542SGreg Roach            ->select(['xref']);
1207bf4eb542SGreg Roach
1208bf4eb542SGreg Roach        $xrefs = DB::table('link')
1209bf4eb542SGreg Roach            ->where('l_file', '=', $this->tree()->id())
1210bf4eb542SGreg Roach            ->where('l_to', '=', $this->xref())
121147256fc5SGreg Roach            ->select(['l_from'])
1212bf4eb542SGreg Roach            ->union($union)
1213bf4eb542SGreg Roach            ->pluck('l_from');
1214bf4eb542SGreg Roach
1215bf4eb542SGreg Roach        return $xrefs->map(function (string $xref): GedcomRecord {
1216ffc0a61fSGreg Roach            $record = GedcomRecord::getInstance($xref, $this->tree);
1217ffc0a61fSGreg Roach            assert($record instanceof GedcomRecord);
1218ffc0a61fSGreg Roach
1219ffc0a61fSGreg Roach            return $record;
1220bf4eb542SGreg Roach        })->all();
1221bf4eb542SGreg Roach    }
122222e73debSGreg Roach
122322e73debSGreg Roach    /**
122422e73debSGreg Roach     * Each object type may have its own special rules, and re-implement this function.
122522e73debSGreg Roach     *
122622e73debSGreg Roach     * @param int $access_level
122722e73debSGreg Roach     *
122822e73debSGreg Roach     * @return bool
122922e73debSGreg Roach     */
123022e73debSGreg Roach    protected function canShowByType(int $access_level): bool
123122e73debSGreg Roach    {
123222e73debSGreg Roach        $fact_privacy = $this->tree->getFactPrivacy();
123322e73debSGreg Roach
123422e73debSGreg Roach        if (isset($fact_privacy[static::RECORD_TYPE])) {
123522e73debSGreg Roach            // Restriction found
123622e73debSGreg Roach            return $fact_privacy[static::RECORD_TYPE] >= $access_level;
123722e73debSGreg Roach        }
123822e73debSGreg Roach
123922e73debSGreg Roach        // No restriction found - must be public:
124022e73debSGreg Roach        return true;
124122e73debSGreg Roach    }
124222e73debSGreg Roach
124322e73debSGreg Roach    /**
124422e73debSGreg Roach     * Generate a private version of this record
124522e73debSGreg Roach     *
124622e73debSGreg Roach     * @param int $access_level
124722e73debSGreg Roach     *
124822e73debSGreg Roach     * @return string
124922e73debSGreg Roach     */
125022e73debSGreg Roach    protected function createPrivateGedcomRecord(int $access_level): string
125122e73debSGreg Roach    {
125222e73debSGreg Roach        return '0 @' . $this->xref . '@ ' . static::RECORD_TYPE . "\n1 NOTE " . I18N::translate('Private');
125322e73debSGreg Roach    }
125422e73debSGreg Roach
125522e73debSGreg Roach    /**
125622e73debSGreg Roach     * Convert a name record into sortable and full/display versions. This default
125722e73debSGreg Roach     * should be OK for simple record types. INDI/FAM records will need to redefine it.
125822e73debSGreg Roach     *
125922e73debSGreg Roach     * @param string $type
126022e73debSGreg Roach     * @param string $value
126122e73debSGreg Roach     * @param string $gedcom
126222e73debSGreg Roach     *
126322e73debSGreg Roach     * @return void
126422e73debSGreg Roach     */
126522e73debSGreg Roach    protected function addName(string $type, string $value, string $gedcom): void
126622e73debSGreg Roach    {
126722e73debSGreg Roach        $this->getAllNames[] = [
126822e73debSGreg Roach            'type'   => $type,
126922e73debSGreg Roach            'sort'   => preg_replace_callback('/([0-9]+)/', static function (array $matches): string {
127022e73debSGreg Roach                return str_pad($matches[0], 10, '0', STR_PAD_LEFT);
127122e73debSGreg Roach            }, $value),
127222e73debSGreg Roach            'full'   => '<span dir="auto">' . e($value) . '</span>',
127322e73debSGreg Roach            // This is used for display
127422e73debSGreg Roach            'fullNN' => $value,
127522e73debSGreg Roach            // This goes into the database
127622e73debSGreg Roach        ];
127722e73debSGreg Roach    }
127822e73debSGreg Roach
127922e73debSGreg Roach    /**
128022e73debSGreg Roach     * Get all the names of a record, including ROMN, FONE and _HEB alternatives.
128122e73debSGreg Roach     * Records without a name (e.g. FAM) will need to redefine this function.
128222e73debSGreg Roach     * Parameters: the level 1 fact containing the name.
128322e73debSGreg Roach     * Return value: an array of name structures, each containing
128422e73debSGreg Roach     * ['type'] = the gedcom fact, e.g. NAME, TITL, FONE, _HEB, etc.
128522e73debSGreg Roach     * ['full'] = the name as specified in the record, e.g. 'Vincent van Gogh' or 'John Unknown'
128622e73debSGreg Roach     * ['sort'] = a sortable version of the name (not for display), e.g. 'Gogh, Vincent' or '@N.N., John'
128722e73debSGreg Roach     *
128822e73debSGreg Roach     * @param int        $level
128922e73debSGreg Roach     * @param string     $fact_type
129022e73debSGreg Roach     * @param Collection $facts
129122e73debSGreg Roach     *
129222e73debSGreg Roach     * @return void
129322e73debSGreg Roach     */
129422e73debSGreg Roach    protected function extractNamesFromFacts(int $level, string $fact_type, Collection $facts): void
129522e73debSGreg Roach    {
129622e73debSGreg Roach        $sublevel    = $level + 1;
129722e73debSGreg Roach        $subsublevel = $sublevel + 1;
129822e73debSGreg Roach        foreach ($facts as $fact) {
129922e73debSGreg Roach            if (preg_match_all("/^{$level} ({$fact_type}) (.+)((\n[{$sublevel}-9].+)*)/m", $fact->gedcom(), $matches, PREG_SET_ORDER)) {
130022e73debSGreg Roach                foreach ($matches as $match) {
130122e73debSGreg Roach                    // Treat 1 NAME / 2 TYPE married the same as _MARNM
130222e73debSGreg Roach                    if ($match[1] === 'NAME' && strpos($match[3], "\n2 TYPE married") !== false) {
130322e73debSGreg Roach                        $this->addName('_MARNM', $match[2], $fact->gedcom());
130422e73debSGreg Roach                    } else {
130522e73debSGreg Roach                        $this->addName($match[1], $match[2], $fact->gedcom());
130622e73debSGreg Roach                    }
130722e73debSGreg Roach                    if ($match[3] && preg_match_all("/^{$sublevel} (ROMN|FONE|_\w+) (.+)((\n[{$subsublevel}-9].+)*)/m", $match[3], $submatches, PREG_SET_ORDER)) {
130822e73debSGreg Roach                        foreach ($submatches as $submatch) {
130922e73debSGreg Roach                            $this->addName($submatch[1], $submatch[2], $match[3]);
131022e73debSGreg Roach                        }
131122e73debSGreg Roach                    }
131222e73debSGreg Roach                }
131322e73debSGreg Roach            }
131422e73debSGreg Roach        }
131522e73debSGreg Roach    }
131622e73debSGreg Roach
131722e73debSGreg Roach    /**
131822e73debSGreg Roach     * Split the record into facts
131922e73debSGreg Roach     *
132022e73debSGreg Roach     * @return void
132122e73debSGreg Roach     */
132222e73debSGreg Roach    private function parseFacts(): void
132322e73debSGreg Roach    {
132422e73debSGreg Roach        // Split the record into facts
132522e73debSGreg Roach        if ($this->gedcom) {
132622e73debSGreg Roach            $gedcom_facts = preg_split('/\n(?=1)/s', $this->gedcom);
132722e73debSGreg Roach            array_shift($gedcom_facts);
132822e73debSGreg Roach        } else {
132922e73debSGreg Roach            $gedcom_facts = [];
133022e73debSGreg Roach        }
133122e73debSGreg Roach        if ($this->pending) {
133222e73debSGreg Roach            $pending_facts = preg_split('/\n(?=1)/s', $this->pending);
133322e73debSGreg Roach            array_shift($pending_facts);
133422e73debSGreg Roach        } else {
133522e73debSGreg Roach            $pending_facts = [];
133622e73debSGreg Roach        }
133722e73debSGreg Roach
133822e73debSGreg Roach        $this->facts = [];
133922e73debSGreg Roach
134022e73debSGreg Roach        foreach ($gedcom_facts as $gedcom_fact) {
134122e73debSGreg Roach            $fact = new Fact($gedcom_fact, $this, md5($gedcom_fact));
134222e73debSGreg Roach            if ($this->pending !== null && !in_array($gedcom_fact, $pending_facts, true)) {
134322e73debSGreg Roach                $fact->setPendingDeletion();
134422e73debSGreg Roach            }
134522e73debSGreg Roach            $this->facts[] = $fact;
134622e73debSGreg Roach        }
134722e73debSGreg Roach        foreach ($pending_facts as $pending_fact) {
134822e73debSGreg Roach            if (!in_array($pending_fact, $gedcom_facts, true)) {
134922e73debSGreg Roach                $fact = new Fact($pending_fact, $this, md5($pending_fact));
135022e73debSGreg Roach                $fact->setPendingAddition();
135122e73debSGreg Roach                $this->facts[] = $fact;
135222e73debSGreg Roach            }
135322e73debSGreg Roach        }
135422e73debSGreg Roach    }
135522e73debSGreg Roach
135622e73debSGreg Roach    /**
135722e73debSGreg Roach     * Work out whether this record can be shown to a user with a given access level
135822e73debSGreg Roach     *
135922e73debSGreg Roach     * @param int $access_level
136022e73debSGreg Roach     *
136122e73debSGreg Roach     * @return bool
136222e73debSGreg Roach     */
136322e73debSGreg Roach    private function canShowRecord(int $access_level): bool
136422e73debSGreg Roach    {
136522e73debSGreg Roach        // This setting would better be called "$ENABLE_PRIVACY"
136622e73debSGreg Roach        if (!$this->tree->getPreference('HIDE_LIVE_PEOPLE')) {
136722e73debSGreg Roach            return true;
136822e73debSGreg Roach        }
136922e73debSGreg Roach
137022e73debSGreg Roach        // We should always be able to see our own record (unless an admin is applying download restrictions)
13717c4add84SGreg Roach        if ($this->xref() === $this->tree->getUserPreference(Auth::user(), User::PREF_TREE_ACCOUNT_XREF) && $access_level === Auth::accessLevel($this->tree)) {
137222e73debSGreg Roach            return true;
137322e73debSGreg Roach        }
137422e73debSGreg Roach
137522e73debSGreg Roach        // Does this record have a RESN?
137622e73debSGreg Roach        if (strpos($this->gedcom, "\n1 RESN confidential") !== false) {
137722e73debSGreg Roach            return Auth::PRIV_NONE >= $access_level;
137822e73debSGreg Roach        }
137922e73debSGreg Roach        if (strpos($this->gedcom, "\n1 RESN privacy") !== false) {
138022e73debSGreg Roach            return Auth::PRIV_USER >= $access_level;
138122e73debSGreg Roach        }
138222e73debSGreg Roach        if (strpos($this->gedcom, "\n1 RESN none") !== false) {
138322e73debSGreg Roach            return true;
138422e73debSGreg Roach        }
138522e73debSGreg Roach
138622e73debSGreg Roach        // Does this record have a default RESN?
138722e73debSGreg Roach        $individual_privacy = $this->tree->getIndividualPrivacy();
138822e73debSGreg Roach        if (isset($individual_privacy[$this->xref()])) {
138922e73debSGreg Roach            return $individual_privacy[$this->xref()] >= $access_level;
139022e73debSGreg Roach        }
139122e73debSGreg Roach
139222e73debSGreg Roach        // Privacy rules do not apply to admins
139322e73debSGreg Roach        if (Auth::PRIV_NONE >= $access_level) {
139422e73debSGreg Roach            return true;
139522e73debSGreg Roach        }
139622e73debSGreg Roach
139722e73debSGreg Roach        // Different types of record have different privacy rules
139822e73debSGreg Roach        return $this->canShowByType($access_level);
139922e73debSGreg Roach    }
1400a25f0a04SGreg Roach}
1401