|
@@ -1,9 +1,9 @@
|
|
|
package com.cn.service;
|
|
|
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
|
-import com.cn.model.ChatGroup;
|
|
|
-import com.cn.model.Conversation;
|
|
|
-import com.cn.model.ServiceAccountRoleDepartmentMiddle;
|
|
|
+import org.jim.server.model.ChatGroup;
|
|
|
+import org.jim.server.model.Conversation;
|
|
|
+import org.jim.server.model.ServiceAccountRoleDepartmentMiddle;
|
|
|
import nl.basjes.shaded.org.springframework.util.CollectionUtils;
|
|
|
import org.jim.server.enums.*;
|
|
|
import org.apache.commons.lang3.StringUtils;
|
|
@@ -152,27 +152,52 @@ public class IMChatLoginServiceProcessor implements LoginCmdProcessor {
|
|
|
* @date 2020/2/5 15:25
|
|
|
*/
|
|
|
private List<Group> disposeVisitorGroupData(User user){
|
|
|
+ List<Group> groups = new ArrayList<>();
|
|
|
+
|
|
|
//获取 当前平台下 部门下 在线的 客服
|
|
|
String serviceAccountContainerKey
|
|
|
= user.getExtras().getString("companyId") + ImConst.SEPARATOR
|
|
|
+ user.getExtras().getString("departmentId") + ImConst.SEPARATOR
|
|
|
+ VisitTypeEnum.SERVICEACCOUNT.getKey() ;
|
|
|
- List<Group> groups = new ArrayList<>();
|
|
|
- //从当前在线的客服中 获取 连接客户数最少的 客服
|
|
|
//value组成 : Map<String ( serviceAccountRoleDepartmentId ), String (当前连接客户人数)>
|
|
|
Map<String, String> serviceAccountContainer = jedisTemplate.hashGetAll(serviceAccountContainerKey);
|
|
|
+
|
|
|
+ // //从当前在线的客服中 获取 连接客户数最少的 客服
|
|
|
Map.Entry<String, String> minReceptionNumServiceAccount = this.getServiceAccountMinReceptionNum(serviceAccountContainer);
|
|
|
if( null != minReceptionNumServiceAccount ){
|
|
|
//当前平台下部门下 存在客服
|
|
|
user.getExtras().put("serviceAccountRoleDepartmentId",minReceptionNumServiceAccount.getKey());
|
|
|
- //创建临时在线群组 当客户 断开连接时 删除群组
|
|
|
- Group group = this.createGroup(user);
|
|
|
- //把 Group 转成 Map 用于 jfianl框架的 添加使用
|
|
|
- Map<String, Object> attrs = groupToMap(group);
|
|
|
- attrs.put("service_account_type", ServiceAccountOfflineTypeEnum.NO.getKey());
|
|
|
- //jfianl框架的 保存
|
|
|
- ChatGroup.dao._setAttrs(attrs).save();
|
|
|
- groups.add(group);
|
|
|
+ String sql = this.createSelectGroupSql(user);
|
|
|
+ ChatGroup chatGroup = ChatGroup.dao.findFirst(sql);
|
|
|
+ if( null != chatGroup){
|
|
|
+ chatGroup
|
|
|
+ // 更改 sw_group 表中 group_state 字段为在线 (群组离线状态 1: 离线 0: 在线)
|
|
|
+ .set("group_state",GroupStateEnum.ON_LINE.getKey())
|
|
|
+ // 更改 sw_group 表中 consumer_type 字段为在线 (客户/游客 离线状态 1:离线 0:在线)
|
|
|
+ .set("consumer_type",ConsumerTypeEnum.ON_LINE.getKey())
|
|
|
+ // 更改 sw_group 表中 service_account_type 字段为 在线 (客服离线状态 1: 离线 0: 在线)
|
|
|
+ .set("service_account_type",ServiceAccountOfflineTypeEnum.ON_LINE.getKey())
|
|
|
+ // 更改 sw_group 表中 message_state 字段为 非留言 (群组留言状态 1:留言 0:非留言)
|
|
|
+ .set("message_state",MessageStateEnum.NO.getKey())
|
|
|
+ .update();
|
|
|
+ //之前 客服 和 客户/游客 之间 有群组
|
|
|
+ Group group = disposeChatGroupToGroup(chatGroup);
|
|
|
+ groups.add(group);
|
|
|
+ }else{
|
|
|
+ //创建群组
|
|
|
+ Group group = this.createGroup(user);
|
|
|
+ //把 Group 转成 Map 用于 jfianl框架的 添加使用
|
|
|
+ Map<String, Object> groupAttrs = groupToMap(group);
|
|
|
+ groupAttrs.put("group_state", GroupStateEnum.ON_LINE.getKey());
|
|
|
+ groupAttrs.put("consumer_type", ConsumerTypeEnum.ON_LINE.getKey());
|
|
|
+ //客服是否是离线状态 1: 是 0: 否
|
|
|
+ groupAttrs.put("service_account_type", ServiceAccountOfflineTypeEnum.ON_LINE.getKey());
|
|
|
+ //群组留言状态 1:留言 0:非留言
|
|
|
+ groupAttrs.put("message_state", MessageStateEnum.NO.getKey());
|
|
|
+ //jfianl框架的 保存
|
|
|
+ ChatGroup.dao._setAttrs(groupAttrs).save();
|
|
|
+ groups.add(group);
|
|
|
+ }
|
|
|
//更改 客服正在 服务的 客户/游客 数量
|
|
|
int num = Integer.valueOf(minReceptionNumServiceAccount.getValue());
|
|
|
jedisTemplate.hashSet(serviceAccountContainerKey,minReceptionNumServiceAccount.getKey(),String.valueOf(++num));
|
|
@@ -231,33 +256,69 @@ public class IMChatLoginServiceProcessor implements LoginCmdProcessor {
|
|
|
+ user.getExtras().getString("departmentId") + ImConst.SEPARATOR
|
|
|
+ VisitTypeEnum.SERVICEACCOUNT.getKey() ;
|
|
|
|
|
|
+ //是否创建 会话
|
|
|
+ user.getExtras().put("isCreateConversation",true);
|
|
|
+
|
|
|
List<Group> groups = new ArrayList<>();
|
|
|
- //是否认领 1:是 0:否
|
|
|
- String isClaim = user.getExtras().getString("isClaim");
|
|
|
- //是否加入黑名单 1:是 0:否
|
|
|
- String isBlack = user.getExtras().getString("isBlack");
|
|
|
- if( CustomerClaimTypeEnum.YES.getKey().equals(isClaim) && BlackListStateEnum.NO.getKey().equals(isBlack) ){
|
|
|
+ // isClaim: 是否认领 1:是 0:否; isBlack: 是否加入黑名单 1:是 0:否;
|
|
|
+ if(
|
|
|
+ CustomerClaimTypeEnum.YES.getKey().equals(user.getExtras().getString("isClaim")) &&
|
|
|
+ BlackListStateEnum.NO.getKey().equals(user.getExtras().getString("isBlack"))
|
|
|
+ ){
|
|
|
//被认领 并且 没有加入黑名单
|
|
|
String receptionNum
|
|
|
= jedisTemplate.hashGet(
|
|
|
- serviceAccountContainerKey
|
|
|
+ serviceAccountContainerKey
|
|
|
, user.getExtras().getString("serviceAccountRoleDepartmentId")
|
|
|
);
|
|
|
String sql = this.createSelectGroupSql(user);
|
|
|
ChatGroup chatGroup = ChatGroup.dao.findFirst(sql);
|
|
|
if( null != chatGroup){
|
|
|
+ //判断 (之前群组 是否是留言群组 且 客服是离线状态)
|
|
|
+ if(
|
|
|
+ MessageStateEnum.YES.getKey() == chatGroup.getInt("message_state")
|
|
|
+ && ServiceAccountOfflineTypeEnum.OFF_LINE.getKey() == chatGroup.getInt("service_account_type")
|
|
|
+ ){
|
|
|
+ //如果 之前群组 客户是否 在线 且 群组是否 在线 或 之前群组 是留言群组 则不重新创建会话
|
|
|
+ user.getExtras().put("isCreateConversation",false);
|
|
|
+ }
|
|
|
+ chatGroup
|
|
|
+ // 更改 sw_group 表中 group_state 字段为在线 (群组离线状态 1: 离线 0: 在线)
|
|
|
+ .set("group_state",GroupStateEnum.ON_LINE.getKey())
|
|
|
+ // 更改 sw_group 表中 consumer_type 字段为在线 (客户/游客 离线状态 1:离线 0:在线)
|
|
|
+ .set("consumer_type",ConsumerTypeEnum.ON_LINE.getKey())
|
|
|
+ .update();
|
|
|
+ //判断当前 认领这个 客户 的客服 是否在线
|
|
|
+ if( StringUtils.isNotBlank(receptionNum) ){
|
|
|
+ //在线
|
|
|
+ chatGroup
|
|
|
+ // 更改 sw_group 表中 service_account_type 字段为 在线 (客服离线状态 1: 离线 0: 在线)
|
|
|
+ .set("service_account_type",ServiceAccountOfflineTypeEnum.ON_LINE.getKey())
|
|
|
+ // 更改 sw_group 表中 message_state 字段为 非留言 (群组留言状态 1:留言 0:非留言)
|
|
|
+ .set("message_state",MessageStateEnum.NO.getKey())
|
|
|
+ .update();
|
|
|
+ //更改客服的服务数量
|
|
|
+ Integer num = Integer.valueOf(receptionNum);
|
|
|
+ jedisTemplate.hashSet(serviceAccountContainerKey,user.getExtras().getString("serviceAccountRoleDepartmentId"),String.valueOf(++num));
|
|
|
+ }else{
|
|
|
+ //离线
|
|
|
+ chatGroup
|
|
|
+ // 更改 sw_group 表中 service_account_type 字段为 离线 (客服离线状态 1: 离线 0: 在线)
|
|
|
+ .set("service_account_type",ServiceAccountOfflineTypeEnum.OFF_LINE.getKey())
|
|
|
+ // 更改 sw_group 表中 message_state 字段为 留言 (群组留言状态 1:留言 0:非留言)
|
|
|
+ .set("message_state",MessageStateEnum.YES.getKey())
|
|
|
+ .update();
|
|
|
+ }
|
|
|
//之前 客服 和 客户 之间 有群组
|
|
|
Group group = disposeChatGroupToGroup(chatGroup);
|
|
|
groups.add(group);
|
|
|
-
|
|
|
- // 更改 sw_group 表中 group_state 字段为在线 (group_state 1:在线 0:离线0
|
|
|
- chatGroup.set("group_state",GroupStateEnum.ON_LINE.getKey()).update();
|
|
|
}else{
|
|
|
// 创建新的群组
|
|
|
Group group = this.createGroup(user);
|
|
|
//把 Group 转成 Map 用于 jfianl框架的 添加使用
|
|
|
- Map<String, Object> attrs = groupToMap(group);
|
|
|
- attrs.put("group_state", GroupStateEnum.ON_LINE.getKey());
|
|
|
+ Map<String, Object> groupAttrs = groupToMap(group);
|
|
|
+ groupAttrs.put("group_state", GroupStateEnum.ON_LINE.getKey());
|
|
|
+ groupAttrs.put("consumer_type", ConsumerTypeEnum.ON_LINE.getKey());
|
|
|
//判断当前 认领这个 客户 的客服 是否在线
|
|
|
if( StringUtils.isNotBlank(receptionNum) ){
|
|
|
//在线
|
|
@@ -265,16 +326,18 @@ public class IMChatLoginServiceProcessor implements LoginCmdProcessor {
|
|
|
Integer num = Integer.valueOf(receptionNum);
|
|
|
jedisTemplate.hashSet(serviceAccountContainerKey,user.getExtras().getString("serviceAccountRoleDepartmentId"),String.valueOf(++num));
|
|
|
//客服是否是离线状态 1: 是 0: 否
|
|
|
- attrs.put("service_account_type", ServiceAccountOfflineTypeEnum.NO.getKey());
|
|
|
+ groupAttrs.put("service_account_type", ServiceAccountOfflineTypeEnum.ON_LINE.getKey());
|
|
|
+ //群组留言状态 1:留言 0:非留言
|
|
|
+ groupAttrs.put("message_state", MessageStateEnum.NO.getKey());
|
|
|
}else{
|
|
|
//离线
|
|
|
//客服是否是离线状态 1: 是 0: 否
|
|
|
- attrs.put("service_account_type", ServiceAccountOfflineTypeEnum.YES.getKey());
|
|
|
+ groupAttrs.put("service_account_type", ServiceAccountOfflineTypeEnum.OFF_LINE.getKey());
|
|
|
+ //群组留言状态 1:留言 0:非留言
|
|
|
+ groupAttrs.put("message_state", MessageStateEnum.YES.getKey());
|
|
|
}
|
|
|
-
|
|
|
//jfianl框架的 保存
|
|
|
- ChatGroup.dao._setAttrs(attrs).save();
|
|
|
-
|
|
|
+ ChatGroup.dao._setAttrs(groupAttrs).save();
|
|
|
groups.add(group);
|
|
|
}
|
|
|
|
|
@@ -282,7 +345,9 @@ public class IMChatLoginServiceProcessor implements LoginCmdProcessor {
|
|
|
//按照游客 方式 处理 找到 在线客服 连接数 最少的
|
|
|
groups.addAll(this.disposeVisitorGroupData(user));
|
|
|
}
|
|
|
- this.createConversation(groups.get(0),user);
|
|
|
+ if( user.getExtras().getBoolean("isCreateConversation")){
|
|
|
+ this.createConversation(groups.get(0),user);
|
|
|
+ }
|
|
|
return groups;
|
|
|
}
|
|
|
|
|
@@ -315,7 +380,7 @@ public class IMChatLoginServiceProcessor implements LoginCmdProcessor {
|
|
|
attrs.put("service_account_id", pojo.getLong("service_account_id"));
|
|
|
Conversation.dao._setAttrs(attrs).save();
|
|
|
//保存 会话id 存入user中
|
|
|
- user.getExtras().put("conversationId",conversationId);
|
|
|
+ ChatGroup.dao.findById(group.getGroup_id()).set("conversation_id",conversationId).update();
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -325,7 +390,7 @@ public class IMChatLoginServiceProcessor implements LoginCmdProcessor {
|
|
|
* @author Darren
|
|
|
* @date 2020/2/4 20:45
|
|
|
*/
|
|
|
- public String createSelectGroupSql(User user){
|
|
|
+ private String createSelectGroupSql(User user){
|
|
|
StringBuilder sql = new StringBuilder();
|
|
|
sql.append(" select ")
|
|
|
.append(GROUP_PROPERTY)
|
|
@@ -421,11 +486,9 @@ public class IMChatLoginServiceProcessor implements LoginCmdProcessor {
|
|
|
//当前访问人为客服
|
|
|
user.setId(map.get("serviceAccountRoleDepartmentId"));
|
|
|
//用户头像
|
|
|
- String headImg = map.get("headImg");
|
|
|
- user.setAvatar(headImg);
|
|
|
+ user.setAvatar(map.get("headImg"));
|
|
|
//user nick
|
|
|
- String nickname = map.get("nickname");
|
|
|
- user.setNick(nickname);
|
|
|
+ user.setNick( map.get("nickname"));
|
|
|
//扩展预留字段;
|
|
|
Map<String, Object> serviceAccountMap = new HashMap<>();
|
|
|
serviceAccountMap.put("companyId", map.get("companyId"));
|
|
@@ -449,10 +512,9 @@ public class IMChatLoginServiceProcessor implements LoginCmdProcessor {
|
|
|
* @date 2020/2/3 20:29
|
|
|
*/
|
|
|
private List<Group> initViewAllServiceAccountGroup(User user) {
|
|
|
- List<Group> groups = null;
|
|
|
+ List<Group> groups = new ArrayList<>();
|
|
|
//1.判断当前客服是否具有查看当前部门下 全部客服通话的权限
|
|
|
- String hasViewAllServiceAccount = user.getExtras().getString("hasViewAllServiceAccount");
|
|
|
- if( Boolean.valueOf(hasViewAllServiceAccount) ){
|
|
|
+ if( Boolean.valueOf(user.getExtras().getString("hasViewAllServiceAccount")) ){
|
|
|
boolean flag = false;
|
|
|
//获取 具有查看全部客服通话权限 的客服容器 并且 加入到该容器中 key数据格式: companyId : departmentId : ADMIN
|
|
|
String adminContainerKey = user.getExtras().getString("companyId")
|
|
@@ -473,39 +535,53 @@ public class IMChatLoginServiceProcessor implements LoginCmdProcessor {
|
|
|
|
|
|
//... 然后把当前 客服 加入到 该平台下 部门下 所有群组中
|
|
|
if(flag){
|
|
|
- //1.从redis中获取数据
|
|
|
- //获取平台该部门下 所有 群组 key数据格式: companyId : departmentId : GROUP
|
|
|
- /*String groupContainerKey = user.getExtras().getString("companyId")
|
|
|
- + SEPARATOR + user.getExtras().getString("departmentId") + SEPARATOR + GROUP ;
|
|
|
- Map<String, String> serviceAccountGroupContainer = jedisTemplate.hashGetAll(groupContainerKey);
|
|
|
- if( !CollectionUtils.isEmpty(serviceAccountGroupContainer) ){
|
|
|
- //如果 客服群组容器中 有值 绑定群组
|
|
|
- groups = serviceAccountGroupContainer
|
|
|
- .values()
|
|
|
- .stream()
|
|
|
- .map(x -> JsonKit.toBean(x, Group.class))
|
|
|
- //过滤掉 属于该客服的群组
|
|
|
- .filter(x -> !x.getServiceAccountRoleDepartmentId().equals(user.getId()))
|
|
|
+ //从数据库中获取数据
|
|
|
+ //1.查询所有留言群组
|
|
|
+ StringBuilder sql1 = new StringBuilder();
|
|
|
+ sql1
|
|
|
+ .append(" select ")
|
|
|
+ .append(GROUP_PROPERTY)
|
|
|
+ //message_state: 群组留言状态 1:留言 0:非留言
|
|
|
+ //group_type: 群组类型 0:游客-客服 类型 1:客户-客服 类型
|
|
|
+ .append(" from sw_group where group_type = 1 and message_state = 1 ")
|
|
|
+ .append(" and company_id = "+ user.getExtras().getString("companyId") + " ")
|
|
|
+ .append(" and department_id = " + user.getExtras().getString("departmentId") + " ");
|
|
|
+ List<ChatGroup> messageChatGroups = ChatGroup.dao.find(sql1.toString());
|
|
|
+ if( !CollectionUtils.isEmpty(messageChatGroups) ){
|
|
|
+ messageChatGroups = messageChatGroups.stream()
|
|
|
+ .filter(
|
|
|
+ x -> !x.get("service_account_role_department_middle_id").equals(user.getId())
|
|
|
+ )
|
|
|
.collect(Collectors.toList());
|
|
|
- }else{
|
|
|
- }*/
|
|
|
- //2.从数据库中获取数据
|
|
|
- StringBuilder sql = new StringBuilder();
|
|
|
- sql
|
|
|
+ List<Group> messageGroups = this.disposeChatGroupsToGroups(messageChatGroups);
|
|
|
+ if( !CollectionUtils.isEmpty(messageGroups) ){
|
|
|
+ groups.addAll(messageGroups);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ //2.查询所有在线群组
|
|
|
+ StringBuilder sql2 = new StringBuilder();
|
|
|
+ sql2
|
|
|
.append(" select ")
|
|
|
.append(GROUP_PROPERTY)
|
|
|
//查看当前平台下 部门下 的所有在线群组
|
|
|
- .append(" from sw_group where group_state = 1 ")
|
|
|
+ //group_state: 群组离线状态 1: 离线 0: 在线
|
|
|
+ //consumer_type: 客户/游客 离线状态 1:离线 0:在线
|
|
|
+ //message_state: 群组留言状态 1:留言 0:非留言
|
|
|
+ .append(" from sw_group where group_state = 0 and consumer_type = 0 and message_state = 0 ")
|
|
|
.append(" and company_id = "+ user.getExtras().getString("companyId") + " ")
|
|
|
.append(" and department_id = " + user.getExtras().getString("departmentId") + " ");
|
|
|
- List<ChatGroup> chatGroups = ChatGroup.dao.find(sql.toString());
|
|
|
- if( !CollectionUtils.isEmpty(chatGroups) ){
|
|
|
- chatGroups = chatGroups.stream()
|
|
|
+ List<ChatGroup> onlineChatGroups = ChatGroup.dao.find(sql2.toString());
|
|
|
+ if( !CollectionUtils.isEmpty(onlineChatGroups) ){
|
|
|
+ onlineChatGroups = onlineChatGroups.stream()
|
|
|
.filter(
|
|
|
x -> !x.get("service_account_role_department_middle_id").equals(user.getId())
|
|
|
)
|
|
|
.collect(Collectors.toList());
|
|
|
- groups = this.disposeChatGroupsToGroups(chatGroups);
|
|
|
+ List<Group> onlineGroups = this.disposeChatGroupsToGroups(onlineChatGroups);
|
|
|
+ if( !CollectionUtils.isEmpty(onlineGroups) ){
|
|
|
+ groups.addAll(onlineGroups);
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
}
|
|
@@ -522,44 +598,54 @@ public class IMChatLoginServiceProcessor implements LoginCmdProcessor {
|
|
|
* @date 2020/2/3 19:55
|
|
|
*/
|
|
|
private List<Group> initServiceAccountGroups(User user) {
|
|
|
- //1.从redis中获取数据
|
|
|
- // 查看当前是否有相关该客服的群组 key数据格式: companyId : departmentId : userId : GROUP
|
|
|
- /* String serviceAccountGroupContainerKey = user.getExtras().getString("companyId")
|
|
|
- + SEPARATOR + user.getExtras().getString("departmentId") + SEPARATOR + user.getId() + GROUP ;
|
|
|
- // value 数据结构 (field 域 : value) : consumerId 游客或者客户的 userID : {group 群组对象json串 }
|
|
|
- Map<String, String> serviceAccountGroupContainer = jedisTemplate.hashGetAll(serviceAccountGroupContainerKey);
|
|
|
- if( !CollectionUtils.isEmpty(serviceAccountGroupContainer) ){
|
|
|
- //如果 客服群组容器中 有值 绑定群组
|
|
|
- groups = serviceAccountGroupContainer
|
|
|
- .values()
|
|
|
- .stream()
|
|
|
- .map(x -> JsonKit.toBean(x, Group.class))
|
|
|
- .collect(Collectors.toList());
|
|
|
- }else{
|
|
|
- }*/
|
|
|
- //2.从数据库中获取数据
|
|
|
- StringBuilder sql = new StringBuilder();
|
|
|
- sql
|
|
|
+
|
|
|
+ List<ChatGroup> chatGroups = new ArrayList<>();
|
|
|
+ //从数据库中获取数据
|
|
|
+ //2.查询 客户/游客 对应平台下 对应部门下 在线群组状态 和 客户/游客在线状态 和 群组非留言状态
|
|
|
+ StringBuilder sql2 = new StringBuilder();
|
|
|
+ sql2
|
|
|
.append(" select ")
|
|
|
.append(GROUP_PROPERTY)
|
|
|
- // service_account_type = 1 判断 当前的 是否是离线状态下的; group_state 群组状态 1:在线 0:离线
|
|
|
- .append(" from sw_group where group_state = 1 and service_account_type = 1 and group_type = 1 ")
|
|
|
+ //message_state: 群组留言状态 1:留言 0:非留言
|
|
|
+ //consumer_type: 客户/游客 离线状态 1:离线 0:在线
|
|
|
+ //group_state: 群组离线状态 1: 离线 0: 在线
|
|
|
+ .append(" from sw_group where group_state = 0 and consumer_type = 0 and message_state = 0")
|
|
|
.append(" and company_id = "+ user.getExtras().getString("companyId") + " ")
|
|
|
.append(" and department_id = " + user.getExtras().getString("departmentId") + " ")
|
|
|
.append(
|
|
|
" and service_account_role_department_middle_id = " + user.getId()
|
|
|
);
|
|
|
- List<ChatGroup> chatGroups = ChatGroup.dao.find(sql.toString());
|
|
|
- List<Group> groups = this.disposeChatGroupsToGroups(chatGroups);
|
|
|
+ List<ChatGroup> onlineChatGroups = ChatGroup.dao.find(sql2.toString());
|
|
|
+ if( !CollectionUtils.isEmpty(onlineChatGroups) ){
|
|
|
+ chatGroups.addAll(onlineChatGroups);
|
|
|
+ }
|
|
|
|
|
|
- //修改 sw_group 字段service_account_type 状态 客服是否是离线状态 1: 是 0: 否
|
|
|
- if( !CollectionUtils.isEmpty(chatGroups) ){
|
|
|
- for (ChatGroup chatGroup : chatGroups) {
|
|
|
- chatGroup .set("service_account_type", ServiceAccountOfflineTypeEnum.NO.getKey())
|
|
|
+ //1.查询 对应平台下 对应部门下 留言群组
|
|
|
+ StringBuilder sql1 = new StringBuilder();
|
|
|
+ sql1
|
|
|
+ .append(" select ")
|
|
|
+ .append(GROUP_PROPERTY)
|
|
|
+ //message_state: 群组留言状态 1:留言 0:非留言
|
|
|
+ //group_type: 群组类型 0:游客-客服 类型 1:客户-客服 类型
|
|
|
+ .append(" from sw_group where group_type = 1 and message_state = 1 ")
|
|
|
+ .append(" and company_id = "+ user.getExtras().getString("companyId") + " ")
|
|
|
+ .append(" and department_id = " + user.getExtras().getString("departmentId") + " ")
|
|
|
+ .append(
|
|
|
+ " and service_account_role_department_middle_id = " + user.getId()
|
|
|
+ );
|
|
|
+ List<ChatGroup> messageChatGroups = ChatGroup.dao.find(sql1.toString());
|
|
|
+ if( !CollectionUtils.isEmpty(messageChatGroups) ){
|
|
|
+ chatGroups.addAll(messageChatGroups);
|
|
|
+ //修改 sw_group 表中的 message_state 状态; 群组留言状态 1:留言 0:非留言
|
|
|
+ //修改 sw_group 表中的 service_account_type 状态; 客服离线状态 1: 离线 0: 在线
|
|
|
+ for (ChatGroup chatGroup : messageChatGroups) {
|
|
|
+ chatGroup .set("message_state", MessageStateEnum.NO.getKey())
|
|
|
+ .set("service_account_type",ServiceAccountOfflineTypeEnum.ON_LINE.getKey())
|
|
|
.update();
|
|
|
}
|
|
|
}
|
|
|
- return groups;
|
|
|
+
|
|
|
+ return this.disposeChatGroupsToGroups(chatGroups);
|
|
|
}
|
|
|
|
|
|
/***
|