Completed
Push — master ( d3072b...6f49b0 )
by
unknown
07:33
created

Authorized   A

Complexity

Total Complexity 5

Size/Duplication

Total Lines 47
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 1

Test Coverage

Coverage 75%

Importance

Changes 0
Metric Value
wmc 5
lcom 1
cbo 1
dl 0
loc 47
ccs 9
cts 12
cp 0.75
rs 10
c 0
b 0
f 0

3 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 6 1
A passes() 0 14 3
A message() 0 10 1
1
<?php
2
3
namespace Spatie\ValidationRules\Rules;
4
5
use Illuminate\Support\Facades\Auth;
6
use Illuminate\Contracts\Validation\Rule;
7
8
class Authorized implements Rule
9
{
10
    /** @var string */
11
    protected $ability;
12
13
    /** @var array */
14
    protected $arguments;
15
16 24
    /** @var string */
17
    protected $className;
18 24
19
    /** @var string */
20 24
    protected $attribute;
21 24
22
    public function __construct(string $ability, string $className)
23 24
    {
24
        $this->ability = $ability;
25 24
26 18
        $this->className = $className;
27
    }
28
29 6
    public function passes($attribute, $value): bool
30
    {
31
        $this->attribute = $attribute;
32
33 6
        if (! $user = Auth::user()) {
34
            return false;
35
        }
36
37
        if (! $model = $this->className::find($value)) {
0 ignored issues
show
Bug introduced by
The method find cannot be called on $this->className (of type string).

Methods can only be called on objects. This check looks for methods being called on variables that have been inferred to never be objects.

Loading history...
38
            return false;
39
        }
40
41
        return $user->can($this->ability, $model);
42
    }
43
44
    public function message(): string
45
    {
46
        $classBasename = class_basename($this->className);
47
48
        return __('validation.authorized', [
49
            'attribute' => $this->attribute,
50
            'ability' => $this->ability,
51
            'className' => $classBasename,
52
        ]);
53
    }
54
}
55