eta_report.go 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. package eta
  2. import (
  3. "eta/eta_mini_ht_api/common/component/cache"
  4. logger "eta/eta_mini_ht_api/common/component/log"
  5. "eta/eta_mini_ht_api/common/utils/redis"
  6. "eta/eta_mini_ht_api/models"
  7. "strings"
  8. "time"
  9. )
  10. const (
  11. colunms = "id,author,abstract,title,publish_time,state,modify_time,"
  12. detailColumn = "id,author,abstract,title,publish_time,content,collaborate_type,report_layout,video_url,video_name,video_play_seconds,head_resource_id,end_resource_id,has_chapter,need_splice,state,modify_time"
  13. Published = 2
  14. Passed = 6
  15. limit = 500
  16. TlbChartPermissionSearchKeyWordMapping = "chart_permission_search_key_word_mapping"
  17. )
  18. var (
  19. classifyIds = []string{"classify_id_third", "classify_id_second", "classify_id_first"}
  20. redisCache *cache.RedisCache
  21. )
  22. func rd() *cache.RedisCache {
  23. if redisCache == nil {
  24. redisCache = cache.GetInstance()
  25. }
  26. return redisCache
  27. }
  28. func (ETAReport) TableName() string {
  29. return "report"
  30. }
  31. type ETAReport struct {
  32. ID int `gorm:"primary_key;auto_increment"`
  33. ClassifyID int `gorm:"_"`
  34. ClassifyIDFirst int `gorm:"column:classify_id_first;default:0"`
  35. ClassifyIDSecond int `gorm:"column:classify_id_second;default:0"`
  36. ClassifyIDThird int `gorm:"column:classify_id_third;default:0"`
  37. Title string `gorm:"column:title;size:125;"`
  38. Abstract string `gorm:"column:abstract;size:255;"`
  39. Author string `gorm:"column:author;size:50;"`
  40. PublishTime time.Time `gorm:"column:publish_time"`
  41. Content string `gorm:"column:content"`
  42. CollaborateType int `gorm:"column:collaborate_type"`
  43. ReportLayout int `gorm:"column:report_layout"`
  44. VideoUrl string `gorm:"column:video_url"`
  45. VideoName string `gorm:"column:video_name"`
  46. VideoPlaySeconds string `gorm:"column:video_play_seconds"`
  47. HeadResourceId int `gorm:"column:head_resource_id"`
  48. EndResourceId int `gorm:"column:end_resource_id"`
  49. HasChapter bool `gorm:"column:has_chapter"`
  50. NeedSplice bool `gorm:"column:need_splice"`
  51. ModifyTime time.Time `gorm:"column:modify_time"`
  52. State int `gorm:"column:state"`
  53. }
  54. //type ReportClassify struct {
  55. // ClassifyID int `gorm:"column:classify_id" json:"classify_id"`
  56. // ReportPermission
  57. //}
  58. type ReportPermission struct {
  59. ChartPermissionID int `gorm:"primaryKey;autoIncrement;column:chart_permission_id;comment:主键"`
  60. ParentID int `gorm:"size:11;default:0;column:parent_id;comment:父级权限id"`
  61. }
  62. func GetETAReports(id int) (reports []ETAReport, err error) {
  63. err = models.ETA().Table("report").Select(colunms+strings.Join(classifyIds, ",")).Where("state =? or state=?", Published, Passed).Where("id > ?", id).Order("id asc").Limit(limit).Find(&reports).Error
  64. if reports != nil {
  65. for i := 0; i < len(reports); i++ {
  66. setClassifyIdValue(&reports[i])
  67. }
  68. }
  69. return
  70. }
  71. func GetUpdateETAReports() (filterList []ETAReport, err error) {
  72. duration := time.Now().Add(-30 * time.Second)
  73. modifyTime := duration.Format(time.DateTime)
  74. var reports []ETAReport
  75. err = models.ETA().Table("report").Select(colunms+strings.Join(classifyIds, ",")).Where("modify_time >=?", modifyTime).Order("id asc").Find(&reports).Error
  76. if err != nil {
  77. logger.Error("同步eta研报数据失败:%v", err)
  78. }
  79. if reports != nil {
  80. for i := 0; i < len(reports); i++ {
  81. setClassifyIdValue(&reports[i])
  82. key := redis.GenerateReportRefreshKey("ETA", reports[i].ID, reports[i].ModifyTime.UnixMilli())
  83. if rd().SetIfNotExist(key, "processed", 3600) {
  84. logger.Info("同步eta报告 ID :%d,修改时间:%v", reports[i].ID, reports[i].ModifyTime)
  85. filterList = append(filterList, reports[i])
  86. } else {
  87. logger.Info("过滤ETA重复的消息 ID :%d,修改时间:%v", reports[i].ID, reports[i].ModifyTime)
  88. }
  89. }
  90. }
  91. return
  92. }
  93. func GetETAReportById(id int) (report ETAReport, err error) {
  94. err = models.ETA().Table("report").Select(detailColumn).Where("id = ?", id).Where("state =? or state=?", Published, Passed).First(&report).Error
  95. if err != nil {
  96. return
  97. }
  98. //var date time.Time
  99. //date, err = time.Parse(time.DateTime, report.PublishTime)
  100. //if err != nil {
  101. // logger.Error("时间转换错误:%v", err)
  102. // err = nil
  103. //} else {
  104. // report.PublishedTime = date
  105. //}
  106. return
  107. }
  108. func DoSql(sql string, result interface{}, values ...interface{}) (err error) {
  109. db := models.ETA()
  110. return db.Raw(sql, values...).Scan(&result).Error
  111. }
  112. func GetReportClassifyById(id int) (classifyId int, err error) {
  113. db := models.ETA()
  114. err = db.Table("report").
  115. Select("COALESCE(NULLIF(classify_id_third,0),NULLIF(classify_id_second,0),classify_id_first) classify_id").
  116. Where("id =?", id).Scan(&classifyId).Error
  117. return
  118. }
  119. func GetETAReportIdsByClassifyIds(classifyIds []int) (reportIds []int, err error) {
  120. db := models.ETA()
  121. err = db.Model(&ETAReport{}).Select("DISTINCT id").Where("COALESCE(NULLIF(classify_id_third,0),NULLIF(classify_id_second,0),classify_id_first) in (?)", classifyIds).Scan(&reportIds).Error
  122. return
  123. }
  124. func setClassifyIdValue(report *ETAReport) {
  125. if report.ClassifyIDThird > 0 {
  126. report.ClassifyID = report.ClassifyIDThird
  127. return
  128. }
  129. if report.ClassifyIDSecond > 0 {
  130. report.ClassifyID = report.ClassifyIDSecond
  131. return
  132. }
  133. report.ClassifyID = report.ClassifyIDFirst
  134. }