app_faq.go 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. package http
  2. import (
  3. "context"
  4. "go-common/app/interface/main/creative/model/faq"
  5. mMdl "go-common/app/interface/main/creative/model/music"
  6. resMdl "go-common/app/interface/main/creative/model/resource"
  7. resmdl "go-common/app/service/main/resource/model"
  8. "go-common/library/ecode"
  9. "go-common/library/log"
  10. bm "go-common/library/net/http/blademaster"
  11. "go-common/library/sync/errgroup"
  12. "strconv"
  13. )
  14. func appH5FaqEditor(c *bm.Context) {
  15. var (
  16. total int
  17. items []*faq.Detail
  18. err error
  19. pn = 1
  20. ps = 20
  21. keyFlag = 1
  22. faqQuesTypeID = faq.PhoneFaqQuesTypeID
  23. )
  24. params := c.Request.Form
  25. device := params.Get("device")
  26. if device == "ipad" || device == "pad" {
  27. log.Warn("openpad faqSvc.Detail (%s,%s,%s)", faqQuesTypeID, device, faq.PadFaqQuesTypeID)
  28. faqQuesTypeID = faq.PadFaqQuesTypeID
  29. }
  30. if items, total, err = faqSvc.Detail(c, faqQuesTypeID, keyFlag, pn, ps); err != nil {
  31. log.Error("faqSvc.Detail(%s,%d,%d) error(%v)", faqQuesTypeID, pn, ps, err)
  32. c.JSON(nil, err)
  33. return
  34. }
  35. detail := map[string]interface{}{
  36. "items": items,
  37. "page": map[string]int{
  38. "num": pn,
  39. "size": ps,
  40. "total": total,
  41. },
  42. }
  43. c.JSON(map[string]interface{}{
  44. "detail": detail,
  45. }, nil)
  46. }
  47. func appCooperate(c *bm.Context) {
  48. midStr, _ := c.Get("mid")
  49. mid := midStr.(int64)
  50. if mid <= 0 {
  51. c.JSON(nil, ecode.CreativeNotLogin)
  52. return
  53. }
  54. params := c.Request.Form
  55. idStr := params.Get("id")
  56. id, _ := strconv.ParseInt(idStr, 10, 64)
  57. c.JSONMap(map[string]interface{}{
  58. "data": musicSvc.Cooperate(c, id, mid),
  59. }, nil)
  60. }
  61. func appCooperatePre(c *bm.Context) {
  62. var (
  63. banners []*resmdl.Assignment
  64. coos []*mMdl.Cooperate
  65. build int
  66. err error
  67. g = &errgroup.Group{}
  68. ctx = context.TODO()
  69. )
  70. midStr, _ := c.Get("mid")
  71. mid := midStr.(int64)
  72. if mid <= 0 {
  73. c.JSON(nil, ecode.CreativeNotLogin)
  74. return
  75. }
  76. header := c.Request.Header
  77. params := c.Request.Form
  78. mobiApp := params.Get("mobi_app")
  79. device := params.Get("device")
  80. platStr := params.Get("platform")
  81. network := params.Get("network")
  82. buvid := header.Get("Buvid")
  83. adExtra := params.Get("ad_extra")
  84. if build, err = strconv.Atoi(params.Get("build")); err != nil {
  85. c.JSON(nil, ecode.RequestErr)
  86. return
  87. }
  88. plat := resMdl.Plat(mobiApp, device)
  89. g.Go(func() error {
  90. coos = musicSvc.CooperatePre(ctx, mid, platStr, build)
  91. return nil
  92. })
  93. g.Go(func() error {
  94. banners, _ = resSvc.CooperateBanner(ctx, mobiApp, device, network, buvid, adExtra, build, plat, mid, false)
  95. return nil
  96. })
  97. g.Wait()
  98. c.JSON(map[string]interface{}{
  99. "coos": coos,
  100. "banners": banners,
  101. }, nil)
  102. }