123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- <?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\work;
- use app\dao\work\WorkGroupMsgSendResultDao;
- use app\jobs\work\WorkGroupMsgJob;
- use app\services\BaseServices;
- use crmeb\services\wechat\Work;
- use crmeb\traits\ServicesTrait;
- use think\facade\Log;
- /**
- * 企业微信群发消息客户发送详情
- * Class WorkGroupMsgSendResultServices
- * @package app\services\work
- * @mixin WorkGroupMsgSendResultDao
- */
- class WorkGroupMsgSendResultServices extends BaseServices
- {
- use ServicesTrait;
- /**
- * WorkGroupMsgSendResultServices constructor.
- * @param WorkGroupMsgSendResultDao $dao
- */
- public function __construct(WorkGroupMsgSendResultDao $dao)
- {
- $this->dao = $dao;
- }
- /**
- * @param array $where
- * @return array
- */
- public function getClientList(array $where)
- {
- [$page, $limit] = $this->getPageValue();
- $list = $this->dao->getDataList($where, ['*'], $page, $limit, 'create_time', ['client']);
- $count = $this->dao->count($where);
- return compact('list', 'count');
- }
- /**
- * 获取群主发送详情
- * @param array $where
- * @return array
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function getGroupChatMsgList(array $where)
- {
- [$page, $limit] = $this->getPageValue();
- $list = $this->dao->getGroupChatMsg($where)->whereNotNull('chat_id')->page($page, $limit)->select()->toArray();
- $count = $this->dao->getGroupChatMsg($where)->whereNotNull('chat_id')->count();
- return compact('list', 'count');
- }
- /**
- * 获取企业群发成员执行结果
- * @param int $type
- * @param string $userid
- * @param string $msgid
- * @param string|null $cursor
- * @return bool
- */
- public function getSendResult(int $type, string $userid, string $msgid, string $cursor = null)
- {
- try {
- $response = Work::getGroupmsgSendResult($msgid, $userid, 500, $cursor);
- $sendList = $response['send_list'] ?? [];
- foreach ($sendList as $item) {
- $where = ['msg_id' => $msgid, 'userid' => $userid];
- if ($type) {
- $where['chat_id'] = $item['chat_id'];
- } else {
- $where['external_userid'] = $item['external_userid'];
- }
- $info = $this->dao->get($where);
- if (!$info) {
- $this->dao->save([
- 'msg_id' => $msgid,
- 'userid' => $item['userid'],
- 'chat_id' => $item['chat_id'] ?? null,
- 'status' => $item['status'],
- 'send_time' => $item['send_time'] ?? 0,
- 'external_userid' => $item['external_userid'] ?? null,
- ]);
- } else {
- $info->status = $item['status'];
- $info->send_time = $item['send_time'] ?? 0;
- $info->save();
- }
- }
- if ($response['next_cursor']) {
- WorkGroupMsgJob::dispatchDo('getSendResult', [$type, $userid, $msgid, $response['next_cursor']]);
- }
- return true;
- } catch (\Throwable $e) {
- Log::error([
- 'message' => '获取企业群发成员执行结果失败:' . $e->getMessage(),
- 'file' => $e->getFile(),
- 'line' => $e->getLine(),
- ]);
- return false;
- }
- }
- }
|