dingtalk.go 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. package public
  2. import (
  3. "bytes"
  4. "encoding/json"
  5. "net/http"
  6. )
  7. // 接收的消息体
  8. type ReceiveMsg struct {
  9. ConversationID string `json:"conversationId"`
  10. AtUsers []struct {
  11. DingtalkID string `json:"dingtalkId"`
  12. } `json:"atUsers"`
  13. ChatbotUserID string `json:"chatbotUserId"`
  14. MsgID string `json:"msgId"`
  15. SenderNick string `json:"senderNick"`
  16. IsAdmin bool `json:"isAdmin"`
  17. SessionWebhookExpiredTime int64 `json:"sessionWebhookExpiredTime"`
  18. CreateAt int64 `json:"createAt"`
  19. ConversationType string `json:"conversationType"`
  20. SenderID string `json:"senderId"`
  21. ConversationTitle string `json:"conversationTitle"`
  22. IsInAtList bool `json:"isInAtList"`
  23. SessionWebhook string `json:"sessionWebhook"`
  24. Text Text `json:"text"`
  25. RobotCode string `json:"robotCode"`
  26. Msgtype string `json:"msgtype"`
  27. }
  28. // 发送的消息体
  29. type SendMsg struct {
  30. Text Text `json:"text"`
  31. Msgtype string `json:"msgtype"`
  32. }
  33. // 消息内容
  34. type Text struct {
  35. Content string `json:"content"`
  36. }
  37. // 发消息给钉钉
  38. func (r ReceiveMsg) ReplyText(msg string) (statuscode int, err error) {
  39. // 定义消息
  40. msgtmp := &SendMsg{Text: Text{Content: msg}, Msgtype: "text"}
  41. data, err := json.Marshal(msgtmp)
  42. if err != nil {
  43. return 0, err
  44. }
  45. req, err := http.NewRequest("POST", r.SessionWebhook, bytes.NewBuffer(data))
  46. if err != nil {
  47. return 0, err
  48. }
  49. req.Header.Add("Accept", "*/*")
  50. req.Header.Add("Content-Type", "application/json")
  51. client := &http.Client{}
  52. resp, err := client.Do(req)
  53. if err != nil {
  54. return 0, err
  55. }
  56. defer resp.Body.Close()
  57. return resp.StatusCode, nil
  58. }