send_msg.go 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324
  1. package crontask
  2. import (
  3. "encoding/json"
  4. "net/url"
  5. "path"
  6. "time"
  7. "wechat-api/ent"
  8. "wechat-api/ent/batchmsg"
  9. "wechat-api/ent/contact"
  10. "wechat-api/ent/custom_types"
  11. "wechat-api/ent/labelrelationship"
  12. "wechat-api/ent/msg"
  13. "wechat-api/ent/wx"
  14. "wechat-api/hook"
  15. "wechat-api/internal/utils/dberrorhandler"
  16. )
  17. func (l *CronTask) sendMsg() {
  18. // 获取 BatchMsg 表中 start_time 小于当前时间并且 status 为 0 或 1 的数据
  19. batchList, err := l.svcCtx.DB.BatchMsg.Query().Where(
  20. batchmsg.StartTimeLT(time.Now()),
  21. batchmsg.StatusIn(0, 1),
  22. batchmsg.Ctype(1),
  23. ).All(l.ctx)
  24. if err != nil {
  25. l.Logger.Errorf("batchList err: %v", err)
  26. return
  27. }
  28. startTime := time.Now()
  29. for _, batch := range batchList {
  30. // 记录当前批次开始处理
  31. l.Logger.Info("batch start: ", batch.BatchNo)
  32. // 如果 批次 status 为 0,则先产生待发送消息
  33. if batch.Status == 0 {
  34. userList := make([]*ent.Contact, 0)
  35. groupList := make([]*ent.Contact, 0)
  36. tagMap := make(map[string][]uint64)
  37. err = json.Unmarshal([]byte(batch.Tagids), &tagMap)
  38. if err != nil {
  39. continue
  40. }
  41. l.Logger.Infof("send_msg.go batch.Tagids = %v\n", tagMap)
  42. var allContact, allGroup, ok bool
  43. var contactTags, groupTags []uint64
  44. if contactTags, ok = tagMap["contact_tag"]; ok {
  45. allContact = hasAll(contactTags, 0)
  46. l.Logger.Infof("contactTags=%v", contactTags)
  47. }
  48. if groupTags, ok = tagMap["group_tag"]; ok {
  49. allGroup = hasAll(groupTags, 0)
  50. l.Logger.Infof("groupTags=%v", groupTags)
  51. }
  52. var err error
  53. if allContact && allGroup {
  54. // 获取 contact 表中 wx_wxid 等于 req.Fromwxid 的 type 为1或2的数据
  55. userList, err = l.svcCtx.DB.Contact.Query().Where(
  56. contact.WxWxid(batch.Fromwxid),
  57. contact.TypeIn(1, 2),
  58. contact.Ctype(1),
  59. ).All(l.ctx)
  60. if err != nil {
  61. l.Logger.Errorf("userlist err: %v", err)
  62. continue
  63. }
  64. } else {
  65. if allContact { // 所有联系人
  66. // 获取 contact 表中 wx_wxid 等于 req.Fromwxid 的 type 为1的数据
  67. userList, err = l.svcCtx.DB.Contact.Query().Where(
  68. contact.WxWxid(batch.Fromwxid),
  69. contact.TypeEQ(1),
  70. contact.Ctype(1),
  71. ).All(l.ctx)
  72. if err != nil {
  73. l.Logger.Errorf("userList err: %v", err)
  74. continue
  75. }
  76. } else { //获取指定标签的联系人
  77. userList, err = l.getContactList(contactTags, batch.Fromwxid, 1)
  78. if err != nil {
  79. l.Logger.Errorf("userList err: %v", err)
  80. continue
  81. }
  82. }
  83. if allGroup { //所有群
  84. // 获取 contact 表中 wx_wxid 等于 req.Fromwxid 的 type 为2的数据
  85. groupList, err = l.svcCtx.DB.Contact.Query().Where(
  86. contact.WxWxid(batch.Fromwxid),
  87. contact.TypeEQ(2),
  88. contact.Ctype(1),
  89. ).All(l.ctx)
  90. if err != nil {
  91. l.Logger.Errorf("groupList err: %v", err)
  92. continue
  93. }
  94. } else { //获取指定标签的群
  95. groupList, err = l.getContactList(groupTags, batch.Fromwxid, 2)
  96. if err != nil {
  97. l.Logger.Errorf("groupList err: %v", err)
  98. continue
  99. }
  100. }
  101. if len(groupList) > 0 {
  102. userList = append(userList, groupList...)
  103. }
  104. }
  105. // 这里是待插入到 msg 表的数据
  106. msgs := make([]*ent.MsgCreate, 0)
  107. // 这里是把 batch.Msg 转换为 json 数组
  108. msgArray := make([]custom_types.Action, 0)
  109. err = json.Unmarshal([]byte(batch.Msg), &msgArray)
  110. l.Logger.Infof("msgArray length= %v, err:%v", len(msgArray), err)
  111. if err != nil {
  112. // json 解析失败
  113. msgArray = make([]custom_types.Action, 0)
  114. }
  115. for _, user := range userList {
  116. // 这里改动主要是 batch_msg 目前支持批量添加图文,导致 batch_msg 的 msg 字段为 json
  117. // msg 里包括文字和图片,msgtype=1 为文字, msgtype=2 为图片
  118. // 每一条文字或者图片 都是一条单独的消息
  119. if len(msgArray) > 0 {
  120. // 这里是新格式(msg内容为json),需要遍历数组
  121. for _, msgItem := range msgArray {
  122. msgRow := l.svcCtx.DB.Msg.Create().
  123. SetNotNilFromwxid(&batch.Fromwxid).
  124. SetNotNilToid(&user.Wxid).
  125. SetMsgtype(int32(msgItem.Type)).
  126. SetNotNilMsg(&msgItem.Content).
  127. SetStatus(0).
  128. SetCtype(1).
  129. SetNotNilBatchNo(&batch.BatchNo)
  130. msgs = append(msgs, msgRow)
  131. }
  132. }
  133. }
  134. if len(msgs) > 0 {
  135. // 加事务,批量操作一条 batch_msg 和 一堆 msg 信息
  136. tx, err := l.svcCtx.DB.Tx(l.ctx)
  137. if err != nil {
  138. l.Logger.Errorf("start db transaction err: %v", err)
  139. continue
  140. }
  141. _, err = tx.BatchMsg.UpdateOneID(batch.ID).Where(batchmsg.StatusNEQ(1)).SetStatus(1).Save(l.ctx)
  142. if err != nil {
  143. _ = tx.Rollback()
  144. l.Logger.Errorf("batchmsg update err: %v", err)
  145. continue
  146. }
  147. _, err = tx.Msg.CreateBulk(msgs...).Save(l.ctx)
  148. if err != nil {
  149. _ = tx.Rollback()
  150. l.Logger.Errorf("msg CreateBulk err: %v", err)
  151. continue
  152. }
  153. _ = tx.Commit()
  154. } else {
  155. // 如果没有消息,直接更新批次状态为已发送
  156. _, err = l.svcCtx.DB.BatchMsg.UpdateOneID(batch.ID).
  157. SetStatus(2).
  158. SetTotal(0).
  159. SetSuccess(0).
  160. SetFail(0).
  161. Save(l.ctx)
  162. if err != nil {
  163. l.Logger.Errorf("batchmsg update err: %v", err)
  164. }
  165. continue
  166. }
  167. }
  168. // 获取当前批次的所有待发送消息
  169. msglist, err := l.svcCtx.DB.Msg.Query().Where(
  170. msg.BatchNoEQ(batch.BatchNo),
  171. msg.StatusEQ(0),
  172. msg.Ctype(1),
  173. ).All(l.ctx)
  174. if err != nil {
  175. l.Logger.Errorf("msglist err: %v", err)
  176. continue
  177. }
  178. wxInfo, err := l.svcCtx.DB.Wx.Query().Where(wx.Wxid(batch.Fromwxid)).Only(l.ctx)
  179. if err != nil {
  180. l.Logger.Errorf("wxInfo err: %v", err)
  181. continue
  182. }
  183. privateIP := ""
  184. adminPort := ""
  185. port := ""
  186. if wxInfo.ServerID != 0 {
  187. serverInfo, err := l.svcCtx.DB.Server.Get(l.ctx, wxInfo.ServerID)
  188. if err != nil {
  189. l.Logger.Errorf("serverInfo err: %v", err)
  190. continue
  191. }
  192. privateIP = serverInfo.PrivateIP
  193. adminPort = serverInfo.AdminPort
  194. port = wxInfo.Port
  195. }
  196. hookClient := hook.NewHook(privateIP, adminPort, port)
  197. //循环发送消息
  198. for _, msg := range msglist {
  199. // 这里之前只有文字消息(既 msgtype=1) 目前增加了图片 所以增加了msgtype=2
  200. // 所以增加了一个判断,判断发送的内容类型,如果是文字就调用SendTextMsg,如果是图片就调用SendPicMsg
  201. if msg.Msgtype == 1 {
  202. err = hookClient.SendTextMsg(msg.Toid, msg.Msg, wxInfo.Wxid)
  203. } else if msg.Msgtype == 2 {
  204. diyfilename := getFileName(msg.Msg)
  205. err = hookClient.SendPicMsg(msg.Toid, msg.Msg, diyfilename, wxInfo.Wxid)
  206. }
  207. // 每次发完暂停1秒
  208. time.Sleep(time.Second)
  209. if err != nil {
  210. l.Logger.Errorf("send msg err: %v", err)
  211. _, err = l.svcCtx.DB.Msg.UpdateOneID(msg.ID).SetStatus(2).Save(l.ctx)
  212. if err != nil {
  213. l.Logger.Errorf("msg update err: %v", err)
  214. continue
  215. }
  216. continue
  217. }
  218. _, err = l.svcCtx.DB.Msg.UpdateOneID(msg.ID).SetStatus(1).Save(l.ctx)
  219. if err != nil {
  220. l.Logger.Errorf("msg update err: %v", err)
  221. continue
  222. }
  223. }
  224. // 获取当前批次的所有发送的消息总数
  225. total, _ := l.svcCtx.DB.Msg.Query().Where(msg.BatchNoEQ(batch.BatchNo)).Count(l.ctx)
  226. // 获取当前批次的所有发送成功的消息总数
  227. success, _ := l.svcCtx.DB.Msg.Query().Where(msg.BatchNoEQ(batch.BatchNo), msg.StatusEQ(1)).Count(l.ctx)
  228. // 获取当前批次的所有发送失败的消息总数
  229. fail, _ := l.svcCtx.DB.Msg.Query().Where(msg.BatchNoEQ(batch.BatchNo), msg.StatusEQ(2)).Count(l.ctx)
  230. // 更新批次状态为已发送,同时更新发送总数、发送成功数量、失败数量、结束时间
  231. _, err = l.svcCtx.DB.BatchMsg.UpdateOneID(batch.ID).
  232. SetStatus(2).
  233. SetTotal(int32(total)).
  234. SetSuccess(int32(success)).
  235. SetFail(int32(fail)).
  236. SetStopTime(time.Now()).
  237. Save(l.ctx)
  238. if err != nil {
  239. l.Logger.Errorf("batchmsg update err: %v", err)
  240. continue
  241. }
  242. l.Logger.Info("batch stop: ", batch.BatchNo)
  243. }
  244. finishTime := time.Now()
  245. l.Logger.Infof("This process cost %v", finishTime.Sub(startTime).String())
  246. return
  247. }
  248. // 根据URL获取图片名
  249. func getFileName(photoUrl string) string {
  250. u, err := url.Parse(photoUrl)
  251. if err != nil {
  252. return ""
  253. }
  254. return path.Base(u.Path)
  255. }
  256. func hasAll(array []uint64, target uint64) bool {
  257. for _, val := range array {
  258. if val == target {
  259. return true
  260. }
  261. }
  262. return false
  263. }
  264. func (l *CronTask) getContactList(labels []uint64, fromWxId string, stype int) ([]*ent.Contact, error) {
  265. // 获取 label_relationship 表中,label_id 等于 labids 的 contact_id
  266. labelrelationships, err := l.svcCtx.DB.LabelRelationship.Query().Where(
  267. labelrelationship.LabelIDIn(labels...),
  268. labelrelationship.Ctype(1),
  269. ).All(l.ctx)
  270. if err != nil {
  271. return nil, dberrorhandler.DefaultEntError(l.Logger, err, nil)
  272. }
  273. contact_ids := make([]uint64, 0, len(labelrelationships))
  274. for _, labelrelationship := range labelrelationships {
  275. contact_ids = append(contact_ids, labelrelationship.ContactID)
  276. }
  277. userList := make([]*ent.Contact, 0)
  278. if len(contact_ids) > 0 {
  279. // 获取 contact 表中 wx_wxid 等于 req.Fromwxid 并且 id 等于 contact_ids 并且 type 为1或2 的数据
  280. userList, err = l.svcCtx.DB.Contact.Query().Where(
  281. contact.WxWxid(fromWxId),
  282. contact.IDIn(contact_ids...),
  283. contact.TypeEQ(stype),
  284. contact.Ctype(1),
  285. ).All(l.ctx)
  286. if err != nil {
  287. return nil, dberrorhandler.DefaultEntError(l.Logger, err, nil)
  288. }
  289. }
  290. return userList, nil
  291. }