123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- <?php
- // +----------------------------------------------------------------------
- // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2016~2022 https://www.crmeb.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
- // +----------------------------------------------------------------------
- // | Author: CRMEB Team <admin@crmeb.com>
- // +----------------------------------------------------------------------
- namespace app\merchant\model\special;
- use traits\ModelTrait;
- use basic\ModelBasic;
- /**
- * Class SpecialTask 专题素材
- * @package app\merchant\model\special
- */
- class SpecialTask extends ModelBasic
- {
- use ModelTrait;
- public static function getAddTimeAttr($value)
- {
- return $value ? date("Y-m-d H:i:s", $value) : '';
- }
- //设置where条件
- public static function setWhere($where, $alirs = '', $model = null)
- {
- $model = $model === null ? new self() : $model;
- $model = $alirs !== '' ? $model->alias($alirs) : $model;
- $alirs = $alirs === '' ? $alirs : $alirs . '.';
- if (isset($where['is_show']) && $where['is_show'] !== '') $model = $model->where("{$alirs}is_show", $where['is_show']);
- if (isset($where['pid']) && $where['pid'] > 0) {
- $pids = SpecialTaskCategory::categoryId($where['pid']);
- array_push($pids, $where['pid']);
- if (count($pids) > 0) {
- $model = $model->where("{$alirs}pid", 'in', $pids);
- } else {
- $model = $model->where("{$alirs}pid", $where['pid']);
- }
- }
- if (isset($where['title']) && $where['title']) $model = $model->where("{$alirs}title", 'LIKE', "%$where[title]%");
- if (isset($where['mer_id']) && $where['mer_id']) $model = $model->where("{$alirs}mer_id", $where['mer_id']);
- if (isset($where['special_type']) && $where['special_type']) $model = $model->where("{$alirs}type", $where['special_type']);
- $model = $model->where("{$alirs}is_del", 0);
- if (isset($where['special_id']) && $where['special_id']) $model = $model->where("{$alirs}special_id", 'in', [0, $where['special_id']]);
- if ($where['order'])
- $model = $model->order($alirs . self::setOrder($where['order']));
- else
- $model = $model->order("{$alirs}sort desc,{$alirs}id desc");
- return $model;
- }
- public static function getTaskCount($special_id)
- {
- $ids = self::getDb('special_source')->where('special_id', $special_id)->column('source_id');
- return self::where('is_show', 1)->where('is_del', 0)->where('id', 'in', $ids)->count();
- }
- //查找素材列表
- public static function getTaskList($where)
- {
- $data = self::setWhere($where)->page((int)$where['page'], (int)$where['limit'])->select();
- $data = count($data) ? $data->toArray() : [];
- $count = self::setWhere($where)->count();
- return compact('data', 'count');
- }
- public static function getTaskList2($where, $special_source)
- {
- if (isset($where['special_type']) && $where['special_type'] == SPECIAL_COLUMN) {
- unset($where['special_type']);
- $where['store_name'] = $where['title'];
- if ($where['type'] == '') {
- $data = Special::setWhere($where)->where('id', 'not in', $special_source)->whereIn('type', [SPECIAL_IMAGE_TEXT, SPECIAL_AUDIO, SPECIAL_VIDEO, SPECIAL_OTHER])->page((int)$where['page'], (int)$where['limit'])->select();
- $data = count($data) ? $data->toArray() : [];
- $count = Special::setWhere($where)->where('id', 'not in', $special_source)->whereIn('type', [SPECIAL_IMAGE_TEXT, SPECIAL_AUDIO, SPECIAL_VIDEO, SPECIAL_OTHER])->count();
- } else {
- $data = Special::setWhere($where)->where('id', 'not in', $special_source)->page((int)$where['page'], (int)$where['limit'])->select();
- $data = count($data) ? $data->toArray() : [];
- $count = Special::setWhere($where)->where('id', 'not in', $special_source)->count();
- }
- } elseif (isset($where['special_type']) && $where['special_type'] == SPECIAL_LIVE) {
- unset($where['special_type']);
- $where['store_name'] = $where['title'];
- if ($where['type'] == '') {
- $data = Special::setWhere($where)->where('id', 'not in', $special_source)->whereIn('type', [SPECIAL_IMAGE_TEXT, SPECIAL_AUDIO, SPECIAL_VIDEO, SPECIAL_COLUMN, SPECIAL_OTHER])->page((int)$where['page'], (int)$where['limit'])->select();
- $data = count($data) ? $data->toArray() : [];
- $count = Special::setWhere($where)->whereIn('type', [SPECIAL_IMAGE_TEXT, SPECIAL_AUDIO, SPECIAL_VIDEO, SPECIAL_COLUMN, SPECIAL_OTHER])->count();
- } else {
- $data = Special::setWhere($where)->where('id', 'not in', $special_source)->page((int)$where['page'], (int)$where['limit'])->select();
- $data = count($data) ? $data->toArray() : [];
- $count = Special::setWhere($where)->where('id', 'not in', $special_source)->count();
- }
- } elseif (isset($where['special_type']) && $where['special_type'] == SPECIAL_SEVEN) {
- unset($where['special_type']);
- $where['store_name'] = $where['title'];
- $data = Special::setWhere($where)->where('id', 'not in', $special_source)->where('type', 'in', [SPECIAL_IMAGE_TEXT, SPECIAL_AUDIO, SPECIAL_VIDEO, SPECIAL_COLUMN, SPECIAL_OTHER])->page((int)$where['page'], (int)$where['limit'])->select();
- $data = count($data) ? $data->toArray() : [];
- $count = Special::setWhere($where)->where('id', 'not in', $special_source)->where('type', 'in', [SPECIAL_IMAGE_TEXT, SPECIAL_AUDIO, SPECIAL_VIDEO, SPECIAL_COLUMN, SPECIAL_OTHER])->count();
- } elseif (isset($where['special_type']) && $where['special_type'] == SPECIAL_STORE) {
- unset($where['special_type']);
- $where['store_name'] = $where['title'];
- $data = Special::setWhere($where)->where('id', 'not in', $special_source)->whereIn('type', [SPECIAL_IMAGE_TEXT, SPECIAL_AUDIO, SPECIAL_VIDEO, SPECIAL_LIVE, SPECIAL_COLUMN, SPECIAL_OTHER])->page((int)$where['page'], (int)$where['limit'])->select();
- $data = count($data) ? $data->toArray() : [];
- $count = Special::setWhere($where)->where('id', 'not in', $special_source)->whereIn('type', [SPECIAL_IMAGE_TEXT, SPECIAL_AUDIO, SPECIAL_VIDEO, SPECIAL_LIVE, SPECIAL_COLUMN, SPECIAL_OTHER])->count();
- } else {
- if ($where['pid'] > 0) {
- $where['special_type'] = 0;
- }
- $data = self::setWhere($where)->where('id', 'not in', $special_source)->page((int)$where['page'], (int)$where['limit'])->select();
- $data = count($data) ? $data->toArray() : [];
- $count = self::setWhere($where)->where('id', 'not in', $special_source)->count();
- }
- return compact('data', 'count');
- }
- /**
- * 删除任务
- * @param $id
- * @return bool|int
- * @throws \think\exception\DbException
- */
- public static function delTask($id)
- {
- $task = self::get($id);
- if (!$task) return self::setErrorInfo('删除的数据不存在');
- return $task->delete();
- }
- /**
- * 设置直播关联查询条件
- * @param $where
- * @return $this
- */
- public static function setLiveWhereTask($where)
- {
- $model = self::where('live_id', $where['live_id']);
- if ($where['title']) $model = $model->where('title', 'like', "%$where[title]%");
- if ($where['start_time'] && $where['end_time']) $model = $model->where('add_time', 'between', [strtotime($where['start_time']), strtotime($where['end_time'])]);
- return $model;
- }
- }
|