123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227 |
- <?php
- // +----------------------------------------------------------------------
- // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2016~2020 https://www.crmeb.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
- // +----------------------------------------------------------------------
- // | Author: CRMEB Team <admin@crmeb.com>
- // +----------------------------------------------------------------------
- namespace app\admin\model\special;
- use app\admin\model\live\LiveGoods;
- use app\admin\model\live\LiveStudio;
- use app\admin\model\order\StoreOrder;
- use app\admin\model\system\RecommendRelation;
- use think\cache\driver\Redis;
- use traits\ModelTrait;
- use basic\ModelBasic;
- /**
- * Class Special 专题
- * @package app\admin\model\special
- */
- class Special extends ModelBasic
- {
- use ModelTrait;
- protected static function init()
- {
- self::afterUpdate(function () {
- del_redis_hash("wap_index_has","recommend_list");
- });
- }
- public function profile()
- {
- return $this->hasOne('SpecialContent', 'special_id', 'id')->field('content');
- }
- public static function PreWhere($alert = '')
- {
- $alert = $alert ? $alert . '.' : '';
- return self::where([$alert . 'is_show' => 1, $alert . 'is_del' => 0]);
- }
- //动态赋值
- public static function getPinkStrarTimeAttr($value)
- {
- return $value ? date('Y-m-d H:i:s', $value) : '';
- }
- public static function getPinkEndTimeAttr($value)
- {
- return $value ? date('Y-m-d H:i:s', $value) : '';
- }
- public static function getAddTimeAttr($value)
- {
- return date('Y-m-d H:i:s', $value);
- }
- public static function getBannerAttr($value)
- {
- return is_string($value) ? json_decode($value, true) : $value;
- }
- public static function getLabelAttr($value)
- {
- return is_string($value) ? json_decode($value, true) : $value;
- }
- //end
- //设置
- public static function getBannerKeyAttr($banner)
- {
- if (is_string($banner)) $banner = json_decode($banner, true);
- if ($banner === false) return [];
- $value = [];
- foreach ($banner as $item) {
- $value[] = [
- 'is_show' => false,
- 'pic' => $item
- ];
- }
- return $value;
- }
- public static function saveFieldByWhere(array $where, array $data)
- {
- if (!$where || !$data) return false;
- return parent::saveFieldByWhere($where, $data);
- }
- //获取单个专题
- public static function getOne($id, $is_live = false)
- {
- $special = self::get($id);
- if (!$special) return false;
- if ($special->is_del) return false;
- $special->banner = self::getBannerKeyAttr($special->banner);
- $special->profile->content = htmlspecialchars_decode($special->profile->content);
- if ($is_live) {
- $liveInfo = LiveStudio::where('special_id', $special->id)->find();
- if (!$liveInfo) return self::setErrorInfo('暂未查到直播间');
- if ($liveInfo->is_del) return self::setErrorInfo('直播间已删除无法编辑');
- $liveInfo->live_duration = (strtotime($liveInfo->stop_play_time) - strtotime($liveInfo->start_play_time)) / 60;
- $liveInfo = $liveInfo->toArray();
- } else
- $liveInfo = [];
- return [$special->toArray(), $liveInfo];
- }
- //设置条件
- public static function setWhere($where, $alert = '', $model = null)
- {
- $model = $model === null ? new self() : $model;
- if ($alert) $model = $model->alias($alert);
- $alert = $alert ? $alert . '.' : '';
- if ($where['order'])
- $model = $model->order($alert . self::setOrder($where['order']));
- else
- $model = $model->order($alert.'sort desc,'.$alert.'id desc');
- if (isset($where['subject_id']) && $where['subject_id']) $model = $model->where($alert . 'subject_id', $where['subject_id']);
- if (isset($where['store_name']) && $where['store_name']!='') $model = $model->where($alert . 'title|' . $alert . 'abstract|' . $alert . 'phrase|'. $alert . 'id', "LIKE", "%$where[store_name]%");
- if ($where['is_show'] !== '') $model = $model->where($alert . 'is_show', $where['is_show']);
- if (isset($where['type']) && $where['type']) $model = $model->where($alert . 'type', $where['type']);
- if (isset($where['special_type']) && $where['special_type'] !== '') {
- $model = $model->where($alert . 'type', $where['special_type']);
- }
- if (isset($where['admin_id']) && $where['admin_id']) $model = $model->where($alert . 'admin_id', $where['admin_id']);
- if (isset($where['start_time']) && $where['start_time'] && isset($where['end_time']) && $where['end_time']) $model = $model->whereTime($alert . 'add_time', 'between', [strtotime($where['start_time']), strtotime($where['end_time'])]);
- return $model->where($alert .'is_del', 0);
- }
- /**
- * @param $where
- */
- public static function getPinkList($where)
- {
- $data = self::setWhere($where, 'A')->field('A.*,T.content,S.name as subject_name')
- ->join('__SPECIAL_CONTENT__ T', 'T.special_id=A.id','LEFT')->join('__SPECIAL_SUBJECT__ S', 'S.id=A.subject_id','LEFT')
- ->page((int)$where['page'], (int)$where['limit'])->where('A.is_pink',1)->select();
- $data = count($data) ? $data->toArray() : [];
- foreach ($data as &$item) {
- $item['recommend'] = RecommendRelation::where('a.link_id', $item['id'])->where('a.type', 'in', [0, 2])->alias('a')
- ->join('__RECOMMEND__ r', 'a.recommend_id=r.id')->column('a.id,r.title');
- $item['pink_end_time'] = $item['pink_end_time'] ? strtotime($item['pink_end_time']) : 0;
- $item['sales'] = StoreOrder::where(['paid' => 1, 'cart_id' => $item['id'], 'refund_status' => 0])->count();
- $liveGoods = LiveGoods::getOne(['special_id' => $item['id'], 'is_delete' => 0]);
- $item['is_live_goods'] = 0;
- $item['live_goods_id'] = 0;
- if ($liveGoods) {
- $item['live_goods_id'] = $liveGoods->id;
- if ($liveGoods->is_show == 1) {
- $item['is_live_goods'] = 1;
- }
- }
- //查看拼团状态,如果已结束关闭拼团
- if ($item['is_pink'] && $item['pink_end_time'] < time()) {
- self::update(['is_pink' => 0], ['id' => $item['id']]);
- $item['is_pink'] = 0;
- }
- if(!$item['is_pink']){
- $item['pink_money'] = 0;
- }
- $item['stream_name'] = LiveStudio::where('special_id', $item['id'])->value('stream_name');
- $oldTaskCount = SpecialTask::where('special_id', $item['id'])->where('is_show', 1)->count();
- $newTaskCount = SpecialSource::where('special_id', $item['id'])->count();
- $item['task_count'] = $newTaskCount + $oldTaskCount;
- $item['live_id'] = LiveStudio::where('special_id', $item['id'])->value('id');
- $item['is_play'] =0;
- if ($item['live_id']) {
- $item['online_num'] = LiveStudio::where('id', $item['live_id'])->value('online_num');
- $item['is_play'] = LiveStudio::where('id', $item['live_id'])->value('is_play') ? 1 : 0;
- }
- $item['buy_user_num'] = StoreOrder::where(['paid' => 1, 'cart_id' => $item['id']])->count('id');
- $item['start_play_time'] = LiveStudio::where('special_id', $item['id'])->value('start_play_time');
- }
- $count = self::setWhere($where)->count();
- return compact('data', 'count');
- }
- //查找专题列表
- public static function getSpecialList($where)
- {
- $data = self::setWhere($where, 'A')->field('A.*,T.content,S.name as subject_name')
- ->join('__SPECIAL_CONTENT__ T', 'T.special_id=A.id','LEFT')->join('__SPECIAL_SUBJECT__ S', 'S.id=A.subject_id','LEFT')
- ->page((int)$where['page'], (int)$where['limit'])->select();
- $data = count($data) ? $data->toArray() : [];
- foreach ($data as &$item) {
- $item['recommend'] = RecommendRelation::where('a.link_id', $item['id'])->where('a.type', 'in', [0, 2])->alias('a')
- ->join('__RECOMMEND__ r', 'a.recommend_id=r.id')->column('a.id,r.title');
- $item['pink_end_time'] = $item['pink_end_time'] ? strtotime($item['pink_end_time']) : 0;
- $item['sales'] = StoreOrder::where(['paid' => 1, 'cart_id' => $item['id'], 'refund_status' => 0])->count();
- $liveGoods = LiveGoods::getOne(['special_id' => $item['id'], 'is_delete' => 0]);
- $item['is_live_goods'] = 0;
- $item['live_goods_id'] = 0;
- if ($liveGoods) {
- $item['live_goods_id'] = $liveGoods->id;
- if ($liveGoods->is_show == 1) {
- $item['is_live_goods'] = 1;
- }
- }
- //查看拼团状态,如果已结束关闭拼团
- if ($item['is_pink'] && $item['pink_end_time'] < time()) {
- self::update(['is_pink' => 0], ['id' => $item['id']]);
- $item['is_pink'] = 0;
- }
- if(!$item['is_pink']){
- $item['pink_money'] = 0;
- }
- if ($where['type'] == 4) $item['stream_name'] = LiveStudio::where('special_id', $item['id'])->value('stream_name');
- $oldTaskCount = SpecialTask::where('special_id', $item['id'])->where('is_show', 1)->count();
- $newTaskCount = SpecialSource::where('special_id', $item['id'])->count();
- $item['task_count'] = $newTaskCount + $oldTaskCount;
- $item['live_id'] = LiveStudio::where('special_id', $item['id'])->value('id');
- $item['is_play'] =0;
- if ($item['live_id']) {
- $item['online_num'] = LiveStudio::where('id', $item['live_id'])->value('online_num');
- $item['is_play'] = LiveStudio::where('id', $item['live_id'])->value('is_play') ? 1 : 0;
- }
- $item['buy_user_num'] = StoreOrder::where(['paid' => 1, 'cart_id' => $item['id']])->count('id');
- $item['start_play_time'] = LiveStudio::where('special_id', $item['id'])->value('start_play_time');
- }
- $count = self::setWhere($where)->count();
- return compact('data', 'count');
- }
- }
|