|
@@ -2,6 +2,7 @@ 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 nl.basjes.shaded.org.springframework.util.CollectionUtils;
|
|
|
import org.jim.server.enums.*;
|
|
@@ -29,7 +30,7 @@ public class IMChatLoginServiceProcessor implements LoginCmdProcessor {
|
|
|
|
|
|
private static JedisTemplate jedisTemplate = null;
|
|
|
|
|
|
- private static final String GROUP_PROPERTY = " group_id,name,avatar,service_account_role_department_middle_id,consumerId,group_type,company_id,department_id ";
|
|
|
+ private static final String GROUP_PROPERTY = " group_id,name,avatar,service_account_role_department_middle_id,consumer_id,group_type,company_id,department_id ";
|
|
|
|
|
|
static {
|
|
|
try {
|
|
@@ -49,6 +50,7 @@ public class IMChatLoginServiceProcessor implements LoginCmdProcessor {
|
|
|
*/
|
|
|
@Override
|
|
|
public LoginRespBody doLogin(LoginReqBody loginReqBody, ChannelContext channelContext) {
|
|
|
+ logger.info("执行登录处理器doLogin()方法...");
|
|
|
//获取token
|
|
|
String token = loginReqBody.getToken();
|
|
|
LoginRespBody loginRespBody;
|
|
@@ -137,7 +139,9 @@ public class IMChatLoginServiceProcessor implements LoginCmdProcessor {
|
|
|
* @date 2020/2/5 15:26
|
|
|
*/
|
|
|
private List<Group> initVisitorGroups(User user) {
|
|
|
- return disposeVisitorGroupData(user);
|
|
|
+ List<Group> groups = disposeVisitorGroupData(user);
|
|
|
+ this.createConversation(groups.get(0),user);
|
|
|
+ return groups;
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -239,47 +243,46 @@ public class IMChatLoginServiceProcessor implements LoginCmdProcessor {
|
|
|
serviceAccountContainerKey
|
|
|
, user.getExtras().getString("serviceAccountRoleDepartmentId")
|
|
|
);
|
|
|
- //判断当前 认领这个 客户 的客服 是否在线
|
|
|
- if( StringUtils.isNotBlank(receptionNum) ){
|
|
|
- //在线
|
|
|
- //创建临时在线群组 当客户 断开连接时 删除群组
|
|
|
+ String sql = this.createSelectGroupSql(user);
|
|
|
+ ChatGroup chatGroup = ChatGroup.dao.findFirst(sql);
|
|
|
+ if( null != chatGroup){
|
|
|
+ //之前 客服 和 客户 之间 有群组
|
|
|
+ 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);
|
|
|
- //客服是否是离线状态 1: 是 0: 否
|
|
|
- attrs.put("service_account_type", ServiceAccountOfflineTypeEnum.NO.getKey());
|
|
|
- //jfianl框架的 保存
|
|
|
- ChatGroup.dao._setAttrs(attrs).save();
|
|
|
- groups.add(group);
|
|
|
- Integer num = Integer.valueOf(receptionNum);
|
|
|
- //更改客服的服务数量
|
|
|
- jedisTemplate.hashSet(serviceAccountContainerKey,user.getExtras().getString("serviceAccountRoleDepartmentId"),String.valueOf(++num));
|
|
|
- }else{
|
|
|
- //离线
|
|
|
- //查询客户 是否有 上一次 留言的离线群组
|
|
|
- String sql = createSelectGroupSql(user);
|
|
|
- ChatGroup chatGroup = ChatGroup.dao.findFirst(sql);
|
|
|
- if( null != chatGroup ) {
|
|
|
- // 客户 上一次 留言的离线群组
|
|
|
- Group group = this.disposeChatGroupToGroup(chatGroup);
|
|
|
- groups.add(group);
|
|
|
+ attrs.put("group_state", GroupStateEnum.ON_LINE.getKey());
|
|
|
+ //判断当前 认领这个 客户 的客服 是否在线
|
|
|
+ if( StringUtils.isNotBlank(receptionNum) ){
|
|
|
+ //在线
|
|
|
+ //更改客服的服务数量
|
|
|
+ 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());
|
|
|
}else{
|
|
|
- //创建临时离线群组 当客户 断开连接时 删除群组
|
|
|
- Group group = this.createGroup(user);
|
|
|
- //把 Group 转成 Map 用于 jfianl框架的 添加使用
|
|
|
- Map<String, Object> attrs = groupToMap(group);
|
|
|
+ //离线
|
|
|
//客服是否是离线状态 1: 是 0: 否
|
|
|
attrs.put("service_account_type", ServiceAccountOfflineTypeEnum.YES.getKey());
|
|
|
- //jfianl框架的 保存
|
|
|
- ChatGroup.dao._setAttrs(attrs).save();
|
|
|
- groups.add(group);
|
|
|
}
|
|
|
+
|
|
|
+ //jfianl框架的 保存
|
|
|
+ ChatGroup.dao._setAttrs(attrs).save();
|
|
|
+
|
|
|
+ groups.add(group);
|
|
|
}
|
|
|
|
|
|
}else{
|
|
|
//按照游客 方式 处理 找到 在线客服 连接数 最少的
|
|
|
groups.addAll(this.disposeVisitorGroupData(user));
|
|
|
}
|
|
|
+ this.createConversation(groups.get(0),user);
|
|
|
return groups;
|
|
|
}
|
|
|
|
|
@@ -292,9 +295,9 @@ public class IMChatLoginServiceProcessor implements LoginCmdProcessor {
|
|
|
* @date 2020/2/6 10:16
|
|
|
*/
|
|
|
private void createConversation(Group group,User user) {
|
|
|
- ServiceAccountRoleDepartmentMiddle dao = ServiceAccountRoleDepartmentMiddle.dao;
|
|
|
Map<String, Object> attrs = new HashMap<>();
|
|
|
- attrs.put("id", Long.valueOf(group.getGroup_id()));
|
|
|
+ Long conversationId = SnowflakeIdUtils.getInstance().nextId();
|
|
|
+ attrs.put("id", conversationId );
|
|
|
//会话状态 0:游客会话 1:客户会话 群组类型 0:游客-客服 类型 1:客户-客服 类型
|
|
|
attrs.put("state", group.getGroupType());
|
|
|
if(VisitTypeEnum.CUSTOMER.getKey().equals(user.getVisitType())){
|
|
@@ -308,9 +311,11 @@ public class IMChatLoginServiceProcessor implements LoginCmdProcessor {
|
|
|
attrs.put("company_id", Long.valueOf(group.getCompanyId()));
|
|
|
attrs.put("department_id", Long.valueOf(group.getDepartmentId()));
|
|
|
ServiceAccountRoleDepartmentMiddle pojo
|
|
|
- = dao.findById(group.getServiceAccountRoleDepartmentId());
|
|
|
- attrs.put("service_account_id", Long.valueOf(pojo.get("service_account_id")));
|
|
|
- dao._setAttrs(attrs).save();
|
|
|
+ = ServiceAccountRoleDepartmentMiddle.dao.findById(group.getServiceAccountRoleDepartmentId());
|
|
|
+ attrs.put("service_account_id", pojo.getLong("service_account_id"));
|
|
|
+ Conversation.dao._setAttrs(attrs).save();
|
|
|
+ //保存 会话id 存入user中
|
|
|
+ user.getExtras().put("conversationId",conversationId);
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -324,7 +329,7 @@ public class IMChatLoginServiceProcessor implements LoginCmdProcessor {
|
|
|
StringBuilder sql = new StringBuilder();
|
|
|
sql.append(" select ")
|
|
|
.append(GROUP_PROPERTY)
|
|
|
- .append(" from sw_group where service_account_type = 1 ")
|
|
|
+ .append(" from sw_group where 1 = 1 ")
|
|
|
.append(" and company_id = " + user.getExtras().getString("companyId"))
|
|
|
.append(" and department_id = " + user.getExtras().getString("departmentId"))
|
|
|
.append(
|
|
@@ -397,10 +402,6 @@ public class IMChatLoginServiceProcessor implements LoginCmdProcessor {
|
|
|
}
|
|
|
group.setCompanyId(user.getExtras().getString("companyId"));
|
|
|
group.setDepartmentId(user.getExtras().getString("departmentId"));
|
|
|
-
|
|
|
- //创建会话
|
|
|
- this.createConversation(group,user);
|
|
|
-
|
|
|
return group;
|
|
|
}
|
|
|
|
|
@@ -493,7 +494,8 @@ public class IMChatLoginServiceProcessor implements LoginCmdProcessor {
|
|
|
sql
|
|
|
.append(" select ")
|
|
|
.append(GROUP_PROPERTY)
|
|
|
- .append(" from sw_group where 1 = 1 ")
|
|
|
+ //查看当前平台下 部门下 的所有在线群组
|
|
|
+ .append(" from sw_group where group_state = 1 ")
|
|
|
.append(" and company_id = "+ user.getExtras().getString("companyId") + " ")
|
|
|
.append(" and department_id = " + user.getExtras().getString("departmentId") + " ");
|
|
|
List<ChatGroup> chatGroups = ChatGroup.dao.find(sql.toString());
|
|
@@ -540,10 +542,8 @@ public class IMChatLoginServiceProcessor implements LoginCmdProcessor {
|
|
|
sql
|
|
|
.append(" select ")
|
|
|
.append(GROUP_PROPERTY)
|
|
|
- // service_account_type = 1 判断 当前的 是否是离线状态下的
|
|
|
- //有可能 客服 下线 客户没下线 所以 这个地方的过滤 不用 过滤 service_account_type = 1
|
|
|
- //群组 的删除 是依 客户/游客的下线 为准(并且 是在线群组 才会删除,离线群组不会删除)
|
|
|
- .append(" from sw_group where 1 = 1 and group_type = 1 ")
|
|
|
+ // 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 ")
|
|
|
.append(" and company_id = "+ user.getExtras().getString("companyId") + " ")
|
|
|
.append(" and department_id = " + user.getExtras().getString("departmentId") + " ")
|
|
|
.append(
|
|
@@ -552,11 +552,10 @@ public class IMChatLoginServiceProcessor implements LoginCmdProcessor {
|
|
|
List<ChatGroup> chatGroups = ChatGroup.dao.find(sql.toString());
|
|
|
List<Group> groups = this.disposeChatGroupsToGroups(chatGroups);
|
|
|
|
|
|
- //修改 sw_group 字段service_account_type 状态
|
|
|
+ //修改 sw_group 字段service_account_type 状态 客服是否是离线状态 1: 是 0: 否
|
|
|
if( !CollectionUtils.isEmpty(chatGroups) ){
|
|
|
for (ChatGroup chatGroup : chatGroups) {
|
|
|
- ChatGroup.dao.findById(chatGroup.getStr("group_id"))
|
|
|
- .set("service_account_type", ServiceAccountOfflineTypeEnum.NO.getKey())
|
|
|
+ chatGroup .set("service_account_type", ServiceAccountOfflineTypeEnum.NO.getKey())
|
|
|
.update();
|
|
|
}
|
|
|
}
|