Completed
Push — master ( dc27cd...c0eb3b )
by Rasmus
07:46
created

CheckMaxLength   A

Complexity

Total Complexity 5

Size/Duplication

Total Lines 40
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 3

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 5
lcom 1
cbo 3
dl 0
loc 40
ccs 14
cts 14
cp 1
rs 10
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 5 1
A validate() 0 17 4
1
<?php
2
3
namespace mindplay\kissform\Validators;
4
5
use mindplay\kissform\Facets\FieldInterface;
6
use mindplay\kissform\Facets\ValidatorInterface;
7
use mindplay\kissform\InputModel;
8
use mindplay\kissform\InputValidation;
9
use mindplay\lang;
10
11
/**
12
 * Validate maximum length of a string.
13
 */
14
class CheckMaxLength implements ValidatorInterface
15
{
16
    /**
17
     * @var string|null
18
     */
19
    private $error;
20
21
    /**
22
     * @var int
23
     */
24
    private $max;
25
26
    /**
27
     * @param int         $max   max. length
28
     * @param string|null $error optional custom error message
29
     */
30 8
    public function __construct($max, $error = null)
31
    {
32 8
        $this->error = $error;
33 8
        $this->max = $max;
34 8
    }
35
36 1
    public function validate(FieldInterface $field, InputModel $model, InputValidation $validation)
37
    {
38 1
        $input = $model->getInput($field);
39
40 1
        if ($input === null) {
41 1
            return; // no input
42
        }
43
44 1
        $length = mb_strlen($input);
45
46 1
        if ($length > $this->max) {
47 1
            $model->setError(
48 1
                $field,
49 1
                $this->error ?: lang::text("mindplay/kissform", "maxLength", ["field" => $validation->getLabel($field), "max" => $this->max])
50
            );
51
        }
52 1
    }
53
}
54