new-admin-api/app/services/message/service/StoreServiceRecordServices.php

126 lines
4.5 KiB
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?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\services\message\service;
use app\dao\message\service\StoreServiceRecordDao;
use app\services\BaseServices;
use crmeb\traits\ServicesTrait;
/**
* Class StoreServiceRecordServices
* @package app\services\message\service
* @mixin StoreServiceRecordDao
*/
class StoreServiceRecordServices extends BaseServices
{
use ServicesTrait;
/**
* StoreServiceRecordServices constructor.
* @param StoreServiceRecordDao $dao
*/
public function __construct(StoreServiceRecordDao $dao)
{
$this->dao = $dao;
}
/**
* 获取客服用户聊天列表
* @param int $userId
* @return array
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
*/
public function getServiceList(int $userId, string $nickname, int $isTourist = 0)
{
[$page, $limit] = $this->getPageValue();
$list = $this->dao->getServiceList(['user_id' => $userId, 'title' => $nickname, 'is_tourist' => $isTourist], $page, $limit, ['user', 'service']);
foreach ($list as &$item) {
if ($item['message_type'] == 1) {
$item['message'] = substrUTf8($item['message'], '10', 'UTF-8', '');
}
if (isset($item['kefu_nickname']) && $item['kefu_nickname']) {
$item['nickname'] = $item['kefu_nickname'];
}
if (isset($item['wx_nickname']) && $item['wx_nickname'] && !$item['nickname']) {
$item['nickname'] = $item['wx_nickname'];
}
if (isset($item['kefu_avatar']) && $item['kefu_avatar']) {
$item['avatar'] = $item['kefu_avatar'];
}
if (isset($item['wx_avatar']) && $item['wx_avatar'] && !$item['avatar']) {
$item['avatar'] = $item['wx_avatar'];
}
$item['_update_time'] = date('Y-m-d H:i', $item['update_time']);
}
return $list;
}
/**
* 更新客服用户信息
* @param int $uid
* @param array $data
* @return mixed
*/
public function updateRecord(array $where, array $data)
{
return $this->dao->update($where, $data);
}
/**
* 写入聊天相关人数据
* @param int $uid
* @param int $toUid
* @param string $message
* @param int $type
* @param int $messageType
* @param int $num
* @return mixed
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
*/
public function saveRecord(int $uid, int $toUid, string $message, int $type, int $messageType, int $num, int $isTourist = 0, string $nickname = '', string $avatar = '')
{
$info = $this->dao->get(['user_id' => $toUid, 'to_uid' => $uid]);
if ($info) {
$info->type = $type;
$info->message = $message;
$info->message_type = $messageType;
$info->update_time = time();
$info->mssage_num = $num;
if ($avatar) $info->avatar = $avatar;
if ($nickname) $info->nickname = $nickname;
$info->save();
$this->dao->update(['user_id' => $uid, 'to_uid' => $toUid], ['message' => $message, 'message_type' => $messageType]);
return $info->toArray();
} else {
return $this->dao->save([
'user_id' => $toUid,
'to_uid' => $uid,
'type' => $type,
'message' => $message,
'avatar' => $avatar,
'nickname' => $nickname,
'message_type' => $messageType,
'mssage_num' => $num,
'add_time' => time(),
'update_time' => time(),
'is_tourist' => $isTourist
])->toArray();
}
}
}