141 lines
5.0 KiB
PHP
141 lines
5.0 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use App\Entities\BoardConfigEntity;
|
|
|
|
class BoardConfigModel extends BaseModel
|
|
{
|
|
protected $table = "tw_board_config";
|
|
protected $useAutoIncrement = false;
|
|
protected $returnType = BoardConfigEntity::class;
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
$this->allowedFields = [...$this->allowedFields, ...$this->getFields()];
|
|
$this->validationRules = [...$this->validationRules, ...$this->getFieldRules($this->allowedFields),];
|
|
}
|
|
public function getTitle(): string
|
|
{
|
|
return 'name';
|
|
}
|
|
public function getFields(string $action = ""): array
|
|
{
|
|
$fields = [
|
|
$this->getTitle(), "isaccess", "isread", "iswrite", "isreply", "isupload", "isdownload",
|
|
"status", "head", "tail",
|
|
];
|
|
switch ($action) {
|
|
case "index":
|
|
case "excel":
|
|
return [
|
|
$this->getTitle(), "isaccess", "isread", "iswrite", "isreply", "isupload", "isdownload",
|
|
"status", "created_at"
|
|
];
|
|
break;
|
|
case "view":
|
|
return [...$fields, "updated_at", "created_at"];
|
|
break;
|
|
default:
|
|
return $fields;
|
|
break;
|
|
}
|
|
}
|
|
public function getFieldFilters(): array
|
|
{
|
|
return ["isaccess", "isread", "iswrite", "isreply", "isupload", "isdownload", "status"];
|
|
}
|
|
public function getFieldBatchFilters(array $skips = array()): array
|
|
{
|
|
$skips = ["isupload", "isdownload", ...$skips];
|
|
return parent::getFieldBatchFilters($skips);
|
|
}
|
|
protected function getFieldRule(string $field, array $rules, string $action = ""): array
|
|
{
|
|
switch ($field) {
|
|
case "uid":
|
|
$rules[$field] = "required|regex_match[/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}/]";
|
|
$rules[$field] .= $action == "insert" ? "|is_unique[{$this->table}.{$field}]" : "";
|
|
break;
|
|
case $this->getTitle():
|
|
$rules[$field] = "required|trim|string";
|
|
$rules[$field] .= $action == "insert" ? "|is_unique[{$this->table}.{$field}]" : "";
|
|
break;
|
|
case "isaccess":
|
|
case "isread":
|
|
case "iswrite":
|
|
case "isreply":
|
|
case "isupload":
|
|
case "isdownload":
|
|
$rules[$field] = "required";
|
|
break;
|
|
default:
|
|
$rules = parent::getFieldRule($field, $rules, $action);
|
|
break;
|
|
}
|
|
return $rules;
|
|
}
|
|
public function getEntity($conditions): BoardConfigEntity
|
|
{
|
|
$entity = $this->where($conditions)->first();
|
|
return $entity ?: throw new \Exception("{$conditions}의 해당 데이터가 없습니다.\n ");
|
|
}
|
|
public function getEntitys($conditions): array
|
|
{
|
|
return $this->where($conditions)->findAll();
|
|
}
|
|
|
|
protected function changeFormData(string $field, array $formDatas, $entity)
|
|
{
|
|
switch ($field) {
|
|
case "isaccess":
|
|
case "isread":
|
|
case "iswrite":
|
|
case "isreply":
|
|
case "isupload":
|
|
case "isdownload":
|
|
case "isaccess":
|
|
if (array_key_exists($field, $formDatas) && $formDatas[$field]) {
|
|
$entity->$field = is_array($formDatas[$field]) ? implode("|", $formDatas[$field]) : $formDatas[$field];
|
|
}
|
|
break;
|
|
case "head":
|
|
case "tail":
|
|
if (array_key_exists($field, $formDatas) && $formDatas[$field]) {
|
|
$entity->$field = htmlentities($formDatas[$field]);
|
|
}
|
|
break;
|
|
default:
|
|
return parent::changeFormData($field, $formDatas, $entity);
|
|
break;
|
|
}
|
|
return $entity;
|
|
}
|
|
public function create(array $formDatas): BoardConfigEntity
|
|
{
|
|
return $this->create_process(new BoardConfigEntity(), $formDatas);
|
|
}
|
|
public function modify(BoardConfigEntity $entity, array $formDatas): BoardConfigEntity
|
|
{
|
|
return $this->modify_process($entity, $formDatas);
|
|
}
|
|
|
|
//Index관련
|
|
public function setIndexWordFilter(string $word)
|
|
{
|
|
parent::setIndexWordFilter($word);
|
|
$this->orLike($this->getTitle(), $word, "both"); //befor , after , both
|
|
$this->orLike("isaccess", $word, "both"); //befor , after , both
|
|
$this->orLike("isread", $word, "both"); //befor , after , both
|
|
$this->orLike("iswrite", $word, "both"); //befor , after , both
|
|
$this->orLike("isreply", $word, "both"); //befor , after , both
|
|
$this->orLike("isupload", $word, "both"); //befor , after , both
|
|
$this->orLike("isdownload", $word, "both"); //befor , after , both
|
|
}
|
|
public function setIndexOrderBy($field, $order = "ASC")
|
|
{
|
|
parent::setIndexOrderBy($field, $order);
|
|
$this->orderBy($this->getTitle(), "ASC");
|
|
}
|
|
}
|