bigdata.go 1011 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. package bigdata
  2. import (
  3. "context"
  4. "net/url"
  5. "go-common/app/interface/main/reply/conf"
  6. "go-common/library/ecode"
  7. "go-common/library/log"
  8. httpx "go-common/library/net/http/blademaster"
  9. )
  10. type result struct {
  11. Code int `json:"code"`
  12. }
  13. // Dao bigdata dao
  14. type Dao struct {
  15. url string
  16. topicURL string
  17. httpClient *httpx.Client
  18. }
  19. // New return a bigdata dao
  20. func New(c *conf.Config) *Dao {
  21. d := &Dao{
  22. httpClient: httpx.NewClient(c.HTTPClient),
  23. url: c.Reply.BigdataURL,
  24. topicURL: c.Reply.AiTopicURL,
  25. }
  26. return d
  27. }
  28. // Filter Filter
  29. func (dao *Dao) Filter(c context.Context, msg string) (err error) {
  30. params := url.Values{}
  31. res := &result{}
  32. params.Set("comment", msg)
  33. if err = dao.httpClient.Post(c, dao.url, "", params, res); err != nil {
  34. log.Error("Bigdata url(%s) error(%v)", dao.url+"?"+params.Encode(), err)
  35. return
  36. }
  37. if res.Code != 0 {
  38. log.Error("Bigdata url(%s) error(%v)", dao.url+"?"+params.Encode(), res.Code)
  39. err = ecode.ReplyDeniedAsGarbage
  40. }
  41. return
  42. }