getsubsomeinfologic.go 3.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. package logic
  2. import (
  3. "app.yhyue.com/moapp/jybase/common"
  4. "app.yhyue.com/moapp/jybase/redis"
  5. "context"
  6. IC "jyBXSubscribe/rpc/init"
  7. "jyBXSubscribe/rpc/model"
  8. "time"
  9. "jyBXSubscribe/rpc/internal/svc"
  10. "jyBXSubscribe/rpc/type/bxsubscribe"
  11. "github.com/zeromicro/go-zero/core/logx"
  12. )
  13. type GetSubSomeInfoLogic struct {
  14. ctx context.Context
  15. svcCtx *svc.ServiceContext
  16. logx.Logger
  17. }
  18. func NewGetSubSomeInfoLogic(ctx context.Context, svcCtx *svc.ServiceContext) *GetSubSomeInfoLogic {
  19. return &GetSubSomeInfoLogic{
  20. ctx: ctx,
  21. svcCtx: svcCtx,
  22. Logger: logx.WithContext(ctx),
  23. }
  24. }
  25. // 获取订阅推送相关信息
  26. func (l *GetSubSomeInfoLogic) GetSubSomeInfo(in *bxsubscribe.SomeInfoReq) (*bxsubscribe.SomeInfoResp, error) {
  27. resp := &bxsubscribe.SomeInfoResp{
  28. Data: &bxsubscribe.SomeInfo{},
  29. }
  30. //P278 身份切换,切换企业 userId从代理header 获取的值是 职位id,所以改成用base_user_id 进行查user表信息
  31. user, _ := model.NewSubscribePush(in.UserType).UserInfo(in.NewUserId)
  32. //
  33. resp.Data.HasKey, resp.Data.Industry = model.GetKeySet(in.UserType, user, []string{})
  34. todayNum := time.Unix(time.Now().Unix(), 1).Format("20060102")
  35. if user != nil {
  36. //超级订阅
  37. if common.IntAll((*user)["i_vip_status"]) == 1 || common.IntAll((*user)["i_vip_status"]) == 2 {
  38. var threeRemind = int64(3 * 24 * 60 * 60)
  39. var twoRemind = int64(2 * 24 * 60 * 60)
  40. var oneRemind = int64(1 * 24 * 60 * 60)
  41. if (*user)["isread"] != nil {
  42. resp.Data.IsRead = (*user)["isread"].(bool)
  43. }
  44. resp.Data.IsPassCount = redis.GetInt("pushcache_2_a", "oncecount_"+todayNum+"_"+in.UserId) >= 2000
  45. resp.Data.IsOnTail = common.Int64All((*user)["i_vip_status"])
  46. _endtime := (*user)["l_vip_endtime"]
  47. //是否到期
  48. if common.Int64All(_endtime)-time.Now().Unix() < threeRemind && common.Int64All(_endtime)-time.Now().Unix() >= twoRemind {
  49. resp.Data.IsExpire = 3 //即将到期
  50. } else if common.Int64All(_endtime)-time.Now().Unix() < twoRemind && common.Int64All(_endtime)-time.Now().Unix() >= oneRemind {
  51. resp.Data.IsExpire = 2 //即将到期
  52. } else if common.Int64All(_endtime)-time.Now().Unix() < oneRemind && common.Int64All(_endtime)-time.Now().Unix() >= 0 {
  53. resp.Data.IsExpire = 1 //即将到期
  54. }
  55. //判断首次用户是否推送的带有”其他“
  56. t, _ := time.ParseInLocation("2006-01-02", time.Now().Format("2006-01-02"), time.Local)
  57. today_1 := t.Unix()
  58. today_2 := t.AddDate(0, 0, 1).Unix()
  59. //错误
  60. if IC.BaseServiceMysql.CountBySql("select count(1) as count from pushsubscribe a left join global_common_data.dws_f_bid_baseinfo b on a.infoid=b.infoid where a.isvip =1 and a.userid =? and b.buyerclass_code=? and (a.date between ? and ? )", common.InterfaceToStr(in.NewUserId), 93, today_1, today_2) > 0 {
  61. resp.Data.OtherFlag = true
  62. }
  63. } else {
  64. if (*user)["i_vip_status"] == nil {
  65. resp.Data.IsExpire = 0
  66. } else {
  67. resp.Data.IsOnTail = common.Int64All((*user)["i_vip_status"])
  68. }
  69. resp.Data.IsPassCount = redis.GetInt("pushcache_2_a", "oncecount_"+todayNum+"_"+in.UserId) >= 150
  70. }
  71. //是否进入向导查询
  72. resp.Data.IsInTSguide = func() bool {
  73. //付费用户无免费订阅,不进入订阅向导页面
  74. if common.IntAll((*user)["i_member_status"]) > 0 || common.IntAll((*user)["i_vip_status"]) > 0 {
  75. return false
  76. }
  77. o_jy, _ := (*user)["o_jy"].(map[string]interface{})
  78. iTsGuide := common.IntAll((*user)["i_ts_guide"])
  79. if iTsGuide == 2 || (iTsGuide == 0 && len(o_jy) == 0) {
  80. return true
  81. }
  82. return false
  83. }()
  84. }
  85. return resp, nil
  86. }