workflow.go 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454
  1. package workflow
  2. import (
  3. "context"
  4. "encoding/json"
  5. "fmt"
  6. "net/url"
  7. "strconv"
  8. "go-common/app/interface/main/reply/conf"
  9. model "go-common/app/interface/main/reply/model/reply"
  10. "go-common/library/ecode"
  11. "go-common/library/log"
  12. bm "go-common/library/net/http/blademaster"
  13. "go-common/library/xstr"
  14. )
  15. const (
  16. workflowHost = "api.bilibili.co"
  17. _apiTopics = "http://matsuri.bilibili.co/activity/pages"
  18. _apiActivitySub = "http://matsuri.bilibili.co//activity/subject/url"
  19. _apiLiveActivity = "http://api.live.bilibili.co/comment/v1/relation/get_by_id"
  20. _apiNotice = "http://api.bilibili.co/x/internal/credit/publish/infos"
  21. _apiBan = "http://api.bilibili.co/x/internal/credit/blocked/infos"
  22. _apiCredit = "http://api.bilibili.co/x/internal/credit/blocked/cases"
  23. _apiLiveVideo = "http://api.vc.bilibili.co/clip/v1/video/detail"
  24. _apiLiveNotice = "http://api.vc.bilibili.co/news/v1/notice/info"
  25. _apiLivePicture = "http://api.vc.bilibili.co/link_draw/v1/doc/detail"
  26. _apiTopic = "http://matsuri.bilibili.co/activity/page/one/%d"
  27. _apiDynamic = "http://api.vc.bilibili.co/dynamic_repost/v0/dynamic_repost/ftch_rp_cont?dynamic_ids[]=%d"
  28. _apiHuoniao = "http://manga.bilibili.co/twirp/verify.v0.Verify/InfoC"
  29. // link
  30. _linkBan = "https://www.bilibili.com/blackroom/ban/%d"
  31. _linkNotice = "https://www.bilibili.com/blackroom/notice/%d"
  32. _linkCredit = "https://www.bilibili.com/judgement/case/%d"
  33. _linkLiveVideo = "http://vc.bilibili.com/video/%d"
  34. _linkLiveNotice = "http://link.bilibili.com/p/eden/news#/newsdetail?id=%d"
  35. _linkLivePicture = "http://h.bilibili.com/ywh/%d"
  36. _linkDynamic = "http://t.bilibili.com/%d"
  37. _urlLiveNotice = "http://api.vc.bilibili.co/news/v1/notice/info"
  38. _linkHuoniao = "http://manga.bilibili.com/m/detail/mc%d"
  39. )
  40. type result struct {
  41. Code int `json:"code"`
  42. Message string `json:"message"`
  43. Data struct {
  44. ChallengeNo int64 `json:"challengeNo"`
  45. }
  46. }
  47. // Dao dao.
  48. type Dao struct {
  49. httpClient *bm.Client
  50. }
  51. // New new a dao and return.
  52. func New(c *conf.Config) *Dao {
  53. d := &Dao{
  54. httpClient: bm.NewClient(c.HTTPClient),
  55. }
  56. return d
  57. }
  58. type extra struct {
  59. Like int `json:"like"`
  60. Link string `json:"link"`
  61. Title string `json:"title"`
  62. }
  63. func (dao *Dao) AddReport(c context.Context, oid int64, typ int8, typeid int32, rpid int64, score int, reason int8, reporter int64, reported int64, like int, content string, link string, title string) (err error) {
  64. var res result
  65. rid := "1"
  66. params := url.Values{}
  67. params.Add("business", "13")
  68. params.Add("fid", strconv.FormatInt(int64(typ), 10))
  69. if model.GetReportType(reason) == model.ReportStateNewTwo {
  70. rid = "2"
  71. }
  72. params.Add("rid", rid)
  73. params.Add("eid", strconv.FormatInt(int64(rpid), 10))
  74. params.Add("score", strconv.FormatInt(int64(score), 10))
  75. params.Add("tid", strconv.FormatInt(int64(reason), 10))
  76. params.Add("oid", strconv.FormatInt(int64(oid), 10))
  77. params.Add("mid", strconv.FormatInt(int64(reporter), 10))
  78. params.Add("business_typeid", strconv.FormatInt(int64(typeid), 10))
  79. params.Add("business_title", content)
  80. params.Add("business_mid", strconv.FormatInt(int64(reported), 10))
  81. var ex extra
  82. ex.Like = like
  83. ex.Link = link
  84. ex.Title = title
  85. businessExtra, _ := json.Marshal(&ex)
  86. params.Add("business_extra", string(businessExtra))
  87. url := fmt.Sprintf("http://%s/%s", workflowHost, "x/internal/workflow/appeal/v3/add")
  88. if err = dao.httpClient.Post(c, url, "", params, &res); err != nil {
  89. log.Error("AddReport url(%s,%s) error(%v)", url, params.Encode(), err)
  90. return
  91. }
  92. if res.Code != 0 {
  93. log.Error("AddReport url(%s,%s) error(%v)", url, params.Encode(), res.Code)
  94. err = ecode.Int(res.Code)
  95. return
  96. }
  97. return
  98. }
  99. // TopicsLink get topic info.
  100. func (d *Dao) TopicsLink(c context.Context, links map[int64]string, isTopic bool) (err error) {
  101. if len(links) == 0 {
  102. return
  103. }
  104. var res struct {
  105. Code int `json:"code"`
  106. Data *struct {
  107. List []struct {
  108. ID int64 `json:"id"`
  109. PCURL string `json:"pc_url"`
  110. H5URL string `json:"h5_url"`
  111. } `json:"list"`
  112. } `json:"data"`
  113. }
  114. var ids []int64
  115. for oid := range links {
  116. ids = append(ids, oid)
  117. }
  118. params := url.Values{}
  119. params.Set("pids", xstr.JoinInts(ids))
  120. params.Set("all", "isOne")
  121. if isTopic {
  122. params.Set("mold", "1")
  123. }
  124. if err = d.httpClient.Get(c, _apiTopics, "", params, &res); err != nil {
  125. log.Error("TopicsTitle(%s) error(%v)", _apiTopics, err)
  126. return
  127. }
  128. if res.Data == nil {
  129. err = fmt.Errorf("url:%s code:%d", _apiTopics, res.Code)
  130. return
  131. }
  132. for _, data := range res.Data.List {
  133. if data.PCURL != "" {
  134. links[data.ID] = data.PCURL
  135. } else {
  136. links[data.ID] = data.H5URL
  137. }
  138. }
  139. return
  140. }
  141. // ActivitySub return activity sub link.
  142. func (d *Dao) ActivitySub(c context.Context, oid int64) (title, link string, err error) {
  143. params := url.Values{}
  144. params.Set("oid", strconv.FormatInt(oid, 10))
  145. var res struct {
  146. Code int `json:"code"`
  147. Data *struct {
  148. Title string `json:"name"`
  149. Link string `json:"act_url"`
  150. } `json:"data"`
  151. }
  152. if err = d.httpClient.Get(c, _apiActivitySub, "", params, &res); err != nil {
  153. log.Error("d.httpClient.Get(%s?%s) error(%v)", _apiActivitySub, params.Encode(), err)
  154. return
  155. }
  156. if res.Data == nil {
  157. err = fmt.Errorf("url:%s code:%d", _apiActivitySub, res.Code)
  158. return
  159. }
  160. title = res.Data.Title
  161. link = res.Data.Link
  162. return
  163. }
  164. // LiveNotice return link.
  165. func (d *Dao) LiveNotice(c context.Context, oid int64) (title string, err error) {
  166. params := url.Values{}
  167. params.Set("id", strconv.FormatInt(oid, 10))
  168. var res struct {
  169. Code int `json:"code"`
  170. Data *struct {
  171. Title string `json:"title"`
  172. } `json:"data"`
  173. }
  174. if err = d.httpClient.Get(c, _urlLiveNotice, "", params, &res); err != nil {
  175. log.Error("d.httpClient.Get(%s?%s) error(%v)", _urlLiveNotice, params.Encode(), err)
  176. return
  177. }
  178. if res.Code != 0 || res.Data == nil {
  179. err = fmt.Errorf("url:%s?%s code:%d", _urlLiveNotice, params.Encode(), res.Code)
  180. return
  181. }
  182. title = res.Data.Title
  183. return
  184. }
  185. // LiveActivityTitle get live activity info.
  186. func (d *Dao) LiveActivityTitle(c context.Context, oid int64) (title, link string, err error) {
  187. params := url.Values{}
  188. params.Set("id", strconv.FormatInt(oid, 10))
  189. var res struct {
  190. Code int `json:"code"`
  191. Data *struct {
  192. Name string `json:"name"`
  193. URL string `json:"url"`
  194. } `json:"data"`
  195. }
  196. if err = d.httpClient.Get(c, _apiLiveActivity, "", params, &res); err != nil {
  197. log.Error("httpLiveActivityTitle(%s?%s) error(%v)", _apiLiveActivity, params.Encode(), err)
  198. return
  199. }
  200. if res.Code != 0 || res.Data == nil {
  201. err = fmt.Errorf("url:%s?%s code:%d", _apiLiveActivity, params.Encode(), res.Code)
  202. return
  203. }
  204. title = res.Data.Name
  205. link = res.Data.URL
  206. return
  207. }
  208. type notice struct {
  209. Title string `json:"title"`
  210. }
  211. type ban struct {
  212. Title string `json:"punishTitle"`
  213. }
  214. type credit struct {
  215. Title string `json:"punishTitle"`
  216. }
  217. // NoticeTitle get blackromm notice info.
  218. func (d *Dao) NoticeTitle(c context.Context, oid int64) (title, link string, err error) {
  219. params := url.Values{}
  220. params.Set("ids", strconv.FormatInt(oid, 10))
  221. var res struct {
  222. Code int `json:"code"`
  223. Data map[int64]*notice `json:"data"`
  224. }
  225. if err = d.httpClient.Get(c, _apiNotice, "", params, &res); err != nil {
  226. log.Error("httpNotice(%s) error(%v)", _apiNotice, err)
  227. return
  228. }
  229. if r := res.Data[oid]; r != nil {
  230. title = r.Title
  231. }
  232. link = fmt.Sprintf(_linkNotice, oid)
  233. return
  234. }
  235. // BanTitle get ban info.
  236. func (d *Dao) BanTitle(c context.Context, oid int64) (title, link string, err error) {
  237. params := url.Values{}
  238. params.Set("ids", strconv.FormatInt(oid, 10))
  239. var res struct {
  240. Code int `json:"code"`
  241. Data map[int64]*ban `json:"data"`
  242. }
  243. if err = d.httpClient.Get(c, _apiBan, "", params, &res); err != nil {
  244. log.Error("httpBan(%s) error(%v)", _apiBan, err)
  245. return
  246. }
  247. if r := res.Data[oid]; r != nil {
  248. title = r.Title
  249. }
  250. link = fmt.Sprintf(_linkBan, oid)
  251. return
  252. }
  253. // CreditTitle return link.
  254. func (d *Dao) CreditTitle(c context.Context, oid int64) (title, link string, err error) {
  255. params := url.Values{}
  256. params.Set("ids", strconv.FormatInt(oid, 10))
  257. var res struct {
  258. Code int `json:"code"`
  259. Data map[int64]*credit `json:"data"`
  260. }
  261. if err = d.httpClient.Get(c, _apiCredit, "", params, &res); err != nil {
  262. log.Error("d.httpClient.Get(%s?%s) error(%v)", _apiCredit, params.Encode(), err)
  263. return
  264. }
  265. if res.Code != 0 || res.Data == nil {
  266. err = fmt.Errorf("url:%s?%s code:%d", _apiCredit, params.Encode(), res.Code)
  267. return
  268. }
  269. if r := res.Data[oid]; r != nil {
  270. title = r.Title
  271. }
  272. link = fmt.Sprintf(_linkCredit, oid)
  273. return
  274. }
  275. // LiveVideoTitle get live video title.
  276. func (d *Dao) LiveVideoTitle(c context.Context, oid int64) (title, link string, err error) {
  277. params := url.Values{}
  278. params.Set("video_id", strconv.FormatInt(oid, 10))
  279. var res struct {
  280. Code int `json:"code"`
  281. Data *struct {
  282. Item *struct {
  283. Description string `json:"description"`
  284. } `json:"item"`
  285. } `json:"data"`
  286. }
  287. if err = d.httpClient.Get(c, _apiLiveVideo, "", params, &res); err != nil {
  288. log.Error("httpLiveVideoTitle(%s?%s) error(%v)", _apiLiveVideo, params.Encode(), err)
  289. return
  290. }
  291. if res.Code != 0 || res.Data == nil || res.Data.Item == nil {
  292. err = fmt.Errorf("url:%s?%s code:%d", _apiLiveVideo, params.Encode(), res.Code)
  293. return
  294. }
  295. title = res.Data.Item.Description
  296. link = fmt.Sprintf(_linkLiveVideo, oid)
  297. return
  298. }
  299. // LiveNoticeTitle get live notice info.
  300. func (d *Dao) LiveNoticeTitle(c context.Context, oid int64) (title, link string, err error) {
  301. params := url.Values{}
  302. params.Set("id", strconv.FormatInt(oid, 10))
  303. var res struct {
  304. Code int `json:"code"`
  305. Data *struct {
  306. Title string `json:"title"`
  307. } `json:"data"`
  308. }
  309. if err = d.httpClient.Get(c, _apiLiveNotice, "", params, &res); err != nil {
  310. log.Error("LiveNoticeTitle(%s?%s) error(%v)", _apiLiveNotice, params.Encode(), err)
  311. return
  312. }
  313. if res.Code != 0 || res.Data == nil {
  314. err = fmt.Errorf("url:%s?%s code:%d", _apiLiveNotice, params.Encode(), res.Code)
  315. return
  316. }
  317. title = res.Data.Title
  318. link = fmt.Sprintf(_linkLiveNotice, oid)
  319. return
  320. }
  321. // LivePictureTitle get live picture info.
  322. func (d *Dao) LivePictureTitle(c context.Context, oid int64) (title, link string, err error) {
  323. params := url.Values{}
  324. params.Set("doc_id", strconv.FormatInt(oid, 10))
  325. var res struct {
  326. Code int `json:"code"`
  327. Data *struct {
  328. Item *struct {
  329. Title string `json:"title"`
  330. Desc string `json:"description"`
  331. } `json:"item"`
  332. } `json:"data"`
  333. }
  334. if err = d.httpClient.Get(c, _apiLivePicture, "", params, &res); err != nil {
  335. log.Error("LivePictureTitle(%s?%s) error(%v)", _apiLivePicture, params.Encode(), err)
  336. return
  337. }
  338. if res.Code != 0 || res.Data == nil || res.Data.Item == nil {
  339. err = fmt.Errorf("url:%s?%s code:%d", _apiLivePicture, params.Encode(), res.Code)
  340. return
  341. }
  342. title = res.Data.Item.Title
  343. if title == "" {
  344. title = res.Data.Item.Desc
  345. }
  346. link = fmt.Sprintf(_linkLivePicture, oid)
  347. return
  348. }
  349. // TopicTitle get topic info.
  350. func (d *Dao) TopicTitle(c context.Context, oid int64) (title, link string, err error) {
  351. var res struct {
  352. Code int `json:"code"`
  353. Data *struct {
  354. Title string `json:"name"`
  355. PCLink string `json:"pc_url"`
  356. H5Link string `json:"h5_url"`
  357. } `json:"data"`
  358. }
  359. if err = d.httpClient.Get(c, fmt.Sprintf(_apiTopic, oid), "", nil, &res); err != nil {
  360. log.Error("TopicTitle(%s) error(%v)", fmt.Sprintf(_apiTopic, oid), err)
  361. return
  362. }
  363. if res.Data == nil {
  364. err = fmt.Errorf("url:%s code:%d", fmt.Sprintf(_apiTopic, oid), res.Code)
  365. return
  366. }
  367. title = res.Data.Title
  368. link = res.Data.PCLink
  369. if link == "" {
  370. link = res.Data.H5Link
  371. }
  372. return
  373. }
  374. // DynamicTitle return link and title.
  375. func (d *Dao) DynamicTitle(c context.Context, oid int64) (title, link string, err error) {
  376. params := url.Values{}
  377. uri := fmt.Sprintf(_apiDynamic, oid)
  378. var res struct {
  379. Code int `json:"code"`
  380. Data *struct {
  381. Pairs []struct {
  382. DynamicID int64 `json:"dynamic_id"`
  383. Content string `json:"rp_cont"`
  384. Type int32 `json:"type"`
  385. } `json:"pairs"`
  386. TotalCount int64 `json:"total_count"`
  387. } `json:"data,omitempty"`
  388. Message string `json:"message"`
  389. }
  390. if err = d.httpClient.Get(c, uri, "", params, &res); err != nil {
  391. log.Error("d.httpClient.Get(%s?%s) error(%v)", uri, params.Encode(), err)
  392. return
  393. }
  394. if res.Code != 0 || res.Data == nil || len(res.Data.Pairs) == 0 {
  395. err = fmt.Errorf("get dynamic failed!url:%s?%s code:%d message:%s pairs:%v", uri, params.Encode(), res.Code, res.Message, res.Data.Pairs)
  396. return
  397. }
  398. title = res.Data.Pairs[0].Content
  399. link = fmt.Sprintf(_linkDynamic, oid)
  400. return
  401. }
  402. // HuoniaoTitle title and link
  403. func (d *Dao) HuoniaoTitle(c context.Context, oid int64) (title, link string, err error) {
  404. params := url.Values{}
  405. params.Set("id", strconv.FormatInt(oid, 10))
  406. var res struct {
  407. Code int `json:"code"`
  408. Data *struct {
  409. Title string `json:"title"`
  410. JumpURL string `json:"jump_url"`
  411. } `json:"data,omitempty"`
  412. Message string `json:"msg"`
  413. }
  414. if err = d.httpClient.Post(c, _apiHuoniao, "", params, &res); err != nil {
  415. log.Error("httpClient.Post(%s) error(%v)", params.Encode(), err)
  416. return
  417. }
  418. if res.Code != ecode.OK.Code() {
  419. err = ecode.Int(res.Code)
  420. return
  421. }
  422. if res.Data != nil {
  423. title = res.Data.Title
  424. link = res.Data.JumpURL
  425. }
  426. return
  427. }