boweniac 2 周之前
父節點
當前提交
ca0c477e20

+ 10 - 0
internal/logic/Wxhook/get_friends_and_groups_logic.go

@@ -225,6 +225,16 @@ func (l *GetFriendsAndGroupsLogic) GetFriendsAndGroups(req *types.IDReq) (resp *
 				return nil, err
 			}
 
+			dataChatroom := map[string]interface{}{
+				"MsgType": "TriggerChatroomPushTask",
+				"Content": map[string]interface{}{
+					"WeChatId": wxInfo.Wxid,
+					"Flag":     1,
+				},
+			}
+			jsonStrChatroom, err := json.Marshal(dataChatroom)
+			err = svcCtx.WechatWs["default"].SendMsg([]byte(jsonStrChatroom))
+
 			//hookClient = hook.NewHook("", "", "")
 			//wsUrl = "http://chat.gkscrm.com:13086/pc/GetWechatFriendList?cid=" + wxInfo.ProcessID + "&wechatid=" + wxInfo.Wxid
 			//

+ 7 - 7
internal/service/MessageHandlers/chatroom_push_notice.go

@@ -35,13 +35,13 @@ func (f *ChatroomPushNoticeHandler) Handler(msg *wechat_ws.MsgJsonObject) error
 			Only(context.TODO())
 		//hookClient := hook.NewHook("", "", "")
 		for _, friend := range message.ChatRooms {
-			friendType := 1
-			if friend.Type == 1 {
-				friendType = 2
-				//_ = hookClient.RequestChatRoomInfo(friend.FriendId, message.WeChatId)
-			} else {
-				friendType = 1
-			}
+			friendType := 2
+			//if friend.Type == 1 {
+			//	friendType = 2
+			//	//_ = hookClient.RequestChatRoomInfo(friend.FriendId, message.WeChatId)
+			//} else {
+			//	friendType = 1
+			//}
 			_, err = f.svcCtx.DB.Contact.Create().
 				SetWxWxid(message.WeChatId).
 				SetType(friendType).

+ 3 - 2
internal/service/wechat/sync_wx.go

@@ -103,14 +103,15 @@ func SyncAllWx(svcCtx *svc.ServiceContext) {
 			logx.Error("syncWx: ", err)
 			return
 		}
-		data_chatroom := map[string]interface{}{
+
+		dataChatroom := map[string]interface{}{
 			"MsgType": "TriggerChatroomPushTask",
 			"Content": map[string]interface{}{
 				"WeChatId": account.Wechatid,
 				"Flag":     1,
 			},
 		}
-		jsonStrChatroom, err := json.Marshal(data_chatroom)
+		jsonStrChatroom, err := json.Marshal(dataChatroom)
 		err = svcCtx.WechatWs["default"].SendMsg([]byte(jsonStrChatroom))
 	}
 }