Files
huangjingfen/pro_v3.5.1/app/dao/message/service/StoreServiceLogDao.php
panchengyong c1e74d8e68 chore(php): 统一 ScottPan 文件头与注释域名替换
- 按 docs/renew-code-comment.md 将 PHP 文件头改为带边框的 Author 注释\n- 注释中的 crmeb.com 替换为 uj345.cn(代码字符串中的外链未改)\n- 新增 docs/renew-code-comment.md 说明

Made-with: Cursor
2026-03-29 11:22:58 +08:00

137 lines
3.7 KiB
PHP

<?php
// +----------------------------------------------------------------------
// | Author: ScottPan Team
// +----------------------------------------------------------------------
namespace app\dao\message\service;
use app\dao\BaseDao;
use app\model\message\service\StoreServiceLog;
/**
*
* 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 $limit
* @param int $upperId
* @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', 'service'])->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();
}
}