dbmsv2/app/Models/UserModel.php
2025-08-18 14:55:18 +09:00

74 lines
2.4 KiB
PHP

<?php
namespace App\Models;
use App\Entities\UserEntity;
class UserModel extends CommonModel
{
const TABLE = "user";
const PK = "uid";
const TITLE = "name";
protected $table = self::TABLE;
protected $primaryKey = self::PK;
protected $allowedFields = [
"id",
"passwd",
"name",
"email",
"mobile",
"role",
"status",
"updated_at"
];
public function __construct()
{
parent::__construct();
$this->returnType = UserEntity::class;
}
public function getFormFieldRule(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";
$rule .= in_array($action, ["create", "create_form"]) ? "|is_unique[{$this->table}.{$field}]" : "";
break;
case "role":
$rule = "required|trim|string";
break;
default:
$rule = parent::getFormFieldRule($action, $field);
break;
}
return $rule;
}
protected function convert_process(string $action, string $field, array $formDatas): mixed
{
switch ($field) {
case "passwd":
$convertedData = password_hash($formDatas[$field], PASSWORD_DEFAULT);
break;
case "confirmpassword":
$convertedData = password_hash($formDatas[$field], PASSWORD_DEFAULT);
break;
default:
$convertedData = parent::convert_process($action, $field, $formDatas);
break;
}
return $convertedData;
}
}