dbms/app/Models/UserModel.php
2025-04-30 13:13:30 +09:00

80 lines
2.6 KiB
PHP

<?php
namespace App\Models;
use App\Entities\UserEntity as Entity;
use App\Models\CommonModel;
class UserModel extends CommonModel
{
const TABLE = "user";
const PK = "uid";
const TITLE = "name";
protected $table = self::TABLE;
protected $primaryKey = self::PK;
protected $returnType = Entity::class;
protected $allowedFields = [
"id",
"passwd",
"name",
"email",
"mobile",
"role",
"status"
];
public function __construct()
{
parent::__construct();
}
public function getFieldRule(string $action, string $field): string
{
if (is_array($field)) {
throw new \Exception(__FUNCTION__ . "=> field가 array 입니다.\n" . var_export($field, true));
}
switch ($field) {
case "id":
$rule = "required|trim|min_length[4]|max_length[20]";
$rule .= in_array($action, ["create", "create_form"]) ? "|is_unique[{$this->table}.{$field}]" : "";
break;
case "passwd":
$rule = in_array($action, ["create", "create_form"]) ? "required|trim|string" : "if_exist|trim|string";
break;
case "confirmpassword":
$rule = in_array($action, ["create", "create_form"]) ? "required|trim|string|matches[passwd]" : "if_exist|trim|string|matches[passwd]";
break;
case "email":
$rule = "required|trim|valid_email";
break;
case "role":
$rule = "required|trim|string";
break;
default:
$rule = parent::getFieldRule($action, $field);
break;
}
return $rule;
}
protected function convertEntityData(string $field, array $formDatas): mixed
{
switch ($field) {
case "passwd":
$value = password_hash($formDatas[$field], PASSWORD_DEFAULT);
break;
case "confirmpassword":
$value = password_hash($formDatas[$field], PASSWORD_DEFAULT);
break;
default:
$value = parent::convertEntityData($field, $formDatas);
break;
}
return $value;
}
//List 검색용
public function setList_WordFilter(string $word): void
{
$this->orLike(self::TABLE . '.id', $word, 'both');
$this->orLike(self::TABLE . "." . self::TITLE, $word, 'both');
$this->orLike(self::TABLE . '.email', $word, 'both');
}
}