123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- <?php
- namespace app\admin\controller\sys_manage;
- use app\admin\validate\sys_manage\AdvValidate;
- use app\admin\validate\sys_manage\ArticleValidate;
- use app\admin\validate\sys_manage\ContentValidate;
- use app\controller\Curd;
- use app\model\Adv;
- use app\model\Article;
- use app\model\Content;
- use support\exception\BusinessException;
- use support\Request;
- use support\Response;
- class ProtocolController extends Curd
- {
- public function __construct()
- {
- $this->model = new Content();
- $this->validate = true;
- $this->validateClass = new ContentValidate();
- }
- /** 列表
- * @Desc
- * @Author Gorden
- * @Date 2024/3/5 10:00
- *
- * @param Request $request
- * @return Response
- * @throws \support\exception\BusinessException
- */
- public function select(Request $request): Response
- {
- [$where, $format, $limit, $field, $order] = $this->selectInput($request);
- $where['content_category'] = 'PROTOCOL';
- $order = $request->get('order', 'desc');
- $field = $field ?? 'content_addtimes';
- $query = $this->doSelect($where, $field, $order);
- return $this->doFormat($query, $format, $limit);
- }
- protected function doSelect(array $where, string $field = null, string $order = 'desc')
- {
- $model = $this->model->with('category');
- foreach ($where as $column => $value) {
- if (is_array($value)) {
- if ($value[0] === 'like' || $value[0] === 'not like') {
- $model = $model->where($column, $value[0], "%$value[1]%");
- } elseif (in_array($value[0], ['>', '=', '<', '<>'])) {
- $model = $model->where($column, $value[0], $value[1]);
- } elseif ($value[0] == 'in' && !empty($value[1])) {
- $valArr = $value[1];
- if (is_string($value[1])) {
- $valArr = explode(",", trim($value[1]));
- }
- $model = $model->whereIn($column, $valArr);
- } elseif ($value[0] == 'not in' && !empty($value[1])) {
- $valArr = $value[1];
- if (is_string($value[1])) {
- $valArr = explode(",", trim($value[1]));
- }
- $model = $model->whereNotIn($column, $valArr);
- } elseif ($value[0] == 'null') {
- $model = $model->whereNull($column);
- } elseif ($value[0] == 'not null') {
- $model = $model->whereNotNull($column);
- } elseif ($value[0] !== '' || $value[1] !== '') {
- $model = $model->whereBetween($column, $value);
- }
- } else {
- $model = $model->where($column, $value);
- }
- }
- if ($field) {
- $model = $model->orderBy($field, $order);
- }
- return $model;
- }
- public function insert(Request $request): Response
- {
- if ($this->validate && !$this->validateClass->scene('add')->check($request->post())) {
- return json_fail($this->validateClass->getError());
- }
- if (Content::where('join_content_category_id',$request->post('join_content_category_id'))->exists()){
- return json_fail("当前分类已存在,请不要重复添加");
- }
- try {
- $data = $this->insertInput($request);
- $this->doInsert($data);
- } catch (BusinessException $customException) {
- return json_fail($customException->getMessage());
- } catch (\Exception $e) {
- dump($e->getMessage());
- return json_fail('数据写入失败11');
- }
- return json_success('success');
- }
- /**
- * @Desc
- * @Author Gorden
- * @Date 2024/3/27 10:24
- *
- * @param Request $request
- * @return array
- * @throws \support\exception\BusinessException
- */
- protected function insertInput(Request $request): array
- {
- $data = $this->inputFilter($request->post());
- $data['content_category'] = 'PROTOCOL';
- $data['content_status'] = 'NOSEARCH';
- return $data;
- }
- }
|