advert.go 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. package model
  2. import (
  3. "encoding/json"
  4. "fmt"
  5. )
  6. // resource id defined by advert
  7. const (
  8. adRscIDIphone = 2630
  9. adRscIDAndrod = 2631
  10. adRscIDIphoneIcon = 2642
  11. adRscIDAndroidIcon = 2643
  12. )
  13. // Resource get resource by mobi_app.
  14. func Resource(mobiApp string) (rsc string) {
  15. if mobiApp == "iphone" || mobiApp == "ipad" || mobiApp == "iphone_i" {
  16. rsc = fmt.Sprintf("%d,%d", adRscIDIphone, adRscIDIphoneIcon)
  17. } else {
  18. rsc = fmt.Sprintf("%d,%d", adRscIDAndrod, adRscIDAndroidIcon)
  19. }
  20. return
  21. }
  22. // ADReq advert request params
  23. type ADReq struct {
  24. Aid int64 `json:"aid"`
  25. Oid int64 `json:"oid"`
  26. Mid int64 `json:"mid"`
  27. Build int64 `json:"build"`
  28. Buvid string `json:"buvid"`
  29. ClientIP string `json:"ip"`
  30. MobiApp string `json:"mobi_app"`
  31. ADExtra string `json:"ad_extra"`
  32. }
  33. // ADResp advert response
  34. type ADResp struct {
  35. Icon *ADInfo `json:"icon,omitempty"`
  36. ADs []*ADInfo `json:"ads_info,omitempty"`
  37. }
  38. // AD advert struct
  39. type AD struct {
  40. RequestID string `json:"request_id,omitempty"`
  41. ADsInfo map[int64]map[int64]*ADInfo `json:"ads_info,omitempty"` // resource_id --> source_id --> adinfo
  42. }
  43. // ADInfo advert info.
  44. type ADInfo struct {
  45. // filed response from advert api
  46. Index int `json:"index,omitempty"`
  47. IsAd bool `json:"is_ad,omitempty"`
  48. CmMark int `json:"cm_mark,omitempty"`
  49. CardIndex int `json:"card_index,omitempty"`
  50. ADInfo json.RawMessage `json:"ad_info,omitempty"`
  51. // filed used in app
  52. RequestID string `json:"request_id,omitempty"`
  53. ResourceID int64 `json:"resource_id,omitempty"`
  54. SourceID int64 `json:"source_id,omitempty"`
  55. ClientIP string `json:"client_ip,omitempty"`
  56. IsADLoc bool `json:"is_ad_loc,omitempty"`
  57. }
  58. // Convert convert AD to ADResp.
  59. func (a *AD) Convert(clientIP string) (res *ADResp) {
  60. res = new(ADResp)
  61. for rscID, adInfoMap := range a.ADsInfo {
  62. for srcID, adInfo := range adInfoMap {
  63. v := new(ADInfo)
  64. v.RequestID = a.RequestID
  65. v.ResourceID = rscID
  66. v.SourceID = srcID
  67. v.ClientIP = clientIP
  68. v.IsADLoc = true // 该字段服务端代码写死为true
  69. if adInfo != nil {
  70. v.Index = adInfo.Index
  71. v.IsAd = adInfo.IsAd
  72. v.CmMark = adInfo.CmMark
  73. v.CardIndex = adInfo.CardIndex
  74. }
  75. if len(adInfo.ADInfo) > 0 {
  76. v.ADInfo = adInfo.ADInfo
  77. }
  78. if v.ResourceID == adRscIDIphoneIcon || v.ResourceID == adRscIDAndroidIcon { // icon resouce id
  79. res.Icon = v
  80. continue
  81. }
  82. res.ADs = append(res.ADs, v)
  83. }
  84. }
  85. return
  86. }