contact.go 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. package hook
  2. import (
  3. "encoding/json"
  4. "fmt"
  5. "github.com/gorilla/websocket"
  6. "strings"
  7. )
  8. // 获取标签信息
  9. func (h *Hook) GetContactLabelList() (result GetContactLabelListReap, err error) {
  10. resp, err := h.Client.R().SetSuccessResult(&result).Post("http://" + h.ServerIp + ":" + h.WxPort + "/GetContactLabelList")
  11. if err != nil {
  12. return
  13. }
  14. if !resp.IsSuccessState() {
  15. err = fmt.Errorf("GetContactLabelList failed with status code %d", resp.StatusCode)
  16. return
  17. }
  18. return
  19. }
  20. // 获取好友和群信息
  21. func (h *Hook) GetFriendAndChatRoomList(typeStr string) (result GetFriendAndChatRoomListReap, err error) {
  22. resp, err := h.Client.R().SetBody(&GetFriendAndChatRoomListReq{
  23. Type: typeStr,
  24. }).SetSuccessResult(&result).Post("http://" + h.ServerIp + ":" + h.WxPort + "/GetFriendAndChatRoomList")
  25. if err != nil {
  26. return
  27. }
  28. if !resp.IsSuccessState() {
  29. err = fmt.Errorf("GetFriendAndChatRoomList failed with status code %d", resp.StatusCode)
  30. return
  31. }
  32. return
  33. }
  34. // 批量获取联系人简明信息(每次100个)
  35. func (h *Hook) BatchGetContactBriefInfo(wxids []string) (result BatchGetContactBriefInfoReap, err error) {
  36. wxidList := strings.Join(wxids, ",")
  37. resp, err := h.Client.R().SetBody(&BatchGetContactBriefInfoReq{
  38. WxidList: wxidList,
  39. }).SetSuccessResult(&result).Post("http://" + h.ServerIp + ":" + h.WxPort + "/BatchGetContactBriefInfo")
  40. if err != nil {
  41. return
  42. }
  43. if !resp.IsSuccessState() {
  44. err = fmt.Errorf("BatchGetChatRoomMemberWxid failed with status code %d", resp.StatusCode)
  45. return
  46. }
  47. return
  48. }
  49. // 添加新的好友
  50. func (h *Hook) AddNewFriend(v3_wxid string, v4 string, desc string, addType string, role string) (result AddNewFriendReap, err error) {
  51. resp, err := h.Client.R().SetBody(&AddNewFriendReq{
  52. V3Wxid: v3_wxid,
  53. V4: v4,
  54. Desc: desc,
  55. AddType: addType,
  56. Role: role,
  57. }).SetSuccessResult(&result).Post("http://" + h.ServerIp + ":" + h.WxPort + "/AddNewFriend")
  58. if err != nil {
  59. return
  60. }
  61. if !resp.IsSuccessState() {
  62. err = fmt.Errorf("AddNewFriend failed with status code %d", resp.StatusCode)
  63. return
  64. }
  65. return
  66. }
  67. func (h *Hook) RequestChatRoomInfo(ChatRoomId, wxWxid string) error {
  68. conn, err := h.connWorkPhone()
  69. if err != nil {
  70. err = fmt.Errorf("RequestChatRoomInfo failed")
  71. return err
  72. }
  73. defer func(conn *websocket.Conn) {
  74. err = conn.Close()
  75. if err != nil {
  76. err = fmt.Errorf("RequestChatRoomInfo failed")
  77. }
  78. }(conn)
  79. message := map[string]interface{}{
  80. "MsgType": "RequestChatRoomInfoTask",
  81. "Content": map[string]interface{}{
  82. "WeChatId": wxWxid,
  83. "ChatRoomId": ChatRoomId,
  84. },
  85. }
  86. transportMessageJSON, err := json.Marshal(message)
  87. if err != nil {
  88. return err
  89. }
  90. // 发送 JSON 消息
  91. err = conn.WriteMessage(websocket.TextMessage, transportMessageJSON)
  92. if err != nil {
  93. return fmt.Errorf("failed to send message: %v", err)
  94. }
  95. return nil
  96. }