|
@@ -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<>();
|
|
|
-
|
|
|
|
|
|
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);
|
|
|
-
|
|
|
- Map<String, Object> attrs = groupToMap(group);
|
|
|
- attrs.put("service_account_type", ServiceAccountOfflineTypeEnum.NO.getKey());
|
|
|
-
|
|
|
- ChatGroup.dao._setAttrs(attrs).save();
|
|
|
- groups.add(group);
|
|
|
+ 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);
|
|
|
+ }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));
|
|
@@ -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<>();
|
|
|
-
|
|
|
- String isClaim = user.getExtras().getString("isClaim");
|
|
|
-
|
|
|
- String isBlack = user.getExtras().getString("isBlack");
|
|
|
- if( CustomerClaimTypeEnum.YES.getKey().equals(isClaim) && BlackListStateEnum.NO.getKey().equals(isBlack) ){
|
|
|
+
|
|
|
+ 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
|
|
|
+
|
|
|
+ .set("group_state",GroupStateEnum.ON_LINE.getKey())
|
|
|
+
|
|
|
+ .set("consumer_type",ConsumerTypeEnum.ON_LINE.getKey())
|
|
|
+ .update();
|
|
|
+
|
|
|
+ if( StringUtils.isNotBlank(receptionNum) ){
|
|
|
+
|
|
|
+ chatGroup
|
|
|
+
|
|
|
+ .set("service_account_type",ServiceAccountOfflineTypeEnum.ON_LINE.getKey())
|
|
|
+
|
|
|
+ .set("message_state",MessageStateEnum.NO.getKey())
|
|
|
+ .update();
|
|
|
+
|
|
|
+ Integer num = Integer.valueOf(receptionNum);
|
|
|
+ jedisTemplate.hashSet(serviceAccountContainerKey,user.getExtras().getString("serviceAccountRoleDepartmentId"),String.valueOf(++num));
|
|
|
+ }else{
|
|
|
+
|
|
|
+ chatGroup
|
|
|
+
|
|
|
+ .set("service_account_type",ServiceAccountOfflineTypeEnum.OFF_LINE.getKey())
|
|
|
+
|
|
|
+ .set("message_state",MessageStateEnum.YES.getKey())
|
|
|
+ .update();
|
|
|
+ }
|
|
|
|
|
|
Group group = disposeChatGroupToGroup(chatGroup);
|
|
|
groups.add(group);
|
|
|
-
|
|
|
-
|
|
|
- chatGroup.set("group_state",GroupStateEnum.ON_LINE.getKey()).update();
|
|
|
}else{
|
|
|
|
|
|
Group group = this.createGroup(user);
|
|
|
|
|
|
- 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));
|
|
|
|
|
|
- attrs.put("service_account_type", ServiceAccountOfflineTypeEnum.NO.getKey());
|
|
|
+ groupAttrs.put("service_account_type", ServiceAccountOfflineTypeEnum.ON_LINE.getKey());
|
|
|
+
|
|
|
+ groupAttrs.put("message_state", MessageStateEnum.NO.getKey());
|
|
|
}else{
|
|
|
|
|
|
|
|
|
- attrs.put("service_account_type", ServiceAccountOfflineTypeEnum.YES.getKey());
|
|
|
+ groupAttrs.put("service_account_type", ServiceAccountOfflineTypeEnum.OFF_LINE.getKey());
|
|
|
+
|
|
|
+ groupAttrs.put("message_state", MessageStateEnum.YES.getKey());
|
|
|
}
|
|
|
-
|
|
|
|
|
|
- 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();
|
|
|
|
|
|
- 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"));
|
|
|
|
|
|
- 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<>();
|
|
|
|
|
|
- String hasViewAllServiceAccount = user.getExtras().getString("hasViewAllServiceAccount");
|
|
|
- if( Boolean.valueOf(hasViewAllServiceAccount) ){
|
|
|
+ if( Boolean.valueOf(user.getExtras().getString("hasViewAllServiceAccount")) ){
|
|
|
boolean flag = false;
|
|
|
|
|
|
String adminContainerKey = user.getExtras().getString("companyId")
|
|
@@ -473,39 +535,53 @@ public class IMChatLoginServiceProcessor implements LoginCmdProcessor {
|
|
|
|
|
|
|
|
|
if(flag){
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- + 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()))
|
|
|
+
|
|
|
+
|
|
|
+ StringBuilder sql1 = new StringBuilder();
|
|
|
+ sql1
|
|
|
+ .append(" select ")
|
|
|
+ .append(GROUP_PROPERTY)
|
|
|
+
|
|
|
+
|
|
|
+ .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{
|
|
|
- }*/
|
|
|
-
|
|
|
- StringBuilder sql = new StringBuilder();
|
|
|
- sql
|
|
|
+ List<Group> messageGroups = this.disposeChatGroupsToGroups(messageChatGroups);
|
|
|
+ if( !CollectionUtils.isEmpty(messageGroups) ){
|
|
|
+ groups.addAll(messageGroups);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ StringBuilder sql2 = new StringBuilder();
|
|
|
+ sql2
|
|
|
.append(" select ")
|
|
|
.append(GROUP_PROPERTY)
|
|
|
|
|
|
- .append(" from sw_group where group_state = 1 ")
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ .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) {
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- + SEPARATOR + user.getExtras().getString("departmentId") + SEPARATOR + user.getId() + GROUP ;
|
|
|
-
|
|
|
- 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{
|
|
|
- }*/
|
|
|
-
|
|
|
- StringBuilder sql = new StringBuilder();
|
|
|
- sql
|
|
|
+
|
|
|
+ List<ChatGroup> chatGroups = new ArrayList<>();
|
|
|
+
|
|
|
+
|
|
|
+ StringBuilder sql2 = new StringBuilder();
|
|
|
+ sql2
|
|
|
.append(" select ")
|
|
|
.append(GROUP_PROPERTY)
|
|
|
-
|
|
|
- .append(" from sw_group where group_state = 1 and service_account_type = 1 and group_type = 1 ")
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ .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);
|
|
|
+ }
|
|
|
|
|
|
-
|
|
|
- if( !CollectionUtils.isEmpty(chatGroups) ){
|
|
|
- for (ChatGroup chatGroup : chatGroups) {
|
|
|
- chatGroup .set("service_account_type", ServiceAccountOfflineTypeEnum.NO.getKey())
|
|
|
+
|
|
|
+ StringBuilder sql1 = new StringBuilder();
|
|
|
+ sql1
|
|
|
+ .append(" select ")
|
|
|
+ .append(GROUP_PROPERTY)
|
|
|
+
|
|
|
+
|
|
|
+ .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);
|
|
|
+
|
|
|
+
|
|
|
+ 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);
|
|
|
}
|
|
|
|
|
|
|