|
@@ -1,9 +1,7 @@
|
|
|
package com.cn.service;
|
|
|
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
|
-import org.jim.server.model.ChatGroup;
|
|
|
-import org.jim.server.model.Conversation;
|
|
|
-import org.jim.server.model.ServiceAccountRoleDepartmentMiddle;
|
|
|
+import org.jim.server.model.*;
|
|
|
import nl.basjes.shaded.org.springframework.util.CollectionUtils;
|
|
|
import org.jim.server.enums.*;
|
|
|
import org.apache.commons.lang3.StringUtils;
|
|
@@ -97,6 +95,11 @@ public class IMChatLoginServiceProcessor implements LoginCmdProcessor {
|
|
|
if( VisitTypeEnum.VISITOR.getKey().equals(visitType) ){
|
|
|
|
|
|
user = this.createVisitorData(map);
|
|
|
+
|
|
|
+ Boolean noOnlineService = user.getExtras().getBoolean("noOnlineService");
|
|
|
+ if(!noOnlineService){
|
|
|
+ VisitorDepartmentMiddle.dao.findById(user.getId()).set("online",0).update();
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -141,7 +144,7 @@ public class IMChatLoginServiceProcessor implements LoginCmdProcessor {
|
|
|
private List<Group> initVisitorGroups(User user) {
|
|
|
List<Group> groups = disposeVisitorGroupData(user);
|
|
|
Boolean noOnlineService = user.getExtras().getBoolean("noOnlineService");
|
|
|
- if(noOnlineService == null){
|
|
|
+ if(!noOnlineService){
|
|
|
this.createConversation(groups.get(0),user);
|
|
|
}
|
|
|
return groups;
|
|
@@ -149,6 +152,9 @@ public class IMChatLoginServiceProcessor implements LoginCmdProcessor {
|
|
|
|
|
|
|
|
|
* 处理游客群组数据
|
|
|
+ * 自动分配原则,根据上次服务状态,优先分配上次服务客服,
|
|
|
+ * 若上次服务客服不在线或不存在上次服务客服状况,
|
|
|
+ * 则优先根据当前在线客服服务人数最少的客服进行分配,和服务上限无关;
|
|
|
* @param user
|
|
|
* @return {@link {@link List< Group>}}
|
|
|
* @author Darren
|
|
@@ -157,7 +163,7 @@ public class IMChatLoginServiceProcessor implements LoginCmdProcessor {
|
|
|
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
|
|
@@ -165,49 +171,82 @@ public class IMChatLoginServiceProcessor implements LoginCmdProcessor {
|
|
|
|
|
|
Map<String, String> serviceAccountContainer = jedisTemplate.hashGetAll(serviceAccountContainerKey);
|
|
|
|
|
|
-
|
|
|
- Map.Entry<String, String> minReceptionNumServiceAccount = this.getServiceAccountMinReceptionNum(serviceAccountContainer);
|
|
|
- if( null != minReceptionNumServiceAccount ){
|
|
|
-
|
|
|
- user.getExtras().put("serviceAccountRoleDepartmentId",minReceptionNumServiceAccount.getKey());
|
|
|
- String sql = this.createSelectGroupSql(user);
|
|
|
- ChatGroup chatGroup = ChatGroup.dao.findFirst(sql);
|
|
|
- if( null != chatGroup){
|
|
|
- chatGroup
|
|
|
-
|
|
|
- .set("group_state",GroupStateEnum.ON_LINE.getKey())
|
|
|
-
|
|
|
- .set("consumer_type",ConsumerTypeEnum.ON_LINE.getKey())
|
|
|
-
|
|
|
- .set("service_account_type",ServiceAccountOfflineTypeEnum.ON_LINE.getKey())
|
|
|
-
|
|
|
- .set("message_state",MessageStateEnum.NO.getKey())
|
|
|
- .update();
|
|
|
-
|
|
|
- Group group = disposeChatGroupToGroup(chatGroup);
|
|
|
- groups.add(group);
|
|
|
+ StringBuilder sql1 = new StringBuilder();
|
|
|
+ sql1.append(" select ")
|
|
|
+ .append(GROUP_PROPERTY)
|
|
|
+ .append(" from sw_group where 1 = 1 ")
|
|
|
+ .append(" and company_id = " + user.getExtras().getString("companyId"))
|
|
|
+ .append(" and department_id = " + user.getExtras().getString("departmentId"))
|
|
|
+ .append(" and consumer_id = " + user.getId())
|
|
|
+ .append(" order by create_time desc");
|
|
|
+
|
|
|
+ ChatGroup chatGroup1 = ChatGroup.dao.findFirst(sql1.toString());
|
|
|
+ boolean isOnline = false;
|
|
|
+ if( null != chatGroup1 ){
|
|
|
+ String accountRoleDepartmentId = chatGroup1.getStr("service_account_role_department_middle_id");
|
|
|
+
|
|
|
+ isOnline = serviceAccountContainer.containsKey(accountRoleDepartmentId);
|
|
|
+ }
|
|
|
+ user.getExtras().put("noOnlineService",false);
|
|
|
+ if(!isOnline){
|
|
|
+
|
|
|
+ Map.Entry<String, String> minReceptionNumServiceAccount = this.getServiceAccountMinReceptionNum(serviceAccountContainer);
|
|
|
+ if( null != minReceptionNumServiceAccount ){
|
|
|
+
|
|
|
+ user.getExtras().put("serviceAccountRoleDepartmentId",minReceptionNumServiceAccount.getKey());
|
|
|
+ String sql2 = this.createSelectGroupSql(user);
|
|
|
+ ChatGroup chatGroup2 = ChatGroup.dao.findFirst(sql2);
|
|
|
+ if( null != chatGroup2){
|
|
|
+ chatGroup2
|
|
|
+
|
|
|
+ .set("group_state",GroupStateEnum.ON_LINE.getKey())
|
|
|
+
|
|
|
+ .set("consumer_type",ConsumerTypeEnum.ON_LINE.getKey())
|
|
|
+
|
|
|
+ .set("service_account_type",ServiceAccountOfflineTypeEnum.ON_LINE.getKey())
|
|
|
+
|
|
|
+ .set("message_state",MessageStateEnum.NO.getKey())
|
|
|
+ .update();
|
|
|
+
|
|
|
+ Group group = disposeChatGroupToGroup(chatGroup2);
|
|
|
+ groups.add(group);
|
|
|
+ }else{
|
|
|
+
|
|
|
+ Group group = this.createGroup(user);
|
|
|
+
|
|
|
+ Map<String, Object> groupAttrs = groupToMap(group);
|
|
|
+ groupAttrs.put("group_state", GroupStateEnum.ON_LINE.getKey());
|
|
|
+ groupAttrs.put("consumer_type", ConsumerTypeEnum.ON_LINE.getKey());
|
|
|
+
|
|
|
+ groupAttrs.put("service_account_type", ServiceAccountOfflineTypeEnum.ON_LINE.getKey());
|
|
|
+
|
|
|
+ groupAttrs.put("message_state", MessageStateEnum.NO.getKey());
|
|
|
+
|
|
|
+ ChatGroup.dao._setAttrs(groupAttrs).save();
|
|
|
+ groups.add(group);
|
|
|
+ }
|
|
|
+
|
|
|
+ int num = Integer.valueOf(minReceptionNumServiceAccount.getValue());
|
|
|
+ jedisTemplate.hashSet(serviceAccountContainerKey,minReceptionNumServiceAccount.getKey(),String.valueOf(++num));
|
|
|
}else{
|
|
|
-
|
|
|
- Group group = this.createGroup(user);
|
|
|
-
|
|
|
- Map<String, Object> groupAttrs = groupToMap(group);
|
|
|
- groupAttrs.put("group_state", GroupStateEnum.ON_LINE.getKey());
|
|
|
- groupAttrs.put("consumer_type", ConsumerTypeEnum.ON_LINE.getKey());
|
|
|
-
|
|
|
- groupAttrs.put("service_account_type", ServiceAccountOfflineTypeEnum.ON_LINE.getKey());
|
|
|
-
|
|
|
- groupAttrs.put("message_state", MessageStateEnum.NO.getKey());
|
|
|
-
|
|
|
- ChatGroup.dao._setAttrs(groupAttrs).save();
|
|
|
- groups.add(group);
|
|
|
+
|
|
|
+ user.getExtras().put("noOnlineService",true);
|
|
|
}
|
|
|
-
|
|
|
- int num = Integer.valueOf(minReceptionNumServiceAccount.getValue());
|
|
|
- jedisTemplate.hashSet(serviceAccountContainerKey,minReceptionNumServiceAccount.getKey(),String.valueOf(++num));
|
|
|
}else{
|
|
|
-
|
|
|
- user.getExtras().put("noOnlineService",true);
|
|
|
+ Group group = disposeChatGroupToGroup(chatGroup1);
|
|
|
+ groups.add(group);
|
|
|
+ chatGroup1
|
|
|
+
|
|
|
+ .set("group_state",GroupStateEnum.ON_LINE.getKey())
|
|
|
+
|
|
|
+ .set("consumer_type",ConsumerTypeEnum.ON_LINE.getKey())
|
|
|
+
|
|
|
+ .set("service_account_type",ServiceAccountOfflineTypeEnum.ON_LINE.getKey())
|
|
|
+
|
|
|
+ .set("message_state",MessageStateEnum.NO.getKey())
|
|
|
+ .update();
|
|
|
}
|
|
|
+
|
|
|
return groups;
|
|
|
}
|
|
|
|
|
@@ -350,7 +389,7 @@ public class IMChatLoginServiceProcessor implements LoginCmdProcessor {
|
|
|
}
|
|
|
if( user.getExtras().getBoolean("isCreateConversation")){
|
|
|
Boolean noOnlineService = user.getExtras().getBoolean("noOnlineService");
|
|
|
- if(noOnlineService == null){
|
|
|
+ if(!noOnlineService){
|
|
|
this.createConversation(groups.get(0),user);
|
|
|
}
|
|
|
}
|