xref: /webtrees/app/Source.php (revision d5ad3db07e8881039a1b485e037789531d265b51)
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;
21a25f0a04SGreg Roach
22886b77daSGreg Roachuse Closure;
236ccdf4f0SGreg Roachuse Exception;
2454186344SGreg Roachuse Fisharebest\Webtrees\Http\RequestHandlers\SourcePage;
252e5b4452SGreg Roachuse Illuminate\Database\Capsule\Manager as DB;
26886b77daSGreg Roachuse stdClass;
272e5b4452SGreg Roach
28a25f0a04SGreg Roach/**
2976692c8bSGreg Roach * A GEDCOM source (SOUR) object.
30a25f0a04SGreg Roach */
31c1010edaSGreg Roachclass Source extends GedcomRecord
32c1010edaSGreg Roach{
3316d6367aSGreg Roach    public const RECORD_TYPE = 'SOUR';
3416d6367aSGreg Roach
3554186344SGreg Roach    protected const ROUTE_NAME  = SourcePage::class;
36a25f0a04SGreg Roach
3776692c8bSGreg Roach    /**
38886b77daSGreg Roach     * A closure which will create a record from a database row.
39886b77daSGreg Roach     *
40*d5ad3db0SGreg Roach     * @param Tree $tree
41*d5ad3db0SGreg Roach     *
42886b77daSGreg Roach     * @return Closure
43886b77daSGreg Roach     */
44*d5ad3db0SGreg Roach    public static function rowMapper(Tree $tree): Closure
45886b77daSGreg Roach    {
46*d5ad3db0SGreg Roach        return static function (stdClass $row) use ($tree): Source {
47*d5ad3db0SGreg Roach            return Source::getInstance($row->s_id, $tree, $row->s_gedcom);
48886b77daSGreg Roach        };
49886b77daSGreg Roach    }
50886b77daSGreg Roach
51886b77daSGreg Roach    /**
52e71ef9d2SGreg Roach     * Get an instance of a source object. For single records,
53e71ef9d2SGreg Roach     * we just receive the XREF. For bulk records (such as lists
54e71ef9d2SGreg Roach     * and search results) we can receive the GEDCOM data as well.
55e71ef9d2SGreg Roach     *
56e71ef9d2SGreg Roach     * @param string      $xref
57e71ef9d2SGreg Roach     * @param Tree        $tree
58e71ef9d2SGreg Roach     * @param string|null $gedcom
59e71ef9d2SGreg Roach     *
606ccdf4f0SGreg Roach     * @throws Exception
61e71ef9d2SGreg Roach     *
62e71ef9d2SGreg Roach     * @return Source|null
63e71ef9d2SGreg Roach     */
64e364afe4SGreg Roach    public static function getInstance(string $xref, Tree $tree, string $gedcom = null): ?self
65c1010edaSGreg Roach    {
66e71ef9d2SGreg Roach        $record = parent::getInstance($xref, $tree, $gedcom);
67e71ef9d2SGreg Roach
68e364afe4SGreg Roach        if ($record instanceof self) {
69e71ef9d2SGreg Roach            return $record;
70e71ef9d2SGreg Roach        }
71b2ce94c6SRico Sonntag
72b2ce94c6SRico Sonntag        return null;
73e71ef9d2SGreg Roach    }
74e71ef9d2SGreg Roach
75e71ef9d2SGreg Roach    /**
7676692c8bSGreg Roach     * Each object type may have its own special rules, and re-implement this function.
7776692c8bSGreg Roach     *
7876692c8bSGreg Roach     * @param int $access_level
7976692c8bSGreg Roach     *
8076692c8bSGreg Roach     * @return bool
8176692c8bSGreg Roach     */
8235584196SGreg Roach    protected function canShowByType(int $access_level): bool
83c1010edaSGreg Roach    {
84a25f0a04SGreg Roach        // Hide sources if they are attached to private repositories ...
85a25f0a04SGreg Roach        preg_match_all('/\n1 REPO @(.+)@/', $this->gedcom, $matches);
86a25f0a04SGreg Roach        foreach ($matches[1] as $match) {
8724ec66ceSGreg Roach            $repo = Repository::getInstance($match, $this->tree);
88a25f0a04SGreg Roach            if ($repo && !$repo->canShow($access_level)) {
89a25f0a04SGreg Roach                return false;
90a25f0a04SGreg Roach            }
91a25f0a04SGreg Roach        }
92a25f0a04SGreg Roach
93b3a775f6SGreg Roach        // ... otherwise apply default behavior
94a25f0a04SGreg Roach        return parent::canShowByType($access_level);
95a25f0a04SGreg Roach    }
96a25f0a04SGreg Roach
9776692c8bSGreg Roach    /**
9876692c8bSGreg Roach     * Generate a private version of this record
9976692c8bSGreg Roach     *
10076692c8bSGreg Roach     * @param int $access_level
10176692c8bSGreg Roach     *
10276692c8bSGreg Roach     * @return string
10376692c8bSGreg Roach     */
1043c90ed31SGreg Roach    protected function createPrivateGedcomRecord(int $access_level): string
105c1010edaSGreg Roach    {
106a25f0a04SGreg Roach        return '0 @' . $this->xref . "@ SOUR\n1 TITL " . I18N::translate('Private');
107a25f0a04SGreg Roach    }
108a25f0a04SGreg Roach
10976692c8bSGreg Roach    /**
11076692c8bSGreg Roach     * Fetch data from the database
11176692c8bSGreg Roach     *
11276692c8bSGreg Roach     * @param string $xref
11376692c8bSGreg Roach     * @param int    $tree_id
11476692c8bSGreg Roach     *
115e364afe4SGreg Roach     * @return string|null
11676692c8bSGreg Roach     */
117e364afe4SGreg Roach    protected static function fetchGedcomRecord(string $xref, int $tree_id): ?string
118c1010edaSGreg Roach    {
1192e5b4452SGreg Roach        return DB::table('sources')
1202e5b4452SGreg Roach            ->where('s_id', '=', $xref)
1212e5b4452SGreg Roach            ->where('s_file', '=', $tree_id)
1222e5b4452SGreg Roach            ->value('s_gedcom');
123a25f0a04SGreg Roach    }
124a25f0a04SGreg Roach
12576692c8bSGreg Roach    /**
12676692c8bSGreg Roach     * Extract names from the GEDCOM record.
127c7ff4153SGreg Roach     *
128c7ff4153SGreg Roach     * @return void
12976692c8bSGreg Roach     */
130e364afe4SGreg Roach    public function extractNames(): void
131c1010edaSGreg Roach    {
132e364afe4SGreg Roach        $this->extractNamesFromFacts(1, 'TITL', $this->facts(['TITL']));
133a25f0a04SGreg Roach    }
134a25f0a04SGreg Roach}
135