1
|
|
|
<?php |
2
|
|
|
|
|
|
|
|
3
|
|
|
namespace App\Services\Validation\Rules; |
4
|
|
|
|
5
|
|
|
use Illuminate\Contracts\Validation\Rule; |
6
|
|
|
use Illuminate\Support\Facades\Lang; |
7
|
|
|
|
8
|
|
|
class ContainsObjectWithAttributeRule implements Rule |
|
|
|
|
9
|
|
|
{ |
10
|
|
|
|
11
|
|
|
protected $attributeName; |
12
|
|
|
protected $attributeValue; |
13
|
|
|
|
14
|
|
|
/** |
|
|
|
|
15
|
|
|
* Create a new rule instance. |
16
|
|
|
* |
17
|
|
|
* @param App\Models\Applicant $applicant |
|
|
|
|
18
|
|
|
* @param string $relation |
|
|
|
|
19
|
|
|
* @return void |
|
|
|
|
20
|
|
|
*/ |
21
|
2 |
|
public function __construct($attributeName, $attributeValue) |
22
|
|
|
{ |
23
|
2 |
|
$this->attributeName = $attributeName; |
24
|
2 |
|
$this->attributeValue = $attributeValue; |
25
|
2 |
|
} |
26
|
|
|
|
27
|
2 |
|
protected function array_any(array $array, callable $fn) { |
|
|
|
|
28
|
2 |
|
foreach ($array as $value) { |
29
|
2 |
|
if($fn($value)) { |
|
|
|
|
30
|
2 |
|
return true; |
31
|
|
|
} |
32
|
|
|
} |
33
|
|
|
return false; |
34
|
|
|
} |
35
|
|
|
|
36
|
|
|
/** |
37
|
|
|
* This check passes if the $value is an array which contains an object |
38
|
|
|
* with a attributeName relation equal to attributeValue |
39
|
|
|
* @param [type] $attribute [description] |
|
|
|
|
40
|
|
|
* @param [type] $value [description] |
41
|
|
|
* @return boolean [description] |
|
|
|
|
42
|
|
|
*/ |
43
|
2 |
|
public function passes($attribute, $value) |
44
|
|
|
{ |
45
|
|
|
// debugbar()->debug($value); |
46
|
|
|
// debugbar()->debug($this->attributeName); |
47
|
|
|
// debugbar()->debug($this->attributeValue); |
48
|
|
|
return $this->array_any($value, function ($object) { |
|
|
|
|
49
|
2 |
|
return $object[$this->attributeName] == $this->attributeValue; |
50
|
2 |
|
}); |
|
|
|
|
51
|
|
|
} |
52
|
|
|
|
53
|
|
|
public function message() |
|
|
|
|
54
|
|
|
{ |
55
|
|
|
return Lang::trans('validation.contains_object_with_attribute', ['relation' => $this->attributeName, 'attributeValue' => $this->attributeValue]); |
56
|
|
|
} |
57
|
|
|
} |
58
|
|
|
|