-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathModel.php
155 lines (141 loc) · 4.61 KB
/
Model.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<?php
namespace Okami\Core;
/**
* Class Model
*
* @author Michal Tuček <michaltk1@gmail.com>
* @package Okami\Core
*/
abstract class Model
{
public const RULE_REQUIRED = 'required';
public const RULE_EMAIL = 'email';
public const RULE_MIN = 'min';
public const RULE_MAX = 'max';
public const RULE_MATCH = 'match';
public const RULE_UNIQUE = 'unique';
public array $errors = [];
/**
* @param array $data
*/
public function loadData(array $data)
{
foreach ($data as $key => $value) {
if (property_exists($this, $key)) {
$this->{$key} = $value;
}
}
}
/**
* @return mixed
*/
abstract public function rules(): array;
/**
* @return array
*/
public function labels(): array
{
return [];
}
public function getLabel(string $attribute): string
{
return $this->labels()[$attribute] ?? $attribute;
}
/**
* @return bool
*/
public function validate(): bool
{
foreach ($this->rules() as $attribute => $rules) {
$value = $this->{$attribute};
foreach ($rules as $rule) {
$ruleName = $rule;
if (!is_string($rule)) {
$ruleName = $rule[0];
}
if ($ruleName === self::RULE_REQUIRED && !$value) {
$this->addErrorForRule($attribute, self::RULE_REQUIRED);
}
if ($ruleName === self::RULE_EMAIL && !filter_var($value, FILTER_VALIDATE_EMAIL)) {
$this->addErrorForRule($attribute, self::RULE_EMAIL);
}
if ($ruleName === self::RULE_MIN && strlen($value) < $rule['min']) {
$this->addErrorForRule($attribute, self::RULE_MIN, $rule);
}
if ($ruleName === self::RULE_MAX && strlen($value) > $rule['max']) {
$this->addErrorForRule($attribute, self::RULE_MAX, $rule);
}
if ($ruleName === self::RULE_MATCH && $value !== $this->{$rule['match']}) {
$rule['match'] = $this->getLabel($rule['match']);
$this->addErrorForRule($attribute, self::RULE_MAX, $rule);
}
if ($ruleName === self::RULE_UNIQUE) {
$classMame = $rule['class'];
$uniqueAttribute = $rule['attribute'] ?? $attribute;
$tableName = $classMame::tableName();
$statement = App::$app->db->prepare("SELECT * FROM $tableName WHERE $uniqueAttribute = :attribute;");
$statement->bindValue(":attribute", $value);
$statement->execute();
$record = $statement->fetch();
if ($record) {
$this->addErrorForRule($attribute, self::RULE_UNIQUE, ['field' => $this->getLabel($attribute)]);
}
}
}
}
return empty($this->errors);
}
/**
* @param string $attribute
* @param string $rule
* @param array $params
*/
public function addErrorForRule(string $attribute, string $rule, array $params = [])
{
$message = $this->errorMessages()[$rule] ?? '';
foreach ($params as $key => $value) {
$message = str_replace("{{$key}}", $value, $message);
}
$this->errors[$attribute][] = $message;
}
/**
* @param string $attribute
* @param string $message
*/
public function addError(string $attribute, string $message)
{
$this->errors[$attribute][] = $message;
}
/**
* @return string[]
*/
public function errorMessages(): array {
return [
self::RULE_REQUIRED => 'This filed is required',
self::RULE_EMAIL => 'This filed must be valid email address',
self::RULE_MIN => 'Min length of this field must be {min}',
self::RULE_MAX => 'Max length of this field must be {max}',
self::RULE_MATCH => 'This field must be same as {match}',
self::RULE_UNIQUE => 'Record with this {field} already exists',
];
}
/**
* @param string $attribute
*
* @return bool
*/
public function hasError(string $attribute): bool
{
return array_key_exists($attribute, $this->errors);
}
/**
* @param string $attribute
*
* @return string
*/
public function getFirstError(string $attribute): string
{
$errors = $this->errors[$attribute] ?? [];
return $errors[0] ?? '';
}
}