Passed
Push — master ( 933866...696755 )
by Greg
06:17
created

AbstractGedcomRecordFactory   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 34
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 10
c 1
b 0
f 0
dl 0
loc 34
rs 10
wmc 3

2 Methods

Rating   Name   Duplication   Size   Complexity  
A extractXref() 0 7 2
A pendingChanges() 0 9 1
1
<?php
2
3
/**
4
 * webtrees: online genealogy
5
 * Copyright (C) 2020 webtrees development team
6
 * This program is free software: you can redistribute it and/or modify
7
 * it under the terms of the GNU General Public License as published by
8
 * the Free Software Foundation, either version 3 of the License, or
9
 * (at your option) any later version.
10
 * This program is distributed in the hope that it will be useful,
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
 * GNU General Public License for more details.
14
 * You should have received a copy of the GNU General Public License
15
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
16
 */
17
18
declare(strict_types=1);
19
20
namespace Fisharebest\Webtrees\Factories;
21
22
use Fisharebest\Webtrees\Factory;
23
use Fisharebest\Webtrees\Gedcom;
24
use Fisharebest\Webtrees\Tree;
25
use Illuminate\Database\Capsule\Manager as DB;
26
use Illuminate\Support\Collection;
27
use stdClass;
28
29
/**
30
 * Make a GedcomRecord object.
31
 */
32
abstract class AbstractGedcomRecordFactory
33
{
34
    /**
35
     * @param Tree $tree
36
     *
37
     * @return Collection<stdClass>
38
     */
39
    protected function pendingChanges(Tree $tree): Collection
40
    {
41
        // Caution - this cache can be overwritten by GedcomExportService
42
        return Factory::cache()->array()->remember(__CLASS__ . $tree->id(), static function () use ($tree): Collection {
43
            return DB::table('change')
44
                ->where('gedcom_id', '=', $tree->id())
45
                ->where('status', '=', 'pending')
46
                ->orderBy('change_id')
47
                ->pluck('new_gedcom', 'xref');
48
        });
49
    }
50
51
    /**
52
     * We may have searched for X123, but found the record for x123.
53
     *
54
     * @param string $gedcom
55
     * @param string $xref
56
     *
57
     * @return mixed|string
58
     */
59
    protected function extractXref(string $gedcom, string $xref)
60
    {
61
        if (preg_match('/^0 @(' . Gedcom::REGEX_XREF . ')@/', $gedcom, $match)) {
62
            return $match[1];
63
        }
64
65
        return $xref;
66
    }
67
}
68