app.go 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724
  1. package http
  2. import (
  3. "context"
  4. "fmt"
  5. "go-common/app/interface/main/creative/model/account"
  6. accmdl "go-common/app/interface/main/creative/model/account"
  7. "go-common/app/interface/main/creative/model/activity"
  8. "go-common/app/interface/main/creative/model/app"
  9. "go-common/app/interface/main/creative/model/archive"
  10. "go-common/app/interface/main/creative/model/data"
  11. "go-common/app/interface/main/creative/model/elec"
  12. "go-common/app/interface/main/creative/model/faq"
  13. "go-common/app/interface/main/creative/model/message"
  14. "go-common/app/interface/main/creative/model/newcomer"
  15. resMdl "go-common/app/interface/main/creative/model/resource"
  16. "go-common/app/interface/main/creative/model/search"
  17. "go-common/app/interface/main/creative/model/watermark"
  18. artmdl "go-common/app/interface/openplatform/article/model"
  19. "go-common/library/ecode"
  20. "go-common/library/log"
  21. bm "go-common/library/net/http/blademaster"
  22. "go-common/library/net/metadata"
  23. "go-common/library/sync/errgroup"
  24. "strconv"
  25. "strings"
  26. "time"
  27. )
  28. func appIndex(c *bm.Context) {
  29. var (
  30. err error
  31. rec *elec.RecentElecList
  32. recList []*elec.RecentElec
  33. stat *data.Stat
  34. archives []*archive.OldArchiveVideoAudit
  35. arcs *search.Result
  36. replies *search.Replies
  37. elecStat *elec.UserState
  38. dataStat *data.AppStatList
  39. topBanners, academyBanners []*resMdl.Banner
  40. portal []*app.Portal
  41. topMsgs []*message.Message
  42. appTasks *newcomer.AppIndexNewcomer
  43. artStat artmdl.UpStat
  44. artAuthor, build, coop int
  45. g = &errgroup.Group{}
  46. ctx = context.TODO()
  47. )
  48. req := c.Request
  49. header := c.Request.Header
  50. params := req.Form
  51. ip := metadata.String(c, metadata.RemoteIP)
  52. mobiApp := params.Get("mobi_app")
  53. device := params.Get("device")
  54. platStr := params.Get("platform")
  55. network := params.Get("network")
  56. buvid := header.Get("Buvid")
  57. adExtra := params.Get("ad_extra")
  58. if coop, _ = strconv.Atoi(params.Get("coop")); coop > 0 {
  59. coop = 1
  60. }
  61. if build, err = strconv.Atoi(params.Get("build")); err != nil {
  62. c.JSON(nil, ecode.RequestErr)
  63. return
  64. }
  65. resID, _ := strconv.Atoi(params.Get("resource_id"))
  66. resMdlPlat := resMdl.Plat(mobiApp, device)
  67. ck := c.Request.Header.Get("cookie")
  68. ak := params.Get("access_key")
  69. tmidStr := params.Get("tmid")
  70. midStr, _ := c.Get("mid")
  71. mid := midStr.(int64)
  72. if mid <= 0 {
  73. c.JSON(nil, ecode.CreativeNotLogin)
  74. return
  75. }
  76. tmid, _ := strconv.ParseInt(tmidStr, 10, 64)
  77. if tmid > 0 && dataSvc.IsWhite(mid) {
  78. mid = tmid
  79. }
  80. g.Go(func() error {
  81. stat, _ = dataSvc.NewStat(ctx, mid, ip)
  82. if stat != nil {
  83. stat.Day30 = nil
  84. stat.Arcs = nil
  85. }
  86. return nil
  87. })
  88. g.Go(func() error {
  89. if arcs, err = arcSvc.Archives(ctx, mid, 0, "", "", "is_pubing,pubed,not_pubed", ip, 1, 2, coop); err == nil && arcs.OldArchives != nil {
  90. archives = arcs.OldArchives
  91. } else {
  92. archives = make([]*archive.OldArchiveVideoAudit, 0)
  93. }
  94. return nil
  95. })
  96. g.Go(func() error {
  97. replies, _ = replySvc.AppIndexReplies(ctx, ak, ck, mid, 0, 0, 0, search.All, resMdlPlat, "", "", "", ip, 1, 10)
  98. if replies == nil {
  99. replies = &search.Replies{}
  100. }
  101. return nil
  102. })
  103. g.Go(func() error {
  104. elecStat, _ = elecSvc.UserState(ctx, mid, ip, ak, ck)
  105. if elecStat != nil && elecStat.State == "2" {
  106. rec, _ = elecSvc.RecentElec(ctx, mid, 1, 2, ip)
  107. if rec != nil {
  108. recList = rec.List
  109. }
  110. }
  111. return nil
  112. })
  113. g.Go(func() error {
  114. academyBanners, _ = resSvc.AcademyBanner(ctx, mobiApp, device, network, metadata.String(c, metadata.RemoteIP), buvid, adExtra, build, resID, resMdlPlat, mid, false)
  115. return nil
  116. })
  117. g.Go(func() error {
  118. topBanners, _ = resSvc.TopBanner(ctx, mobiApp, device, network, metadata.String(c, metadata.RemoteIP), buvid, adExtra, build, resID, resMdlPlat, mid, false)
  119. isAuthor, _ := artSvc.IsAuthor(ctx, mid, ip)
  120. if isAuthor {
  121. artAuthor = 1
  122. } else {
  123. artAuthor = 0
  124. }
  125. portal, _ = appSvc.Portals(ctx, mid, artAuthor, build, app.PortalIntro, platStr, resMdlPlat)
  126. dataStat, _ = dataSvc.AppStat(ctx, mid)
  127. if platStr == "android" && build < 510007 {
  128. dataStat.Show = 0 // android < 510007 close
  129. }
  130. return nil
  131. })
  132. g.Go(func() error {
  133. artStat, _ = artSvc.ArticleStat(ctx, mid, ip)
  134. return nil
  135. })
  136. g.Go(func() error {
  137. topMsgs, _ = appSvc.TopMsg(ctx, mid, build, platStr, mobiApp, ak, ck, ip)
  138. return nil
  139. })
  140. g.Go(func() error {
  141. appTasks, _ = newcomerSvc.AppIndexNewcomer(ctx, mid, platStr)
  142. return nil
  143. })
  144. g.Wait()
  145. up := &app.Up{
  146. Art: artAuthor,
  147. }
  148. if len(archives) > 0 {
  149. up.Arc = 1
  150. }
  151. c.JSON(map[string]interface{}{
  152. "stat": stat,
  153. "tasks": appTasks,
  154. "archives": archives,
  155. "replies": replies,
  156. "user_elec": elecStat,
  157. "recent_elec_rank": recList,
  158. "banner": topBanners,
  159. "aca_banner": academyBanners,
  160. "portal_list": portal,
  161. "data_stat": dataStat,
  162. "art_stat": artStat,
  163. "up": up,
  164. "tip": operSvc.NoticeStr,
  165. "top_acts": arcSvc.TopAct(),
  166. "top_msgs": topMsgs,
  167. "block_intros": appSvc.BlockIntros(build, platStr),
  168. }, nil)
  169. }
  170. func appArcView(c *bm.Context) {
  171. params := c.Request.Form
  172. aidStr := params.Get("aid")
  173. lang := params.Get("lang")
  174. ip := metadata.String(c, metadata.RemoteIP)
  175. ck := c.Request.Header.Get("cookie")
  176. ak := params.Get("access_key")
  177. buildStr := params.Get("build")
  178. build, _ := strconv.Atoi(buildStr)
  179. mobiApp := params.Get("mobi_app")
  180. plat := params.Get("platform")
  181. // check user
  182. midStr, _ := c.Get("mid")
  183. mid := midStr.(int64)
  184. if mid <= 0 {
  185. c.JSON(nil, ecode.CreativeNotLogin)
  186. return
  187. }
  188. // check params
  189. aid, err := strconv.ParseInt(aidStr, 10, 64)
  190. if err != nil {
  191. log.Error("strconv.ParseInt(%s) error(%v)", aidStr, err)
  192. c.JSON(nil, ecode.RequestErr)
  193. return
  194. }
  195. var (
  196. arc *archive.Archive
  197. av *archive.ArcVideo
  198. video []*archive.Video
  199. white int
  200. elecStat *elec.UserState
  201. elecArc *elec.ArcState
  202. activities []*activity.Activity
  203. appFmt []*archive.AppFormat
  204. mf *account.MyInfo
  205. wm *watermark.Watermark
  206. g = &errgroup.Group{}
  207. ctx = context.TODO()
  208. faqs = make(map[string]*faq.Faq)
  209. lotteryCheck, lotteryBind bool
  210. recFriends []*accmdl.Friend
  211. )
  212. g.Go(func() error {
  213. if av, err = arcSvc.View(ctx, mid, aid, ip, plat); err == nil && av != nil {
  214. arc = av.Archive
  215. video = av.Videos
  216. if (mobiApp == "android" && build < 511001) || (mobiApp == "ios" && build < 6011) {
  217. av.Archive.Desc = archive.ShortDesc(av.Archive.Desc)
  218. }
  219. activities = arcSvc.Activities(ctx)
  220. if arc.MissionID > 0 {
  221. protectTagBeforeMission(ctx, arc, plat, build)
  222. actInList := false
  223. for _, v := range activities {
  224. if v.ID == arc.MissionID {
  225. actInList = true
  226. break
  227. }
  228. }
  229. if !actInList {
  230. activities = append(activities, &activity.Activity{
  231. ID: arc.MissionID,
  232. Name: arc.MissionName,
  233. })
  234. }
  235. }
  236. }
  237. return nil
  238. })
  239. g.Go(func() error {
  240. elecStat, _ = elecSvc.UserState(ctx, mid, ip, ak, ck)
  241. return nil
  242. })
  243. g.Go(func() error {
  244. elecArc, _ = elecSvc.ArchiveState(ctx, aid, mid, ip)
  245. if elecArc == nil {
  246. elecArc = &elec.ArcState{}
  247. }
  248. return nil
  249. })
  250. g.Go(func() error {
  251. appFmt, _ = arcSvc.AppFormats(ctx)
  252. return nil
  253. })
  254. g.Go(func() error {
  255. mf, _ = accSvc.MyInfo(ctx, mid, ip, time.Now())
  256. _, white = whiteSvc.UploadInfoForMainApp(mf, plat, mid)
  257. return nil
  258. })
  259. g.Go(func() error {
  260. wm, _ = wmSvc.WaterMark(ctx, mid)
  261. return nil
  262. })
  263. g.Go(func() error {
  264. faqs = faqSvc.Pre(ctx)
  265. return nil
  266. })
  267. g.Go(func() error {
  268. lotteryCheck, _ = dymcSvc.LotteryUserCheck(ctx, mid)
  269. return nil
  270. })
  271. g.Go(func() error {
  272. lotteryBind, _ = dymcSvc.LotteryNotice(ctx, aid, mid)
  273. return nil
  274. })
  275. g.Go(func() error {
  276. recFriends, _ = accSvc.RecFollows(ctx, mid)
  277. return nil
  278. })
  279. g.Wait()
  280. if arc == nil {
  281. c.JSON(nil, ecode.NothingFound)
  282. return
  283. }
  284. c.JSON(map[string]interface{}{
  285. "archive": arc,
  286. "videos": video,
  287. "user_elec": elecStat,
  288. "arc_elec": elecArc,
  289. "typelist": arcSvc.AppTypes(c, lang),
  290. "activities": activities,
  291. "desc_format": appFmt,
  292. "dpub": arcSvc.Dpub(),
  293. "rules": arcSvc.EditRules(c, white, arc.State, lotteryBind),
  294. "watermark": wm,
  295. "tip": vsSvc.AppManagerTip,
  296. "cus_tip": vsSvc.CusManagerTip,
  297. // common data
  298. "camera_cfg": appSvc.CameraCfg,
  299. "module_show": arcSvc.AppModuleShowMap(mid, lotteryCheck),
  300. "icons": appSvc.Icons(),
  301. "faqs": faqs,
  302. "rec_friends": recFriends,
  303. }, nil)
  304. }
  305. func appArcDel(c *bm.Context) {
  306. params := c.Request.Form
  307. aidStr := params.Get("aid")
  308. ip := metadata.String(c, metadata.RemoteIP)
  309. // check user
  310. midStr, _ := c.Get("mid")
  311. mid := midStr.(int64)
  312. if mid <= 0 {
  313. c.JSON(nil, ecode.CreativeNotLogin)
  314. return
  315. }
  316. // check params
  317. aid, err := strconv.ParseInt(aidStr, 10, 64)
  318. if err != nil {
  319. log.Error("strconv.ParseInt(%s) error(%v)", aidStr, err)
  320. c.JSON(nil, ecode.RequestErr)
  321. return
  322. }
  323. // del
  324. c.JSON(nil, arcSvc.Del(c, mid, aid, ip))
  325. }
  326. func appArchives(c *bm.Context) {
  327. params := c.Request.Form
  328. pageStr := params.Get("pn")
  329. psStr := params.Get("ps")
  330. order := params.Get("order")
  331. tidStr := params.Get("tid")
  332. kw := params.Get("keyword")
  333. class := params.Get("class")
  334. ip := metadata.String(c, metadata.RemoteIP)
  335. var (
  336. pn, ps, coop int
  337. mid, tid int64
  338. )
  339. midStr, _ := c.Get("mid")
  340. if mid = midStr.(int64); mid < 0 {
  341. c.JSON(nil, ecode.CreativeNotLogin)
  342. return
  343. }
  344. if pn, _ = strconv.Atoi(pageStr); pn <= 0 {
  345. pn = 1
  346. }
  347. if ps, _ = strconv.Atoi(psStr); ps <= 0 || ps > 50 {
  348. ps = 10
  349. }
  350. if tid, _ = strconv.ParseInt(tidStr, 10, 16); tid < 0 {
  351. tid = 0
  352. }
  353. if coop, _ = strconv.Atoi(params.Get("coop")); coop > 0 {
  354. coop = 1
  355. }
  356. arc, err := arcSvc.Archives(c, mid, int16(tid), kw, order, class, ip, pn, ps, coop)
  357. if err != nil {
  358. c.JSON(nil, err)
  359. return
  360. }
  361. if arc != nil {
  362. arc.Tip = operSvc.CreativeStr
  363. }
  364. c.JSON(arc, nil)
  365. }
  366. func appReplyList(c *bm.Context) {
  367. req := c.Request
  368. params := req.Form
  369. midStr, _ := c.Get("mid")
  370. mid := midStr.(int64)
  371. if mid <= 0 {
  372. c.JSON(nil, ecode.CreativeNotLogin)
  373. return
  374. }
  375. isReport, err := strconv.Atoi(params.Get("is_report"))
  376. if err != nil {
  377. isReport = 0
  378. }
  379. tp, err := strconv.Atoi(params.Get("type"))
  380. if err != nil {
  381. tp = 1
  382. }
  383. oid, err := strconv.ParseInt(params.Get("oid"), 10, 64)
  384. if err != nil {
  385. oid = 0
  386. }
  387. pn, err := strconv.Atoi(params.Get("pn"))
  388. if err != nil || pn < 1 {
  389. pn = 1
  390. }
  391. ps, err := strconv.Atoi(params.Get("ps"))
  392. if err != nil || ps <= 10 || ps > 100 {
  393. ps = 10
  394. }
  395. resMdlPlat := resMdl.Plat(params.Get("mobi_app"), params.Get("device"))
  396. p := &search.ReplyParam{
  397. Ak: params.Get("access_key"),
  398. Ck: c.Request.Header.Get("cookie"),
  399. OMID: mid,
  400. OID: oid,
  401. Pn: pn,
  402. Ps: ps,
  403. IP: metadata.String(c, metadata.RemoteIP),
  404. IsReport: int8(isReport),
  405. Type: int8(tp),
  406. FilterCtime: params.Get("filter"),
  407. Kw: params.Get("keyword"),
  408. Order: params.Get("order"),
  409. ResMdlPlat: resMdlPlat,
  410. }
  411. replies, err := replySvc.Replies(c, p)
  412. if err != nil {
  413. c.JSON(nil, err)
  414. return
  415. }
  416. c.JSONMap(map[string]interface{}{
  417. "pager": map[string]int{
  418. "current": pn,
  419. "size": ps,
  420. "total": replies.Total,
  421. },
  422. "data": replies.Result,
  423. }, nil)
  424. }
  425. func appUpInfo(c *bm.Context) {
  426. ip := metadata.String(c, metadata.RemoteIP)
  427. params := c.Request.Form
  428. tmidStr := params.Get("tmid")
  429. // check user
  430. midStr, _ := c.Get("mid")
  431. mid := midStr.(int64)
  432. if mid <= 0 {
  433. c.JSON(nil, ecode.CreativeNotLogin)
  434. return
  435. }
  436. tmid, _ := strconv.ParseInt(tmidStr, 10, 64)
  437. if tmid > 0 && dataSvc.IsWhite(mid) {
  438. mid = tmid
  439. }
  440. v, err := accSvc.UpInfo(c, mid, ip)
  441. if err != nil {
  442. log.Error("memberSvc.UpInfo(%d) error(%v)", mid, err)
  443. c.JSON(nil, err)
  444. return
  445. }
  446. c.JSON(v, nil)
  447. }
  448. func appPre(c *bm.Context) {
  449. req := c.Request
  450. params := req.Form
  451. ip := metadata.String(c, metadata.RemoteIP)
  452. buildStr := params.Get("build")
  453. platStr := params.Get("platform")
  454. tmidStr := params.Get("tmid")
  455. device := params.Get("device")
  456. mobiApp := params.Get("mobi_app")
  457. resMdlPlat := resMdl.Plat(mobiApp, device)
  458. midStr, _ := c.Get("mid")
  459. mid := midStr.(int64)
  460. if mid <= 0 {
  461. c.JSON(nil, ecode.CreativeNotLogin)
  462. return
  463. }
  464. tmid, _ := strconv.ParseInt(tmidStr, 10, 64)
  465. if tmid > 0 && dataSvc.IsWhite(mid) {
  466. mid = tmid
  467. }
  468. var (
  469. err error
  470. up *account.UpInfo
  471. portal []*app.Portal
  472. build, artAuthor, showCre int
  473. g = &errgroup.Group{}
  474. ctx = context.TODO()
  475. academyIntro = &app.AcademyIntro{}
  476. actIntro = &app.ActIntro{}
  477. mf *account.MyInfo
  478. )
  479. if buildStr != "" {
  480. build, err = strconv.Atoi(buildStr)
  481. if err != nil {
  482. log.Error("strconv.Atoi(%s) error(%v)", buildStr, err)
  483. c.JSON(nil, ecode.RequestErr)
  484. return
  485. }
  486. }
  487. g.Go(func() error {
  488. mf, err = accSvc.MyInfo(ctx, mid, ip, time.Now())
  489. if err != nil {
  490. log.Info("accSvc.MyInfo (%d) err(%v)", mid, err)
  491. }
  492. return nil
  493. })
  494. g.Go(func() error {
  495. up, _ = accSvc.UpInfo(ctx, mid, ip)
  496. if up != nil && account.IsUper(up) {
  497. showCre = 1
  498. }
  499. if showCre != 1 {
  500. if isAuthor, err := upSvc.ArcUpInfo(ctx, mid, ip); err == nil && isAuthor == 1 {
  501. showCre = 1
  502. }
  503. }
  504. return nil
  505. })
  506. g.Go(func() error {
  507. isAuthor, _ := artSvc.IsAuthor(ctx, mid, ip)
  508. if isAuthor {
  509. artAuthor = 1
  510. } else {
  511. artAuthor = 0
  512. }
  513. portal, _ = appSvc.Portals(ctx, mid, artAuthor, build, app.PortalNotice, platStr, resMdlPlat)
  514. return nil
  515. })
  516. g.Wait()
  517. entranceGuidance := "成为UP主,分享你的创作"
  518. if platStr == "android" {
  519. entranceGuidance = "投稿"
  520. }
  521. if showCre == 0 {
  522. ccURL := appSvc.H5Page().CreativeCollege
  523. if (build >= 5350000 && platStr == "android") || (build >= 8240 && platStr == "ios") {
  524. ccURL = fmt.Sprintf("%s?from=my&navhide=1", ccURL)
  525. } else {
  526. ccURL = fmt.Sprintf("%s?from=my", ccURL)
  527. }
  528. academyIntro = &app.AcademyIntro{
  529. Show: 1,
  530. Title: "创作学院",
  531. URL: ccURL,
  532. }
  533. }
  534. uploadinfo, _ := whiteSvc.UploadInfoForMainApp(mf, platStr, mid)
  535. if uploadinfo["info"] == 1 {
  536. actIntro = &app.ActIntro{
  537. Show: 1,
  538. Title: "热门活动",
  539. URL: appSvc.H5Page().HotAct,
  540. }
  541. }
  542. c.JSON(map[string]interface{}{
  543. "creative": map[string]interface{}{
  544. "portal_list": portal,
  545. "show": showCre,
  546. },
  547. "entrance": map[string]interface{}{
  548. "guidance": entranceGuidance,
  549. "show": 1,
  550. },
  551. "academy": academyIntro,
  552. "act": actIntro,
  553. }, nil)
  554. }
  555. func appBanner(c *bm.Context) {
  556. params := c.Request.Form
  557. psStr := params.Get("ps")
  558. pnStr := params.Get("pn")
  559. tp := params.Get("type")
  560. _, ok := c.Get("mid")
  561. if !ok {
  562. c.JSON(nil, ecode.CreativeNotLogin)
  563. return
  564. }
  565. pn, err := strconv.Atoi(pnStr)
  566. if err != nil || pn <= 0 {
  567. pn = 1
  568. }
  569. ps, err := strconv.Atoi(psStr)
  570. if err != nil || ps <= 0 || ps > 20 {
  571. ps = 20
  572. }
  573. oper, err := operSvc.AppOperationList(c, pn, ps, tp)
  574. if err != nil {
  575. c.JSON(nil, err)
  576. return
  577. }
  578. c.JSON(oper, nil)
  579. }
  580. func appNewPre(c *bm.Context) {
  581. req := c.Request
  582. params := req.Form
  583. ip := metadata.String(c, metadata.RemoteIP)
  584. midStr := params.Get("mid")
  585. tmidStr := params.Get("tmid")
  586. var (
  587. err error
  588. mid, tmid int64
  589. up *account.UpInfo
  590. isUp, showCreative, showAcademy int
  591. )
  592. if mid, err = strconv.ParseInt(midStr, 10, 64); err != nil {
  593. log.Error("strconv.ParseInt midStr(%s) error(%v)", midStr, err)
  594. c.JSON(nil, err)
  595. return
  596. }
  597. if mid <= 0 {
  598. c.JSON(nil, ecode.CreativeNotLogin)
  599. return
  600. }
  601. if tmidStr != "" {
  602. if tmid, err = strconv.ParseInt(tmidStr, 10, 64); err != nil {
  603. log.Error("strconv.ParseInt tmidStr(%s) error(%v)", tmidStr, err)
  604. c.JSON(nil, err)
  605. return
  606. }
  607. if tmid > 0 && dataSvc.IsWhite(mid) {
  608. mid = tmid
  609. }
  610. }
  611. up, _ = accSvc.UpInfo(c, mid, ip)
  612. if up != nil && account.IsUper(up) {
  613. isUp = 1
  614. }
  615. if isUp != 1 {
  616. if isAuthor, err := upSvc.ArcUpInfo(c, mid, ip); err == nil && isAuthor == 1 {
  617. isUp = 1
  618. }
  619. }
  620. if isUp == 0 {
  621. showAcademy = 1
  622. }
  623. if dataSvc.IsForbidVideoup(mid) {
  624. showCreative = 0
  625. } else {
  626. showCreative = 1
  627. }
  628. c.JSON(map[string]interface{}{
  629. "academy": showAcademy,
  630. "show": showCreative,
  631. "is_up": isUp,
  632. }, nil)
  633. }
  634. func protectTagBeforeMission(c context.Context, arc *archive.Archive, plat string, build int) {
  635. if ((plat == "android" && build < 5260000) || (plat == "ios" && build <= 6680)) && len(arc.Tag) > 0 {
  636. var mp *activity.Protocol
  637. mp, _ = arcSvc.MissionProtocol(c, arc.MissionID)
  638. if len(mp.Tags) > 0 {
  639. sTags := strings.Split(mp.Tags, ",")
  640. missionTagMap := make(map[string]int8)
  641. for _, tag := range sTags {
  642. missionTagMap[tag] = 0
  643. }
  644. arcTags := strings.Split(arc.Tag, ",")
  645. var splitedArcTags []string
  646. for _, arcTag := range arcTags {
  647. if _, ok := missionTagMap[arcTag]; !ok {
  648. splitedArcTags = append(splitedArcTags, arcTag)
  649. }
  650. }
  651. arc.Tag = strings.Join(splitedArcTags, ",")
  652. }
  653. }
  654. }
  655. func appSimpleArcVideos(c *bm.Context) {
  656. params := c.Request.Form
  657. pageStr := params.Get("pn")
  658. psStr := params.Get("ps")
  659. order := params.Get("order")
  660. kw := params.Get("keyword")
  661. class := params.Get("class")
  662. ip := metadata.String(c, metadata.RemoteIP)
  663. var (
  664. pn, ps, tid int
  665. )
  666. midStr, _ := c.Get("mid")
  667. mid := midStr.(int64)
  668. if mid <= 0 {
  669. c.JSON(nil, ecode.CreativeNotLogin)
  670. return
  671. }
  672. if pn, _ = strconv.Atoi(pageStr); pn <= 0 {
  673. pn = 1
  674. }
  675. if ps, _ = strconv.Atoi(psStr); ps <= 0 || ps > 50 {
  676. ps = 10
  677. }
  678. if tid, _ = strconv.Atoi(params.Get("tid")); tid <= 0 {
  679. tid = 0
  680. }
  681. mid = converTmid(c, mid)
  682. savs, err := arcSvc.SimpleArcVideos(c, mid, int16(tid), kw, order, class, ip, pn, ps, 0)
  683. if err != nil {
  684. c.JSON(nil, err)
  685. return
  686. }
  687. c.JSON(savs, nil)
  688. }
  689. func appTaskBind(c *bm.Context) {
  690. // check user
  691. midI, ok := c.Get("mid")
  692. if !ok {
  693. c.JSON(nil, ecode.CreativeNotLogin)
  694. return
  695. }
  696. mid, _ := midI.(int64)
  697. // check white list
  698. //if task := whiteSvc.TaskWhiteList(mid); task != 1 {
  699. // c.JSON(nil, ecode.RequestErr)
  700. // return
  701. //}
  702. id, err := newcomerSvc.TaskBind(c, mid)
  703. if err != nil {
  704. c.JSON(nil, err)
  705. return
  706. }
  707. c.JSON(map[string]interface{}{
  708. "id": id,
  709. }, nil)
  710. }