xref: /webtrees/app/SurnameTradition/IcelandicSurnameTradition.php (revision 8fcd0d32e56ee262912bbdb593202cfd1cbc1615)
1323788f4SGreg Roach<?php
2323788f4SGreg Roach/**
3323788f4SGreg Roach * webtrees: online genealogy
4*8fcd0d32SGreg Roach * Copyright (C) 2019 webtrees development team
5323788f4SGreg Roach * This program is free software: you can redistribute it and/or modify
6323788f4SGreg Roach * it under the terms of the GNU General Public License as published by
7323788f4SGreg Roach * the Free Software Foundation, either version 3 of the License, or
8323788f4SGreg Roach * (at your option) any later version.
9323788f4SGreg Roach * This program is distributed in the hope that it will be useful,
10323788f4SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
11323788f4SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12323788f4SGreg Roach * GNU General Public License for more details.
13323788f4SGreg Roach * You should have received a copy of the GNU General Public License
14323788f4SGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>.
15323788f4SGreg Roach */
16e7f56f2aSGreg Roachdeclare(strict_types=1);
17e7f56f2aSGreg Roach
18323788f4SGreg Roachnamespace Fisharebest\Webtrees\SurnameTradition;
19323788f4SGreg Roach
20323788f4SGreg Roach/**
21323788f4SGreg Roach * Children take a patronym instead of a surname.
22323788f4SGreg Roach *
23323788f4SGreg Roach * Sons get their father’s given name plus “sson”
24323788f4SGreg Roach * Daughters get their father’s given name plus “sdottir”
25323788f4SGreg Roach */
26c1010edaSGreg Roachclass IcelandicSurnameTradition extends DefaultSurnameTradition implements SurnameTraditionInterface
27c1010edaSGreg Roach{
28323788f4SGreg Roach    /**
29c1ec7145SGreg Roach     * Does this surname tradition use surnames?
30c1ec7145SGreg Roach     *
31c1ec7145SGreg Roach     * @return bool
32c1ec7145SGreg Roach     */
338f53f488SRico Sonntag    public function hasSurnames(): bool
34c1010edaSGreg Roach    {
35c1ec7145SGreg Roach        return false;
36c1ec7145SGreg Roach    }
37c1ec7145SGreg Roach
38c1ec7145SGreg Roach    /**
39323788f4SGreg Roach     * What names are given to a new child
40323788f4SGreg Roach     *
41323788f4SGreg Roach     * @param string $father_name A GEDCOM NAME
42323788f4SGreg Roach     * @param string $mother_name A GEDCOM NAME
43323788f4SGreg Roach     * @param string $child_sex   M, F or U
44323788f4SGreg Roach     *
45323788f4SGreg Roach     * @return string[] Associative array of GEDCOM name parts (SURN, _MARNM, etc.)
46323788f4SGreg Roach     */
47771ae10aSGreg Roach    public function newChildNames(string $father_name, string $mother_name, string $child_sex): array
48c1010edaSGreg Roach    {
49323788f4SGreg Roach        if (preg_match(self::REGEX_GIVN, $father_name, $father_match)) {
50323788f4SGreg Roach            switch ($child_sex) {
51323788f4SGreg Roach                case 'M':
5213abd6f3SGreg Roach                    return [
53323788f4SGreg Roach                        'NAME' => $father_match['GIVN'] . 'sson',
5413abd6f3SGreg Roach                    ];
55323788f4SGreg Roach                case 'F':
5613abd6f3SGreg Roach                    return [
57323788f4SGreg Roach                        'NAME' => $father_match['GIVN'] . 'sdottir',
5813abd6f3SGreg Roach                    ];
59323788f4SGreg Roach            }
60323788f4SGreg Roach        }
61323788f4SGreg Roach
6213abd6f3SGreg Roach        return [];
63323788f4SGreg Roach    }
64323788f4SGreg Roach
65323788f4SGreg Roach    /**
66323788f4SGreg Roach     * What names are given to a new parent
67323788f4SGreg Roach     *
68323788f4SGreg Roach     * @param string $child_name A GEDCOM NAME
69323788f4SGreg Roach     * @param string $parent_sex M, F or U
70323788f4SGreg Roach     *
71323788f4SGreg Roach     * @return string[] Associative array of GEDCOM name parts (SURN, _MARNM, etc.)
72323788f4SGreg Roach     */
73771ae10aSGreg Roach    public function newParentNames(string $child_name, string $parent_sex): array
74c1010edaSGreg Roach    {
75323788f4SGreg Roach        if ($parent_sex === 'M' && preg_match('~(?<GIVN>[^ /]+)(:?sson|sdottir)$~', $child_name, $child_match)) {
7613abd6f3SGreg Roach            return [
77323788f4SGreg Roach                'NAME' => $child_match['GIVN'],
78323788f4SGreg Roach                'GIVN' => $child_match['GIVN'],
7913abd6f3SGreg Roach            ];
80323788f4SGreg Roach        }
81b2ce94c6SRico Sonntag
82b2ce94c6SRico Sonntag        return [];
83323788f4SGreg Roach    }
84323788f4SGreg Roach
85323788f4SGreg Roach    /**
86323788f4SGreg Roach     * What names are given to a new spouse
87323788f4SGreg Roach     *
88323788f4SGreg Roach     * @param string $spouse_name A GEDCOM NAME
89323788f4SGreg Roach     * @param string $spouse_sex  M, F or U
90323788f4SGreg Roach     *
91323788f4SGreg Roach     * @return string[] Associative array of GEDCOM name parts (SURN, _MARNM, etc.)
92323788f4SGreg Roach     */
93771ae10aSGreg Roach    public function newSpouseNames(string $spouse_name, string $spouse_sex): array
94c1010edaSGreg Roach    {
9513abd6f3SGreg Roach        return [];
96323788f4SGreg Roach    }
97323788f4SGreg Roach}
98