api.go 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390
  1. package archive
  2. import (
  3. "context"
  4. "fmt"
  5. "net/http"
  6. "net/url"
  7. "sort"
  8. "strconv"
  9. "strings"
  10. "time"
  11. "go-common/app/interface/main/creative/conf"
  12. "go-common/app/interface/main/creative/dao/tool"
  13. "go-common/app/interface/main/creative/model/archive"
  14. "go-common/library/ecode"
  15. "go-common/library/log"
  16. "go-common/library/xstr"
  17. )
  18. const (
  19. _view = "/videoup/view"
  20. _views = "/videoup/views"
  21. _del = "/videoup/del"
  22. _video = "/videoup/cid"
  23. _archives = "/videoup/up/archives"
  24. _descFormat = "/videoup/desc/format"
  25. _simpleVideos = "/videoup/simplevideos"
  26. _simpleArchive = "/videoup/simplearchive"
  27. _videoJam = "/videoup/video/jam"
  28. _upSpecial = "/x/internal/uper/special"
  29. _flowjudge = "/videoup/flow/list/judge"
  30. _staffApplies = "/videoup/staff/apply/filter"
  31. _staffApply = "/videoup/staff/apply/submit"
  32. _staffCheck = "/videoup/staff/mid/applys"
  33. )
  34. // SimpleArchive fn
  35. func (d *Dao) SimpleArchive(c context.Context, aid int64, ip string) (sa *archive.SpArchive, err error) {
  36. params := url.Values{}
  37. params.Set("aid", strconv.FormatInt(aid, 10))
  38. var res struct {
  39. Code int `json:"code"`
  40. Data *archive.SpArchive `json:"data"`
  41. }
  42. if err = d.client.Get(c, d.simpleArchive, ip, params, &res); err != nil {
  43. log.Error("archive.simpleArchive url(%s) mid(%d) error(%v)", d.simpleArchive+"?"+params.Encode(), aid, err)
  44. err = ecode.CreativeArchiveAPIErr
  45. return
  46. }
  47. if res.Code != 0 {
  48. log.Error("archive.simpleArchive url(%s) mid(%d) res(%v)", d.simpleArchive+"?"+params.Encode(), aid, res)
  49. err = ecode.Int(res.Code)
  50. return
  51. }
  52. if res.Data == nil {
  53. log.Error("archive.simpleArchive url(%s) aid(%d) res(%v)", d.simpleVideos+"?"+params.Encode(), aid, res)
  54. return
  55. }
  56. sa = res.Data
  57. return
  58. }
  59. // SimpleVideos fn
  60. func (d *Dao) SimpleVideos(c context.Context, aid int64, ip string) (vs []*archive.SpVideo, err error) {
  61. params := url.Values{}
  62. params.Set("aid", strconv.FormatInt(aid, 10))
  63. var res struct {
  64. Code int `json:"code"`
  65. Data []*archive.SpVideo `json:"data"`
  66. }
  67. if err = d.client.Get(c, d.simpleVideos, ip, params, &res); err != nil {
  68. log.Error("archive.simpleVideos url(%s) mid(%d) error(%v)", d.simpleVideos+"?"+params.Encode(), aid, err)
  69. err = ecode.CreativeArchiveAPIErr
  70. return
  71. }
  72. if res.Code != 0 {
  73. log.Error("archive.simpleVideos url(%s) aid(%d) res(%v)", d.simpleVideos+"?"+params.Encode(), aid, res)
  74. err = ecode.Int(res.Code)
  75. return
  76. }
  77. if res.Data == nil {
  78. log.Error("archive.simpleVideos url(%s) aid(%d) res(%v)", d.simpleVideos+"?"+params.Encode(), aid, res)
  79. return
  80. }
  81. vs = res.Data
  82. sort.Slice(vs, func(i, j int) bool {
  83. return vs[i].Index <= vs[j].Index
  84. })
  85. return
  86. }
  87. // View get archive
  88. func (d *Dao) View(c context.Context, mid, aid int64, ip string, needPOI, needVote int) (av *archive.ArcVideo, err error) {
  89. params := url.Values{}
  90. params.Set("mid", strconv.FormatInt(mid, 10))
  91. params.Set("aid", strconv.FormatInt(aid, 10))
  92. params.Set("need_poi", strconv.Itoa(needPOI))
  93. params.Set("need_vote", strconv.Itoa(needVote))
  94. var res struct {
  95. Code int `json:"code"`
  96. Data *archive.ArcVideo `json:"data"`
  97. }
  98. if err = d.client.Get(c, d.view, ip, params, &res); err != nil {
  99. log.Error("archive.view url(%s) mid(%d) error(%v)", d.view+"?"+params.Encode(), mid, err)
  100. err = ecode.CreativeArchiveAPIErr
  101. return
  102. }
  103. if res.Code != 0 {
  104. log.Error("archive.view url(%s) mid(%d) res(%v)", d.view+"?"+params.Encode(), mid, res)
  105. err = ecode.Int(res.Code)
  106. return
  107. }
  108. if res.Data.Archive == nil {
  109. log.Error("archive.view url(%s) mid(%d) res(%v)", d.view+"?"+params.Encode(), mid, res)
  110. return
  111. }
  112. if res.Data.Archive.Staffs == nil {
  113. res.Data.Archive.Staffs = []*archive.StaffView{}
  114. }
  115. res.Data.Archive.StateDesc = d.c.StatDesc(int(res.Data.Archive.State))
  116. res.Data.Archive.StatePanel = archive.StatePanel(res.Data.Archive.State)
  117. av = res.Data
  118. return
  119. }
  120. // Views get archives
  121. func (d *Dao) Views(c context.Context, mid int64, aids []int64, ip string) (avm map[int64]*archive.ArcVideo, err error) {
  122. params := url.Values{}
  123. params.Set("aids", xstr.JoinInts(aids))
  124. params.Set("mid", strconv.FormatInt(mid, 10))
  125. var res struct {
  126. Code int `json:"code"`
  127. Data map[string]*archive.ArcVideo `json:"data"`
  128. }
  129. if err = d.client.Get(c, d.views, ip, params, &res); err != nil {
  130. log.Error("archive.views url(%s) mid(%d) error(%v)", d.views+"?"+params.Encode(), mid, err)
  131. err = ecode.CreativeArchiveAPIErr
  132. return
  133. }
  134. if res.Code != 0 {
  135. log.Error("archive.views url(%s) mid(%d) res(%v)", d.views+"?"+params.Encode(), mid, res)
  136. err = ecode.Int(res.Code)
  137. return
  138. }
  139. avm = map[int64]*archive.ArcVideo{}
  140. for aidStr, av := range res.Data {
  141. var err error
  142. aid, err := strconv.ParseInt(aidStr, 10, 64)
  143. if err != nil {
  144. log.Error("strconv.ParseInt(%s) error(%v)", aidStr, err)
  145. continue
  146. }
  147. av.Archive.StateDesc = d.c.StatDesc(int(av.Archive.State))
  148. av.Archive.StatePanel = archive.StatePanel(av.Archive.State)
  149. avm[aid] = av
  150. }
  151. return
  152. }
  153. // Del delete archive.
  154. func (d *Dao) Del(c context.Context, mid, aid int64, ip string) (err error) {
  155. params := url.Values{}
  156. params.Set("appkey", conf.Conf.App.Key)
  157. params.Set("appsecret", conf.Conf.App.Secret)
  158. params.Set("ts", strconv.FormatInt(time.Now().Unix(), 10))
  159. // uri
  160. var (
  161. query, _ = tool.Sign(params)
  162. uri = d.del + "?" + query
  163. )
  164. // new request
  165. req, err := http.NewRequest("POST", uri, strings.NewReader(fmt.Sprintf(`{"mid":%d,"aid":%d}`, mid, aid)))
  166. if err != nil {
  167. log.Error("http.NewRequest(%s) error(%v); mid(%d), aid(%d), ip(%s)", d.del, err, mid, aid, ip)
  168. err = ecode.CreativeArchiveAPIErr
  169. return
  170. }
  171. req.Header.Set("X-BACKEND-BILI-REAL-IP", ip)
  172. var res struct {
  173. Code int `json:"code"`
  174. }
  175. if err = d.client.Do(c, req, &res); err != nil {
  176. log.Error("d.client.Do(%s) error(%v); mid(%d), aid(%d), ip(%s)", d.del, err, mid, aid, ip)
  177. err = ecode.CreativeArchiveAPIErr
  178. return
  179. }
  180. if res.Code != 0 {
  181. err = ecode.Int(res.Code)
  182. log.Error("del archive url(%s) res(%v); mid(%d), aid(%d), ip(%s)", d.del, res, mid, aid, ip)
  183. return
  184. }
  185. return
  186. }
  187. // VideoByCid get videos by cids.
  188. func (d *Dao) VideoByCid(c context.Context, cid int64, ip string) (v *archive.Video, err error) {
  189. params := url.Values{}
  190. params.Set("cid", strconv.FormatInt(cid, 10))
  191. var res struct {
  192. Code int `json:"code"`
  193. Data *archive.Video `json:"data"`
  194. }
  195. if err = d.client.Get(c, d.video, ip, params, &res); err != nil {
  196. log.Error("VideoByCid cidURI(%s) error(%v)", d.video+"?"+params.Encode(), err)
  197. return
  198. }
  199. if res.Code != 0 {
  200. err = ecode.Int(res.Code)
  201. log.Error("VideoByCid cidURI(%s) Code=(%d)", d.video+"?"+params.Encode(), res.Code)
  202. return
  203. }
  204. v = res.Data
  205. return
  206. }
  207. // UpArchives get archives by mid.
  208. func (d *Dao) UpArchives(c context.Context, mid, pn, ps, group int64, ip string) (aids []int64, count int64, err error) {
  209. params := url.Values{}
  210. params.Set("mid", strconv.FormatInt(mid, 10))
  211. params.Set("pn", strconv.FormatInt(pn, 10))
  212. params.Set("ps", strconv.FormatInt(ps, 10))
  213. params.Set("group", strconv.FormatInt(mid, 10)) //0:全部稿件;1:开放稿件;2:未开放稿件
  214. var res struct {
  215. Code int `json:"code"`
  216. Data struct {
  217. Aids []int64 `json:"aids"`
  218. Count int64 `json:"count"`
  219. } `json:"data"`
  220. }
  221. if err = d.client.Get(c, d.upArchives, ip, params, &res); err != nil {
  222. log.Error("upArchives URI(%s) error(%v)", d.upArchives+"?"+params.Encode(), err)
  223. err = ecode.CreativeArchiveAPIErr
  224. return
  225. }
  226. if res.Code != 0 {
  227. log.Error("upArchives URI(%s) Code=(%d)", d.upArchives+"?"+params.Encode(), res.Code)
  228. err = ecode.Int(res.Code)
  229. return
  230. }
  231. aids = res.Data.Aids
  232. count = res.Data.Count
  233. return
  234. }
  235. // DescFormat get desc format by typeid and copyright
  236. func (d *Dao) DescFormat(c context.Context) (descs []*archive.DescFormat, err error) {
  237. params := url.Values{}
  238. var res struct {
  239. Code int `json:"code"`
  240. Message string `json:"message"`
  241. Data []*archive.DescFormat `json:"data"`
  242. }
  243. descs = []*archive.DescFormat{}
  244. if err = d.client.Get(c, d.descFormat, "", params, &res); err != nil {
  245. log.Error("videoup descFormat error(%v) | descFormat(%s) params(%v)", err, d.descFormat+"?"+params.Encode(), params)
  246. err = ecode.CreativeArchiveAPIErr
  247. return
  248. }
  249. if res.Code != 0 {
  250. log.Error("videoup descFormat res.Code(%d) | descFormat(%s)params(%v) res(%v)", res.Code, d.descFormat+"?"+params.Encode(), params, res)
  251. err = ecode.Int(res.Code)
  252. return
  253. }
  254. descs = res.Data
  255. log.Info("res.Code(%d) descFormat(%s) params(%v)", res.Code, d.descFormat+"?"+params.Encode(), params)
  256. return
  257. }
  258. // VideoJam get video-check traffic jam level
  259. func (d *Dao) VideoJam(c context.Context, ip string) (level int8, err error) {
  260. params := url.Values{}
  261. var res struct {
  262. Code int `json:"code"`
  263. Data *struct {
  264. Level int8 `json:"level"`
  265. } `json:"data"`
  266. }
  267. if err = d.client.Get(c, d.videoJam, ip, params, &res); err != nil {
  268. log.Error("archive.VideoJam url(%s) error(%v)", d.videoJam+"?"+params.Encode(), err)
  269. err = ecode.CreativeArchiveAPIErr
  270. return
  271. }
  272. if res.Code != 0 {
  273. log.Error("archive.VideoJam url(%s) res(%v)", d.videoJam+"?"+params.Encode(), res)
  274. err = ecode.Int(res.Code)
  275. return
  276. }
  277. if res.Data == nil {
  278. log.Error("archive.VideoJam url(%s) res(%v)", d.videoJam+"?"+params.Encode(), res)
  279. return
  280. }
  281. level = res.Data.Level
  282. return
  283. }
  284. // FlowJudge fn
  285. func (d *Dao) FlowJudge(c context.Context, business, groupID int64, oids []int64) (hitOids []int64, err error) {
  286. params := url.Values{}
  287. params.Set("business", strconv.FormatInt(business, 10))
  288. params.Set("gid", strconv.FormatInt(groupID, 10))
  289. params.Set("oids", xstr.JoinInts(oids))
  290. var res struct {
  291. Code int `json:"code"`
  292. Message string `json:"message"`
  293. Data []int64 `json:"data"`
  294. }
  295. if err = d.client.Get(c, d.flowJudge, "", params, &res); err != nil {
  296. log.Error("archive.FlowJudge url(%s) error(%v)", d.upSpecialURL+"?"+params.Encode(), err)
  297. return
  298. }
  299. if res.Code != 0 {
  300. log.Error("FlowJudge api url(%s) res(%v) code(%d)", d.upSpecialURL, res, res.Code)
  301. err = ecode.CreativeArchiveAPIErr
  302. return
  303. }
  304. hitOids = res.Data
  305. return
  306. }
  307. // StaffApplies fn
  308. func (d *Dao) StaffApplies(c context.Context, staffMid int64, aids []int64) (apply []*archive.StaffApply, err error) {
  309. params := url.Values{}
  310. params.Set("mid", strconv.FormatInt(staffMid, 10))
  311. params.Set("aids", xstr.JoinInts(aids))
  312. var res struct {
  313. Code int `json:"code"`
  314. Message string `json:"message"`
  315. Data []*archive.StaffApply `json:"data"`
  316. }
  317. if err = d.client.Get(c, d.staffApplies, "", params, &res); err != nil {
  318. log.Error("archive.staffApplies url(%s) error(%v)", d.staffApplies+"?"+params.Encode(), err)
  319. return
  320. }
  321. if res.Code != 0 {
  322. log.Error("staffApplies api url(%s) res(%v) code(%d)", d.staffApplies, res, res.Code)
  323. err = ecode.CreativeArchiveAPIErr
  324. return
  325. }
  326. apply = res.Data
  327. return
  328. }
  329. // StaffMidValidate fn
  330. func (d *Dao) StaffMidValidate(c context.Context, mid int64) (data int, err error) {
  331. params := url.Values{}
  332. params.Set("mid", strconv.FormatInt(mid, 10))
  333. var res struct {
  334. Code int `json:"code"`
  335. Message string `json:"message"`
  336. Data int `json:"data"`
  337. }
  338. if err = d.client.Get(c, d.staffCheck, "", params, &res); err != nil {
  339. log.Error("archive.StaffMidValidate url(%s) error(%v)", d.staffCheck+"?"+params.Encode(), err)
  340. return
  341. }
  342. if res.Code != 0 {
  343. log.Error("StaffMidValidate api url(%s) res(%v) code(%d)", d.staffCheck, res, res.Code)
  344. err = ecode.Int(res.Code)
  345. return
  346. }
  347. data = res.Data
  348. return
  349. }
  350. // StaffApplySubmit fn
  351. func (d *Dao) StaffApplySubmit(c context.Context, id, aid, mid, state, atype int64, flagAddBlack, flagRefuse int) (err error) {
  352. params := url.Values{}
  353. params.Set("id", strconv.FormatInt(id, 10))
  354. params.Set("state", strconv.FormatInt(state, 10))
  355. params.Set("type", strconv.FormatInt(atype, 10))
  356. params.Set("apply_aid", strconv.FormatInt(aid, 10))
  357. params.Set("apply_staff_mid", strconv.FormatInt(mid, 10))
  358. params.Set("flag_add_black", strconv.Itoa(flagAddBlack))
  359. params.Set("flag_refuse", strconv.Itoa(flagRefuse))
  360. var res struct {
  361. Code int `json:"code"`
  362. Message string `json:"message"`
  363. }
  364. if err = d.client.Post(c, d.staffApply, "", params, &res); err != nil {
  365. log.Error("archive.StaffApplySubmit url(%s) error(%v)", d.staffApply+"?"+params.Encode(), err)
  366. return
  367. }
  368. if res.Code != 0 {
  369. log.Error("StaffApplySubmit api url(%s) res(%v) code(%d)", d.staffApply, res, res.Code)
  370. err = ecode.Int(res.Code)
  371. return
  372. }
  373. return
  374. }