app.go 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223
  1. package service
  2. import (
  3. "bytes"
  4. "context"
  5. "net"
  6. "strings"
  7. "go-common/app/interface/main/videoup/model/archive"
  8. "go-common/library/ecode"
  9. "go-common/library/log"
  10. "go-common/library/net/metadata"
  11. "go-common/library/sync/errgroup"
  12. )
  13. // AppEdit edit archive by appclient.
  14. func (s *Service) AppEdit(c context.Context, ap *archive.ArcParam, mid int64) (err error) {
  15. ip := metadata.String(c, metadata.RemoteIP)
  16. ap.IPv6 = net.ParseIP(ip)
  17. if err = s.checkIdentify(c, mid, ip); err != nil {
  18. log.Error("s.CheckIdentify mid(%d) ap(%+v) error(%v)", mid, ap, err)
  19. return
  20. }
  21. var (
  22. a = &archive.Archive{}
  23. vs = []*archive.Video{}
  24. )
  25. if a, vs, err = s.arc.View(c, ap.Aid, ip); err != nil {
  26. log.Error("s.arc.View err(%v) | aid(%d) ip(%s)", err, ap.Aid, ip)
  27. return
  28. }
  29. if a == nil {
  30. log.Error("s.arc.View(%d) not found", mid)
  31. err = ecode.ArchiveNotExist
  32. return
  33. }
  34. // pre check
  35. if err = s.preEdit(c, mid, a, vs, ap, ip, ap.UpFrom); err != nil {
  36. return
  37. }
  38. // edit
  39. if err = s.arc.Edit(c, ap, ip); err != nil {
  40. return
  41. }
  42. g := &errgroup.Group{}
  43. ctx := context.TODO()
  44. g.Go(func() error {
  45. s.dealElec(ctx, ap.OpenElec, ap.Aid, mid, ip)
  46. return nil
  47. })
  48. g.Wait()
  49. return
  50. }
  51. // AppUpCover main app upload cover.
  52. func (s *Service) AppUpCover(c context.Context, fileType string, body []byte, mid int64) (url string, err error) {
  53. if len(body) == 0 {
  54. err = ecode.FileNotExists
  55. log.Error("AppEcode FileNotExists mid(%d) error(%v)", mid, err)
  56. return
  57. }
  58. if len(body) > s.c.Bfs.MaxFileSize {
  59. err = ecode.FileTooLarge
  60. log.Error("AppEcode FileTooLarge mid(%d) error(%v)", mid, err)
  61. return
  62. }
  63. url, err = s.bfs.Upload(c, fileType, bytes.NewReader(body))
  64. if err != nil {
  65. log.Error("AppEcode s.bfs.Upload error(%v)", err)
  66. }
  67. return
  68. }
  69. func (s *Service) freshAppMissionByFirstTag(ap *archive.ArcParam) (res *archive.ArcParam) {
  70. if ap.MissionID == 0 {
  71. firstTag := strings.Split(ap.Tag, ",")[0]
  72. if missionID, ok := s.missTagsCache[firstTag]; ok {
  73. ap.MissionID = missionID
  74. }
  75. }
  76. res = ap
  77. return
  78. }
  79. // AppAdd add archive by main app.
  80. func (s *Service) AppAdd(c context.Context, mid int64, ap *archive.ArcParam, ar *archive.AppRequest) (aid int64, err error) {
  81. ip := metadata.String(c, metadata.RemoteIP)
  82. ap.IPv6 = net.ParseIP(ip)
  83. defer func() {
  84. if err != nil && err != ecode.VideoupCanotRepeat {
  85. s.acc.DelSubmitCache(c, ap.Mid, ap.Title)
  86. }
  87. }()
  88. ap = s.freshAppMissionByFirstTag(ap)
  89. if err = s.checkIdentify(c, mid, ip); err != nil {
  90. log.Error("s.CheckIdentify mid(%d) ap(%+v) error(%v)", mid, ap, err)
  91. return
  92. }
  93. // pre check
  94. if err = s.preAdd(c, mid, ap, ip, ap.UpFrom); err != nil {
  95. return
  96. }
  97. if ap.PoiObj != nil {
  98. log.Warn("poi_object is not nil, mid(%d),upfrom(%d),poi_object(%+v)", mid, ap.UpFrom, ap.PoiObj)
  99. }
  100. if aid, err = s.arc.Add(c, ap, ip); err != nil || aid == 0 {
  101. return
  102. }
  103. ap.Aid = aid
  104. g := &errgroup.Group{}
  105. ctx := context.TODO()
  106. g.Go(func() error {
  107. s.dealOrder(ctx, mid, aid, ap.OrderID, ip)
  108. return nil
  109. })
  110. g.Go(func() error {
  111. s.dealWaterMark(ctx, mid, ap.Watermark, ip)
  112. return nil
  113. })
  114. g.Go(func() error {
  115. s.freshFavs(ctx, mid, ap, ip)
  116. return nil
  117. })
  118. g.Go(func() error {
  119. s.dealElec(ctx, 1, aid, mid, ip)
  120. return nil
  121. })
  122. g.Go(func() error {
  123. s.uploadVideoEditInfo(ctx, ap, aid, mid, ip)
  124. return nil
  125. })
  126. g.Go(func() error {
  127. s.lotteryBind(ctx, ap.LotteryID, aid, mid, ip)
  128. return nil
  129. })
  130. g.Go(func() error {
  131. s.addFollowing(ctx, mid, ap.FollowMids, ap.UpFrom, ip)
  132. return nil
  133. })
  134. g.Go(func() error {
  135. s.VideoInfoc(ctx, ap, ar)
  136. return nil
  137. })
  138. g.Wait()
  139. return
  140. }
  141. // AppEditFull fn
  142. func (s *Service) AppEditFull(c context.Context, ap *archive.ArcParam, mid, buildNum int64, ar *archive.AppRequest) (err error) {
  143. ip := metadata.String(c, metadata.RemoteIP)
  144. ap.IPv6 = net.ParseIP(ip)
  145. platform := ar.Platform
  146. if err = s.checkIdentify(c, mid, ip); err != nil {
  147. log.Error("s.CheckIdentify mid(%d) ap(%+v) error(%v)", mid, ap, err)
  148. return
  149. }
  150. var (
  151. a = &archive.Archive{}
  152. vs = []*archive.Video{}
  153. )
  154. if a, vs, err = s.arc.View(c, ap.Aid, ip); err != nil {
  155. log.Error("s.arc.View err(%v) | aid(%d) ip(%s)", err, ap.Aid, ip)
  156. return
  157. }
  158. if a == nil {
  159. log.Error("s.arc.View(%d) not found", mid)
  160. err = ecode.ArchiveNotExist
  161. return
  162. }
  163. if nvsCnt := s.checkVideosMaxLimitForEdit(vs, ap.Videos); nvsCnt > s.c.MaxAddVsCnt {
  164. log.Error("checkVideosMaxLimitForEdit, vsCnt(%d), limit(%d), nvsCnt(%d)", len(vs), s.c.MaxAddVsCnt, nvsCnt)
  165. err = ecode.VideoupVideosMaxLimit
  166. return
  167. }
  168. ap = s.protectFeatureForApp(ap, a, buildNum, platform)
  169. // pre check
  170. if err = s.preEdit(c, mid, a, vs, ap, ip, ap.UpFrom); err != nil {
  171. return
  172. }
  173. // edit
  174. if err = s.arc.Edit(c, ap, ip); err != nil {
  175. return
  176. }
  177. g := &errgroup.Group{}
  178. ctx := context.TODO()
  179. g.Go(func() error {
  180. s.dealElec(ctx, ap.OpenElec, ap.Aid, mid, ip)
  181. return nil
  182. })
  183. g.Go(func() error {
  184. s.uploadVideoEditInfo(ctx, ap, ap.Aid, mid, ip)
  185. return nil
  186. })
  187. g.Go(func() error {
  188. s.addFollowing(ctx, mid, ap.FollowMids, ap.UpFrom, ip)
  189. return nil
  190. })
  191. g.Go(func() error {
  192. s.VideoInfoc(ctx, ap, ar)
  193. return nil
  194. })
  195. g.Wait()
  196. return
  197. }
  198. // protectFeatureForApp fn
  199. // feature list: porder,order,desc_format_id
  200. func (s *Service) protectFeatureForApp(origin *archive.ArcParam, a *archive.Archive, buildNum int64, platform string) (res *archive.ArcParam) {
  201. res = origin
  202. res.Porder = a.Porder
  203. res.OrderID = a.OrderID
  204. res.DescFormatID = a.DescFormatID
  205. // android except 5.26 5260000
  206. if buildNum < 5260000 && platform == "android" {
  207. res.Dynamic = a.Dynamic
  208. res.MissionID = a.MissionID
  209. // ios include 5.25.1 6680
  210. } else if buildNum <= 6680 && platform == "ios" {
  211. res.Dynamic = a.Dynamic
  212. res.MissionID = a.MissionID
  213. }
  214. return
  215. }