瀏覽代碼

修改代码,避免出现空指针

779513719 5 年之前
父節點
當前提交
e0916e0e96
共有 1 個文件被更改,包括 24 次插入15 次删除
  1. 24 15
      server-chat/src/main/java/com/cn/service/IMChatLoginServiceProcessor.java

+ 24 - 15
server-chat/src/main/java/com/cn/service/IMChatLoginServiceProcessor.java

@@ -145,15 +145,15 @@ public class IMChatLoginServiceProcessor implements LoginCmdProcessor {
     private User createVisitorData(Map<String, String> map) {
         User user = new User();
         user.setId(map.get("visitorDepartmentId"));
-        String headImg = map.get("headImg").replace("\"","");
+        String headImg = map.get("headImg") == null ? null : map.get("headImg").replace("\"","");
         user.setAvatar(headImg);
-        String nickname = map.get("nickname").replace("\"","");
+        String nickname = map.get("nickname") == null ? null : map.get("nickname").replace("\"","");
         user.setNick(nickname);
         Map<String, Object> visitorMap = new HashMap<>();
         visitorMap.put("visitorId",map.get("id"));
         visitorMap.put("companyId",map.get("companyId"));
         visitorMap.put("departmentId",map.get("departmentId"));
-        visitorMap.put("phone",map.get("phone").replace("\"",""));
+        visitorMap.put("phone",map.get("phone") == null ? null : map.get("phone").replace("\"",""));
         user.setExtras(new JSONObject(visitorMap));
         //访问类型 (SERVICEACCOUNT 客服 / CUSTOMER 客户 / VISITOR 游客)
         user.setVisitType(VisitTypeEnum.VISITOR.getKey());
@@ -291,9 +291,9 @@ public class IMChatLoginServiceProcessor implements LoginCmdProcessor {
     private User createCustomerData(Map<String, String> map) {
         User user = new User();
         user.setId(map.get("customerDepartmentId"));
-        String headImg = map.get("headImg").replace("\"","");
+        String headImg = map.get("headImg") == null ? null : map.get("headImg").replace("\"","");
         user.setAvatar(headImg);
-        String nickname = map.get("nickname").replace("\"","");
+        String nickname = map.get("nickname") == null ? null : map.get("nickname").replace("\"","");
         user.setNick(nickname);
         Map<String, Object> customerMap = new HashMap<>();
         customerMap.put("isBlack",map.get("isBlack"));
@@ -302,7 +302,7 @@ public class IMChatLoginServiceProcessor implements LoginCmdProcessor {
         customerMap.put("companyId",map.get("companyId"));
         customerMap.put("departmentId",map.get("departmentId"));
         customerMap.put("serviceAccountId",map.get("serviceAccountId"));
-        customerMap.put("phone",map.get("phone").replace("\"",""));
+        customerMap.put("phone",map.get("phone") == null ? null : map.get("phone").replace("\"",""));
         customerMap.put("serviceAccountRoleDepartmentId",map.get("serviceAccountRoleDepartmentId"));
         user.setExtras(new JSONObject(customerMap));
         //访问类型 (SERVICEACCOUNT 客服 / CUSTOMER 客户 / VISITOR 游客)
@@ -561,9 +561,11 @@ public class IMChatLoginServiceProcessor implements LoginCmdProcessor {
         //当前访问人为客服
         user.setId(map.get("serviceAccountRoleDepartmentId"));
         //用户头像
-        user.setAvatar(map.get("headImg").replace("\"","") );
+        String headImg = map.get("headImg") == null ? null : map.get("headImg").replace("\"", "");
+        user.setAvatar(headImg);
         //user nick
-        user.setNick( map.get("nickname").replace("\"","") );
+        String nickname = map.get("nickname") == null ? null : map.get("nickname").replace("\"", "");
+        user.setNick(nickname);
         //扩展预留字段;
         Map<String, Object> serviceAccountMap = new HashMap<>();
         serviceAccountMap.put("companyId", map.get("companyId"));
@@ -576,19 +578,26 @@ public class IMChatLoginServiceProcessor implements LoginCmdProcessor {
             String type = map.get("type").replace("\"","");
             if(VisitTypeEnum.CUSTOMER.getKey().equals(type)){
                 serviceAccountMap.put("customerDepartmentId", map.get("customerDepartmentId"));
-                serviceAccountMap.put("customerNickname", map.get("customerNickname").replace("\"",""));
-                serviceAccountMap.put("customerHeadImg", map.get("customerHeadImg").replace("\"",""));
-                serviceAccountMap.put("customerPhone", map.get("customerPhone").replace("\"",""));
+                String customerNickname = map.get("customerNickname") == null ? null : map.get("customerNickname").replace("\"", "");
+                serviceAccountMap.put("customerNickname", customerNickname);
+                String customerHeadImg = map.get("customerHeadImg") == null ? null : map.get("customerHeadImg").replace("\"", "");
+                serviceAccountMap.put("customerHeadImg", customerHeadImg);
+                String customerPhone = map.get("customerPhone") == null ? null : map.get("customerPhone").replace("\"", "");
+                serviceAccountMap.put("customerPhone", customerPhone);
                 serviceAccountMap.put("customerId", map.get("customerId"));
                 serviceAccountMap.put("type", type);
             }
             if(VisitTypeEnum.VISITOR.getKey().equals(type)){
                 serviceAccountMap.put("visitorDepartmentId", map.get("visitorDepartmentId"));
-                serviceAccountMap.put("visitorNickname", map.get("visitorNickname").replace("\"",""));
-                serviceAccountMap.put("visitorHeadImg", map.get("visitorHeadImg").replace("\"",""));
-                serviceAccountMap.put("visitorPhone", map.get("visitorPhone").replace("\"",""));
+                String visitorNickname = map.get("visitorNickname") == null ? null : map.get("visitorNickname").replace("\"", "");
+                serviceAccountMap.put("visitorNickname", visitorNickname);
+                String visitorHeadImg = map.get("visitorHeadImg") == null ? null : map.get("visitorHeadImg").replace("\"", "");
+                serviceAccountMap.put("visitorHeadImg", visitorHeadImg);
+                String visitorPhone = map.get("visitorPhone") == null ? null : map.get("visitorPhone").replace("\"", "");
+                serviceAccountMap.put("visitorPhone", visitorPhone);
                 serviceAccountMap.put("visitorId", map.get("visitorId"));
-                serviceAccountMap.put("groupId", map.get("groupId").replace("\"",""));
+                String groupId = map.get("groupId") == null ? null : map.get("groupId").replace("\"", "");
+                serviceAccountMap.put("groupId", groupId);
                 serviceAccountMap.put("type", type);
             }
         }