123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- <?php
- // +----------------------------------------------------------------------
- // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2016~2023 https://www.crmeb.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
- // +----------------------------------------------------------------------
- // | Author: CRMEB Team <admin@crmeb.com>
- // +----------------------------------------------------------------------
- namespace app\dao\service;
- use app\dao\BaseDao;
- use app\model\service\StoreServiceLog;
- /**
- * 客服聊天记录dao
- * Class StoreServiceLogDao
- * @package app\dao\service
- */
- class StoreServiceLogDao extends BaseDao
- {
- /**
- * StoreServiceLogDao constructor.
- */
- public function __construct()
- {
- //清楚去年的聊天记录
- // $this->removeChat();
- // $this->removeYesterDayChat();
- }
- /**
- * 设置模型
- * @return string
- */
- protected function setModel(): string
- {
- return StoreServiceLog::class;
- }
- /**
- * 获取聊天记录下的uid和to_uid
- * @param int $uid
- * @return mixed
- */
- public function getServiceUserUids(int $uid)
- {
- return $this->search(['uid' => $uid])->group('uid,to_uid')->field(['uid', 'to_uid'])->select()->toArray();
- }
- /**
- * 获取聊天记录并分页
- * @param array $where
- * @param int $page
- * @param int $limit
- * @return array
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function getServiceList(array $where, int $page, int $limit, array $field = ['*'])
- {
- return $this->search($where)->with('user')->field($field)->order('add_time DESC')->page($page, $limit)->select()->toArray();
- }
- /**
- * 获取聊天记录上翻页
- * @param array $where
- * @param int $page
- * @param int $limit
- * @param bool $isUp
- * @return array
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function getChatList(array $where, int $limit = 20, int $upperId = 0)
- {
- return $this->search($where)->when($upperId, function ($query) use ($upperId, $limit) {
- $query->where('id', '<', $upperId)->limit($limit)->order('id DESC');
- })->when(!$upperId, function ($query) use ($limit) {
- $query->limit($limit)->order('id DESC');
- })->with(['user'])->select()->toArray();
- }
- /**
- * 清楚去年的聊天记录
- * @return bool
- */
- public function removeChat()
- {
- return $this->search(['time' => 'last year'])->delete();
- }
- /**
- * 清楚上周的游客用户聊天记录
- * @return bool
- */
- public function removeYesterDayChat()
- {
- return $this->search(['time' => 'last week', 'is_tourist' => 1])->delete();
- }
- /**
- * 根据条件获取条数
- * @param array $where
- * @return int
- */
- public function whereByCount(array $where)
- {
- return $this->search(['uid' => $where['uid']])->order('id DESC')->where('add_time', '<', time() - 300)->count();
- }
- /**
- * 获取未读消息条数
- * @param array $where
- * @return int
- */
- public function getMessageNum(array $where)
- {
- return $this->getModel()->where($where)->count();
- }
- /**
- * 搜索聊天记录
- * @param array $where
- * @return array
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function getMessageList(array $where)
- {
- return $this->search(['chat' => $where['chat']])->when(isset($where['add_time']) && $where['add_time'], function ($query) use ($where) {
- $query->where('add_time', '>', $where['add_time']);
- })->select()->toArray();
- }
- }
|