archive.go 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713
  1. package archive
  2. import (
  3. "context"
  4. "encoding/json"
  5. "fmt"
  6. "go-common/app/interface/main/creative/model/activity"
  7. "go-common/app/interface/main/creative/model/appeal"
  8. "go-common/app/interface/main/creative/model/archive"
  9. "go-common/app/interface/main/creative/model/search"
  10. "go-common/app/interface/main/creative/model/tag"
  11. pubSvc "go-common/app/interface/main/creative/service"
  12. "go-common/app/service/main/archive/api"
  13. mdlarc "go-common/app/service/main/archive/model/archive"
  14. "go-common/library/ecode"
  15. "go-common/library/log"
  16. "go-common/library/sync/errgroup"
  17. xtime "go-common/library/time"
  18. "strings"
  19. "time"
  20. )
  21. // SimpleArchiveVideos fn
  22. func (s *Service) SimpleArchiveVideos(c context.Context, mid, aid int64, ak, ck, ip string) (ap *archive.SimpleArchiveVideos, err error) {
  23. var (
  24. sa *archive.SpArchive
  25. svs []*archive.SpVideo
  26. )
  27. // User identity && permission check, logic from project 'member'
  28. card, err := s.acc.Card(c, mid, ip)
  29. if err != nil {
  30. log.Error("s.acc.Profile(%d,%s) error(%v)", mid, ck, err)
  31. return
  32. }
  33. if sa, err = s.arc.SimpleArchive(c, aid, ip); err != nil {
  34. log.Error("s.arc.SimpleArchive(%d) error(%v)", aid, err)
  35. return
  36. }
  37. if sa == nil {
  38. log.Error("s.arc.SimpleArchive(%d) not found", aid)
  39. err = ecode.NothingFound
  40. return
  41. }
  42. if sa.Mid != mid {
  43. err = ecode.NothingFound
  44. return
  45. }
  46. if svs, err = s.arc.SimpleVideos(c, aid, ip); err != nil {
  47. log.Error("s.arc.SimpleVideos(%d) error(%v)", aid, err)
  48. return
  49. }
  50. for index, sv := range svs {
  51. if sv.Status == -100 {
  52. sv.DmActive = 0
  53. } else {
  54. sv.DmActive = 1
  55. }
  56. svs[index] = sv
  57. }
  58. acceptAss := card.Rank > 15000 || card.Rank == 20000
  59. ap = &archive.SimpleArchiveVideos{Archive: sa, SpVideos: svs, AcceptAss: acceptAss}
  60. return
  61. }
  62. // View get archive.
  63. func (s *Service) View(c context.Context, mid, aid int64, ip, platform string) (av *archive.ArcVideo, err error) {
  64. if av, err = s.arc.View(c, mid, aid, ip, archive.NeedPoi(platform), archive.NeedVote(platform)); err != nil {
  65. log.Error("s.arc.View(%d,%d) error(%v)", mid, aid, err)
  66. return
  67. }
  68. if av == nil || av.Archive == nil {
  69. log.Error("s.arc.View(%d) not found", mid)
  70. err = ecode.NothingFound
  71. return
  72. }
  73. av.Archive.NilPoiObj(platform)
  74. av.Archive.NilVote()
  75. // check white
  76. isWhite := false
  77. for _, m := range s.c.Whitelist.ArcMids {
  78. if m == mid {
  79. isWhite = true
  80. break
  81. }
  82. }
  83. if !isWhite {
  84. if av.Archive.Mid != mid {
  85. err = ecode.AccessDenied
  86. return
  87. }
  88. }
  89. var (
  90. a = av.Archive
  91. vs = av.Videos
  92. )
  93. // add reject reason
  94. if (a.State == mdlarc.StateForbidRecicle || a.State == mdlarc.StateForbidLock) && a.RejectReason == "" {
  95. var c = 0
  96. for _, v := range vs {
  97. if v.Status == mdlarc.StateForbidRecicle ||
  98. v.Status == mdlarc.StateForbidLock ||
  99. v.Status == mdlarc.StateForbidXcodeFail {
  100. c++
  101. }
  102. }
  103. a.RejectReason = fmt.Sprintf("稿件中发现%d个问题。", c)
  104. }
  105. a.Cover = pubSvc.CoverURL(a.Cover)
  106. if a.OrderID != 0 {
  107. if a.OrderID, a.OrderName, _, err = s.order.OrderByAid(c, aid); err != nil {
  108. log.Error("s.order.OrderByAid(%d,%d) error(%v)", mid, aid, err)
  109. err = nil
  110. }
  111. }
  112. if a.MissionID > 0 {
  113. var act *activity.Activity
  114. if act, err = s.act.Subject(c, a.MissionID); err != nil {
  115. log.Error("s.act.Subject a.MissionID(%d) error(%v)", a.MissionID, err)
  116. err = nil
  117. return
  118. }
  119. a.MissionName = act.Name
  120. }
  121. if a.Porder != nil && a.Porder.Official == 1 && a.Porder.IndustryID == 1 {
  122. if v, ok := s.gameMap[a.Porder.BrandID]; ok {
  123. a.Porder.BrandName = v.GameName
  124. }
  125. }
  126. if a.UgcPay == 1 {
  127. a.UgcPayInfo = s.p.FillPayInfo(c, a, s.c.UgcPay, ip)
  128. }
  129. return
  130. }
  131. // Del fn
  132. // 1,unbind act;2,decrease coin;3,unbind order;4,clean memcache
  133. func (s *Service) Del(c context.Context, mid, aid int64, ip string) (err error) {
  134. av, err := s.View(c, mid, aid, ip, archive.PlatformWeb)
  135. if err != nil {
  136. return
  137. }
  138. if av == nil || av.Archive == nil {
  139. log.Error("s.arc.Del NothingFound (%d,%d,%d) error(%v)", mid, av.Archive.Mid, aid, err)
  140. err = ecode.NothingFound
  141. return
  142. }
  143. if av.Archive.Mid != mid {
  144. log.Error("s.arc.Del AccessDenied (%d,%d,%d) error(%v)", mid, av.Archive.Mid, aid, err)
  145. err = ecode.AccessDenied
  146. return
  147. }
  148. if av.Archive.UgcPay == 1 {
  149. canDelTime := xtime.Time(av.Archive.PTime.Time().AddDate(0, 0, s.c.UgcPay.AllowDeleteDays).Unix())
  150. if av.Archive.CTime != av.Archive.PTime && xtime.Time(time.Now().Unix()) < canDelTime {
  151. log.Error("checkEditPay CreativePayForbidDeleteAfterOpen aid(%d) ctime(%v) ptime(%v)", av.Archive.Aid, av.Archive.CTime, av.Archive.PTime)
  152. err = ecode.CreativePayForbidDeleteAfterOpen
  153. return
  154. }
  155. }
  156. if err = s.arc.Del(c, mid, aid, ip); err != nil {
  157. log.Error("s.arc.Del(%d,%d) error(%v)", mid, aid, err)
  158. return
  159. }
  160. var (
  161. a = av.Archive
  162. g = &errgroup.Group{}
  163. ctx = context.TODO()
  164. )
  165. g.Go(func() error {
  166. if e := s.act.Unbind(ctx, aid, a.MissionID, ip); e != nil {
  167. log.Error("s.act.UpdateByAid(%d,%d) error(%v)", aid, a.MissionID, e)
  168. }
  169. return nil
  170. })
  171. g.Go(func() error {
  172. var coins float64
  173. if a.State >= 0 {
  174. coins = -2
  175. } else {
  176. coins = -1
  177. }
  178. if e := s.coin.AddCoin(ctx, mid, aid, coins, ip); e != nil {
  179. log.Error("s.coin.AddCoin(%d,%d,%f,%s) error(%v)", mid, aid, coins, ip, e)
  180. }
  181. return nil
  182. })
  183. g.Go(func() error {
  184. if e := s.order.Unbind(ctx, mid, aid, ip); e != nil {
  185. log.Error("s.order.Unbind(%d,%d,%s) error(%v)", mid, aid, ip, e)
  186. }
  187. return nil
  188. })
  189. g.Go(func() error {
  190. if e := s.arc.DelSubmitCache(ctx, mid, a.Title); e != nil {
  191. log.Error("s.arc.DelSubmitCache (%d,%s,%s) error(%v)", mid, a.Title, ip, e)
  192. }
  193. return nil
  194. })
  195. g.Wait()
  196. s.prom.Incr("archive_del")
  197. return
  198. }
  199. // Archives for app all achives.
  200. func (s *Service) Archives(c context.Context, mid int64, tid int16, kw, order, class, ip string, pn, ps, coop int) (res *search.Result, err error) {
  201. if res, err = s.Search(c, mid, tid, kw, order, class, ip, pn, ps, coop); err != nil {
  202. log.Error("s.Search err(%v)", err)
  203. return
  204. }
  205. if res == nil || res.Archives == nil || len(res.Archives) == 0 {
  206. return
  207. }
  208. for _, av := range res.Archives {
  209. a := &api.Arc{
  210. Aid: av.Archive.Aid,
  211. TypeID: int32(av.Archive.TypeID),
  212. TypeName: av.TypeName,
  213. Copyright: int32(av.Archive.Copyright),
  214. Title: av.Archive.Title,
  215. Desc: av.Archive.Desc,
  216. Attribute: av.Archive.Attribute,
  217. Videos: int64(len(av.Videos)),
  218. Pic: pubSvc.CoverURL(av.Archive.Cover),
  219. State: int32(av.Archive.State),
  220. Access: int32(av.Archive.Access),
  221. Tags: strings.Split(av.Archive.Tag, ","),
  222. Duration: av.Archive.Duration,
  223. MissionID: av.Archive.MissionID,
  224. OrderID: av.Archive.OrderID,
  225. PubDate: av.Archive.PTime,
  226. Ctime: av.Archive.CTime,
  227. }
  228. a.Author = api.Author{
  229. Mid: av.Archive.Mid,
  230. Name: av.Archive.Author,
  231. }
  232. a.Stat = api.Stat{
  233. Aid: av.Stat.Aid,
  234. View: int32(av.Stat.View),
  235. Danmaku: int32(av.Stat.Danmaku),
  236. Reply: int32(av.Stat.Reply),
  237. Fav: int32(av.Stat.Fav),
  238. Coin: int32(av.Stat.Coin),
  239. Share: int32(av.Stat.Share),
  240. NowRank: int32(av.Stat.NowRank),
  241. HisRank: int32(av.Stat.HisRank),
  242. }
  243. ava := &archive.OldArchiveVideoAudit{
  244. Arc: a,
  245. StatePanel: av.StatePanel,
  246. ParentTName: av.ParentTName,
  247. Dtime: av.Archive.DTime,
  248. StateDesc: av.Archive.StateDesc,
  249. RejectReson: av.Archive.RejectReason,
  250. UgcPay: av.Archive.UgcPay,
  251. Attrs: av.Archive.Attrs,
  252. }
  253. if len(av.ArcVideo.Videos) > 0 {
  254. var vas = make([]*archive.OldVideoAudit, 0, len(av.ArcVideo.Videos))
  255. for _, vd := range av.ArcVideo.Videos {
  256. va := &archive.OldVideoAudit{
  257. IndexOrder: vd.Index,
  258. Eptitle: vd.Title,
  259. Reason: vd.RejectReason,
  260. }
  261. ava.VideoAudits = append(vas, va)
  262. }
  263. }
  264. res.OldArchives = append(res.OldArchives, ava)
  265. }
  266. return
  267. }
  268. // Search all achive.
  269. func (s *Service) Search(c context.Context, mid int64, tid int16, keyword, order, class, ip string, pn, ps, coop int) (res *search.Result, err error) {
  270. defer func() {
  271. if res != nil {
  272. // get pending apply num
  273. if coop > 0 {
  274. count, _ := s.arc.CountByMID(c, mid)
  275. res.Applies = &search.ApplyStateCount{
  276. Pending: count,
  277. }
  278. }
  279. }
  280. }()
  281. if res, err = s.sear.ArchivesES(c, mid, tid, keyword, order, class, ip, pn, ps, coop); err != nil {
  282. // search err, use archive-service
  283. log.Error("s.arc.Search(%d) error(%v)", mid, err)
  284. res, err = s.ArchivesFromService(c, mid, class, ip, pn, ps)
  285. if err != nil {
  286. return
  287. }
  288. }
  289. // add arctype *must return
  290. res.ArrType = []*search.TypeCount{}
  291. for _, v := range s.p.TopTypesCache {
  292. t := &search.TypeCount{
  293. Tid: v.ID,
  294. Name: v.Name,
  295. }
  296. if _, ok := res.Type[v.ID]; ok {
  297. t.Count = res.Type[v.ID].Count
  298. }
  299. res.ArrType = append(res.ArrType, t)
  300. }
  301. if res == nil || len(res.Aids) == 0 {
  302. return
  303. }
  304. avm, err := s.arc.Views(c, mid, res.Aids, ip)
  305. if err != nil {
  306. log.Error("s.arc.Views res.Aids(%v), ip(%s) err(%v)", res.Aids, ip, err)
  307. return
  308. }
  309. // get arc stats
  310. as, _ := s.arc.Stats(c, res.Aids, ip)
  311. // archives
  312. for _, aid := range res.Aids {
  313. av := avm[aid]
  314. if av == nil {
  315. continue
  316. }
  317. a := av.Archive
  318. a.Cover = pubSvc.CoverURL(a.Cover)
  319. ava := &archive.ArcVideoAudit{ArcVideo: av}
  320. // arc stat info
  321. if _, ok := as[aid]; ok {
  322. ava.Stat = as[aid]
  323. } else {
  324. ava.Stat = &api.Stat{}
  325. }
  326. // typename
  327. if _, ok := s.p.TypeMapCache[a.TypeID]; ok {
  328. ava.TypeName = s.p.TypeMapCache[a.TypeID].Name
  329. }
  330. // parent typename
  331. if _, ok := s.p.TypeMapCache[a.TypeID]; ok {
  332. if _, ok := s.p.TypeMapCache[s.p.TypeMapCache[a.TypeID].Parent]; ok {
  333. ava.ParentTName = s.p.TypeMapCache[s.p.TypeMapCache[a.TypeID].Parent].Name
  334. }
  335. }
  336. // state panel
  337. ava.StatePanel = archive.StatePanel(a.State)
  338. // state desc
  339. ava.Archive.StateDesc = s.c.StatDesc(int(a.State))
  340. // not pubbed videos for reason
  341. unpubedVideos := make([]*archive.Video, 0, len(ava.Videos))
  342. for _, v := range ava.Videos {
  343. if v.Status == -2 || v.Status == -4 || v.Status == -16 {
  344. unpubedVideos = append(unpubedVideos, v)
  345. }
  346. }
  347. c := len(unpubedVideos)
  348. if c > 0 {
  349. a.RejectReason = fmt.Sprintf("稿件中发现%d个问题。", c)
  350. }
  351. // set attrs
  352. attrs := &archive.Attrs{
  353. IsCoop: int8(ava.AttrVal(archive.AttrBitIsCoop)),
  354. IsOwner: ava.IsOwner(mid),
  355. }
  356. ava.Archive.Attrs = attrs
  357. ava.Videos = unpubedVideos
  358. res.Archives = append(res.Archives, ava)
  359. }
  360. return
  361. }
  362. // ApplySearch all achive.
  363. func (s *Service) ApplySearch(c context.Context, mid int64, tid int16, keyword, state string, pn, ps int) (res *search.StaffApplyResult, err error) {
  364. var mids []int64
  365. if res, err = s.sear.ArchivesStaffES(c, mid, tid, keyword, state, pn, ps); err != nil {
  366. log.Error("s.arc.ArchivesStaffES(%d) error(%v)", mid, err)
  367. return
  368. }
  369. // add arctype *must return
  370. res.ArrType = []*search.TypeCount{}
  371. for _, v := range s.p.TopTypesCache {
  372. t := &search.TypeCount{
  373. Tid: v.ID,
  374. Name: v.Name,
  375. }
  376. if _, ok := res.Type[v.ID]; ok {
  377. t.Count = res.Type[v.ID].Count
  378. }
  379. res.ArrType = append(res.ArrType, t)
  380. }
  381. if res == nil || len(res.Aids) == 0 {
  382. return
  383. }
  384. // get archives
  385. avm, err := s.arc.Views(c, mid, res.Aids, "")
  386. if err != nil {
  387. log.Error("s.arc.Views res.Aids(%v), ip(%s) err(%v)", res.Aids, err)
  388. return
  389. }
  390. // get applies
  391. apm := make(map[int64]*archive.StaffApply)
  392. applies, err := s.arc.StaffApplies(c, mid, res.Aids)
  393. for _, ap := range applies {
  394. apm[ap.ApplyAID] = ap
  395. }
  396. // combine
  397. for _, aid := range res.Aids {
  398. av := avm[aid]
  399. if av == nil {
  400. continue
  401. }
  402. a := av.Archive
  403. a.Cover = pubSvc.CoverURL(a.Cover)
  404. ava := &archive.ArcVideoAudit{ArcVideo: av}
  405. // typename
  406. if _, ok := s.p.TypeMapCache[a.TypeID]; ok {
  407. ava.TypeName = s.p.TypeMapCache[a.TypeID].Name
  408. }
  409. // parent typename
  410. if _, ok := s.p.TypeMapCache[a.TypeID]; ok {
  411. if _, ok := s.p.TypeMapCache[s.p.TypeMapCache[a.TypeID].Parent]; ok {
  412. ava.ParentTName = s.p.TypeMapCache[s.p.TypeMapCache[a.TypeID].Parent].Name
  413. }
  414. }
  415. // state panel
  416. ava.StatePanel = archive.StatePanel(a.State)
  417. // state desc
  418. ava.Archive.StateDesc = s.c.StatDesc(int(a.State))
  419. // not pubbed videos for reason
  420. unpubedVideos := make([]*archive.Video, 0, len(ava.Videos))
  421. for _, v := range ava.Videos {
  422. if v.Status == -2 || v.Status == -4 || v.Status == -16 {
  423. unpubedVideos = append(unpubedVideos, v)
  424. }
  425. }
  426. c := len(unpubedVideos)
  427. if c > 0 {
  428. a.RejectReason = fmt.Sprintf("稿件中发现%d个问题。", c)
  429. }
  430. ava.Videos = unpubedVideos
  431. // get apply
  432. apply := &search.StaffApply{}
  433. if v, ok := apm[aid]; ok {
  434. apply.ID = v.ID
  435. apply.Type = v.Type
  436. apply.Mid = v.ApplyUpMID
  437. apply.State = v.StaffState
  438. apply.ApplyState = v.State
  439. apply.ApplyTitle = v.ApplyTitle
  440. }
  441. // set archive
  442. apply.Archive = ava
  443. mids = append(mids, apply.Mid)
  444. res.Applies = append(res.Applies, apply)
  445. }
  446. // get name
  447. users, _ := s.acc.Infos(c, mids, "")
  448. for _, v := range res.Applies {
  449. if u, ok := users[v.Mid]; ok {
  450. v.Uname = u.Name
  451. }
  452. }
  453. return
  454. }
  455. // Types get typelist.
  456. func (s *Service) Types(c context.Context, lang string) (tps []*archive.Type) {
  457. if _, ok := s.p.TypesCache[lang]; !ok {
  458. lang = "ch"
  459. }
  460. tps = s.p.TypesCache[lang]
  461. return
  462. }
  463. // StaffTitles get staff titles.
  464. func (s *Service) StaffTitles(c context.Context) (titles []*tag.StaffTitle) {
  465. return s.p.StaffTitlesCache
  466. }
  467. // AppTypes fn
  468. func (s *Service) AppTypes(c context.Context, lang string) (tps []*archive.Type) {
  469. if _, ok := s.p.CTypesCache[lang]; !ok {
  470. lang = "ch"
  471. }
  472. tps = s.p.CTypesCache[lang]
  473. for _, val := range tps {
  474. for _, child := range val.Children {
  475. child.Notice = child.AppNotice
  476. }
  477. }
  478. return
  479. }
  480. // Activities get activity list.
  481. func (s *Service) Activities(c context.Context) (acts []*activity.Activity) {
  482. acts = s.p.ActVideoAllCache
  483. return
  484. }
  485. // WebArchives achive list with appeal.
  486. func (s *Service) WebArchives(c context.Context, mid int64, tid int16, keyword, order, class, ip string, pn, ps, coop int) (res *search.Result, err error) {
  487. if res, err = s.Search(c, mid, tid, keyword, order, class, ip, pn, ps, coop); err != nil {
  488. log.Error("s.Search err(%v)", err)
  489. return
  490. }
  491. if res == nil || len(res.Aids) == 0 {
  492. return
  493. }
  494. //做降级
  495. aps, err := s.ap.AppealList(c, mid, appeal.Business, ip)
  496. if err != nil {
  497. log.Error("s.ap.AppealList error(%v)", err)
  498. err = nil
  499. }
  500. if len(aps) == 0 {
  501. return
  502. }
  503. aaMap := make(map[int64]int64, len(aps))
  504. for _, v := range aps {
  505. if appeal.IsOpen(v.BusinessState) {
  506. aaMap[v.Oid] = v.ID
  507. }
  508. }
  509. for _, v := range res.Archives {
  510. v.OpenAppeal = aaMap[v.Archive.Aid]
  511. }
  512. return
  513. }
  514. // Videos get Simple Archive and Videos Info.
  515. func (s *Service) Videos(c context.Context, mid, aid int64, ip string) (sa archive.SimpleArchive, svs []*archive.SimpleVideo, err error) {
  516. var av *archive.ArcVideo
  517. if av, err = s.arc.View(c, mid, aid, ip, 0, 0); err != nil {
  518. log.Error("s.arc.View(%d,%d) error(%v)", mid, aid, err)
  519. return
  520. }
  521. if av == nil {
  522. log.Error("s.arc.View(%d) not found", mid)
  523. err = ecode.RequestErr
  524. return
  525. }
  526. // white list check
  527. isWhite := false
  528. for _, m := range s.c.Whitelist.DataMids {
  529. if m == mid {
  530. isWhite = true
  531. break
  532. }
  533. }
  534. var (
  535. a = av.Archive
  536. vs = av.Videos
  537. )
  538. if !isWhite {
  539. if a.Mid != mid {
  540. err = ecode.AccessDenied
  541. return
  542. }
  543. }
  544. sa.Aid = a.Aid
  545. sa.Title = a.Title
  546. for _, v := range vs {
  547. svs = append(svs, &archive.SimpleVideo{
  548. Cid: v.Cid,
  549. Title: v.Title,
  550. Index: v.Index,
  551. })
  552. }
  553. return
  554. }
  555. // ArchivesFromService get archives from service
  556. func (s *Service) ArchivesFromService(c context.Context, mid int64, class, ip string, pn, ps int) (sres *search.Result, err error) {
  557. aids, count, err := s.arc.UpArchives(c, mid, int64(pn), int64(ps), 0, ip)
  558. if err != nil {
  559. return
  560. }
  561. sres = &search.Result{}
  562. sres.Aids = aids
  563. sres.Page.Pn = pn
  564. sres.Page.Ps = ps
  565. sres.Page.Count = int(count)
  566. return
  567. }
  568. // DescFormat get desc format
  569. func (s *Service) DescFormat(c context.Context, typeid, copyright int64, langStr, ip string) (desc *archive.DescFormat, err error) {
  570. lang := archive.ToLang(langStr)
  571. desc, ok := s.p.DescFmtsCache[typeid][int8(copyright)][lang]
  572. if !ok {
  573. err = nil
  574. }
  575. if desc != nil {
  576. var Components []*struct {
  577. Name interface{}
  578. }
  579. if err = json.Unmarshal([]byte(desc.Components), &Components); err != nil || len(Components) == 0 {
  580. desc = nil
  581. err = nil
  582. }
  583. }
  584. return
  585. }
  586. // AppFormats for app portal list.
  587. func (s *Service) AppFormats(c context.Context) (af []*archive.AppFormat, err error) {
  588. for _, f := range s.p.DescFmtsArrCache {
  589. format := &archive.AppFormat{ID: f.ID, Copyright: f.Copyright, TypeID: f.TypeID}
  590. af = append(af, format)
  591. }
  592. return
  593. }
  594. // Video get video by aid and cid
  595. func (s *Service) Video(c context.Context, mid, aid, cid int64, ip string) (video *api.Page, err error) {
  596. if video, err = s.arc.Video(c, aid, cid, ip); err != nil {
  597. log.Error("s.arc.Video %d,%d,%s | err(%v)", aid, cid, ip, err)
  598. }
  599. return
  600. }
  601. // VideoJam get video traffic jam level from service
  602. // level为0的时候,可以忽略错误处理,映射表里已经做了前端容错
  603. func (s *Service) VideoJam(c context.Context, ip string) (j *archive.VideoJam, err error) {
  604. level, _ := s.arc.VideoJam(c, ip)
  605. if jam, ok := archive.VjInfo[level]; ok {
  606. j = jam
  607. } else {
  608. j = archive.VjInfo[0]
  609. }
  610. return
  611. }
  612. // DescFormatForApp get desc format length
  613. func (s *Service) DescFormatForApp(c context.Context, typeid, copyright int64, langStr, ip string) (desc *archive.DescFormat, length int, err error) {
  614. var (
  615. descLengthMax = 2000
  616. descLengthMin = 250
  617. ok bool
  618. )
  619. lang := archive.ToLang("")
  620. if desc, ok = s.p.DescFmtsCache[typeid][int8(copyright)][lang]; !ok {
  621. err = nil
  622. }
  623. if typeid == 0 {
  624. length = descLengthMin
  625. } else if desc != nil {
  626. length = descLengthMax
  627. } else {
  628. length = descLengthMin
  629. }
  630. return
  631. }
  632. // Dpub for app view.
  633. func (s *Service) Dpub() (dpub *archive.Dpub) {
  634. now := time.Now()
  635. dpub = &archive.Dpub{
  636. Deftime: xtime.Time(now.Add(time.Duration(14400) * time.Second).Unix()),
  637. DeftimeEnd: xtime.Time(now.Add(time.Duration(15*24) * time.Hour).Unix()),
  638. DeftimeMsg: ecode.String(ecode.VideoupDelayTimeErr.Error()).Message(),
  639. }
  640. return
  641. }
  642. // SimpleArcVideos fn
  643. func (s *Service) SimpleArcVideos(c context.Context, mid int64, tid int16, kw, order, class, ip string, pn, ps, coop int) (res *search.SimpleResult, err error) {
  644. var sres *search.Result
  645. res = &search.SimpleResult{}
  646. if sres, err = s.sear.ArchivesES(c, mid, tid, kw, order, class, ip, pn, ps, coop); err != nil {
  647. log.Error("s.arc.Search mid(%d)|error(%v)", mid, err)
  648. sres, err = s.ArchivesFromService(c, mid, class, ip, pn, ps) // search err, use archive-service
  649. if err != nil {
  650. log.Error("s.ArchivesFromService mid(%d)|error(%v)", mid, err)
  651. return
  652. }
  653. }
  654. if sres == nil || len(sres.Aids) == 0 {
  655. return
  656. }
  657. res.Class = sres.Class
  658. res.Page = sres.Page
  659. avm, err := s.arc.Views(c, mid, sres.Aids, ip)
  660. if err != nil {
  661. log.Error("s.arc.Views mid(%d)|aids(%v)|ip(%s)|err(%v)", mid, sres.Aids, ip, err)
  662. return
  663. }
  664. savs := make([]*search.SimpleArcVideos, 0, len(avm))
  665. for _, aid := range sres.Aids {
  666. av, ok := avm[aid]
  667. if !ok || av == nil || av.Archive == nil {
  668. continue
  669. }
  670. vds := make([]*archive.SimpleVideo, 0, len(av.Videos))
  671. for _, v := range av.Videos {
  672. if v == nil {
  673. continue
  674. }
  675. vd := &archive.SimpleVideo{
  676. Cid: v.Cid,
  677. Title: v.Title,
  678. Index: v.Index,
  679. }
  680. vds = append(vds, vd)
  681. }
  682. sav := &search.SimpleArcVideos{}
  683. sav.Archive = &archive.SimpleArchive{
  684. Aid: av.Archive.Aid,
  685. Title: av.Archive.Title,
  686. }
  687. sav.Videos = vds
  688. savs = append(savs, sav)
  689. }
  690. res.ArchivesVideos = savs
  691. return
  692. }