|
@@ -48,6 +48,25 @@ func ArticleWxUserRaiLabelRedisAdd(sourceId, uid int, createTime time.Time) (err
|
|
|
return
|
|
|
}
|
|
|
|
|
|
+// 添加用户阅读本周研究汇总,与重点公司标签到Redis
|
|
|
+func ReportSelectionWxUserRaiLabelRedisAdd(sourceId, uid int, createTime time.Time, tableName, label string) (err error) {
|
|
|
+ defer func() {
|
|
|
+ if err != nil {
|
|
|
+ fmt.Println(err)
|
|
|
+ msg := fmt.Sprint("sourceId:", sourceId, "userId:", uid)
|
|
|
+ go utils.SendAlarmMsg("用户关注产业更新相关标签,写入Redis队列消息失败:"+err.Error()+msg, 2)
|
|
|
+ }
|
|
|
+ }()
|
|
|
+ log := &models.WxUserRaiLabelRedis{UserId: uid, SourceId: sourceId, SourceType: 1, TableName: tableName, Label: label, CreateTime: createTime, RegisterPlatform: utils.REGISTER_PLATFORM}
|
|
|
+ if utils.Re == nil {
|
|
|
+ err := utils.Rc.LPush(utils.WX_USER_RAI_LABEL_KEY, log)
|
|
|
+ if err != nil {
|
|
|
+ fmt.Println("ReportSelectionWxUserRaiLabelRedisAdd LPush Err:" + err.Error())
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return
|
|
|
+}
|
|
|
+
|
|
|
func UpdateWxUserRaiLabelRedis() (err error) {
|
|
|
for {
|
|
|
// SourceType int `description:"来源1:搜索关键字标签、2:产业/个股标签(线下活动)、3:产业/个股标签(线下路演)、4:产业/个股标签(线上活动)、5:产业/个股标签(线上路演)、6:销售输入标签、7:产业/个股标签(报告)、8:报告类型标签"`
|
|
@@ -89,6 +108,13 @@ func UpdateWxUserRaiLabelRedis() (err error) {
|
|
|
case utils.CYGX_OBJ_ARTICLE:
|
|
|
go ArticleWxUserRaiLabelRedisAddReduce(log)
|
|
|
fmt.Println("阅读文章")
|
|
|
+ case "cygx_research_summary":
|
|
|
+ go ReportSelectionWxUserRaiLabelRedisAddReduce(log)
|
|
|
+ fmt.Println("阅读本周研究汇总")
|
|
|
+ case "cygx_report_selection":
|
|
|
+ go ReportSelectionWxUserRaiLabelRedisAddReduce(log)
|
|
|
+ fmt.Println("阅读报告精选(重点公司)")
|
|
|
+
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -282,3 +308,42 @@ func ArticleWxUserRaiLabelRedisAddReduce(log models.WxUserRaiLabelRedis) (err er
|
|
|
|
|
|
return
|
|
|
}
|
|
|
+
|
|
|
+// 8:报告类型标签 (本周研究汇总,与重点公司)
|
|
|
+func ReportSelectionWxUserRaiLabelRedisAddReduce(log models.WxUserRaiLabelRedis) (err error) {
|
|
|
+ defer func() {
|
|
|
+ if err != nil {
|
|
|
+ fmt.Println(err)
|
|
|
+ go utils.SendAlarmMsg("报告类型标签 (本周研究汇总,与重点公司),处理Redis队列消息失败:ReportSelectionWxUserRaiLabelRedisAddReduce"+err.Error()+fmt.Sprint("SourceId", log.SourceId, "userId", log.UserId), 2)
|
|
|
+ }
|
|
|
+ }()
|
|
|
+ userId := log.UserId
|
|
|
+ sourceId := log.SourceId
|
|
|
+ wxUser, e := models.GetWxUserItemByUserId(userId)
|
|
|
+ if e != nil {
|
|
|
+ err = errors.New("GetWxUserItemByUserId" + e.Error())
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
+ item := new(models.WxUserRaiLabel)
|
|
|
+ item.UserId = wxUser.UserId
|
|
|
+ item.RealName = wxUser.RealName
|
|
|
+ item.Mobile = wxUser.Mobile
|
|
|
+ item.Email = wxUser.Email
|
|
|
+ item.CompanyId = wxUser.CompanyId
|
|
|
+ item.CompanyName = wxUser.CompanyName
|
|
|
+ item.Label = log.Label
|
|
|
+ item.SourceType = 8
|
|
|
+ item.SourceId = sourceId
|
|
|
+ item.CreateTime = log.CreateTime
|
|
|
+ item.ModifyTime = time.Now()
|
|
|
+ item.RegisterPlatform = log.RegisterPlatform
|
|
|
+ item.TableName = log.TableName
|
|
|
+ err = models.AddWxUserRaiLabel(item)
|
|
|
+ if e != nil {
|
|
|
+ err = errors.New("AddWxUserRaiLabel" + e.Error())
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
+ return
|
|
|
+}
|