|
@@ -333,7 +333,7 @@ public class ImGroupCoreServiceImpl implements ImGroupCoreService {
|
|
|
* @throws Exception Exception
|
|
|
*/
|
|
|
@Override
|
|
|
- public void groupQuit(GroupMemberWrapper.ImGroupMember imGroupMember, String groupId) throws Exception {
|
|
|
+ public void groupQuit(GroupMemberWrapper.ImGroupMember imGroupMember, String groupId,Boolean quit) throws Exception {
|
|
|
|
|
|
// 判定登录用户是否为群主
|
|
|
ImGroup imGroup = imGroupService.lambdaQuery().eq(ImGroup::getId, groupId).last("LIMIT 1").one();
|
|
@@ -369,8 +369,9 @@ public class ImGroupCoreServiceImpl implements ImGroupCoreService {
|
|
|
.clientType(imGroupMember.getClientType())
|
|
|
.build());
|
|
|
|
|
|
- // 删除主动退群操作,由移动端或前端自己主动发起退群操作
|
|
|
- //imPluginContext.getPluginService().groupQuit(imGroup.getId(), getImGroupMembers(groupMembers));
|
|
|
+ if (Optional.ofNullable(quit).orElse(true)) {
|
|
|
+ imPluginContext.getPluginService().groupQuit(imGroup.getId(), getImGroupMembers(groupMembers));
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -382,7 +383,7 @@ public class ImGroupCoreServiceImpl implements ImGroupCoreService {
|
|
|
* @throws Exception Exception
|
|
|
*/
|
|
|
@Override
|
|
|
- public void groupQuit(Long userId, String clientType, String imGroupId) throws Exception {
|
|
|
+ public void groupQuit(Long userId, String clientType, String imGroupId ,Boolean quit) throws Exception {
|
|
|
|
|
|
ImGroup imGroup = imGroupService.getById(imGroupId);
|
|
|
if (Objects.isNull(imGroup)) {
|
|
@@ -395,7 +396,7 @@ public class ImGroupCoreServiceImpl implements ImGroupCoreService {
|
|
|
.clientType(clientType)
|
|
|
.build();
|
|
|
// 退出群聊
|
|
|
- groupQuit(groupMember, imGroup.getId());
|
|
|
+ groupQuit(groupMember, imGroup.getId(), quit);
|
|
|
}
|
|
|
|
|
|
/**
|