operation.go 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  1. package operation
  2. import (
  3. "context"
  4. "encoding/json"
  5. operMdl "go-common/app/interface/main/creative/model/operation"
  6. "go-common/library/ecode"
  7. "go-common/library/log"
  8. "strconv"
  9. "strings"
  10. "time"
  11. )
  12. // 0 => web+app; 1=> app; 2=> web; 100=>全平台
  13. const (
  14. remarkShowBanner = "show_banner"
  15. )
  16. // Tool get a tool down.
  17. func (s *Service) Tool(c context.Context, ty int8) (ops []*operMdl.Operation, err error) {
  18. var tyStr string
  19. if ty == 0 || ty == 1 { //创作中心页的tool下载
  20. tyStr = "icon"
  21. } else if ty == 2 { //投稿页的tool下载
  22. tyStr = "submit_icon"
  23. }
  24. if op, ok := s.toolCache[tyStr]; ok {
  25. ops = op
  26. }
  27. return
  28. }
  29. // WebOperations get full operations.
  30. func (s *Service) WebOperations(c context.Context) (ops map[string][]*operMdl.Operation, err error) {
  31. if s.operCache == nil {
  32. err = ecode.NothingFound
  33. return
  34. }
  35. ops = make(map[string][]*operMdl.Operation)
  36. for _, v := range s.operCache {
  37. if v.Platform == 0 || v.Platform == 2 {
  38. o := &operMdl.Operation{}
  39. o.ID = v.ID
  40. o.Ty = v.Ty
  41. o.Rank = v.Rank
  42. o.Pic = v.Pic
  43. o.Link = v.Link
  44. o.Content = v.Content
  45. o.Remark = v.Remark
  46. o.Note = v.Note
  47. o.Stime = v.Stime
  48. o.Etime = v.Etime
  49. if o.Ty == "play" || o.Ty == "collect_arc" {
  50. o.Ty = "board"
  51. }
  52. ops[o.Ty] = append(ops[o.Ty], o)
  53. }
  54. }
  55. for _, ty := range operMdl.FullTypes() {
  56. trimTy := strings.Trim(ty, "'")
  57. if _, ok := ops[trimTy]; !ok {
  58. ops[trimTy] = []*operMdl.Operation{}
  59. }
  60. }
  61. return
  62. }
  63. // AppBanner get app index flexslider; filter by platform + business + remark
  64. func (s *Service) AppBanner(c context.Context) (bns []*operMdl.Banner, cbns []*operMdl.BannerCreator, err error) {
  65. bns = make([]*operMdl.Banner, 0, len(s.operCache))
  66. cbns = make([]*operMdl.BannerCreator, 0, len(s.operCache))
  67. for _, v := range s.operCache {
  68. // 平台切除web平台;
  69. // 允许征稿启示也显示在所有APP的Banner上;
  70. // 必须开启remark=="show_banner"的业务校验;
  71. if (v.Ty != "play" && v.Ty != "collect_arc") ||
  72. v.Platform == 2 ||
  73. v.Remark != remarkShowBanner {
  74. continue
  75. }
  76. bn := &operMdl.Banner{}
  77. cbn := &operMdl.BannerCreator{}
  78. bn.Ty = v.Ty
  79. bn.Rank = v.Rank
  80. cbn.Ty = v.Ty
  81. cbn.Rank, _ = strconv.Atoi(v.Rank)
  82. if v.AppPic == "" {
  83. pics := []string{}
  84. if err = json.Unmarshal([]byte(v.Pic), &pics); err != nil {
  85. log.Error("json.Unmarshal(%v) error(%v)", string(v.Pic), err)
  86. }
  87. bn.Pic = pics[len(pics)-1]
  88. cbn.Pic = pics[len(pics)-1]
  89. } else {
  90. bn.Pic = v.AppPic
  91. cbn.Pic = v.AppPic
  92. }
  93. bn.Link = v.Link
  94. bn.Content = v.Content
  95. cbn.Link = v.Link
  96. cbn.Content = v.Content
  97. bns = append(bns, bn)
  98. cbns = append(cbns, cbn)
  99. }
  100. return
  101. }
  102. // CreatorOperationList get operations list.
  103. func (s *Service) CreatorOperationList(c context.Context, pn, ps int) (list *operMdl.BannerList, err error) {
  104. if s.operCache == nil {
  105. err = ecode.NothingFound
  106. return
  107. }
  108. list = &operMdl.BannerList{Pn: pn, Ps: ps}
  109. // notice: s.CreatorRelOperCache["play"] 已经进行合并
  110. play, ok := s.CreatorRelOperCache["play"]
  111. if !ok {
  112. return
  113. }
  114. bcs := make([]*operMdl.BannerCreator, 0)
  115. for _, v := range play {
  116. bc := &operMdl.BannerCreator{}
  117. bc.Ty = v.Ty
  118. bc.Rank, _ = strconv.Atoi(v.Rank)
  119. if v.AppPic == "" {
  120. pics := []string{}
  121. if err = json.Unmarshal([]byte(v.Pic), &pics); err != nil {
  122. log.Error("json.Unmarshal(%v) error(%v)", string(v.Pic), err)
  123. }
  124. bc.Pic = pics[len(pics)-1]
  125. } else {
  126. bc.Pic = v.AppPic
  127. }
  128. bc.Link = v.Link
  129. bc.Content = v.Content
  130. st, _ := time.Parse("2006-01-02 15:04:05", v.Stime)
  131. bc.Stime = st.Unix()
  132. et, _ := time.Parse("2006-01-02 15:04:05", v.Etime)
  133. bc.Etime = et.Unix()
  134. bcs = append(bcs, bc)
  135. }
  136. total := len(bcs)
  137. list.Total = total
  138. start := (pn - 1) * ps
  139. end := pn * ps
  140. if total <= start {
  141. list.BannerCreator = make([]*operMdl.BannerCreator, 0)
  142. } else if total <= end {
  143. list.BannerCreator = bcs[start:total]
  144. } else {
  145. list.BannerCreator = bcs[start:end]
  146. }
  147. return
  148. }
  149. // AppOperationList get operations list.
  150. func (s *Service) AppOperationList(c context.Context, pn, ps int, tp string) (list *operMdl.BannerList, err error) {
  151. tpOK := false
  152. for _, fullTp := range operMdl.FullTypes() {
  153. trimTy := strings.Trim(fullTp, "'")
  154. if trimTy == tp {
  155. tpOK = true
  156. break
  157. }
  158. }
  159. if s.allRelOperCache == nil || !tpOK {
  160. return
  161. }
  162. list = &operMdl.BannerList{Pn: pn, Ps: ps}
  163. vals := make([]*operMdl.Operation, 0)
  164. for _, v := range s.allRelOperCache {
  165. if v.Ty == tp && (v.Platform == 0 || v.Platform == 1) {
  166. vals = append(vals, v)
  167. }
  168. }
  169. if len(vals) == 0 {
  170. return
  171. }
  172. bcs := make([]*operMdl.BannerCreator, 0)
  173. for _, v := range vals {
  174. bc := &operMdl.BannerCreator{}
  175. bc.Ty = v.Ty
  176. bc.Rank, _ = strconv.Atoi(v.Rank)
  177. if v.AppPic == "" {
  178. pics := []string{}
  179. if err = json.Unmarshal([]byte(v.Pic), &pics); err != nil {
  180. log.Error("json.Unmarshal(%v) error(%v)", string(v.Pic), err)
  181. }
  182. bc.Pic = pics[len(pics)-1]
  183. } else {
  184. bc.Pic = v.AppPic
  185. }
  186. bc.Link = v.Link
  187. bc.Content = v.Content
  188. st, _ := time.Parse("2006-01-02 15:04:05", v.Stime)
  189. bc.Stime = st.Unix()
  190. et, _ := time.Parse("2006-01-02 15:04:05", v.Etime)
  191. bc.Etime = et.Unix()
  192. bcs = append(bcs, bc)
  193. }
  194. total := len(bcs)
  195. list.Total = total
  196. start := (pn - 1) * ps
  197. end := pn * ps
  198. if total <= start {
  199. list.BannerCreator = make([]*operMdl.BannerCreator, 0)
  200. } else if total <= end {
  201. list.BannerCreator = bcs[start:total]
  202. } else {
  203. list.BannerCreator = bcs[start:end]
  204. }
  205. return
  206. }