client.go 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. package service
  2. import (
  3. "bytes"
  4. "context"
  5. "net"
  6. "go-common/app/interface/main/videoup/model/archive"
  7. "go-common/library/ecode"
  8. "go-common/library/log"
  9. "go-common/library/net/metadata"
  10. "go-common/library/sync/errgroup"
  11. )
  12. // ClientAdd add archive by client.
  13. func (s *Service) ClientAdd(c context.Context, mid int64, ap *archive.ArcParam) (aid int64, err error) {
  14. ip := metadata.String(c, metadata.RemoteIP)
  15. ap.IPv6 = net.ParseIP(ip)
  16. defer func() {
  17. if err != nil && err != ecode.VideoupCanotRepeat {
  18. s.acc.DelSubmitCache(c, ap.Mid, ap.Title)
  19. }
  20. }()
  21. if err = s.checkIdentify(c, mid, ip); err != nil {
  22. log.Error("s.CheckIdentify mid(%d) ap(%+v) error(%v)", mid, ap, err)
  23. return
  24. }
  25. if err = s.tagsCheck(c, mid, ap.Tag, ip); err != nil {
  26. log.Error("s.tagsCheck mid(%d) ap(%+v) error(%v)", mid, ap.Tag, err)
  27. return
  28. }
  29. // pre check
  30. if err = s.preAdd(c, mid, ap, ip, archive.UpFromWindows); err != nil {
  31. return
  32. }
  33. // add
  34. if aid, err = s.arc.Add(c, ap, ip); err != nil || aid == 0 {
  35. return
  36. }
  37. g := &errgroup.Group{}
  38. ctx := context.TODO()
  39. g.Go(func() error {
  40. s.dealOrder(ctx, mid, aid, ap.OrderID, ip)
  41. return nil
  42. })
  43. g.Go(func() error {
  44. s.freshFavs(ctx, mid, ap, ip)
  45. return nil
  46. })
  47. g.Go(func() error {
  48. s.dealElec(ctx, ap.OpenElec, aid, mid, ip)
  49. return nil
  50. })
  51. g.Wait()
  52. return
  53. }
  54. // ClientEdit edit archive by client.
  55. func (s *Service) ClientEdit(c context.Context, ap *archive.ArcParam, mid int64) (err error) {
  56. ip := metadata.String(c, metadata.RemoteIP)
  57. ap.IPv6 = net.ParseIP(ip)
  58. if err = s.checkIdentify(c, mid, ip); err != nil {
  59. log.Error("s.CheckIdentify mid(%d) ap(%+v) error(%v)", mid, ap, err)
  60. return
  61. }
  62. if err = s.tagsCheck(c, mid, ap.Tag, ip); err != nil {
  63. log.Error("s.tagsCheck mid(%d) ap(%+v) error(%v)", mid, ap.Tag, err)
  64. return
  65. }
  66. var (
  67. a = &archive.Archive{}
  68. vs = []*archive.Video{}
  69. )
  70. if a, vs, err = s.arc.View(c, ap.Aid, ip); err != nil {
  71. log.Error("s.arc.View err(%v) | aid(%d) ip(%s)", err, ap.Aid, ip)
  72. return
  73. }
  74. if a == nil {
  75. log.Error("s.arc.View(%d) not found", mid)
  76. err = ecode.ArchiveNotExist
  77. return
  78. }
  79. if nvsCnt := s.checkVideosMaxLimitForEdit(vs, ap.Videos); nvsCnt > s.c.MaxAddVsCnt {
  80. log.Error("checkVideosMaxLimitForEdit, vsCnt(%d), limit(%d), nvsCnt(%d)", len(vs), s.c.MaxAddVsCnt, nvsCnt)
  81. err = ecode.VideoupVideosMaxLimit
  82. return
  83. }
  84. // pre check
  85. if err = s.preEdit(c, mid, a, vs, ap, ip, archive.UpFromWindows); err != nil {
  86. return
  87. }
  88. // edit
  89. if err = s.arc.Edit(c, ap, ip); err != nil {
  90. return
  91. }
  92. g := &errgroup.Group{}
  93. ctx := context.TODO()
  94. g.Go(func() error {
  95. s.dealElec(ctx, ap.OpenElec, ap.Aid, mid, ip)
  96. return nil
  97. })
  98. g.Wait()
  99. return
  100. }
  101. // ClientUpCover client upload cover.
  102. func (s *Service) ClientUpCover(c context.Context, fileType string, body []byte, mid int64) (url string, err error) {
  103. if len(body) == 0 {
  104. err = ecode.FileNotExists
  105. return
  106. }
  107. if len(body) > s.c.Bfs.MaxFileSize {
  108. err = ecode.FileTooLarge
  109. return
  110. }
  111. url, err = s.bfs.Upload(c, fileType, bytes.NewReader(body))
  112. if err != nil {
  113. log.Error("s.bfs.Upload error(%v)", err)
  114. }
  115. return
  116. }