92 lines
3.2 KiB
PHP
92 lines
3.2 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use App\Entities\BoardEntity;
|
|
|
|
class BoardModel extends BaseHierarchyModel
|
|
{
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
$this->table = 'tw_board';
|
|
$this->allowedFields = [
|
|
...$this->allowedFields,
|
|
'board_config_uid', 'user_uid', 'title', 'passwd',
|
|
'upload_file', 'status', 'view_cnt', 'content',
|
|
];
|
|
$this->validationRules = [
|
|
...$this->validationRules,
|
|
...$this->getFieldRules($this->getFields()),
|
|
];
|
|
}
|
|
public function getFields(array $fields = array(), array $skips = array()): array
|
|
{
|
|
$fields = [...$this->allowedFields, ...$fields];
|
|
return parent::getFields($fields, $skips);
|
|
}
|
|
public function getFieldFilters(array $fields = array(), array $skips = array()): array
|
|
{
|
|
$skips = ['title', 'passwd', 'upload_file', 'view_cnt', 'content', ...$skips];
|
|
return parent::getFieldFilters($fields, $skips);
|
|
}
|
|
protected function getFieldRule(string $field, array $rules): array
|
|
{
|
|
switch ($field) {
|
|
case 'board_config_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}/]';
|
|
break;
|
|
case 'title':
|
|
case 'content':
|
|
$rules[$field] = 'required|string';
|
|
break;
|
|
case 'upload_file':
|
|
$rules[$field] = 'if_exist|uploaded[upload_file]|is_image[upload_file]|mime_in[upload_file,image/jpg,image/jpeg,image/gif,image/png,image/webp]|max_size[upload_file,100]|max_dims[upload_file,1024,768]';
|
|
break;
|
|
case 'view_cnt':
|
|
$rules[$field] = 'if_exist|numeric';
|
|
break;
|
|
default:
|
|
$rules = parent::getFieldRule($field, $rules);
|
|
break;
|
|
}
|
|
return $rules;
|
|
}
|
|
|
|
public function getEntity($where): BoardEntity
|
|
{
|
|
$entity = $this->asObject(BoardEntity::class)->where($where)->first();
|
|
return $entity ?: throw new \Exception("{$where}의 해당 데이터가 없습니다.\n ");
|
|
}
|
|
public function getEntitys($where): array
|
|
{
|
|
return $this->asObject(BoardEntity::class)->where($where)->findAll();
|
|
}
|
|
public function create(array $formDatas): BoardEntity
|
|
{
|
|
return $this->create_process(new BoardEntity(), $formDatas);
|
|
}
|
|
public function modify(BoardEntity $entity, array $formDatas): BoardEntity
|
|
{
|
|
return $this->modify_process($entity, $formDatas);
|
|
}
|
|
public function reply($parent_entity, array $formDatas): BoardEntity
|
|
{
|
|
return $this->reply_process($parent_entity, new BoardEntity(), $formDatas);
|
|
}
|
|
|
|
//Index관련
|
|
public function setIndexWordFilter(string $word)
|
|
{
|
|
parent::setIndexWordFilter($word);
|
|
$this->orLike('title', $word, 'both');
|
|
$this->orLike('content', $word, 'both'); //befor , after , both
|
|
}
|
|
public function setIndexOrderBy($field, $order = 'DESC')
|
|
{
|
|
$this->orderBy("grpno", "DESC");
|
|
$this->orderBy("grporder", "ASC");
|
|
parent::setIndexOrderBy($field, $order);
|
|
}
|
|
}
|