|
| 1 | +<?php |
| 2 | + |
| 3 | +namespace app\core; |
| 4 | + |
| 5 | +abstract class Model |
| 6 | +{ |
| 7 | + public const RULE_REQUIRED = 'required'; |
| 8 | + public const RULE_EMAIL = 'email'; |
| 9 | + public const RULE_MIN = 'min'; |
| 10 | + public const RULE_MAX = 'max'; |
| 11 | + public const RULE_MATCH = 'match'; |
| 12 | + public const RULE_UNIQUE = 'unique'; |
| 13 | + |
| 14 | + public function loadData($data) |
| 15 | + { |
| 16 | + foreach ($data as $key => $value) { |
| 17 | + if (property_exists($this, $key)) { |
| 18 | + $this->{$key} = $value; |
| 19 | + } |
| 20 | + } |
| 21 | + } |
| 22 | + |
| 23 | + abstract public function rules(): array; |
| 24 | + |
| 25 | + public array $errors = []; |
| 26 | + |
| 27 | + public function validate() |
| 28 | + { |
| 29 | + foreach ($this->rules() as $attribute => $rules) { |
| 30 | + $value = $this->{$attribute}; |
| 31 | + foreach ($rules as $rule) { |
| 32 | + $ruleName = $rule; |
| 33 | + if (!is_string($ruleName)) { |
| 34 | + $ruleName = $rule[0]; |
| 35 | + } |
| 36 | + if ($ruleName === self::RULE_REQUIRED && !$value) { |
| 37 | + $this->addError($attribute, self::RULE_REQUIRED); |
| 38 | + } |
| 39 | + if ($ruleName === self::RULE_EMAIL && !filter_var($value, FILTER_VALIDATE_EMAIL)) { |
| 40 | + $this->addError($attribute, self::RULE_EMAIL); |
| 41 | + } |
| 42 | + if ($ruleName === self::RULE_MIN && strlen($value) < $rule['min']) { |
| 43 | + $this->addError($attribute, self::RULE_MIN, $rule); |
| 44 | + } |
| 45 | + if ($ruleName === self::RULE_MAX && strlen($value) > $rule['max']) { |
| 46 | + $this->addError($attribute, self::RULE_MAX, $rule); |
| 47 | + } |
| 48 | + if ($ruleName === self::RULE_MATCH && $value !== $this->{$rule['match']}) { |
| 49 | + $this->addError($attribute, self::RULE_MATCH, $rule); |
| 50 | + } |
| 51 | + if ($ruleName === self::RULE_UNIQUE) { |
| 52 | + $className = $rule['class']; |
| 53 | + $uniqueAttr = $rule['attribute'] ?? $attribute; |
| 54 | + $tableName = $className::tableName(); |
| 55 | + $statement = Application::$app->db->prepare("SELECT * FROM $tableName WHERE $uniqueAttr = :attr"); |
| 56 | + $statement->bindValue(":attr", $value); |
| 57 | + $statement->execute(); |
| 58 | + $record = $statement->fetchObject(); |
| 59 | + if ($record) { |
| 60 | + $this->addError($attribute, self::RULE_UNIQUE, ['field' => $record]); |
| 61 | + } |
| 62 | + } |
| 63 | + } |
| 64 | + } |
| 65 | + return empty($this->errors); |
| 66 | + } |
| 67 | + |
| 68 | + public function addError(string $attribute, string $rule, $params = []) |
| 69 | + { |
| 70 | + $message = $this->errorMessages()[$rule] ?? ''; |
| 71 | + foreach ($params as $key => $value) { |
| 72 | + $message = str_replace("{{$key}}", $value, $message); |
| 73 | + } |
| 74 | + $this->errors[$attribute][] = $message; |
| 75 | + } |
| 76 | + |
| 77 | + public function errorMessages() |
| 78 | + { |
| 79 | + return [ |
| 80 | + self::RULE_REQUIRED => 'This field is required', |
| 81 | + self::RULE_EMAIL => 'This field must be a valid email address', |
| 82 | + self::RULE_MIN => 'Min length of this field must be {min}', |
| 83 | + self::RULE_MAX => 'Max length of this field must be {max}', |
| 84 | + self::RULE_MATCH => 'This field must be the same as {match}', |
| 85 | + self::RULE_UNIQUE => 'This {field} already exists', |
| 86 | + ]; |
| 87 | + } |
| 88 | + |
| 89 | + public function hasError($attribute) |
| 90 | + { |
| 91 | + return $this->errors[$attribute] ?? false; |
| 92 | + } |
| 93 | + |
| 94 | + public function getFirstError($attribute) |
| 95 | + { |
| 96 | + return $this->errors[$attribute][0] ?? false; |
| 97 | + } |
| 98 | +} |
0 commit comments