ai.go 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. package bigdata
  2. import (
  3. "bytes"
  4. "context"
  5. "encoding/json"
  6. "net/http"
  7. "go-common/library/log"
  8. "github.com/pkg/errors"
  9. )
  10. type topicResponse struct {
  11. Code int `json:"error_code"`
  12. Message string `json:"error_message"`
  13. Topics []string `json:"topics"`
  14. }
  15. type topicReq struct {
  16. Mid int64 `json:"mid"`
  17. Oid int64 `json:"oid"`
  18. Type int8 `json:"type"`
  19. Message string `json:"message"`
  20. }
  21. // Topics return topics
  22. func (dao *Dao) Topics(c context.Context, mid int64, oid int64, typ int8, msg string) ([]string, error) {
  23. res := &topicResponse{}
  24. content, err := json.Marshal(&topicReq{
  25. Mid: mid,
  26. Oid: oid,
  27. Type: typ,
  28. Message: msg,
  29. })
  30. if err != nil {
  31. err = errors.WithStack(err)
  32. return nil, err
  33. }
  34. req, err := http.NewRequest("POST", dao.topicURL, bytes.NewReader(content))
  35. if err != nil {
  36. log.Error("bigdata.Topics(%d,%d,%d,%s) url(%s) req(%s)send POST error(%v)", mid, oid, typ, msg, dao.topicURL, string(content), err)
  37. err = errors.WithStack(err)
  38. return nil, err
  39. }
  40. req.Header.Set("Content-Type", "application/json")
  41. err = dao.httpClient.Do(c, req, res)
  42. if err != nil {
  43. log.Error("bigdata.Topics(%d,%d,%d,%s) url(%s) req(%s) error(%v)", mid, oid, typ, msg, dao.topicURL, string(content), err)
  44. return nil, err
  45. }
  46. if res.Code != 0 {
  47. log.Error("bigdata.Topics(%d,%d,%d,%s) url(%s) req(%s) return not success,error_msg(%d,%v)", mid, oid, typ, msg, dao.topicURL, string(content), res.Code, res.Message)
  48. return nil, err
  49. }
  50. return res.Topics, nil
  51. }