service.go 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. package operation
  2. import (
  3. "context"
  4. "go-common/app/interface/main/creative/conf"
  5. "go-common/app/interface/main/creative/dao/creative"
  6. operMdl "go-common/app/interface/main/creative/model/operation"
  7. "go-common/app/interface/main/creative/service"
  8. "go-common/library/log"
  9. "time"
  10. )
  11. //Service struct
  12. type Service struct {
  13. c *conf.Config
  14. creative *creative.Dao
  15. NoticeStr string
  16. CreativeStr string
  17. // cache
  18. operCache []*operMdl.Operation
  19. allRelOperCache []*operMdl.Operation
  20. toolCache map[string][]*operMdl.Operation
  21. WebRelOperCache map[string][]*operMdl.Operation
  22. CreatorRelOperCache map[string][]*operMdl.Operation
  23. }
  24. //New get service
  25. func New(c *conf.Config, rpcdaos *service.RPCDaos) *Service {
  26. s := &Service{
  27. c: c,
  28. creative: creative.New(c),
  29. }
  30. s.loadOper()
  31. s.loadTool()
  32. s.loadRelOper()
  33. go s.loadproc()
  34. return s
  35. }
  36. func (s *Service) loadOper() {
  37. var (
  38. op []*operMdl.Operation
  39. creative *operMdl.Operation
  40. notice *operMdl.Operation
  41. err error
  42. )
  43. op, err = s.creative.Operations(context.TODO(), operMdl.FullTypes())
  44. if err != nil {
  45. log.Error("s.oper.Operations error(%v)", err)
  46. return
  47. }
  48. log.Warn("loadOper fulltypes (%+v)", op)
  49. s.operCache = op
  50. // generate rank 最小的 creative and notice str
  51. for _, v := range op {
  52. if v.Ty == "creative" && (v.Platform == 0 || v.Platform == 1) {
  53. if creative == nil || (v.Rank < creative.Rank) {
  54. creative = v
  55. }
  56. }
  57. if v.Ty == "notice" && (v.Platform == 0 || v.Platform == 1) {
  58. if notice == nil || (v.Rank < notice.Rank) {
  59. notice = v
  60. }
  61. }
  62. }
  63. log.Warn("loadOper CreativeStr(%+v) | NoticeStr(%+v)", creative, notice)
  64. if creative != nil {
  65. s.CreativeStr = creative.Content
  66. } else {
  67. s.CreativeStr = ""
  68. }
  69. if notice != nil {
  70. s.NoticeStr = notice.Content
  71. } else {
  72. s.NoticeStr = ""
  73. }
  74. }
  75. func (s *Service) loadRelOper() {
  76. var (
  77. op []*operMdl.Operation
  78. err error
  79. )
  80. op, err = s.creative.AllOperByTypeSQL(context.TODO(), []string{"'play'", "'notice'", "'collect_arc'"})
  81. if err != nil {
  82. log.Error("s.oper.AllOperByTypeSQL error(%v)", err)
  83. return
  84. }
  85. s.allRelOperCache = op
  86. tmpWebRelOperCache := make(map[string][]*operMdl.Operation)
  87. tmpCreatorRelOperCache := make(map[string][]*operMdl.Operation)
  88. for _, v := range op {
  89. vs := &operMdl.Operation{
  90. ID: v.ID,
  91. Ty: v.Ty,
  92. Rank: v.Rank,
  93. Pic: v.Pic,
  94. Link: v.Link,
  95. Content: v.Content,
  96. Remark: v.Remark,
  97. Note: v.Note,
  98. Stime: v.Stime,
  99. Etime: v.Etime,
  100. AppPic: v.AppPic,
  101. Platform: v.Platform,
  102. }
  103. // 合并 collect_arc + play => play, for Web + Creator
  104. if vs.Ty == "collect_arc" {
  105. vs.Ty = "play"
  106. }
  107. if v.Platform == 0 { //all platform
  108. tmpWebRelOperCache[vs.Ty] = append(tmpWebRelOperCache[vs.Ty], vs)
  109. tmpCreatorRelOperCache[vs.Ty] = append(tmpCreatorRelOperCache[vs.Ty], vs)
  110. } else if v.Platform == 1 { //app
  111. tmpCreatorRelOperCache[vs.Ty] = append(tmpCreatorRelOperCache[vs.Ty], vs)
  112. } else if v.Platform == 2 { //web
  113. tmpWebRelOperCache[vs.Ty] = append(tmpWebRelOperCache[vs.Ty], vs)
  114. }
  115. }
  116. s.WebRelOperCache = tmpWebRelOperCache
  117. s.CreatorRelOperCache = tmpCreatorRelOperCache
  118. }
  119. func (s *Service) loadTool() {
  120. var (
  121. icon []*operMdl.Operation
  122. sicon []*operMdl.Operation
  123. err error
  124. )
  125. icon, err = s.creative.Tool(context.TODO(), "icon")
  126. if err != nil {
  127. log.Error("s.oper.Tool(%s) error(%v)", "icon", err)
  128. return
  129. }
  130. sicon, err = s.creative.Tool(context.TODO(), "submit_icon")
  131. if err != nil {
  132. log.Error("s.oper.Tool(%s) error(%v)", "submit_icon", err)
  133. return
  134. }
  135. var tmp = map[string][]*operMdl.Operation{}
  136. tmp["icon"] = icon
  137. tmp["submit_icon"] = sicon
  138. s.toolCache = tmp
  139. }
  140. // loadproc
  141. func (s *Service) loadproc() {
  142. for {
  143. time.Sleep(1 * time.Minute)
  144. s.loadOper()
  145. s.loadTool()
  146. s.loadRelOper()
  147. }
  148. }
  149. // Ping service
  150. func (s *Service) Ping(c context.Context) (err error) {
  151. if err = s.creative.Ping(c); err != nil {
  152. log.Error("s.operationDao.PingDb err(%v)", err)
  153. }
  154. return
  155. }
  156. // Close dao
  157. func (s *Service) Close() {
  158. s.creative.Close()
  159. }