You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
shipin/app/dao/service/StoreServiceLogDao.php

142 lines
4.2 KiB

<?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();
}
}