Completed
Push — develop ( 2ca406...b33d79 )
by Greg
27:09 queued 11:25
created

SlugFactory   A

Complexity

Total Complexity 7

Size/Duplication

Total Lines 36
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 13
dl 0
loc 36
rs 10
c 1
b 0
f 0
wmc 7

2 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 7 4
A make() 0 16 3
1
<?php
2
3
/**
4
 * webtrees: online genealogy
5
 * Copyright (C) 2021 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 <https://www.gnu.org/licenses/>.
16
 */
17
18
declare(strict_types=1);
19
20
namespace Fisharebest\Webtrees\Factories;
21
22
use Fisharebest\Webtrees\Contracts\SlugFactoryInterface;
23
use Fisharebest\Webtrees\GedcomRecord;
24
use Transliterator;
25
26
use function extension_loaded;
27
use function preg_replace;
28
use function strip_tags;
29
use function trim;
30
31
/**
32
 * Make a slug to be used in the URL of a GedcomRecord.
33
 */
34
class SlugFactory implements SlugFactoryInterface
35
{
36
    private ?Transliterator $transliterator;
37
38
    public function __construct()
39
    {
40
        if (extension_loaded('intl')) {
41
            $ids = Transliterator::listIDs();
42
43
            if (in_array('Any-Latin', $ids, true) && in_array('Latin-ASCII', $ids, true)) {
44
                $this->transliterator = Transliterator::create('Any-Latin;Latin-ASCII');
45
            }
46
        }
47
    }
48
49
    /**
50
     * @param GedcomRecord $record
51
     *
52
     * @return string|null
53
     */
54
    public function make(GedcomRecord $record): ?string
55
    {
56
        $slug = strip_tags($record->fullName());
57
58
        if ($this->transliterator instanceof Transliterator) {
59
            $slug = $this->transliterator->transliterate($slug);
60
        }
61
62
        $slug = preg_replace('/[^A-Za-z0-9]+/', '-', $slug);
63
        $slug = trim($slug, '-');
64
65
        if ($slug !== '') {
66
            return $slug;
67
        }
68
69
        return null;
70
    }
71
}
72