main.go 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. package main
  2. import (
  3. _ "eta/eta_mini_ht_api/common/component"
  4. "eta/eta_mini_ht_api/common/component/config"
  5. logger "eta/eta_mini_ht_api/common/component/log"
  6. "eta/eta_mini_ht_api/common/contants"
  7. "eta/eta_mini_ht_api/common/exception"
  8. "eta/eta_mini_ht_api/domian/report"
  9. "eta/eta_mini_ht_api/models/eta"
  10. "eta/eta_mini_ht_api/models/ht"
  11. _ "eta/eta_mini_ht_api/routers"
  12. _ "eta/eta_mini_ht_api/task"
  13. "github.com/beego/beego/v2/server/web"
  14. "sync"
  15. "time"
  16. )
  17. func main() {
  18. htConfig := config.GetConfig(contants.HT).(*config.HTBizConfig)
  19. if web.BConfig.RunMode == "dev" {
  20. web.BConfig.WebConfig.DirectoryIndex = true
  21. web.BConfig.WebConfig.StaticDir["/swagger"] = "swagger"
  22. }
  23. //web.ErrorHandler("*", exception.ControllerAdvice())
  24. web.BConfig.RecoverFunc = exception.PanicAdvice
  25. go func() {
  26. //内存数据预热预加载
  27. logger.Info("开始预加载数据")
  28. if htConfig.EnableTask() {
  29. //初始化研报库
  30. initReport()
  31. }
  32. }()
  33. logger.Info("初始化成功")
  34. web.Run()
  35. }
  36. func initReport() {
  37. var wg sync.WaitGroup
  38. wg.Add(2)
  39. logger.Info("开始初始化研报库")
  40. go func() {
  41. defer wg.Done()
  42. for {
  43. id, err := report.GetETALatestReportId()
  44. var etaReportList []eta.ETAReport
  45. etaReportList, err = eta.GetETAReports(id)
  46. if err != nil {
  47. logger.Error("获取ETA研报列表失败:%v", err)
  48. }
  49. if len(etaReportList) > 0 {
  50. err = report.InitETAReportList(etaReportList)
  51. if err != nil {
  52. logger.Error("同步ETA研报列表失败:%v", err)
  53. }
  54. } else {
  55. logger.Info(contants.TaskFormat, "同步ETA研报库结束")
  56. break
  57. }
  58. }
  59. }()
  60. go func() {
  61. defer wg.Done()
  62. for {
  63. id, err := report.GetHTLatestReportId()
  64. var htReportList []ht.HTReport
  65. htReportList, err = ht.GetHTReports(id)
  66. if err != nil {
  67. logger.Error("获取ETA研报列表失败:%v", err)
  68. }
  69. if len(htReportList) > 0 {
  70. for i := 0; i < len(htReportList); i++ {
  71. timestamp := int64(htReportList[i].PublishTime)
  72. t := time.UnixMilli(timestamp)
  73. htReportList[i].PublishedTime = t.Format(time.DateTime)
  74. plateId := htReportList[i].PlateId
  75. var plate ht.HTPlate
  76. plate, err = ht.GetPermissionNameById(plateId)
  77. if err != nil || plate.ParentId == 0 {
  78. htReportList[i].PermissionName = htReportList[i].PlateName
  79. } else {
  80. var PermissionName string
  81. err = getPermissionNameById(plate.Id, &PermissionName)
  82. if err != nil {
  83. logger.Error("获取ETA研报列表失败:%v", err)
  84. htReportList[i].PermissionName = ""
  85. } else {
  86. htReportList[i].PermissionName = PermissionName
  87. }
  88. }
  89. }
  90. var stop bool
  91. stop, err = report.InitHTReportList(htReportList)
  92. if err != nil {
  93. logger.Error("同步ETA研报列表失败:%v", err)
  94. break
  95. }
  96. if stop {
  97. logger.Info(contants.TaskFormat, "同步HT研报库结束")
  98. break
  99. }
  100. } else {
  101. logger.Info(contants.TaskFormat, "同步HT研报库结束")
  102. break
  103. }
  104. }
  105. }()
  106. wg.Wait()
  107. logger.Info("初始化研报库完成")
  108. }
  109. func getPermissionNameById(id int, currentName *string) (err error) {
  110. plate, err := ht.GetPermissionNameById(id)
  111. if err != nil {
  112. logger.Error("查询海通板块品种名称失败:%v", err)
  113. return
  114. }
  115. if plate.ParentId != 0 {
  116. *currentName = plate.PlateName
  117. return getPermissionNameById(plate.ParentId, currentName)
  118. } else {
  119. return
  120. }
  121. }