infoc.go 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. package service
  2. import (
  3. "context"
  4. "encoding/json"
  5. "go-common/app/interface/main/videoup/model/archive"
  6. "go-common/library/log"
  7. "go-common/library/net/metadata"
  8. "strconv"
  9. )
  10. type infoc struct {
  11. Aid string `json:"aid"`
  12. Ext2 json.RawMessage `json:"ext2"`
  13. Ext1 json.RawMessage `json:"ext1"`
  14. Ext3 json.RawMessage `json:"ext3"`
  15. Mid string `json:"mid"`
  16. Cid string `json:"cid"`
  17. Filename string `json:"filename"`
  18. Upfrom string `json:"upfrom"`
  19. PicCount string `json:"pic_count"`
  20. VideoCount string `json:"video_count"`
  21. Build string `json:"build"`
  22. Platform string `json:"platform"`
  23. Device string `json:"device"`
  24. MobiApp string `json:"mobi_app"`
  25. // none business fields
  26. IP string `json:"ip"`
  27. LogID string `json:"logid"`
  28. Name string `json:"name"`
  29. }
  30. // VideoInfoc fn
  31. func (s *Service) VideoInfoc(c context.Context, ap *archive.ArcParam, ar *archive.AppRequest) (err error) {
  32. log.Warn("infocproc begin ap(%+v) ar(%+v)", ap, ar)
  33. ip := metadata.String(c, metadata.RemoteIP)
  34. name := "APP投稿分P的视频和图片的计数"
  35. logID := "001729"
  36. for _, v := range ap.Videos {
  37. if v.Editor == nil || v.Cid == 0 {
  38. continue
  39. }
  40. infoc := &infoc{
  41. Name: name,
  42. Mid: strconv.FormatInt(ap.Mid, 10),
  43. Aid: strconv.FormatInt(ap.Aid, 10),
  44. Cid: strconv.FormatInt(v.Cid, 10),
  45. Filename: v.Filename,
  46. Upfrom: strconv.Itoa(int(ap.UpFrom)),
  47. PicCount: strconv.Itoa(int(v.Editor.PicCount)),
  48. VideoCount: strconv.Itoa(int(v.Editor.VideoCount)),
  49. MobiApp: ar.MobiApp,
  50. Platform: ar.Platform,
  51. Build: ar.Build,
  52. Device: ar.Device,
  53. IP: ip,
  54. LogID: logID,
  55. }
  56. log.Warn("infocproc create infoc ap(%+v) ar(%+v) infoc(%+v)", ap, ar, infoc)
  57. err = s.infoc.Info(
  58. infoc.Aid,
  59. "",
  60. "",
  61. "",
  62. infoc.Mid,
  63. infoc.Cid,
  64. infoc.Filename,
  65. infoc.Upfrom,
  66. infoc.PicCount,
  67. infoc.VideoCount,
  68. infoc.Build,
  69. infoc.Platform,
  70. infoc.Device,
  71. infoc.MobiApp,
  72. )
  73. log.Warn("infocproc end infoc ap(%+v) ar(%+v) infoc(%+v)|err(%+v)", ap, ar, infoc, err)
  74. }
  75. return
  76. }