Completed
Push — 2.x ( b81039...f43af6 )
by Paul
02:31
created

SanitizeSpec::applyBlank()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 10
Code Lines 6

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 6
CRAP Score 2

Importance

Changes 1
Bugs 0 Features 1
Metric Value
c 1
b 0
f 1
dl 0
loc 10
ccs 6
cts 6
cp 1
rs 9.4285
cc 2
eloc 6
nc 2
nop 1
crap 2
1
<?php
2
/**
3
 *
4
 * This file is part of Aura for PHP.
5
 *
6
 * @license http://opensource.org/licenses/bsd-license.php BSD
7
 *
8
 */
9
namespace Aura\Filter\Spec;
10
11
/**
12
 *
13
 * A "sanitize" rule specification.
14
 *
15
 * @package Aura.Filter
16
 *
17
 */
18
class SanitizeSpec extends Spec
19
{
20
    /**
21
     *
22
     * If the field is blank, use this as the replacement value.
23
     *
24
     * @param mixed
25
     *
26
     */
27
    protected $blank_value;
28
29
    /**
30
     *
31
     * Applies the rule specification to a subject.
32
     *
33
     * @param mixed $subject The filter subject.
34
     *
35
     * @return bool True on success, false on failure.
36
     *
37
     */
38 6
    public function __invoke($subject)
39
    {
40 6
        if (! $this->subjectFieldIsBlank($subject)) {
41 5
            return parent::__invoke($subject);
42
        }
43
44 3
        if (! $this->allow_blank) {
45 1
            return false;
46
        }
47
48 2
        $field = $this->field;
49 2
        $subject->$field = $this->blank_value;
50 2
        return true;
51
    }
52
53
    /**
54
     *
55
     * Sanitize the field using this rule (blank not allowed).
56
     *
57
     * @param string $rule The rule name.
58
     *
59
     * @param ...$args Arguments for the rule.
60
     *
61
     * @return self
62
     *
63
     */
64 5
    public function to($rule)
0 ignored issues
show
Unused Code introduced by
The parameter $rule is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
65
    {
66 5
        $this->allow_blank = false;
67 5
        return $this->init(func_get_args());
68
    }
69
70
    /**
71
     *
72
     * Sanitize the using this rule (blank allowed).
73
     *
74
     * @param string $rule The rule name.
75
     *
76
     * @param ...$args Arguments for the rule.
77
     *
78
     * @return self
79
     *
80
     */
81 2
    public function toBlankOr($rule)
0 ignored issues
show
Unused Code introduced by
The parameter $rule is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
82
    {
83 2
        $this->allow_blank = true;
84 2
        return $this->init(func_get_args());
85
    }
86
87
    /**
88
     *
89
     * Use this value for blank fields.
90
     *
91
     * @param mixed $blank_value Replace the blank field with this value.
92
     *
93
     * @return self
94
     *
95
     */
96 1
    public function useBlankValue($blank_value)
97
    {
98 1
        $this->allow_blank = true;
99 1
        $this->blank_value = $blank_value;
100 1
        return $this;
101
    }
102
103
    /**
104
     *
105
     * Returns the default failure message for this rule specification.
106
     *
107
     * @return string
108
     *
109
     */
110 1
    protected function getDefaultMessage()
111
    {
112 1
        return $this->field . ' should have sanitized to '
113 1
             . parent::getDefaultMessage();
114
    }
115
}
116