task.go 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. package services
  2. import (
  3. "encoding/json"
  4. "fmt"
  5. "hongze/hongze_api/cache"
  6. "hongze/hongze_api/models"
  7. "hongze/hongze_api/services/go_redis"
  8. "hongze/hongze_api/utils"
  9. )
  10. func Task() {
  11. fmt.Println("start")
  12. //InitSetUnionId()
  13. //FixUnionId()
  14. fmt.Println("end")
  15. go AutoUpdateUserView()
  16. }
  17. // AutoUpdateUserView 自动添加阅读记录
  18. func AutoUpdateUserView() {
  19. defer func() {
  20. if err := recover(); err != nil {
  21. fmt.Println("[AutoUpdateUserView]", err)
  22. }
  23. }()
  24. for {
  25. go_redis.BRPop2Func(utils.CACHE_KEY_USER_VIEW, func(b []byte) {
  26. var userViewRedisData cache.UserViewRedisData
  27. if err := json.Unmarshal(b, &userViewRedisData); err != nil {
  28. go utils.SendEmail(utils.APPNAME+" "+utils.RunMode+" 失败提醒", fmt.Sprint("AutoUpdateUserView ERR:", err, ";response data:", string(b)), utils.EmailSendToUsers)
  29. //}
  30. //if _, err := models.AddLogs(&log); err != nil {
  31. // fmt.Println("AddLogs:", err.Error(), log)
  32. } else {
  33. err = models.UpdateCompanyProductViewData(userViewRedisData.CompanyId, userViewRedisData.ProductId, userViewRedisData.ViewTime)
  34. if err != nil {
  35. go utils.SendEmail(utils.APPNAME+" "+utils.RunMode+" 失败提醒", fmt.Sprint("AutoUpdateUserView Update CompanyProduct ERR:", err, ";response data:", string(b)), utils.EmailSendToUsers)
  36. }
  37. }
  38. })
  39. }
  40. }