xref: /webtrees/app/Individual.php (revision 269fd10d8b81cb5e33a7a34320b7f88f5aec76eb)
1a25f0a04SGreg Roach<?php
2a25f0a04SGreg Roach/**
3a25f0a04SGreg Roach * webtrees: online genealogy
48fcd0d32SGreg Roach * Copyright (C) 2019 webtrees development team
5a25f0a04SGreg Roach * This program is free software: you can redistribute it and/or modify
6a25f0a04SGreg Roach * it under the terms of the GNU General Public License as published by
7a25f0a04SGreg Roach * the Free Software Foundation, either version 3 of the License, or
8a25f0a04SGreg Roach * (at your option) any later version.
9a25f0a04SGreg Roach * This program is distributed in the hope that it will be useful,
10a25f0a04SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
11a25f0a04SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12a25f0a04SGreg Roach * GNU General Public License for more details.
13a25f0a04SGreg Roach * You should have received a copy of the GNU General Public License
14a25f0a04SGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>.
15a25f0a04SGreg Roach */
16e7f56f2aSGreg Roachdeclare(strict_types=1);
17e7f56f2aSGreg Roach
1876692c8bSGreg Roachnamespace Fisharebest\Webtrees;
19a25f0a04SGreg Roach
20*269fd10dSGreg Roachuse Carbon\Carbon;
21886b77daSGreg Roachuse Closure;
22a25f0a04SGreg Roachuse Fisharebest\ExtCalendar\GregorianCalendar;
230e62c4b8SGreg Roachuse Fisharebest\Webtrees\GedcomCode\GedcomCodePedi;
242e5b4452SGreg Roachuse Illuminate\Database\Capsule\Manager as DB;
2539ca88baSGreg Roachuse Illuminate\Support\Collection;
26886b77daSGreg Roachuse stdClass;
27a25f0a04SGreg Roach
28a25f0a04SGreg Roach/**
2976692c8bSGreg Roach * A GEDCOM individual (INDI) object.
30a25f0a04SGreg Roach */
31c1010edaSGreg Roachclass Individual extends GedcomRecord
32c1010edaSGreg Roach{
3316d6367aSGreg Roach    public const RECORD_TYPE = 'INDI';
3416d6367aSGreg Roach
3516d6367aSGreg Roach    protected const ROUTE_NAME = 'individual';
36a25f0a04SGreg Roach
3776692c8bSGreg Roach    /** @var int used in some lists to keep track of this individual’s generation in that list */
3876692c8bSGreg Roach    public $generation;
39a25f0a04SGreg Roach
40a25f0a04SGreg Roach    /** @var Date The estimated date of birth */
414686330aSGreg Roach    private $estimated_birth_date;
42a25f0a04SGreg Roach
43a25f0a04SGreg Roach    /** @var Date The estimated date of death */
444686330aSGreg Roach    private $estimated_death_date;
45a25f0a04SGreg Roach
46a25f0a04SGreg Roach    /**
47886b77daSGreg Roach     * A closure which will create a record from a database row.
48886b77daSGreg Roach     *
49886b77daSGreg Roach     * @return Closure
50886b77daSGreg Roach     */
51c0804649SGreg Roach    public static function rowMapper(): Closure
52886b77daSGreg Roach    {
53c0804649SGreg Roach        return function (stdClass $row): Individual {
54a7a24840SGreg Roach            $individual = Individual::getInstance($row->i_id, Tree::findById((int) $row->i_file), $row->i_gedcom);
55e84cf2deSGreg Roach
56e84cf2deSGreg Roach            if ($row->n_num ?? null) {
57e84cf2deSGreg Roach                $individual->setPrimaryName($row->n_num);
58e84cf2deSGreg Roach            }
59e84cf2deSGreg Roach
60e84cf2deSGreg Roach            return $individual;
61886b77daSGreg Roach        };
62886b77daSGreg Roach    }
63886b77daSGreg Roach
64886b77daSGreg Roach    /**
65c156e8f5SGreg Roach     * A closure which will compare individuals by birth date.
66c156e8f5SGreg Roach     *
67c156e8f5SGreg Roach     * @return Closure
68c156e8f5SGreg Roach     */
69c156e8f5SGreg Roach    public static function birthDateComparator(): Closure
70c156e8f5SGreg Roach    {
71a9199cb2SGreg Roach        return function (Individual $x, Individual $y): int {
72c156e8f5SGreg Roach            return Date::compare($x->getEstimatedBirthDate(), $y->getEstimatedBirthDate());
73c156e8f5SGreg Roach        };
74c156e8f5SGreg Roach    }
75c156e8f5SGreg Roach
76c156e8f5SGreg Roach    /**
77c156e8f5SGreg Roach     * A closure which will compare individuals by death date.
78c156e8f5SGreg Roach     *
79c156e8f5SGreg Roach     * @return Closure
80c156e8f5SGreg Roach     */
81c156e8f5SGreg Roach    public static function deathDateComparator(): Closure
82c156e8f5SGreg Roach    {
83a9199cb2SGreg Roach        return function (Individual $x, Individual $y): int {
84c156e8f5SGreg Roach            return Date::compare($x->getEstimatedBirthDate(), $y->getEstimatedBirthDate());
85c156e8f5SGreg Roach        };
86c156e8f5SGreg Roach    }
87c156e8f5SGreg Roach
88c156e8f5SGreg Roach    /**
89e71ef9d2SGreg Roach     * Get an instance of an individual object. For single records,
90e71ef9d2SGreg Roach     * we just receive the XREF. For bulk records (such as lists
91e71ef9d2SGreg Roach     * and search results) we can receive the GEDCOM data as well.
92e71ef9d2SGreg Roach     *
93e71ef9d2SGreg Roach     * @param string      $xref
94e71ef9d2SGreg Roach     * @param Tree        $tree
95e71ef9d2SGreg Roach     * @param string|null $gedcom
96e71ef9d2SGreg Roach     *
97e71ef9d2SGreg Roach     * @throws \Exception
98e71ef9d2SGreg Roach     * @return Individual|null
99e71ef9d2SGreg Roach     */
10076f666f4SGreg Roach    public static function getInstance(string $xref, Tree $tree, string $gedcom = null)
101c1010edaSGreg Roach    {
102e71ef9d2SGreg Roach        $record = parent::getInstance($xref, $tree, $gedcom);
103e71ef9d2SGreg Roach
104e71ef9d2SGreg Roach        if ($record instanceof Individual) {
105e71ef9d2SGreg Roach            return $record;
106e71ef9d2SGreg Roach        }
107b2ce94c6SRico Sonntag
108b2ce94c6SRico Sonntag        return null;
109e71ef9d2SGreg Roach    }
110e71ef9d2SGreg Roach
111e71ef9d2SGreg Roach    /**
112395f0fe0SGreg Roach     * Sometimes, we'll know in advance that we need to load a set of records.
113395f0fe0SGreg Roach     * Typically when we load families and their members.
114395f0fe0SGreg Roach     *
115395f0fe0SGreg Roach     * @param Tree     $tree
1164a8aaa00SScrutinizer Auto-Fixer     * @param string[] $xrefs
11718d7a90dSGreg Roach     *
11818d7a90dSGreg Roach     * @return void
119395f0fe0SGreg Roach     */
1202e5b4452SGreg Roach    public static function load(Tree $tree, array $xrefs): void
121c1010edaSGreg Roach    {
1222e5b4452SGreg Roach        $rows = DB::table('individuals')
1232e5b4452SGreg Roach            ->where('i_file', '=', $tree->id())
1242e5b4452SGreg Roach            ->whereIn('i_id', array_unique($xrefs))
1252e5b4452SGreg Roach            ->select(['i_id AS xref', 'i_gedcom AS gedcom'])
1262e5b4452SGreg Roach            ->get();
127395f0fe0SGreg Roach
128395f0fe0SGreg Roach        foreach ($rows as $row) {
129395f0fe0SGreg Roach            self::getInstance($row->xref, $tree, $row->gedcom);
130395f0fe0SGreg Roach        }
131395f0fe0SGreg Roach    }
132395f0fe0SGreg Roach
133395f0fe0SGreg Roach    /**
134a25f0a04SGreg Roach     * Can the name of this record be shown?
135a25f0a04SGreg Roach     *
13676692c8bSGreg Roach     * @param int|null $access_level
13776692c8bSGreg Roach     *
13876692c8bSGreg Roach     * @return bool
139a25f0a04SGreg Roach     */
14035584196SGreg Roach    public function canShowName(int $access_level = null): bool
141c1010edaSGreg Roach    {
1424b9ff166SGreg Roach        if ($access_level === null) {
1434b9ff166SGreg Roach            $access_level = Auth::accessLevel($this->tree);
1444b9ff166SGreg Roach        }
1454b9ff166SGreg Roach
146518bbdc1SGreg Roach        return $this->tree->getPreference('SHOW_LIVING_NAMES') >= $access_level || $this->canShow($access_level);
147a25f0a04SGreg Roach    }
148a25f0a04SGreg Roach
149a25f0a04SGreg Roach    /**
15076692c8bSGreg Roach     * Can this individual be shown?
151a25f0a04SGreg Roach     *
15276692c8bSGreg Roach     * @param int $access_level
15376692c8bSGreg Roach     *
15476692c8bSGreg Roach     * @return bool
155a25f0a04SGreg Roach     */
15635584196SGreg Roach    protected function canShowByType(int $access_level): bool
157c1010edaSGreg Roach    {
158a25f0a04SGreg Roach        // Dead people...
159518bbdc1SGreg Roach        if ($this->tree->getPreference('SHOW_DEAD_PEOPLE') >= $access_level && $this->isDead()) {
160a25f0a04SGreg Roach            $keep_alive             = false;
16154ba7dc5SGreg Roach            $KEEP_ALIVE_YEARS_BIRTH = (int) $this->tree->getPreference('KEEP_ALIVE_YEARS_BIRTH');
162a25f0a04SGreg Roach            if ($KEEP_ALIVE_YEARS_BIRTH) {
1638d0ebef0SGreg Roach                preg_match_all('/\n1 (?:' . implode('|', Gedcom::BIRTH_EVENTS) . ').*(?:\n[2-9].*)*(?:\n2 DATE (.+))/', $this->gedcom, $matches, PREG_SET_ORDER);
164a25f0a04SGreg Roach                foreach ($matches as $match) {
165a25f0a04SGreg Roach                    $date = new Date($match[1]);
166a25f0a04SGreg Roach                    if ($date->isOK() && $date->gregorianYear() + $KEEP_ALIVE_YEARS_BIRTH > date('Y')) {
167a25f0a04SGreg Roach                        $keep_alive = true;
168a25f0a04SGreg Roach                        break;
169a25f0a04SGreg Roach                    }
170a25f0a04SGreg Roach                }
171a25f0a04SGreg Roach            }
17254ba7dc5SGreg Roach            $KEEP_ALIVE_YEARS_DEATH = (int) $this->tree->getPreference('KEEP_ALIVE_YEARS_DEATH');
173a25f0a04SGreg Roach            if ($KEEP_ALIVE_YEARS_DEATH) {
1748d0ebef0SGreg Roach                preg_match_all('/\n1 (?:' . implode('|', Gedcom::DEATH_EVENTS) . ').*(?:\n[2-9].*)*(?:\n2 DATE (.+))/', $this->gedcom, $matches, PREG_SET_ORDER);
175a25f0a04SGreg Roach                foreach ($matches as $match) {
176a25f0a04SGreg Roach                    $date = new Date($match[1]);
177a25f0a04SGreg Roach                    if ($date->isOK() && $date->gregorianYear() + $KEEP_ALIVE_YEARS_DEATH > date('Y')) {
178a25f0a04SGreg Roach                        $keep_alive = true;
179a25f0a04SGreg Roach                        break;
180a25f0a04SGreg Roach                    }
181a25f0a04SGreg Roach                }
182a25f0a04SGreg Roach            }
183a25f0a04SGreg Roach            if (!$keep_alive) {
184a25f0a04SGreg Roach                return true;
185a25f0a04SGreg Roach            }
186a25f0a04SGreg Roach        }
187a25f0a04SGreg Roach        // Consider relationship privacy (unless an admin is applying download restrictions)
18854ba7dc5SGreg Roach        $user_path_length = (int) $this->tree->getUserPreference(Auth::user(), 'RELATIONSHIP_PATH_LENGTH');
1894b9ff166SGreg Roach        $gedcomid         = $this->tree->getUserPreference(Auth::user(), 'gedcomid');
19054ba7dc5SGreg Roach        if ($gedcomid !== '' && $user_path_length > 0) {
1914b9ff166SGreg Roach            return self::isRelated($this, $user_path_length);
192a25f0a04SGreg Roach        }
193a25f0a04SGreg Roach
194a25f0a04SGreg Roach        // No restriction found - show living people to members only:
1954b9ff166SGreg Roach        return Auth::PRIV_USER >= $access_level;
196a25f0a04SGreg Roach    }
197a25f0a04SGreg Roach
198a25f0a04SGreg Roach    /**
199a25f0a04SGreg Roach     * For relationship privacy calculations - is this individual a close relative?
200a25f0a04SGreg Roach     *
201a25f0a04SGreg Roach     * @param Individual $target
202cbc1590aSGreg Roach     * @param int        $distance
203a25f0a04SGreg Roach     *
204cbc1590aSGreg Roach     * @return bool
205a25f0a04SGreg Roach     */
2068f53f488SRico Sonntag    private static function isRelated(Individual $target, $distance): bool
207c1010edaSGreg Roach    {
208a25f0a04SGreg Roach        static $cache = null;
209a25f0a04SGreg Roach
21006ef8e02SGreg Roach        $user_individual = self::getInstance($target->tree->getUserPreference(Auth::user(), 'gedcomid'), $target->tree);
211a25f0a04SGreg Roach        if ($user_individual) {
212a25f0a04SGreg Roach            if (!$cache) {
21313abd6f3SGreg Roach                $cache = [
21413abd6f3SGreg Roach                    0 => [$user_individual],
21513abd6f3SGreg Roach                    1 => [],
21613abd6f3SGreg Roach                ];
2178d0ebef0SGreg Roach                foreach ($user_individual->facts(['FAMC', 'FAMS'], false, Auth::PRIV_HIDE) as $fact) {
218dc124885SGreg Roach                    $family = $fact->target();
219e24444eeSGreg Roach                    if ($family instanceof Family) {
220a25f0a04SGreg Roach                        $cache[1][] = $family;
221a25f0a04SGreg Roach                    }
222a25f0a04SGreg Roach                }
223a25f0a04SGreg Roach            }
224a25f0a04SGreg Roach        } else {
225a25f0a04SGreg Roach            // No individual linked to this account? Cannot use relationship privacy.
226a25f0a04SGreg Roach            return true;
227a25f0a04SGreg Roach        }
228a25f0a04SGreg Roach
229a25f0a04SGreg Roach        // Double the distance, as we count the INDI-FAM and FAM-INDI links separately
230a25f0a04SGreg Roach        $distance *= 2;
231a25f0a04SGreg Roach
232a25f0a04SGreg Roach        // Consider each path length in turn
233a25f0a04SGreg Roach        for ($n = 0; $n <= $distance; ++$n) {
234a25f0a04SGreg Roach            if (array_key_exists($n, $cache)) {
235a25f0a04SGreg Roach                // We have already calculated all records with this length
236a25f0a04SGreg Roach                if ($n % 2 == 0 && in_array($target, $cache[$n], true)) {
237a25f0a04SGreg Roach                    return true;
238a25f0a04SGreg Roach                }
239a25f0a04SGreg Roach            } else {
240a25f0a04SGreg Roach                // Need to calculate these paths
24113abd6f3SGreg Roach                $cache[$n] = [];
242a25f0a04SGreg Roach                if ($n % 2 == 0) {
243a25f0a04SGreg Roach                    // Add FAM->INDI links
244a25f0a04SGreg Roach                    foreach ($cache[$n - 1] as $family) {
2458d0ebef0SGreg Roach                        foreach ($family->facts(['HUSB', 'WIFE', 'CHIL'], false, Auth::PRIV_HIDE) as $fact) {
246dc124885SGreg Roach                            $individual = $fact->target();
247a25f0a04SGreg Roach                            // Don’t backtrack
248e24444eeSGreg Roach                            if ($individual instanceof Individual && !in_array($individual, $cache[$n - 2], true)) {
249a25f0a04SGreg Roach                                $cache[$n][] = $individual;
250a25f0a04SGreg Roach                            }
251a25f0a04SGreg Roach                        }
252a25f0a04SGreg Roach                    }
253a25f0a04SGreg Roach                    if (in_array($target, $cache[$n], true)) {
254a25f0a04SGreg Roach                        return true;
255a25f0a04SGreg Roach                    }
256a25f0a04SGreg Roach                } else {
257a25f0a04SGreg Roach                    // Add INDI->FAM links
258a25f0a04SGreg Roach                    foreach ($cache[$n - 1] as $individual) {
2598d0ebef0SGreg Roach                        foreach ($individual->facts(['FAMC', 'FAMS'], false, Auth::PRIV_HIDE) as $fact) {
260dc124885SGreg Roach                            $family = $fact->target();
261a25f0a04SGreg Roach                            // Don’t backtrack
262e24444eeSGreg Roach                            if ($family instanceof Family && !in_array($family, $cache[$n - 2], true)) {
263a25f0a04SGreg Roach                                $cache[$n][] = $family;
264a25f0a04SGreg Roach                            }
265a25f0a04SGreg Roach                        }
266a25f0a04SGreg Roach                    }
267a25f0a04SGreg Roach                }
268a25f0a04SGreg Roach            }
269a25f0a04SGreg Roach        }
270a25f0a04SGreg Roach
271a25f0a04SGreg Roach        return false;
272a25f0a04SGreg Roach    }
273a25f0a04SGreg Roach
27476692c8bSGreg Roach    /**
27576692c8bSGreg Roach     * Generate a private version of this record
27676692c8bSGreg Roach     *
27776692c8bSGreg Roach     * @param int $access_level
27876692c8bSGreg Roach     *
27976692c8bSGreg Roach     * @return string
28076692c8bSGreg Roach     */
2813c90ed31SGreg Roach    protected function createPrivateGedcomRecord(int $access_level): string
282c1010edaSGreg Roach    {
283acf76a54SGreg Roach        $SHOW_PRIVATE_RELATIONSHIPS = (bool) $this->tree->getPreference('SHOW_PRIVATE_RELATIONSHIPS');
284a25f0a04SGreg Roach
285a25f0a04SGreg Roach        $rec = '0 @' . $this->xref . '@ INDI';
286518bbdc1SGreg Roach        if ($this->tree->getPreference('SHOW_LIVING_NAMES') >= $access_level) {
287a25f0a04SGreg Roach            // Show all the NAME tags, including subtags
2888d0ebef0SGreg Roach            foreach ($this->facts(['NAME']) as $fact) {
289138ca96cSGreg Roach                $rec .= "\n" . $fact->gedcom();
290a25f0a04SGreg Roach            }
291a25f0a04SGreg Roach        }
292a25f0a04SGreg Roach        // Just show the 1 FAMC/FAMS tag, not any subtags, which may contain private data
2938d0ebef0SGreg Roach        preg_match_all('/\n1 (?:FAMC|FAMS) @(' . Gedcom::REGEX_XREF . ')@/', $this->gedcom, $matches, PREG_SET_ORDER);
294a25f0a04SGreg Roach        foreach ($matches as $match) {
29524ec66ceSGreg Roach            $rela = Family::getInstance($match[1], $this->tree);
296a25f0a04SGreg Roach            if ($rela && ($SHOW_PRIVATE_RELATIONSHIPS || $rela->canShow($access_level))) {
297a25f0a04SGreg Roach                $rec .= $match[0];
298a25f0a04SGreg Roach            }
299a25f0a04SGreg Roach        }
300a25f0a04SGreg Roach        // Don’t privatize sex.
301a25f0a04SGreg Roach        if (preg_match('/\n1 SEX [MFU]/', $this->gedcom, $match)) {
302a25f0a04SGreg Roach            $rec .= $match[0];
303a25f0a04SGreg Roach        }
304a25f0a04SGreg Roach
305a25f0a04SGreg Roach        return $rec;
306a25f0a04SGreg Roach    }
307a25f0a04SGreg Roach
30876692c8bSGreg Roach    /**
30976692c8bSGreg Roach     * Fetch data from the database
31076692c8bSGreg Roach     *
31176692c8bSGreg Roach     * @param string $xref
31276692c8bSGreg Roach     * @param int    $tree_id
31376692c8bSGreg Roach     *
31476692c8bSGreg Roach     * @return null|string
31576692c8bSGreg Roach     */
31625e95e6eSGreg Roach    protected static function fetchGedcomRecord(string $xref, int $tree_id)
317c1010edaSGreg Roach    {
3182e5b4452SGreg Roach        return DB::table('individuals')
3192e5b4452SGreg Roach            ->where('i_id', '=', $xref)
3202e5b4452SGreg Roach            ->where('i_file', '=', $tree_id)
3212e5b4452SGreg Roach            ->value('i_gedcom');
322a25f0a04SGreg Roach    }
323a25f0a04SGreg Roach
324a25f0a04SGreg Roach    /**
325a25f0a04SGreg Roach     * Calculate whether this individual is living or dead.
326a25f0a04SGreg Roach     * If not known to be dead, then assume living.
327a25f0a04SGreg Roach     *
328cbc1590aSGreg Roach     * @return bool
329a25f0a04SGreg Roach     */
3308f53f488SRico Sonntag    public function isDead(): bool
331c1010edaSGreg Roach    {
332c4b3e5a2SGreg Roach        $MAX_ALIVE_AGE = (int) $this->tree->getPreference('MAX_ALIVE_AGE');
333*269fd10dSGreg Roach        $today_jd      = unixtojd(Carbon::now()->timestamp);
334a25f0a04SGreg Roach
335a25f0a04SGreg Roach        // "1 DEAT Y" or "1 DEAT/2 DATE" or "1 DEAT/2 PLAC"
3368d0ebef0SGreg Roach        if (preg_match('/\n1 (?:' . implode('|', Gedcom::DEATH_EVENTS) . ')(?: Y|(?:\n[2-9].+)*\n2 (DATE|PLAC) )/', $this->gedcom)) {
337a25f0a04SGreg Roach            return true;
338a25f0a04SGreg Roach        }
339a25f0a04SGreg Roach
340a25f0a04SGreg Roach        // If any event occured more than $MAX_ALIVE_AGE years ago, then assume the individual is dead
341a25f0a04SGreg Roach        if (preg_match_all('/\n2 DATE (.+)/', $this->gedcom, $date_matches)) {
342a25f0a04SGreg Roach            foreach ($date_matches[1] as $date_match) {
343a25f0a04SGreg Roach                $date = new Date($date_match);
344*269fd10dSGreg Roach                if ($date->isOK() && $date->maximumJulianDay() <= $today_jd - 365 * $MAX_ALIVE_AGE) {
345a25f0a04SGreg Roach                    return true;
346a25f0a04SGreg Roach                }
347a25f0a04SGreg Roach            }
348a25f0a04SGreg Roach            // The individual has one or more dated events. All are less than $MAX_ALIVE_AGE years ago.
349a25f0a04SGreg Roach            // If one of these is a birth, the individual must be alive.
350a25f0a04SGreg Roach            if (preg_match('/\n1 BIRT(?:\n[2-9].+)*\n2 DATE /', $this->gedcom)) {
351a25f0a04SGreg Roach                return false;
352a25f0a04SGreg Roach            }
353a25f0a04SGreg Roach        }
354a25f0a04SGreg Roach
355a25f0a04SGreg Roach        // If we found no conclusive dates then check the dates of close relatives.
356a25f0a04SGreg Roach
357a25f0a04SGreg Roach        // Check parents (birth and adopted)
35839ca88baSGreg Roach        foreach ($this->childFamilies(Auth::PRIV_HIDE) as $family) {
35939ca88baSGreg Roach            foreach ($family->spouses(Auth::PRIV_HIDE) as $parent) {
360a25f0a04SGreg Roach                // Assume parents are no more than 45 years older than their children
361a25f0a04SGreg Roach                preg_match_all('/\n2 DATE (.+)/', $parent->gedcom, $date_matches);
362a25f0a04SGreg Roach                foreach ($date_matches[1] as $date_match) {
363a25f0a04SGreg Roach                    $date = new Date($date_match);
364*269fd10dSGreg Roach                    if ($date->isOK() && $date->maximumJulianDay() <= $today_jd - 365 * ($MAX_ALIVE_AGE + 45)) {
365a25f0a04SGreg Roach                        return true;
366a25f0a04SGreg Roach                    }
367a25f0a04SGreg Roach                }
368a25f0a04SGreg Roach            }
369a25f0a04SGreg Roach        }
370a25f0a04SGreg Roach
371a25f0a04SGreg Roach        // Check spouses
37239ca88baSGreg Roach        foreach ($this->spouseFamilies(Auth::PRIV_HIDE) as $family) {
373a25f0a04SGreg Roach            preg_match_all('/\n2 DATE (.+)/', $family->gedcom, $date_matches);
374a25f0a04SGreg Roach            foreach ($date_matches[1] as $date_match) {
375a25f0a04SGreg Roach                $date = new Date($date_match);
376a25f0a04SGreg Roach                // Assume marriage occurs after age of 10
377*269fd10dSGreg Roach                if ($date->isOK() && $date->maximumJulianDay() <= $today_jd - 365 * ($MAX_ALIVE_AGE - 10)) {
378a25f0a04SGreg Roach                    return true;
379a25f0a04SGreg Roach                }
380a25f0a04SGreg Roach            }
381a25f0a04SGreg Roach            // Check spouse dates
38239ca88baSGreg Roach            $spouse = $family->spouse($this, Auth::PRIV_HIDE);
383a25f0a04SGreg Roach            if ($spouse) {
384a25f0a04SGreg Roach                preg_match_all('/\n2 DATE (.+)/', $spouse->gedcom, $date_matches);
385a25f0a04SGreg Roach                foreach ($date_matches[1] as $date_match) {
386a25f0a04SGreg Roach                    $date = new Date($date_match);
387a25f0a04SGreg Roach                    // Assume max age difference between spouses of 40 years
388*269fd10dSGreg Roach                    if ($date->isOK() && $date->maximumJulianDay() <= $today_jd - 365 * ($MAX_ALIVE_AGE + 40)) {
389a25f0a04SGreg Roach                        return true;
390a25f0a04SGreg Roach                    }
391a25f0a04SGreg Roach                }
392a25f0a04SGreg Roach            }
393a25f0a04SGreg Roach            // Check child dates
39439ca88baSGreg Roach            foreach ($family->children(Auth::PRIV_HIDE) as $child) {
395a25f0a04SGreg Roach                preg_match_all('/\n2 DATE (.+)/', $child->gedcom, $date_matches);
396a25f0a04SGreg Roach                // Assume children born after age of 15
397a25f0a04SGreg Roach                foreach ($date_matches[1] as $date_match) {
398a25f0a04SGreg Roach                    $date = new Date($date_match);
399*269fd10dSGreg Roach                    if ($date->isOK() && $date->maximumJulianDay() <= $today_jd - 365 * ($MAX_ALIVE_AGE - 15)) {
400a25f0a04SGreg Roach                        return true;
401a25f0a04SGreg Roach                    }
402a25f0a04SGreg Roach                }
403a25f0a04SGreg Roach                // Check grandchildren
40439ca88baSGreg Roach                foreach ($child->spouseFamilies(Auth::PRIV_HIDE) as $child_family) {
40539ca88baSGreg Roach                    foreach ($child_family->children(Auth::PRIV_HIDE) as $grandchild) {
406a25f0a04SGreg Roach                        preg_match_all('/\n2 DATE (.+)/', $grandchild->gedcom, $date_matches);
407a25f0a04SGreg Roach                        // Assume grandchildren born after age of 30
408a25f0a04SGreg Roach                        foreach ($date_matches[1] as $date_match) {
409a25f0a04SGreg Roach                            $date = new Date($date_match);
410*269fd10dSGreg Roach                            if ($date->isOK() && $date->maximumJulianDay() <= $today_jd - 365 * ($MAX_ALIVE_AGE - 30)) {
411a25f0a04SGreg Roach                                return true;
412a25f0a04SGreg Roach                            }
413a25f0a04SGreg Roach                        }
414a25f0a04SGreg Roach                    }
415a25f0a04SGreg Roach                }
416a25f0a04SGreg Roach            }
417a25f0a04SGreg Roach        }
418a25f0a04SGreg Roach
419a25f0a04SGreg Roach        return false;
420a25f0a04SGreg Roach    }
421a25f0a04SGreg Roach
422a25f0a04SGreg Roach    /**
423a25f0a04SGreg Roach     * Find the highlighted media object for an individual
424a25f0a04SGreg Roach     *
4254a9f750fSGreg Roach     * @return null|MediaFile
426a25f0a04SGreg Roach     */
427c1010edaSGreg Roach    public function findHighlightedMediaFile()
428c1010edaSGreg Roach    {
4298d0ebef0SGreg Roach        foreach ($this->facts(['OBJE']) as $fact) {
430dc124885SGreg Roach            $media = $fact->target();
431a213a63cSGreg Roach            if ($media instanceof Media) {
4324a9f750fSGreg Roach                foreach ($media->mediaFiles() as $media_file) {
433a213a63cSGreg Roach                    if ($media_file->isImage() && !$media_file->isExternal()) {
4344a9f750fSGreg Roach                        return $media_file;
4354a9f750fSGreg Roach                    }
4364a9f750fSGreg Roach                }
437a25f0a04SGreg Roach            }
438a25f0a04SGreg Roach        }
439a25f0a04SGreg Roach
440a25f0a04SGreg Roach        return null;
441a25f0a04SGreg Roach    }
442a25f0a04SGreg Roach
443a25f0a04SGreg Roach    /**
444a25f0a04SGreg Roach     * Display the prefered image for this individual.
445a25f0a04SGreg Roach     * Use an icon if no image is available.
446a25f0a04SGreg Roach     *
447dce07401SGreg Roach     * @param int      $width      Pixels
448dce07401SGreg Roach     * @param int      $height     Pixels
449dce07401SGreg Roach     * @param string   $fit        "crop" or "contain"
450dce07401SGreg Roach     * @param string[] $attributes Additional HTML attributes
451dce07401SGreg Roach     *
452a25f0a04SGreg Roach     * @return string
453a25f0a04SGreg Roach     */
4548f53f488SRico Sonntag    public function displayImage($width, $height, $fit, $attributes): string
455c1010edaSGreg Roach    {
4564a9f750fSGreg Roach        $media_file = $this->findHighlightedMediaFile();
4574a9f750fSGreg Roach
4584a9f750fSGreg Roach        if ($media_file !== null) {
4594a9f750fSGreg Roach            return $media_file->displayImage($width, $height, $fit, $attributes);
460a25f0a04SGreg Roach        }
4614a9f750fSGreg Roach
4624a9f750fSGreg Roach        if ($this->tree->getPreference('USE_SILHOUETTE')) {
46339ca88baSGreg Roach            return '<i class="icon-silhouette-' . $this->sex() . '"></i>';
4644a9f750fSGreg Roach        }
4654a9f750fSGreg Roach
4664a9f750fSGreg Roach        return '';
467a25f0a04SGreg Roach    }
468a25f0a04SGreg Roach
469a25f0a04SGreg Roach    /**
470a25f0a04SGreg Roach     * Get the date of birth
471a25f0a04SGreg Roach     *
472a25f0a04SGreg Roach     * @return Date
473a25f0a04SGreg Roach     */
4748f53f488SRico Sonntag    public function getBirthDate(): Date
475c1010edaSGreg Roach    {
476a25f0a04SGreg Roach        foreach ($this->getAllBirthDates() as $date) {
477a25f0a04SGreg Roach            if ($date->isOK()) {
478a25f0a04SGreg Roach                return $date;
479a25f0a04SGreg Roach            }
480a25f0a04SGreg Roach        }
481a25f0a04SGreg Roach
482a25f0a04SGreg Roach        return new Date('');
483a25f0a04SGreg Roach    }
484a25f0a04SGreg Roach
485a25f0a04SGreg Roach    /**
486a25f0a04SGreg Roach     * Get the place of birth
487a25f0a04SGreg Roach     *
48816d0b7f7SRico Sonntag     * @return Place
489a25f0a04SGreg Roach     */
4908f53f488SRico Sonntag    public function getBirthPlace(): Place
491c1010edaSGreg Roach    {
492a25f0a04SGreg Roach        foreach ($this->getAllBirthPlaces() as $place) {
493a25f0a04SGreg Roach            return $place;
494a25f0a04SGreg Roach        }
495a25f0a04SGreg Roach
496b20ddbf9SGreg Roach        return new Place('', $this->tree);
497a25f0a04SGreg Roach    }
498a25f0a04SGreg Roach
499a25f0a04SGreg Roach    /**
500a25f0a04SGreg Roach     * Get the year of birth
501a25f0a04SGreg Roach     *
502a25f0a04SGreg Roach     * @return string the year of birth
503a25f0a04SGreg Roach     */
5048f53f488SRico Sonntag    public function getBirthYear(): string
505c1010edaSGreg Roach    {
506f5b60decSGreg Roach        return $this->getBirthDate()->minimumDate()->format('%Y');
507a25f0a04SGreg Roach    }
508a25f0a04SGreg Roach
509a25f0a04SGreg Roach    /**
510a25f0a04SGreg Roach     * Get the date of death
511a25f0a04SGreg Roach     *
512a25f0a04SGreg Roach     * @return Date
513a25f0a04SGreg Roach     */
5148f53f488SRico Sonntag    public function getDeathDate(): Date
515c1010edaSGreg Roach    {
516a25f0a04SGreg Roach        foreach ($this->getAllDeathDates() as $date) {
517a25f0a04SGreg Roach            if ($date->isOK()) {
518a25f0a04SGreg Roach                return $date;
519a25f0a04SGreg Roach            }
520a25f0a04SGreg Roach        }
521a25f0a04SGreg Roach
522a25f0a04SGreg Roach        return new Date('');
523a25f0a04SGreg Roach    }
524a25f0a04SGreg Roach
525a25f0a04SGreg Roach    /**
526a25f0a04SGreg Roach     * Get the place of death
527a25f0a04SGreg Roach     *
52816d0b7f7SRico Sonntag     * @return Place
529a25f0a04SGreg Roach     */
5308f53f488SRico Sonntag    public function getDeathPlace(): Place
531c1010edaSGreg Roach    {
532a25f0a04SGreg Roach        foreach ($this->getAllDeathPlaces() as $place) {
533a25f0a04SGreg Roach            return $place;
534a25f0a04SGreg Roach        }
535a25f0a04SGreg Roach
536b20ddbf9SGreg Roach        return new Place('', $this->tree);
537a25f0a04SGreg Roach    }
538a25f0a04SGreg Roach
539a25f0a04SGreg Roach    /**
540a25f0a04SGreg Roach     * get the death year
541a25f0a04SGreg Roach     *
542a25f0a04SGreg Roach     * @return string the year of death
543a25f0a04SGreg Roach     */
5448f53f488SRico Sonntag    public function getDeathYear(): string
545c1010edaSGreg Roach    {
546f5b60decSGreg Roach        return $this->getDeathDate()->minimumDate()->format('%Y');
547a25f0a04SGreg Roach    }
548a25f0a04SGreg Roach
549a25f0a04SGreg Roach    /**
550a25f0a04SGreg Roach     * Get the range of years in which a individual lived. e.g. “1870–”, “1870–1920”, “–1920”.
55115d603e7SGreg Roach     * Provide the place and full date using a tooltip.
552a25f0a04SGreg Roach     * For consistent layout in charts, etc., show just a “–” when no dates are known.
553a25f0a04SGreg Roach     * Note that this is a (non-breaking) en-dash, and not a hyphen.
554a25f0a04SGreg Roach     *
555a25f0a04SGreg Roach     * @return string
556a25f0a04SGreg Roach     */
5578f53f488SRico Sonntag    public function getLifeSpan(): string
558c1010edaSGreg Roach    {
55915d603e7SGreg Roach        // Just the first part of the place name
560392561bbSGreg Roach        $birth_place = strip_tags($this->getBirthPlace()->shortName());
561392561bbSGreg Roach        $death_place = strip_tags($this->getDeathPlace()->shortName());
56215d603e7SGreg Roach        // Remove markup from dates
56315d603e7SGreg Roach        $birth_date = strip_tags($this->getBirthDate()->display());
56415d603e7SGreg Roach        $death_date = strip_tags($this->getDeathDate()->display());
56515d603e7SGreg Roach
566c1010edaSGreg Roach        /* I18N: A range of years, e.g. “1870–”, “1870–1920”, “–1920” */
567bbb76c12SGreg Roach        return
568c1010edaSGreg Roach            I18N::translate(
569a25f0a04SGreg Roach                '%1$s–%2$s',
5702d4c1bedSGreg Roach                '<span title="' . $birth_place . ' ' . $birth_date . '">' . $this->getBirthYear() . '</span>',
5712d4c1bedSGreg Roach                '<span title="' . $death_place . ' ' . $death_date . '">' . $this->getDeathYear() . '</span>'
572a25f0a04SGreg Roach            );
573a25f0a04SGreg Roach    }
574a25f0a04SGreg Roach
575a25f0a04SGreg Roach    /**
576a25f0a04SGreg Roach     * Get all the birth dates - for the individual lists.
577a25f0a04SGreg Roach     *
578a25f0a04SGreg Roach     * @return Date[]
579a25f0a04SGreg Roach     */
5808f53f488SRico Sonntag    public function getAllBirthDates(): array
581c1010edaSGreg Roach    {
5828d0ebef0SGreg Roach        foreach (Gedcom::BIRTH_EVENTS as $event) {
5838d0ebef0SGreg Roach            $tmp = $this->getAllEventDates([$event]);
584a25f0a04SGreg Roach            if ($tmp) {
585a25f0a04SGreg Roach                return $tmp;
586a25f0a04SGreg Roach            }
587a25f0a04SGreg Roach        }
588a25f0a04SGreg Roach
58913abd6f3SGreg Roach        return [];
590a25f0a04SGreg Roach    }
591a25f0a04SGreg Roach
592a25f0a04SGreg Roach    /**
593a25f0a04SGreg Roach     * Gat all the birth places - for the individual lists.
594a25f0a04SGreg Roach     *
5954080d558SGreg Roach     * @return Place[]
596a25f0a04SGreg Roach     */
5978f53f488SRico Sonntag    public function getAllBirthPlaces(): array
598c1010edaSGreg Roach    {
5998d0ebef0SGreg Roach        foreach (Gedcom::BIRTH_EVENTS as $event) {
6008d0ebef0SGreg Roach            $places = $this->getAllEventPlaces([$event]);
6014080d558SGreg Roach            if (!empty($places)) {
6024080d558SGreg Roach                return $places;
603a25f0a04SGreg Roach            }
604a25f0a04SGreg Roach        }
605a25f0a04SGreg Roach
60613abd6f3SGreg Roach        return [];
607a25f0a04SGreg Roach    }
608a25f0a04SGreg Roach
609a25f0a04SGreg Roach    /**
610a25f0a04SGreg Roach     * Get all the death dates - for the individual lists.
611a25f0a04SGreg Roach     *
612a25f0a04SGreg Roach     * @return Date[]
613a25f0a04SGreg Roach     */
6148f53f488SRico Sonntag    public function getAllDeathDates(): array
615c1010edaSGreg Roach    {
6168d0ebef0SGreg Roach        foreach (Gedcom::DEATH_EVENTS as $event) {
6178d0ebef0SGreg Roach            $tmp = $this->getAllEventDates([$event]);
618a25f0a04SGreg Roach            if ($tmp) {
619a25f0a04SGreg Roach                return $tmp;
620a25f0a04SGreg Roach            }
621a25f0a04SGreg Roach        }
622a25f0a04SGreg Roach
62313abd6f3SGreg Roach        return [];
624a25f0a04SGreg Roach    }
625a25f0a04SGreg Roach
626a25f0a04SGreg Roach    /**
627a25f0a04SGreg Roach     * Get all the death places - for the individual lists.
628a25f0a04SGreg Roach     *
6294080d558SGreg Roach     * @return Place[]
630a25f0a04SGreg Roach     */
6318f53f488SRico Sonntag    public function getAllDeathPlaces(): array
632c1010edaSGreg Roach    {
6338d0ebef0SGreg Roach        foreach (Gedcom::DEATH_EVENTS as $event) {
6348d0ebef0SGreg Roach            $places = $this->getAllEventPlaces([$event]);
6354080d558SGreg Roach            if (!empty($places)) {
6364080d558SGreg Roach                return $places;
637a25f0a04SGreg Roach            }
638a25f0a04SGreg Roach        }
639a25f0a04SGreg Roach
64013abd6f3SGreg Roach        return [];
641a25f0a04SGreg Roach    }
642a25f0a04SGreg Roach
643a25f0a04SGreg Roach    /**
644a25f0a04SGreg Roach     * Generate an estimate for the date of birth, based on dates of parents/children/spouses
645a25f0a04SGreg Roach     *
646a25f0a04SGreg Roach     * @return Date
647a25f0a04SGreg Roach     */
6488f53f488SRico Sonntag    public function getEstimatedBirthDate(): Date
649c1010edaSGreg Roach    {
6508f038c36SRico Sonntag        if ($this->estimated_birth_date === null) {
651a25f0a04SGreg Roach            foreach ($this->getAllBirthDates() as $date) {
652a25f0a04SGreg Roach                if ($date->isOK()) {
6534686330aSGreg Roach                    $this->estimated_birth_date = $date;
654a25f0a04SGreg Roach                    break;
655a25f0a04SGreg Roach                }
656a25f0a04SGreg Roach            }
6578f038c36SRico Sonntag            if ($this->estimated_birth_date === null) {
65813abd6f3SGreg Roach                $min = [];
65913abd6f3SGreg Roach                $max = [];
660a25f0a04SGreg Roach                $tmp = $this->getDeathDate();
661f5b60decSGreg Roach                if ($tmp->isOK()) {
662f5b60decSGreg Roach                    $min[] = $tmp->minimumJulianDay() - $this->tree->getPreference('MAX_ALIVE_AGE') * 365;
663f5b60decSGreg Roach                    $max[] = $tmp->maximumJulianDay();
664a25f0a04SGreg Roach                }
66539ca88baSGreg Roach                foreach ($this->childFamilies() as $family) {
666a25f0a04SGreg Roach                    $tmp = $family->getMarriageDate();
667f5b60decSGreg Roach                    if ($tmp->isOK()) {
668f5b60decSGreg Roach                        $min[] = $tmp->maximumJulianDay() - 365 * 1;
669f5b60decSGreg Roach                        $max[] = $tmp->minimumJulianDay() + 365 * 30;
670a25f0a04SGreg Roach                    }
67139ca88baSGreg Roach                    $husband = $family->husband();
6722e5b4452SGreg Roach                    if ($husband instanceof Individual) {
6732e5b4452SGreg Roach                        $tmp = $husband->getBirthDate();
674f5b60decSGreg Roach                        if ($tmp->isOK()) {
675f5b60decSGreg Roach                            $min[] = $tmp->maximumJulianDay() + 365 * 15;
676f5b60decSGreg Roach                            $max[] = $tmp->minimumJulianDay() + 365 * 65;
677a25f0a04SGreg Roach                        }
678a25f0a04SGreg Roach                    }
67939ca88baSGreg Roach                    $wife = $family->wife();
6802e5b4452SGreg Roach                    if ($wife instanceof Individual) {
6812e5b4452SGreg Roach                        $tmp = $wife->getBirthDate();
682f5b60decSGreg Roach                        if ($tmp->isOK()) {
683f5b60decSGreg Roach                            $min[] = $tmp->maximumJulianDay() + 365 * 15;
684f5b60decSGreg Roach                            $max[] = $tmp->minimumJulianDay() + 365 * 45;
685a25f0a04SGreg Roach                        }
686a25f0a04SGreg Roach                    }
68739ca88baSGreg Roach                    foreach ($family->children() as $child) {
688a25f0a04SGreg Roach                        $tmp = $child->getBirthDate();
689f5b60decSGreg Roach                        if ($tmp->isOK()) {
690f5b60decSGreg Roach                            $min[] = $tmp->maximumJulianDay() - 365 * 30;
691f5b60decSGreg Roach                            $max[] = $tmp->minimumJulianDay() + 365 * 30;
692a25f0a04SGreg Roach                        }
693a25f0a04SGreg Roach                    }
694a25f0a04SGreg Roach                }
69539ca88baSGreg Roach                foreach ($this->spouseFamilies() as $family) {
696a25f0a04SGreg Roach                    $tmp = $family->getMarriageDate();
697f5b60decSGreg Roach                    if ($tmp->isOK()) {
698f5b60decSGreg Roach                        $min[] = $tmp->maximumJulianDay() - 365 * 45;
699f5b60decSGreg Roach                        $max[] = $tmp->minimumJulianDay() - 365 * 15;
700a25f0a04SGreg Roach                    }
70139ca88baSGreg Roach                    $spouse = $family->spouse($this);
702a25f0a04SGreg Roach                    if ($spouse) {
703a25f0a04SGreg Roach                        $tmp = $spouse->getBirthDate();
704f5b60decSGreg Roach                        if ($tmp->isOK()) {
705f5b60decSGreg Roach                            $min[] = $tmp->maximumJulianDay() - 365 * 25;
706f5b60decSGreg Roach                            $max[] = $tmp->minimumJulianDay() + 365 * 25;
707a25f0a04SGreg Roach                        }
708a25f0a04SGreg Roach                    }
70939ca88baSGreg Roach                    foreach ($family->children() as $child) {
710a25f0a04SGreg Roach                        $tmp = $child->getBirthDate();
711f5b60decSGreg Roach                        if ($tmp->isOK()) {
71239ca88baSGreg Roach                            $min[] = $tmp->maximumJulianDay() - 365 * ($this->sex() == 'F' ? 45 : 65);
713f5b60decSGreg Roach                            $max[] = $tmp->minimumJulianDay() - 365 * 15;
714a25f0a04SGreg Roach                        }
715a25f0a04SGreg Roach                    }
716a25f0a04SGreg Roach                }
717a25f0a04SGreg Roach                if ($min && $max) {
71859f2f229SGreg Roach                    $gregorian_calendar = new GregorianCalendar();
719a25f0a04SGreg Roach
72065e02381SGreg Roach                    [$year] = $gregorian_calendar->jdToYmd(intdiv(max($min) + min($max), 2));
7214686330aSGreg Roach                    $this->estimated_birth_date = new Date('EST ' . $year);
722a25f0a04SGreg Roach                } else {
7234686330aSGreg Roach                    $this->estimated_birth_date = new Date(''); // always return a date object
724a25f0a04SGreg Roach                }
725a25f0a04SGreg Roach            }
726a25f0a04SGreg Roach        }
727a25f0a04SGreg Roach
7284686330aSGreg Roach        return $this->estimated_birth_date;
729a25f0a04SGreg Roach    }
730a25f0a04SGreg Roach
731a25f0a04SGreg Roach    /**
732a25f0a04SGreg Roach     * Generate an estimated date of death.
733a25f0a04SGreg Roach     *
734a25f0a04SGreg Roach     * @return Date
735a25f0a04SGreg Roach     */
7368f53f488SRico Sonntag    public function getEstimatedDeathDate(): Date
737c1010edaSGreg Roach    {
7384686330aSGreg Roach        if ($this->estimated_death_date === null) {
739a25f0a04SGreg Roach            foreach ($this->getAllDeathDates() as $date) {
740a25f0a04SGreg Roach                if ($date->isOK()) {
7414686330aSGreg Roach                    $this->estimated_death_date = $date;
742a25f0a04SGreg Roach                    break;
743a25f0a04SGreg Roach                }
744a25f0a04SGreg Roach            }
7454686330aSGreg Roach            if ($this->estimated_death_date === null) {
746f5b60decSGreg Roach                if ($this->getEstimatedBirthDate()->minimumJulianDay()) {
747c4b3e5a2SGreg Roach                    $max_alive_age              = (int) $this->tree->getPreference('MAX_ALIVE_AGE');
7484686330aSGreg Roach                    $this->estimated_death_date = $this->getEstimatedBirthDate()->addYears($max_alive_age, 'BEF');
749a25f0a04SGreg Roach                } else {
7504686330aSGreg Roach                    $this->estimated_death_date = new Date(''); // always return a date object
751a25f0a04SGreg Roach                }
752a25f0a04SGreg Roach            }
753a25f0a04SGreg Roach        }
754a25f0a04SGreg Roach
7554686330aSGreg Roach        return $this->estimated_death_date;
756a25f0a04SGreg Roach    }
757a25f0a04SGreg Roach
758a25f0a04SGreg Roach    /**
759a25f0a04SGreg Roach     * Get the sex - M F or U
760a25f0a04SGreg Roach     * Use the un-privatised gedcom record. We call this function during
761a25f0a04SGreg Roach     * the privatize-gedcom function, and we are allowed to know this.
762a25f0a04SGreg Roach     *
763a25f0a04SGreg Roach     * @return string
764a25f0a04SGreg Roach     */
76539ca88baSGreg Roach    public function sex()
766c1010edaSGreg Roach    {
767a25f0a04SGreg Roach        if (preg_match('/\n1 SEX ([MF])/', $this->gedcom . $this->pending, $match)) {
768a25f0a04SGreg Roach            return $match[1];
769a25f0a04SGreg Roach        }
770b2ce94c6SRico Sonntag
771b2ce94c6SRico Sonntag        return 'U';
772a25f0a04SGreg Roach    }
773a25f0a04SGreg Roach
774a25f0a04SGreg Roach    /**
775a25f0a04SGreg Roach     * Get the individual’s sex image
776a25f0a04SGreg Roach     *
777a25f0a04SGreg Roach     * @param string $size
778a25f0a04SGreg Roach     *
779a25f0a04SGreg Roach     * @return string
780a25f0a04SGreg Roach     */
7818f53f488SRico Sonntag    public function getSexImage($size = 'small'): string
782c1010edaSGreg Roach    {
78339ca88baSGreg Roach        return self::sexImage($this->sex(), $size);
784a25f0a04SGreg Roach    }
785a25f0a04SGreg Roach
786a25f0a04SGreg Roach    /**
787a25f0a04SGreg Roach     * Generate a sex icon/image
788a25f0a04SGreg Roach     *
789a25f0a04SGreg Roach     * @param string $sex
790a25f0a04SGreg Roach     * @param string $size
791a25f0a04SGreg Roach     *
792a25f0a04SGreg Roach     * @return string
793a25f0a04SGreg Roach     */
7948f53f488SRico Sonntag    public static function sexImage($sex, $size = 'small'): string
795c1010edaSGreg Roach    {
796242a7862SGreg Roach        $image = view('icons/sex-' . $sex);
797242a7862SGreg Roach
798242a7862SGreg Roach        if ($size === 'small') {
799242a7862SGreg Roach            $image = '<small>' . $image . '</small>';
800242a7862SGreg Roach        }
801242a7862SGreg Roach
802242a7862SGreg Roach        return $image;
803a25f0a04SGreg Roach    }
804a25f0a04SGreg Roach
805a25f0a04SGreg Roach    /**
806a25f0a04SGreg Roach     * Generate the CSS class to be used for drawing this individual
807a25f0a04SGreg Roach     *
808a25f0a04SGreg Roach     * @return string
809a25f0a04SGreg Roach     */
8108f53f488SRico Sonntag    public function getBoxStyle(): string
811c1010edaSGreg Roach    {
812c1010edaSGreg Roach        $tmp = [
813c1010edaSGreg Roach            'M' => '',
814c1010edaSGreg Roach            'F' => 'F',
815c1010edaSGreg Roach            'U' => 'NN',
816c1010edaSGreg Roach        ];
817a25f0a04SGreg Roach
81839ca88baSGreg Roach        return 'person_box' . $tmp[$this->sex()];
819a25f0a04SGreg Roach    }
820a25f0a04SGreg Roach
821a25f0a04SGreg Roach    /**
822a25f0a04SGreg Roach     * Get a list of this individual’s spouse families
823a25f0a04SGreg Roach     *
824cbc1590aSGreg Roach     * @param int|null $access_level
825a25f0a04SGreg Roach     *
82639ca88baSGreg Roach     * @return Collection|Family[]
827a25f0a04SGreg Roach     */
82839ca88baSGreg Roach    public function spouseFamilies($access_level = null): Collection
829c1010edaSGreg Roach    {
8304b9ff166SGreg Roach        if ($access_level === null) {
8314b9ff166SGreg Roach            $access_level = Auth::accessLevel($this->tree);
8324b9ff166SGreg Roach        }
8334b9ff166SGreg Roach
834acf76a54SGreg Roach        $SHOW_PRIVATE_RELATIONSHIPS = (bool) $this->tree->getPreference('SHOW_PRIVATE_RELATIONSHIPS');
835a25f0a04SGreg Roach
83639ca88baSGreg Roach        $families = new Collection();
8378d0ebef0SGreg Roach        foreach ($this->facts(['FAMS'], false, $access_level, $SHOW_PRIVATE_RELATIONSHIPS) as $fact) {
838dc124885SGreg Roach            $family = $fact->target();
839e24444eeSGreg Roach            if ($family instanceof Family && ($SHOW_PRIVATE_RELATIONSHIPS || $family->canShow($access_level))) {
84039ca88baSGreg Roach                $families->push($family);
841a25f0a04SGreg Roach            }
842a25f0a04SGreg Roach        }
843a25f0a04SGreg Roach
84439ca88baSGreg Roach        return new Collection($families);
845a25f0a04SGreg Roach    }
846a25f0a04SGreg Roach
847a25f0a04SGreg Roach    /**
848a25f0a04SGreg Roach     * Get the current spouse of this individual.
849a25f0a04SGreg Roach     *
850a25f0a04SGreg Roach     * Where an individual has multiple spouses, assume they are stored
851a25f0a04SGreg Roach     * in chronological order, and take the last one found.
852a25f0a04SGreg Roach     *
853a25f0a04SGreg Roach     * @return Individual|null
854a25f0a04SGreg Roach     */
855c1010edaSGreg Roach    public function getCurrentSpouse()
856c1010edaSGreg Roach    {
85739ca88baSGreg Roach        $family = $this->spouseFamilies()->last();
85839ca88baSGreg Roach
85939ca88baSGreg Roach        if ($family instanceof Family) {
86039ca88baSGreg Roach            return $family->spouse($this);
861a25f0a04SGreg Roach        }
862b2ce94c6SRico Sonntag
863b2ce94c6SRico Sonntag        return null;
864a25f0a04SGreg Roach    }
865a25f0a04SGreg Roach
866a25f0a04SGreg Roach    /**
867a25f0a04SGreg Roach     * Count the children belonging to this individual.
868a25f0a04SGreg Roach     *
869cbc1590aSGreg Roach     * @return int
870a25f0a04SGreg Roach     */
87139ca88baSGreg Roach    public function numberOfChildren()
872c1010edaSGreg Roach    {
8737d0db648SGreg Roach        if (preg_match('/\n1 NCHI (\d+)(?:\n|$)/', $this->gedcom(), $match)) {
8743dc7bbe9SGreg Roach            return (int) $match[1];
875b2ce94c6SRico Sonntag        }
876b2ce94c6SRico Sonntag
87713abd6f3SGreg Roach        $children = [];
87839ca88baSGreg Roach        foreach ($this->spouseFamilies() as $fam) {
87939ca88baSGreg Roach            foreach ($fam->children() as $child) {
880c0935879SGreg Roach                $children[$child->xref()] = true;
881a25f0a04SGreg Roach            }
882a25f0a04SGreg Roach        }
883a25f0a04SGreg Roach
884a25f0a04SGreg Roach        return count($children);
885a25f0a04SGreg Roach    }
886a25f0a04SGreg Roach
887a25f0a04SGreg Roach    /**
888a25f0a04SGreg Roach     * Get a list of this individual’s child families (i.e. their parents).
889a25f0a04SGreg Roach     *
890cbc1590aSGreg Roach     * @param int|null $access_level
891a25f0a04SGreg Roach     *
89239ca88baSGreg Roach     * @return Collection|Family[]
893a25f0a04SGreg Roach     */
89439ca88baSGreg Roach    public function childFamilies($access_level = null): Collection
895c1010edaSGreg Roach    {
8964b9ff166SGreg Roach        if ($access_level === null) {
8974b9ff166SGreg Roach            $access_level = Auth::accessLevel($this->tree);
8984b9ff166SGreg Roach        }
8994b9ff166SGreg Roach
900acf76a54SGreg Roach        $SHOW_PRIVATE_RELATIONSHIPS = (bool) $this->tree->getPreference('SHOW_PRIVATE_RELATIONSHIPS');
901a25f0a04SGreg Roach
90239ca88baSGreg Roach        $families = new Collection();
90339ca88baSGreg Roach
9048d0ebef0SGreg Roach        foreach ($this->facts(['FAMC'], false, $access_level, $SHOW_PRIVATE_RELATIONSHIPS) as $fact) {
905dc124885SGreg Roach            $family = $fact->target();
906e24444eeSGreg Roach            if ($family instanceof Family && ($SHOW_PRIVATE_RELATIONSHIPS || $family->canShow($access_level))) {
90739ca88baSGreg Roach                $families->push($family);
908a25f0a04SGreg Roach            }
909a25f0a04SGreg Roach        }
910a25f0a04SGreg Roach
911a25f0a04SGreg Roach        return $families;
912a25f0a04SGreg Roach    }
913a25f0a04SGreg Roach
914a25f0a04SGreg Roach    /**
915a25f0a04SGreg Roach     * Get the preferred parents for this individual.
916a25f0a04SGreg Roach     *
917a25f0a04SGreg Roach     * An individual may multiple parents (e.g. birth, adopted, disputed).
918a25f0a04SGreg Roach     * The preferred family record is:
919a25f0a04SGreg Roach     * (a) the first one with an explicit tag "_PRIMARY Y"
920a25f0a04SGreg Roach     * (b) the first one with a pedigree of "birth"
921a25f0a04SGreg Roach     * (c) the first one with no pedigree (default is "birth")
922a25f0a04SGreg Roach     * (d) the first one found
923a25f0a04SGreg Roach     *
924a25f0a04SGreg Roach     * @return Family|null
925a25f0a04SGreg Roach     */
92639ca88baSGreg Roach    public function primaryChildFamily()
927c1010edaSGreg Roach    {
92839ca88baSGreg Roach        $families = $this->childFamilies();
929a25f0a04SGreg Roach        switch (count($families)) {
930a25f0a04SGreg Roach            case 0:
931a25f0a04SGreg Roach                return null;
932a25f0a04SGreg Roach            case 1:
93315d603e7SGreg Roach                return $families[0];
934a25f0a04SGreg Roach            default:
935a25f0a04SGreg Roach                // If there is more than one FAMC record, choose the preferred parents:
936a25f0a04SGreg Roach                // a) records with '2 _PRIMARY'
93774e78bfaSJonathan Jaubart                foreach ($families as $fam) {
938c0935879SGreg Roach                    $famid = $fam->xref();
9397d0db648SGreg Roach                    if (preg_match("/\n1 FAMC @{$famid}@\n(?:[2-9].*\n)*(?:2 _PRIMARY Y)/", $this->gedcom())) {
940a25f0a04SGreg Roach                        return $fam;
941a25f0a04SGreg Roach                    }
942a25f0a04SGreg Roach                }
943a25f0a04SGreg Roach                // b) records with '2 PEDI birt'
94474e78bfaSJonathan Jaubart                foreach ($families as $fam) {
945c0935879SGreg Roach                    $famid = $fam->xref();
9467d0db648SGreg Roach                    if (preg_match("/\n1 FAMC @{$famid}@\n(?:[2-9].*\n)*(?:2 PEDI birth)/", $this->gedcom())) {
947a25f0a04SGreg Roach                        return $fam;
948a25f0a04SGreg Roach                    }
949a25f0a04SGreg Roach                }
950a25f0a04SGreg Roach                // c) records with no '2 PEDI'
95174e78bfaSJonathan Jaubart                foreach ($families as $fam) {
952c0935879SGreg Roach                    $famid = $fam->xref();
9537d0db648SGreg Roach                    if (!preg_match("/\n1 FAMC @{$famid}@\n(?:[2-9].*\n)*(?:2 PEDI)/", $this->gedcom())) {
954a25f0a04SGreg Roach                        return $fam;
955a25f0a04SGreg Roach                    }
956a25f0a04SGreg Roach                }
957a25f0a04SGreg Roach
958a25f0a04SGreg Roach                // d) any record
95915d603e7SGreg Roach                return $families[0];
960a25f0a04SGreg Roach        }
961a25f0a04SGreg Roach    }
962a25f0a04SGreg Roach
963a25f0a04SGreg Roach    /**
964a25f0a04SGreg Roach     * Get a list of step-parent families.
965a25f0a04SGreg Roach     *
966820b62dfSGreg Roach     * @return Collection|Family[]
967a25f0a04SGreg Roach     */
968820b62dfSGreg Roach    public function childStepFamilies(): Collection
969c1010edaSGreg Roach    {
97013abd6f3SGreg Roach        $step_families = [];
97139ca88baSGreg Roach        $families      = $this->childFamilies();
972a25f0a04SGreg Roach        foreach ($families as $family) {
97339ca88baSGreg Roach            $father = $family->husband();
974a25f0a04SGreg Roach            if ($father) {
97539ca88baSGreg Roach                foreach ($father->spouseFamilies() as $step_family) {
97639ca88baSGreg Roach                    if (!$families->containsStrict($step_family)) {
977a25f0a04SGreg Roach                        $step_families[] = $step_family;
978a25f0a04SGreg Roach                    }
979a25f0a04SGreg Roach                }
980a25f0a04SGreg Roach            }
98139ca88baSGreg Roach            $mother = $family->wife();
982a25f0a04SGreg Roach            if ($mother) {
98339ca88baSGreg Roach                foreach ($mother->spouseFamilies() as $step_family) {
98439ca88baSGreg Roach                    if (!$families->containsStrict($step_family)) {
985a25f0a04SGreg Roach                        $step_families[] = $step_family;
986a25f0a04SGreg Roach                    }
987a25f0a04SGreg Roach                }
988a25f0a04SGreg Roach            }
989a25f0a04SGreg Roach        }
990a25f0a04SGreg Roach
991820b62dfSGreg Roach        return new Collection($step_families);
992a25f0a04SGreg Roach    }
993a25f0a04SGreg Roach
994a25f0a04SGreg Roach    /**
995a25f0a04SGreg Roach     * Get a list of step-parent families.
996a25f0a04SGreg Roach     *
997820b62dfSGreg Roach     * @return Collection|Family[]
998a25f0a04SGreg Roach     */
999820b62dfSGreg Roach    public function spouseStepFamilies(): Collection
1000c1010edaSGreg Roach    {
100113abd6f3SGreg Roach        $step_families = [];
100239ca88baSGreg Roach        $families      = $this->spouseFamilies();
1003820b62dfSGreg Roach
1004a25f0a04SGreg Roach        foreach ($families as $family) {
100539ca88baSGreg Roach            $spouse = $family->spouse($this);
1006820b62dfSGreg Roach
1007a25f0a04SGreg Roach            if ($spouse) {
100839ca88baSGreg Roach                foreach ($family->spouse($this)->spouseFamilies() as $step_family) {
100939ca88baSGreg Roach                    if (!$families->containsStrict($step_family)) {
1010a25f0a04SGreg Roach                        $step_families[] = $step_family;
1011a25f0a04SGreg Roach                    }
1012a25f0a04SGreg Roach                }
1013a25f0a04SGreg Roach            }
1014a25f0a04SGreg Roach        }
1015a25f0a04SGreg Roach
1016820b62dfSGreg Roach        return new Collection($step_families);
1017a25f0a04SGreg Roach    }
1018a25f0a04SGreg Roach
1019a25f0a04SGreg Roach    /**
1020a25f0a04SGreg Roach     * A label for a parental family group
1021a25f0a04SGreg Roach     *
1022a25f0a04SGreg Roach     * @param Family $family
1023a25f0a04SGreg Roach     *
1024a25f0a04SGreg Roach     * @return string
1025a25f0a04SGreg Roach     */
1026820b62dfSGreg Roach    public function getChildFamilyLabel(Family $family): string
1027c1010edaSGreg Roach    {
10287d0db648SGreg Roach        if (preg_match('/\n1 FAMC @' . $family->xref() . '@(?:\n[2-9].*)*\n2 PEDI (.+)/', $this->gedcom(), $match)) {
1029a25f0a04SGreg Roach            // A specified pedigree
1030764a01d9SGreg Roach            return GedcomCodePedi::getChildFamilyLabel($match[1]);
1031b2ce94c6SRico Sonntag        }
1032b2ce94c6SRico Sonntag
1033a25f0a04SGreg Roach        // Default (birth) pedigree
1034764a01d9SGreg Roach        return GedcomCodePedi::getChildFamilyLabel('');
1035a25f0a04SGreg Roach    }
1036a25f0a04SGreg Roach
1037a25f0a04SGreg Roach    /**
1038a25f0a04SGreg Roach     * Create a label for a step family
1039a25f0a04SGreg Roach     *
1040a25f0a04SGreg Roach     * @param Family $step_family
1041a25f0a04SGreg Roach     *
1042a25f0a04SGreg Roach     * @return string
1043a25f0a04SGreg Roach     */
10448f53f488SRico Sonntag    public function getStepFamilyLabel(Family $step_family): string
1045c1010edaSGreg Roach    {
104639ca88baSGreg Roach        foreach ($this->childFamilies() as $family) {
1047a25f0a04SGreg Roach            if ($family !== $step_family) {
1048a25f0a04SGreg Roach                // Must be a step-family
104939ca88baSGreg Roach                foreach ($family->spouses() as $parent) {
105039ca88baSGreg Roach                    foreach ($step_family->spouses() as $step_parent) {
1051a25f0a04SGreg Roach                        if ($parent === $step_parent) {
1052a25f0a04SGreg Roach                            // One common parent - must be a step family
105339ca88baSGreg Roach                            if ($parent->sex() == 'M') {
1054a25f0a04SGreg Roach                                // Father’s family with someone else
105539ca88baSGreg Roach                                if ($step_family->spouse($step_parent)) {
1056a25f0a04SGreg Roach                                    /* I18N: A step-family. %s is an individual’s name */
105739ca88baSGreg Roach                                    return I18N::translate('Father’s family with %s', $step_family->spouse($step_parent)->fullName());
1058b2ce94c6SRico Sonntag                                }
1059b2ce94c6SRico Sonntag
1060a25f0a04SGreg Roach                                /* I18N: A step-family. */
1061bbb76c12SGreg Roach                                return I18N::translate('Father’s family with an unknown individual');
1062a25f0a04SGreg Roach                            }
1063b2ce94c6SRico Sonntag
1064a25f0a04SGreg Roach                            // Mother’s family with someone else
106539ca88baSGreg Roach                            if ($step_family->spouse($step_parent)) {
1066a25f0a04SGreg Roach                                /* I18N: A step-family. %s is an individual’s name */
106739ca88baSGreg Roach                                return I18N::translate('Mother’s family with %s', $step_family->spouse($step_parent)->fullName());
1068b2ce94c6SRico Sonntag                            }
1069b2ce94c6SRico Sonntag
1070a25f0a04SGreg Roach                            /* I18N: A step-family. */
1071bbb76c12SGreg Roach                            return I18N::translate('Mother’s family with an unknown individual');
1072a25f0a04SGreg Roach                        }
1073a25f0a04SGreg Roach                    }
1074a25f0a04SGreg Roach                }
1075a25f0a04SGreg Roach            }
1076a25f0a04SGreg Roach        }
1077a25f0a04SGreg Roach
1078a25f0a04SGreg Roach        // Perahps same parents - but a different family record?
1079a25f0a04SGreg Roach        return I18N::translate('Family with parents');
1080a25f0a04SGreg Roach    }
1081a25f0a04SGreg Roach
1082225e381fSGreg Roach    /**
1083225e381fSGreg Roach     * Get the description for the family.
1084225e381fSGreg Roach     *
1085225e381fSGreg Roach     * For example, "XXX's family with new wife".
1086225e381fSGreg Roach     *
1087225e381fSGreg Roach     * @param Family $family
1088225e381fSGreg Roach     *
1089225e381fSGreg Roach     * @return string
1090225e381fSGreg Roach     */
1091c1010edaSGreg Roach    public function getSpouseFamilyLabel(Family $family)
1092c1010edaSGreg Roach    {
109339ca88baSGreg Roach        $spouse = $family->spouse($this);
1094225e381fSGreg Roach        if ($spouse) {
1095225e381fSGreg Roach            /* I18N: %s is the spouse name */
109639ca88baSGreg Roach            return I18N::translate('Family with %s', $spouse->fullName());
1097225e381fSGreg Roach        }
1098b2ce94c6SRico Sonntag
109939ca88baSGreg Roach        return $family->fullName();
1100225e381fSGreg Roach    }
1101225e381fSGreg Roach
1102a25f0a04SGreg Roach    /**
1103a25f0a04SGreg Roach     * get primary parents names for this individual
1104a25f0a04SGreg Roach     *
1105a25f0a04SGreg Roach     * @param string $classname optional css class
1106a25f0a04SGreg Roach     * @param string $display   optional css style display
1107a25f0a04SGreg Roach     *
1108a25f0a04SGreg Roach     * @return string a div block with father & mother names
1109a25f0a04SGreg Roach     */
11108f53f488SRico Sonntag    public function getPrimaryParentsNames($classname = '', $display = ''): string
1111c1010edaSGreg Roach    {
111239ca88baSGreg Roach        $fam = $this->primaryChildFamily();
1113a25f0a04SGreg Roach        if (!$fam) {
1114a25f0a04SGreg Roach            return '';
1115a25f0a04SGreg Roach        }
1116a25f0a04SGreg Roach        $txt = '<div';
1117a25f0a04SGreg Roach        if ($classname) {
11184c621133SGreg Roach            $txt .= ' class="' . $classname . '"';
1119a25f0a04SGreg Roach        }
1120a25f0a04SGreg Roach        if ($display) {
11214c621133SGreg Roach            $txt .= ' style="display:' . $display . '"';
1122a25f0a04SGreg Roach        }
1123a25f0a04SGreg Roach        $txt .= '>';
112439ca88baSGreg Roach        $husb = $fam->husband();
1125a25f0a04SGreg Roach        if ($husb) {
1126a25f0a04SGreg Roach            // Temporarily reset the 'prefered' display name, as we always
1127a25f0a04SGreg Roach            // want the default name, not the one selected for display on the indilist.
1128a25f0a04SGreg Roach            $primary = $husb->getPrimaryName();
1129a25f0a04SGreg Roach            $husb->setPrimaryName(null);
1130a25f0a04SGreg Roach            /* I18N: %s is the name of an individual’s father */
113139ca88baSGreg Roach            $txt .= I18N::translate('Father: %s', $husb->fullName()) . '<br>';
1132a25f0a04SGreg Roach            $husb->setPrimaryName($primary);
1133a25f0a04SGreg Roach        }
113439ca88baSGreg Roach        $wife = $fam->wife();
1135a25f0a04SGreg Roach        if ($wife) {
1136a25f0a04SGreg Roach            // Temporarily reset the 'prefered' display name, as we always
1137a25f0a04SGreg Roach            // want the default name, not the one selected for display on the indilist.
1138a25f0a04SGreg Roach            $primary = $wife->getPrimaryName();
1139a25f0a04SGreg Roach            $wife->setPrimaryName(null);
1140a25f0a04SGreg Roach            /* I18N: %s is the name of an individual’s mother */
114139ca88baSGreg Roach            $txt .= I18N::translate('Mother: %s', $wife->fullName());
1142a25f0a04SGreg Roach            $wife->setPrimaryName($primary);
1143a25f0a04SGreg Roach        }
1144a25f0a04SGreg Roach        $txt .= '</div>';
1145a25f0a04SGreg Roach
1146a25f0a04SGreg Roach        return $txt;
1147a25f0a04SGreg Roach    }
1148a25f0a04SGreg Roach
1149961ec755SGreg Roach    /**
1150961ec755SGreg Roach     * If this object has no name, what do we call it?
1151961ec755SGreg Roach     *
1152961ec755SGreg Roach     * @return string
1153961ec755SGreg Roach     */
11548f53f488SRico Sonntag    public function getFallBackName(): string
1155c1010edaSGreg Roach    {
1156a25f0a04SGreg Roach        return '@P.N. /@N.N./';
1157a25f0a04SGreg Roach    }
1158a25f0a04SGreg Roach
1159a25f0a04SGreg Roach    /**
1160a25f0a04SGreg Roach     * Convert a name record into ‘full’ and ‘sort’ versions.
1161a25f0a04SGreg Roach     * Use the NAME field to generate the ‘full’ version, as the
1162a25f0a04SGreg Roach     * gedcom spec says that this is the individual’s name, as they would write it.
1163a25f0a04SGreg Roach     * Use the SURN field to generate the sortable names. Note that this field
1164a25f0a04SGreg Roach     * may also be used for the ‘true’ surname, perhaps spelt differently to that
1165a25f0a04SGreg Roach     * recorded in the NAME field. e.g.
1166a25f0a04SGreg Roach     *
1167a25f0a04SGreg Roach     * 1 NAME Robert /de Gliderow/
1168a25f0a04SGreg Roach     * 2 GIVN Robert
1169a25f0a04SGreg Roach     * 2 SPFX de
1170a25f0a04SGreg Roach     * 2 SURN CLITHEROW
1171a25f0a04SGreg Roach     * 2 NICK The Bald
1172a25f0a04SGreg Roach     *
1173a25f0a04SGreg Roach     * full=>'Robert de Gliderow 'The Bald''
1174a25f0a04SGreg Roach     * sort=>'CLITHEROW, ROBERT'
1175a25f0a04SGreg Roach     *
1176a25f0a04SGreg Roach     * Handle multiple surnames, either as;
1177a25f0a04SGreg Roach     *
1178a25f0a04SGreg Roach     * 1 NAME Carlos /Vasquez/ y /Sante/
1179a25f0a04SGreg Roach     * or
1180a25f0a04SGreg Roach     * 1 NAME Carlos /Vasquez y Sante/
1181a25f0a04SGreg Roach     * 2 GIVN Carlos
1182a25f0a04SGreg Roach     * 2 SURN Vasquez,Sante
1183a25f0a04SGreg Roach     *
1184a25f0a04SGreg Roach     * @param string $type
1185a25f0a04SGreg Roach     * @param string $full
1186a25f0a04SGreg Roach     * @param string $gedcom
1187a25f0a04SGreg Roach     */
118876f666f4SGreg Roach    protected function addName(string $type, string $full, string $gedcom)
1189c1010edaSGreg Roach    {
1190a25f0a04SGreg Roach        ////////////////////////////////////////////////////////////////////////////
1191a25f0a04SGreg Roach        // Extract the structured name parts - use for "sortable" names and indexes
1192a25f0a04SGreg Roach        ////////////////////////////////////////////////////////////////////////////
1193a25f0a04SGreg Roach
119476f666f4SGreg Roach        $sublevel = 1 + (int) substr($gedcom, 0, 1);
1195a25f0a04SGreg Roach        $GIVN     = preg_match("/\n{$sublevel} GIVN (.+)/", $gedcom, $match) ? $match[1] : '';
1196a25f0a04SGreg Roach        $SURN     = preg_match("/\n{$sublevel} SURN (.+)/", $gedcom, $match) ? $match[1] : '';
1197a25f0a04SGreg Roach        $NICK     = preg_match("/\n{$sublevel} NICK (.+)/", $gedcom, $match) ? $match[1] : '';
1198a25f0a04SGreg Roach
1199a25f0a04SGreg Roach        // SURN is an comma-separated list of surnames...
120076f666f4SGreg Roach        if ($SURN !== '') {
1201a25f0a04SGreg Roach            $SURNS = preg_split('/ *, */', $SURN);
1202a25f0a04SGreg Roach        } else {
120313abd6f3SGreg Roach            $SURNS = [];
1204a25f0a04SGreg Roach        }
120576f666f4SGreg Roach
1206a25f0a04SGreg Roach        // ...so is GIVN - but nobody uses it like that
1207a25f0a04SGreg Roach        $GIVN = str_replace('/ *, */', ' ', $GIVN);
1208a25f0a04SGreg Roach
1209a25f0a04SGreg Roach        ////////////////////////////////////////////////////////////////////////////
1210a25f0a04SGreg Roach        // Extract the components from NAME - use for the "full" names
1211a25f0a04SGreg Roach        ////////////////////////////////////////////////////////////////////////////
1212a25f0a04SGreg Roach
1213a25f0a04SGreg Roach        // Fix bad slashes. e.g. 'John/Smith' => 'John/Smith/'
121476f666f4SGreg Roach        if (substr_count($full, '/') % 2 === 1) {
1215a25f0a04SGreg Roach            $full = $full . '/';
1216a25f0a04SGreg Roach        }
1217a25f0a04SGreg Roach
1218a25f0a04SGreg Roach        // GEDCOM uses "//" to indicate an unknown surname
1219a25f0a04SGreg Roach        $full = preg_replace('/\/\//', '/@N.N./', $full);
1220a25f0a04SGreg Roach
1221a25f0a04SGreg Roach        // Extract the surname.
1222a25f0a04SGreg Roach        // Note, there may be multiple surnames, e.g. Jean /Vasquez/ y /Cortes/
1223a25f0a04SGreg Roach        if (preg_match('/\/.*\//', $full, $match)) {
1224a25f0a04SGreg Roach            $surname = str_replace('/', '', $match[0]);
1225a25f0a04SGreg Roach        } else {
1226a25f0a04SGreg Roach            $surname = '';
1227a25f0a04SGreg Roach        }
1228a25f0a04SGreg Roach
1229a25f0a04SGreg Roach        // If we don’t have a SURN record, extract it from the NAME
1230a25f0a04SGreg Roach        if (!$SURNS) {
1231a25f0a04SGreg Roach            if (preg_match_all('/\/([^\/]*)\//', $full, $matches)) {
1232a25f0a04SGreg Roach                // There can be many surnames, each wrapped with '/'
1233a25f0a04SGreg Roach                $SURNS = $matches[1];
1234a25f0a04SGreg Roach                foreach ($SURNS as $n => $SURN) {
1235a25f0a04SGreg Roach                    // Remove surname prefixes, such as "van de ", "d'" and "'t " (lower case only)
1236a25f0a04SGreg Roach                    $SURNS[$n] = preg_replace('/^(?:[a-z]+ |[a-z]+\' ?|\'[a-z]+ )+/', '', $SURN);
1237a25f0a04SGreg Roach                }
1238a25f0a04SGreg Roach            } else {
1239a25f0a04SGreg Roach                // It is valid not to have a surname at all
124013abd6f3SGreg Roach                $SURNS = [''];
1241a25f0a04SGreg Roach            }
1242a25f0a04SGreg Roach        }
1243a25f0a04SGreg Roach
1244a25f0a04SGreg Roach        // If we don’t have a GIVN record, extract it from the NAME
1245a25f0a04SGreg Roach        if (!$GIVN) {
1246a25f0a04SGreg Roach            $GIVN = preg_replace(
124713abd6f3SGreg Roach                [
1248c1010edaSGreg Roach                    '/ ?\/.*\/ ?/',
1249c1010edaSGreg Roach                    // remove surname
1250c1010edaSGreg Roach                    '/ ?".+"/',
1251c1010edaSGreg Roach                    // remove nickname
1252c1010edaSGreg Roach                    '/ {2,}/',
1253c1010edaSGreg Roach                    // multiple spaces, caused by the above
1254c1010edaSGreg Roach                    '/^ | $/',
1255c1010edaSGreg Roach                    // leading/trailing spaces, caused by the above
125613abd6f3SGreg Roach                ],
125713abd6f3SGreg Roach                [
1258a25f0a04SGreg Roach                    ' ',
1259a25f0a04SGreg Roach                    ' ',
1260a25f0a04SGreg Roach                    ' ',
1261a25f0a04SGreg Roach                    '',
126213abd6f3SGreg Roach                ],
1263a25f0a04SGreg Roach                $full
1264a25f0a04SGreg Roach            );
1265a25f0a04SGreg Roach        }
1266a25f0a04SGreg Roach
1267a25f0a04SGreg Roach        // Add placeholder for unknown given name
1268a25f0a04SGreg Roach        if (!$GIVN) {
1269a25f0a04SGreg Roach            $GIVN = '@P.N.';
127073f4f553SGreg Roach            $pos  = (int) strpos($full, '/');
1271a25f0a04SGreg Roach            $full = substr($full, 0, $pos) . '@P.N. ' . substr($full, $pos);
1272a25f0a04SGreg Roach        }
1273a25f0a04SGreg Roach
12747b0e71c3SGreg Roach        // GEDCOM 5.5.1 nicknames should be specificied in a NICK field
12757b0e71c3SGreg Roach        // GEDCOM 5.5   nicknames should be specified in the NAME field, surrounded by quotes
1276c6f196c3SGreg Roach        if ($NICK && strpos($full, '"' . $NICK . '"') === false) {
12777b0e71c3SGreg Roach            // A NICK field is present, but not included in the NAME.  Show it at the end.
1278c6f196c3SGreg Roach            $full .= ' "' . $NICK . '"';
1279a25f0a04SGreg Roach        }
1280a25f0a04SGreg Roach
1281a25f0a04SGreg Roach        // Remove slashes - they don’t get displayed
1282a25f0a04SGreg Roach        // $fullNN keeps the @N.N. placeholders, for the database
1283a25f0a04SGreg Roach        // $full is for display on-screen
1284a25f0a04SGreg Roach        $fullNN = str_replace('/', '', $full);
1285a25f0a04SGreg Roach
1286a25f0a04SGreg Roach        // Insert placeholders for any missing/unknown names
1287ad1a1cd2SGreg Roach        $full = str_replace('@N.N.', I18N::translateContext('Unknown surname', '…'), $full);
1288ad1a1cd2SGreg Roach        $full = str_replace('@P.N.', I18N::translateContext('Unknown given name', '…'), $full);
1289c6f196c3SGreg Roach        // Format for display
1290d53324c9SGreg Roach        $full = '<span class="NAME" dir="auto" translate="no">' . preg_replace('/\/([^\/]*)\//', '<span class="SURN">$1</span>', e($full)) . '</span>';
1291acc34ea1SGreg Roach        // Localise quotation marks around the nickname
129218d7a90dSGreg Roach        $full = preg_replace_callback('/&quot;([^&]*)&quot;/', function (array $matches): string {
12938d68cabeSGreg Roach            return I18N::translate('“%s”', $matches[1]);
12948d68cabeSGreg Roach        }, $full);
1295a25f0a04SGreg Roach
1296c6f196c3SGreg Roach        // A suffix of “*” indicates a preferred name
1297a25f0a04SGreg Roach        $full = preg_replace('/([^ >]*)\*/', '<span class="starredname">\\1</span>', $full);
1298a25f0a04SGreg Roach
1299a25f0a04SGreg Roach        // Remove prefered-name indicater - they don’t go in the database
1300a25f0a04SGreg Roach        $GIVN   = str_replace('*', '', $GIVN);
1301a25f0a04SGreg Roach        $fullNN = str_replace('*', '', $fullNN);
1302a25f0a04SGreg Roach
1303ffd703eaSGreg Roach        foreach ($SURNS as $SURN) {
1304a25f0a04SGreg Roach            // Scottish 'Mc and Mac ' prefixes both sort under 'Mac'
1305a25f0a04SGreg Roach            if (strcasecmp(substr($SURN, 0, 2), 'Mc') == 0) {
1306a25f0a04SGreg Roach                $SURN = substr_replace($SURN, 'Mac', 0, 2);
1307a25f0a04SGreg Roach            } elseif (strcasecmp(substr($SURN, 0, 4), 'Mac ') == 0) {
1308a25f0a04SGreg Roach                $SURN = substr_replace($SURN, 'Mac', 0, 4);
1309a25f0a04SGreg Roach            }
1310a25f0a04SGreg Roach
1311bdb3725aSGreg Roach            $this->getAllNames[] = [
1312a25f0a04SGreg Roach                'type'    => $type,
1313a25f0a04SGreg Roach                'sort'    => $SURN . ',' . $GIVN,
1314c1010edaSGreg Roach                'full'    => $full,
1315c1010edaSGreg Roach                // This is used for display
1316c1010edaSGreg Roach                'fullNN'  => $fullNN,
1317c1010edaSGreg Roach                // This goes into the database
1318c1010edaSGreg Roach                'surname' => $surname,
1319c1010edaSGreg Roach                // This goes into the database
1320c1010edaSGreg Roach                'givn'    => $GIVN,
1321c1010edaSGreg Roach                // This goes into the database
1322c1010edaSGreg Roach                'surn'    => $SURN,
1323c1010edaSGreg Roach                // This goes into the database
132413abd6f3SGreg Roach            ];
1325a25f0a04SGreg Roach        }
1326a25f0a04SGreg Roach    }
1327a25f0a04SGreg Roach
1328a25f0a04SGreg Roach    /**
132976692c8bSGreg Roach     * Extract names from the GEDCOM record.
1330c7ff4153SGreg Roach     *
1331c7ff4153SGreg Roach     * @return void
1332a25f0a04SGreg Roach     */
1333c1010edaSGreg Roach    public function extractNames()
1334c1010edaSGreg Roach    {
13358f53f488SRico Sonntag        $this->extractNamesFromFacts(
13368f53f488SRico Sonntag            1,
13378f53f488SRico Sonntag            'NAME',
133830158ae7SGreg Roach            $this->facts(
13398d0ebef0SGreg Roach                ['NAME'],
13408f53f488SRico Sonntag                false,
13418f53f488SRico Sonntag                Auth::accessLevel($this->tree),
13428f53f488SRico Sonntag                $this->canShowName()
13438f53f488SRico Sonntag            )
13448f53f488SRico Sonntag        );
1345a25f0a04SGreg Roach    }
1346a25f0a04SGreg Roach
1347a25f0a04SGreg Roach    /**
1348a25f0a04SGreg Roach     * Extra info to display when displaying this record in a list of
1349a25f0a04SGreg Roach     * selection items or favorites.
1350a25f0a04SGreg Roach     *
1351a25f0a04SGreg Roach     * @return string
1352a25f0a04SGreg Roach     */
13538f53f488SRico Sonntag    public function formatListDetails(): string
1354c1010edaSGreg Roach    {
1355a25f0a04SGreg Roach        return
13568d0ebef0SGreg Roach            $this->formatFirstMajorFact(Gedcom::BIRTH_EVENTS, 1) .
13578d0ebef0SGreg Roach            $this->formatFirstMajorFact(Gedcom::DEATH_EVENTS, 1);
1358a25f0a04SGreg Roach    }
1359a25f0a04SGreg Roach}
1360