banner.go 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. package banner
  2. import (
  3. "encoding/json"
  4. xtime "go-common/library/time"
  5. "strconv"
  6. "go-common/app/interface/main/app-show/model"
  7. "go-common/app/interface/main/app-show/model/bangumi"
  8. resource "go-common/app/service/main/resource/model"
  9. )
  10. // Banner struct
  11. type Banner struct {
  12. ID int `json:"id"`
  13. ParentID int `json:"-"`
  14. Plat int8 `json:"-"`
  15. Module string `json:"-"`
  16. Position string `json:"-"`
  17. Title string `json:"title"`
  18. Image string `json:"image"`
  19. Hash string `json:"hash"`
  20. URI string `json:"uri"`
  21. Goto string `json:"-"`
  22. Value string `json:"-"`
  23. Param string `json:"-"`
  24. Channel string `json:"-"`
  25. Build int `json:"-"`
  26. Condition string `json:"-"`
  27. Area string `json:"-"`
  28. Rank int `json:"-"`
  29. Rule string `json:"-"`
  30. Type int8 `json:"-"`
  31. Start xtime.Time `json:"-"`
  32. End xtime.Time `json:"-"`
  33. MTime xtime.Time `json:"-"`
  34. ResourceID int `json:"resource_id"`
  35. RequestId string `json:"request_id,omitempty"`
  36. CreativeId int `json:"creative_id,omitempty"`
  37. SrcId int `json:"src_id,omitempty"`
  38. IsAd bool `json:"is_ad"`
  39. IsAdReplace bool `json:"-"`
  40. IsAdLoc bool `json:"is_ad_loc,omitempty"`
  41. CmMark int `json:"cm_mark"`
  42. AdCb string `json:"ad_cb,omitempty"`
  43. ShowUrl string `json:"show_url,omitempty"`
  44. ClickUrl string `json:"click_url,omitempty"`
  45. ClientIp string `json:"client_ip,omitempty"`
  46. Index int `json:"index"`
  47. ServerType int `json:"server_type"`
  48. Extra json.RawMessage `json:"extra,omitempty"`
  49. }
  50. type JsonBanner struct {
  51. Area string `json:"area"`
  52. Hash string `json:"hash"`
  53. Build int `json:"build"`
  54. Condition string `json:"conditions"`
  55. Channel string `json:"channel"`
  56. }
  57. // Banner limit
  58. type Limit struct {
  59. Rule string `json:"-"`
  60. }
  61. // Json limit
  62. type JsonLimit struct {
  63. Limit int `json:"limit"`
  64. Resrc []string `json:"resrc"`
  65. }
  66. // PlatChange
  67. func (b *Banner) BannerChange() {
  68. var tmp *JsonBanner
  69. if err := json.Unmarshal([]byte(b.Rule), &tmp); err == nil {
  70. b.Area = tmp.Area
  71. b.Build = tmp.Build
  72. b.Condition = tmp.Condition
  73. if tmp.Channel == "" {
  74. b.Channel = "*"
  75. } else {
  76. b.Channel = tmp.Channel
  77. }
  78. b.Hash = tmp.Hash
  79. }
  80. switch b.Plat {
  81. case 1: // resource iphone
  82. b.Plat = model.PlatIPhone
  83. case 2: // resource android
  84. b.Plat = model.PlatAndroid
  85. case 3: // resource pad
  86. b.Plat = model.PlatIPad
  87. case 4: // resource iphoneg
  88. b.Plat = model.PlatIPhoneI
  89. case 5: // resource androidg
  90. b.Plat = model.PlatAndroidG
  91. case 6: // resource padg
  92. b.Plat = model.PlatIPadI
  93. case 8: // resource androidi
  94. b.Plat = model.PlatAndroidI
  95. }
  96. if b.Value == "" {
  97. return
  98. }
  99. switch b.Type {
  100. case 6:
  101. //GotoAv
  102. b.URI = "bilibili://video/" + b.Value
  103. case 4:
  104. //GotoLive
  105. if b.Plat == model.PlatIPad {
  106. b.URI = "bilibili://player/live/" + b.Value
  107. } else {
  108. b.URI = "bilibili://live/" + b.Value
  109. }
  110. case 3:
  111. //GotoBangumi
  112. b.URI = "bilibili://bangumi/season/" + b.Value
  113. case 5:
  114. //GotoGame
  115. b.URI = "bilibili://game/" + b.Value
  116. case 2:
  117. //GotoWeb
  118. b.URI = b.Value
  119. }
  120. }
  121. // LimitChange
  122. func (l *Limit) LimitChange() (data map[int]int) {
  123. data = map[int]int{}
  124. var (
  125. tmp = &JsonLimit{}
  126. err error
  127. resid int
  128. )
  129. if err = json.Unmarshal([]byte(l.Rule), tmp); err != nil {
  130. return
  131. }
  132. l.Rule = ""
  133. for _, residstr := range tmp.Resrc {
  134. resid, err = strconv.Atoi(residstr)
  135. if err != nil {
  136. return
  137. }
  138. data[resid] = tmp.Limit
  139. }
  140. return
  141. }
  142. // ResChangeBanner
  143. func (b *Banner) ResChangeBanner(resb *resource.Banner) {
  144. b.ID = resb.ID
  145. b.Title = resb.Title
  146. b.Image = resb.Image
  147. b.Hash = resb.Hash
  148. b.URI = resb.URI
  149. b.ResourceID = resb.ResourceID
  150. b.RequestId = resb.RequestId
  151. b.CreativeId = resb.CreativeId
  152. b.SrcId = resb.SrcId
  153. b.IsAd = resb.IsAd
  154. b.IsAdLoc = resb.IsAdLoc
  155. b.CmMark = resb.CmMark
  156. b.AdCb = resb.AdCb
  157. b.ShowUrl = resb.ShowUrl
  158. b.ClickUrl = resb.ClickUrl
  159. b.ClientIp = resb.ClientIp
  160. b.Index = resb.Index
  161. b.ServerType = resb.ServerType
  162. b.Extra = resb.Extra
  163. }
  164. // BgmChangeBanner bangumiBanner change banner
  165. func (b *Banner) BgmChangeBanner(bgmb *bangumi.Banner) {
  166. b.Title = bgmb.Title
  167. b.Image = bgmb.Image
  168. b.URI = bgmb.URI
  169. }