Completed
Pull Request — master (#47)
by
unknown
10:02 queued 05:05
created

Slug::filter()   A

Complexity

Conditions 4
Paths 4

Size

Total Lines 16
Code Lines 10

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 10
CRAP Score 4.0119

Importance

Changes 2
Bugs 0 Features 1
Metric Value
c 2
b 0
f 1
dl 0
loc 16
ccs 10
cts 11
cp 0.9091
rs 9.2
cc 4
eloc 10
nc 4
nop 1
crap 4.0119
1
<?php
2
/**
3
 * Particle.
4
 *
5
 * @link      http://github.com/particle-php for the canonical source repository
6
 * @copyright Copyright (c) 2005-2015 Particle (http://particle-php.com)
7
 * @license   https://github.com/particle-php/Filter/blob/master/LICENSE New BSD License
8
 */
9
namespace Particle\Filter\FilterRule;
10
11
use Particle\Filter\FilterRule;
12
13
/**
14
 * Class Slug
15
 *
16
 * @package Particle\Filter\FilterRule
17
 */
18
class Slug extends FilterRule
19
{
20
    /**
21
     * Allows a default value to be set if no data key was provided
22
     *
23
     * @var bool
24
     */
25
    protected $allowNotSet = true;
26
27
    /**
28
     * @var string
29
     */
30
    private $fieldToSlugFrom;
31
32
    /**
33
     * @var string
34
     */
35
    private $transliterator = "Any-Latin; Latin-ASCII; NFD; [:Nonspacing Mark:] Remove; NFC; [:Punctuation:] Remove; Lower();";
36
37
    /**
38
     * @param string $fieldToSlugFrom
39
     */
40 7
    public function __construct($fieldToSlugFrom)
41
    {
42 7
        $this->fieldToSlugFrom = $fieldToSlugFrom;
43 7
    }
44
45
    /**
46
     * Slug the value of either the actual field of the given one.
47
     *
48
     * @param mixed $value
49
     * @return string
50
     */
51 7
    public function filter($value)
52
    {
53 7
        if (empty($value) && isset($this->filterData[$this->fieldToSlugFrom])) {
54 1
            $value = $this->filterData[$this->fieldToSlugFrom];
55 1
        }
56
57 7
        if (is_null($value)) {
58
            return;
59
        }
60
61 7
        $value = transliterator_transliterate($this->transliterator, $value);
62 7
        $value = iconv("UTF-8", "ASCII//TRANSLIT//IGNORE", $value);
63 7
        $value = preg_replace('/[-$?\s]+/', '-', $value);
64 7
        $value = trim($value, '-');
65 7
        return strtolower($value);
66
    }
67
}
68