notify.go 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. package service
  2. import (
  3. "bytes"
  4. "crypto/hmac"
  5. "crypto/sha256"
  6. "encoding/base64"
  7. "encoding/json"
  8. "fmt"
  9. "github.com/flipped-aurora/gin-vue-admin/server/plugin/notify/global"
  10. "io/ioutil"
  11. "net/http"
  12. "net/url"
  13. "time"
  14. )
  15. type NotifyService struct {
  16. }
  17. //@author: [Espoir](https://github.com/nightsimon)
  18. //@function: NotifyController
  19. //@description: 钉钉通知测试
  20. //@return: err error
  21. func (e *NotifyService) SendTextMessage(content string, atMobiles []string, isAtAll bool) (err error) {
  22. msg := map[string]interface{}{
  23. "msgtype": "text",
  24. "text": map[string]string{
  25. "content": content,
  26. },
  27. "at": map[string]interface{}{
  28. "atMobiles": atMobiles,
  29. "isAtAll": isAtAll,
  30. },
  31. }
  32. return SendMessage(msg)
  33. }
  34. func (e *NotifyService) SendLinkMessage(content, title, picUrl, messageUrl string) (err error) {
  35. msg := map[string]interface{}{
  36. "msgtype": "link",
  37. "link": map[string]string{
  38. "text": content,
  39. "title": title,
  40. "picUrl": picUrl,
  41. "messageUrl": messageUrl,
  42. },
  43. }
  44. return SendMessage(msg)
  45. }
  46. func (e *NotifyService) SendMarkdownMessage(content, title string, atMobiles []string, isAtAll bool) (err error) {
  47. msg := map[string]interface{}{
  48. "msgtype": "markdown",
  49. "markdown": map[string]string{
  50. "text": content,
  51. "title": title,
  52. },
  53. "at": map[string]interface{}{
  54. "atMobiles": atMobiles,
  55. "isAtAll": isAtAll,
  56. },
  57. }
  58. return SendMessage(msg)
  59. }
  60. // 其余方法请参考 https://developers.dingtalk.com/document/robots/custom-robot-access?spm=ding_open_doc.document.0.0.7f8710afbfzduV#topic-2026027
  61. func SendMessage(msg interface{}) error {
  62. body := bytes.NewBuffer(nil)
  63. err := json.NewEncoder(body).Encode(msg)
  64. if err != nil {
  65. return fmt.Errorf("msg json failed, msg: %v, err: %v", msg, err.Error())
  66. }
  67. value := url.Values{}
  68. value.Set("access_token", global.GlobalConfig_.Token)
  69. if global.GlobalConfig_.Secret != "" {
  70. t := time.Now().UnixNano() / 1e6
  71. value.Set("timestamp", fmt.Sprintf("%d", t))
  72. value.Set("sign", sign(t, global.GlobalConfig_.Secret))
  73. }
  74. request, err := http.NewRequest(http.MethodPost, global.GlobalConfig_.Url, body)
  75. if err != nil {
  76. return fmt.Errorf("error request: %v", err.Error())
  77. }
  78. request.URL.RawQuery = value.Encode()
  79. request.Header.Add("Content-Type", "application/json")
  80. res, err := (&http.Client{}).Do(request)
  81. if err != nil {
  82. return fmt.Errorf("send dingTalk message failed, error: %v", err.Error())
  83. }
  84. defer func() { _ = res.Body.Close() }()
  85. result, err := ioutil.ReadAll(res.Body)
  86. if res.StatusCode != 200 {
  87. return fmt.Errorf("send dingTalk message failed, %s", httpError(request, res, result, "http code is not 200"))
  88. }
  89. if err != nil {
  90. return fmt.Errorf("send dingTalk message failed, %s", httpError(request, res, result, err.Error()))
  91. }
  92. type response struct {
  93. ErrCode int `json:"errcode"`
  94. }
  95. var ret response
  96. if err := json.Unmarshal(result, &ret); err != nil {
  97. return fmt.Errorf("send dingTalk message failed, %s", httpError(request, res, result, err.Error()))
  98. }
  99. if ret.ErrCode != 0 {
  100. return fmt.Errorf("send dingTalk message failed, %s", httpError(request, res, result, "errcode is not 0"))
  101. }
  102. return nil
  103. }
  104. func httpError(request *http.Request, response *http.Response, body []byte, error string) string {
  105. return fmt.Sprintf(
  106. "http request failure, error: %s, status code: %d, %s %s, body:\n%s",
  107. error,
  108. response.StatusCode,
  109. request.Method,
  110. request.URL.String(),
  111. string(body),
  112. )
  113. }
  114. func sign(t int64, secret string) string {
  115. strToHash := fmt.Sprintf("%d\n%s", t, secret)
  116. hmac256 := hmac.New(sha256.New, []byte(secret))
  117. hmac256.Write([]byte(strToHash))
  118. data := hmac256.Sum(nil)
  119. return base64.StdEncoding.EncodeToString(data)
  120. }