2026-03-21 02:55:24 +08:00
|
|
|
<?php
|
|
|
|
|
// +----------------------------------------------------------------------
|
2026-03-29 11:22:52 +08:00
|
|
|
// | Author: ScottPan Team
|
2026-03-21 02:55:24 +08:00
|
|
|
// +----------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
namespace app\services\work;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
use app\dao\work\WorkGroupChatMemberDao;
|
|
|
|
|
use app\services\BaseServices;
|
|
|
|
|
use app\services\user\UserServices;
|
|
|
|
|
use think\annotation\Inject;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 企业微信群成员
|
|
|
|
|
* Class WorkGroupChatMemberServices
|
|
|
|
|
* @package app\services\work
|
|
|
|
|
* @mixin WorkGroupChatMemberDao
|
|
|
|
|
*/
|
|
|
|
|
class WorkGroupChatMemberServices extends BaseServices
|
|
|
|
|
{
|
|
|
|
|
/**
|
|
|
|
|
* @var WorkGroupChatMemberDao
|
|
|
|
|
*/
|
|
|
|
|
#[Inject]
|
|
|
|
|
protected WorkGroupChatMemberDao $dao;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 获取群成员
|
|
|
|
|
* @param int $chatId
|
|
|
|
|
* @param string $name
|
|
|
|
|
* @return array
|
|
|
|
|
*/
|
|
|
|
|
public function getChatMemberList(int $chatId, string $name = '')
|
|
|
|
|
{
|
|
|
|
|
[$page, $limit] = $this->getPageValue();
|
|
|
|
|
$list = $this->dao->getDataList(['group_id' => $chatId, 'name_like' => $name, 'status' => 1], ['*'], $page, $limit, 'create_time', [
|
|
|
|
|
'member' => function ($query) {
|
|
|
|
|
$query->field(['name', 'userid', 'gender', 'avatar', 'id', 'mobile']);
|
|
|
|
|
},
|
|
|
|
|
'client' => function ($query) {
|
|
|
|
|
$query->field(['name', 'external_userid', 'gender', 'avatar', 'id']);
|
|
|
|
|
}
|
|
|
|
|
]);
|
|
|
|
|
$clientId = $mobile = [];
|
|
|
|
|
|
|
|
|
|
foreach ($list as &$item) {
|
|
|
|
|
$item['group_chat_num'] = $this->dao->getChatSum($item['userid']);
|
|
|
|
|
if ($item['group_chat_num'] > 0) {
|
|
|
|
|
$item['group_chat_num']--;
|
|
|
|
|
}
|
|
|
|
|
if (isset($item['client']['id'])) {
|
|
|
|
|
$clientId[] = $item['client']['id'];
|
|
|
|
|
}
|
|
|
|
|
if (isset($item['member'])) {
|
|
|
|
|
$mobile[] = $item['member']['mobile'];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
/** @var WorkClientFollowServices $followService */
|
|
|
|
|
$followService = app()->make(WorkClientFollowServices::class);
|
|
|
|
|
$followList = $followService->getDataList(['client_id' => $clientId], ['id', 'client_id',], 0, 0, 'create_time', ['tags']);
|
|
|
|
|
if ($followList) {
|
|
|
|
|
foreach ($list as &$item) {
|
|
|
|
|
$newTag = [];
|
|
|
|
|
if (isset($item['client']['id'])) {
|
|
|
|
|
foreach ($followList as $value) {
|
|
|
|
|
if ($item['client']['id'] == $value['client_id'] && !empty($value['tags'])) {
|
|
|
|
|
$newTag = array_column($value['tags'], 'tag_name');
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
$item['tags'] = $newTag;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if ($mobile) {
|
|
|
|
|
/** @var UserServices $userService */
|
|
|
|
|
$userService = app()->make(UserServices::class);
|
|
|
|
|
$userList = $userService->getList(['phone' => $mobile], 'phone,uid', 0, 0);
|
|
|
|
|
if ($userList) {
|
|
|
|
|
foreach ($list as &$item) {
|
|
|
|
|
$newTag = [];
|
|
|
|
|
if (isset($item['member'])) {
|
|
|
|
|
foreach ($userList as $value) {
|
|
|
|
|
if ($item['member']['mobile'] == $value['phone'] && !empty($value['label'])) {
|
|
|
|
|
$newTag = array_column($value['label'], 'label_name');
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
$item['tags'] = $newTag;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
$count = $this->dao->count(['group_id' => $chatId, 'name_like' => $name, 'status' => 1]);
|
|
|
|
|
return compact('list', 'count');
|
|
|
|
|
}
|
|
|
|
|
}
|