drawyoo.go 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. package drawyoo
  2. import (
  3. "context"
  4. "net/url"
  5. "strconv"
  6. "go-common/app/interface/main/reply/conf"
  7. "go-common/app/interface/main/reply/model/drawyoo"
  8. "go-common/library/log"
  9. httpx "go-common/library/net/http/blademaster"
  10. "go-common/library/xstr"
  11. )
  12. // Dao Dao
  13. type Dao struct {
  14. url string
  15. http *httpx.Client
  16. }
  17. // New New
  18. func New(c *conf.Config) *Dao {
  19. d := &Dao{
  20. url: "http://h.bilibili.com/api/pushS",
  21. http: httpx.NewClient(c.DrawyooHTTPClient),
  22. }
  23. return d
  24. }
  25. // Info Info
  26. func (dao *Dao) Info(c context.Context, hid int64) (info *drawyoo.Drawyoo, err error) {
  27. params := url.Values{}
  28. params.Set("act", "getHidInfo")
  29. params.Set("hid", strconv.FormatInt(hid, 10))
  30. var res struct {
  31. State int `json:"state"`
  32. Data []*drawyoo.Drawyoo `json:"data"`
  33. }
  34. if err = dao.http.Post(c, dao.url, "", params, &res); err != nil {
  35. log.Error("drawyoo url(%v),err (%v)", dao.url+"?"+params.Encode(), err)
  36. return
  37. }
  38. if res.State != 200 || len(res.Data) == 0 {
  39. log.Error("drawyoo url (%v),err (%v)", dao.url+"?"+params.Encode(), err)
  40. return
  41. }
  42. info = res.Data[0]
  43. return
  44. }
  45. // Infos Infos
  46. func (dao *Dao) Infos(c context.Context, hids []int64) (info map[int64]interface{}, err error) {
  47. params := url.Values{}
  48. params.Set("act", "getHidInfo")
  49. params.Set("hid", xstr.JoinInts(hids))
  50. var res struct {
  51. State int `json:"state"`
  52. Data []*drawyoo.Drawyoo `json:"data"`
  53. }
  54. if err = dao.http.Post(c, dao.url, "", params, &res); err != nil {
  55. log.Error("drawyoo url(%v),err (%v)", dao.url+"?"+params.Encode(), err)
  56. return
  57. }
  58. if res.State != 200 || len(res.Data) == 0 {
  59. log.Error("drawyoo url (%v),err (%v)", dao.url+"?"+params.Encode(), err)
  60. return
  61. }
  62. info = make(map[int64]interface{}, len(res.Data))
  63. for _, r := range res.Data {
  64. info[r.Hid] = r
  65. }
  66. return
  67. }