wechat.go 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. package wechat
  2. import (
  3. "context"
  4. "encoding/json"
  5. "errors"
  6. "eta/eta_mini_api/models"
  7. "eta/eta_mini_api/services/alarm_msg"
  8. "eta/eta_mini_api/utils"
  9. "fmt"
  10. "io"
  11. "net/http"
  12. "time"
  13. "github.com/silenceper/wechat/v2"
  14. "github.com/silenceper/wechat/v2/cache"
  15. "github.com/silenceper/wechat/v2/credential"
  16. "github.com/silenceper/wechat/v2/officialaccount"
  17. "github.com/silenceper/wechat/v2/officialaccount/config"
  18. "github.com/silenceper/wechat/v2/officialaccount/js"
  19. "github.com/silenceper/wechat/v2/officialaccount/user"
  20. )
  21. var (
  22. WxAppId string
  23. WxAppSecret string
  24. )
  25. type WechatAccessToken struct {
  26. }
  27. func GetWxChat() (officialAccount *officialaccount.OfficialAccount) {
  28. wc := wechat.NewWechat()
  29. minConf, _ := models.GetMiniConf()
  30. memory := cache.NewMemory()
  31. conf := &config.Config{
  32. // AppID: utils.HZ_WX_APPID,
  33. // AppSecret: utils.HZ_WX_APP_SECRET,
  34. AppID: minConf["WxAppId"],
  35. AppSecret: minConf["WxAppSecret"],
  36. Token: "",
  37. EncodingAESKey: "",
  38. Cache: memory,
  39. }
  40. officialAccount = wc.GetOfficialAccount(conf)
  41. wechatAccessToken := &WechatAccessToken{}
  42. officialAccount.SetAccessTokenHandle(wechatAccessToken)
  43. return
  44. }
  45. var DefaultKey = "zcmRedis"
  46. // GetAccessToken 获取accessToken
  47. func (wechat WechatAccessToken) GetAccessToken() (accessToken string, err error) {
  48. accessToken, err = utils.Redis.Get(context.TODO(), utils.CACHE_WX_ACCESS_TOKEN_HZ).Result()
  49. // wxToken, err := models.GetWxTokenById()
  50. if err != nil {
  51. return
  52. }
  53. minConf, _ := models.GetMiniConf()
  54. // 缓存中没有取到数据,那么就需要强制刷新的accessToken
  55. tmpAccessToken, expires, tmpErr := getTokenFromServer(minConf["WxAppId"], minConf["WxAppSecret"])
  56. if tmpAccessToken == "" {
  57. err = errors.New("获取微信token失败,Err:" + tmpErr.Error())
  58. return
  59. }
  60. redisTimeExpire := time.Duration(expires-600) * time.Second
  61. err = utils.Redis.SetEX(context.TODO(), utils.CACHE_WX_ACCESS_TOKEN_HZ, tmpAccessToken, redisTimeExpire).Err()
  62. if err != nil {
  63. return
  64. }
  65. err = utils.Redis.HSet(context.TODO(), DefaultKey, utils.CACHE_WX_ACCESS_TOKEN_HZ, true).Err()
  66. // err = utils.Redis.Put(utils.CACHE_WX_ACCESS_TOKEN_HZ, tmpAccessToken, redisTimeExpire)
  67. if err != nil {
  68. err = errors.New("更新微信token失败")
  69. return
  70. }
  71. return
  72. // //如果300s就要过期了,那么就去刷新accessToken
  73. // if wxToken.ExpiresIn < time.Now().Unix()+300 {
  74. // tmpAccessToken, expires, tmpErr := getTokenFromServer(utils.HZ_WX_APPID, utils.HZ_WX_APP_SECRET)
  75. // if tmpErr != nil {
  76. // err = tmpErr
  77. // return
  78. // }
  79. // var updateCols = []string{"access_token", "expires_in"}
  80. // wxToken.AccessToken = tmpAccessToken
  81. // wxToken.ExpiresIn = expires - 600 //快过期前10分钟就刷新掉
  82. // wxToken.Update(updateCols)
  83. // }
  84. // accessToken = wxToken.AccessToken
  85. // return
  86. }
  87. // getTokenFromServer 服务端获取accessToken
  88. func getTokenFromServer(appid, wxSecret string) (accessToken string, expires int64, err error) {
  89. apiUrl := "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=%s&secret=%s"
  90. resAccessToken, err := credential.GetTokenFromServer(fmt.Sprintf(apiUrl, appid, wxSecret))
  91. if err != nil {
  92. return
  93. }
  94. expires = resAccessToken.ExpiresIn
  95. accessToken = resAccessToken.AccessToken
  96. return
  97. }
  98. // GetUserInfo 获取微信用户详情
  99. func GetUserInfo(openid string) (userInfo *user.Info, err error) {
  100. wechatClient := GetWxChat()
  101. userClient := wechatClient.GetUser()
  102. userInfo, err = userClient.GetUserInfo(openid)
  103. return
  104. }
  105. // GetSession 获取用户详情
  106. // func GetSession(code string) (userInfo auth.ResCode2Session, err error) {
  107. // wechatClient := GetWxChat()
  108. // userClient := wechatClient.GetUser()
  109. // userInfo, err = authClient.Code2Session(code)
  110. // return
  111. // }
  112. // GetJsConfig 获取公众号jsConfig
  113. func GetJsConfig(signUrl string) (jsConf *js.Config, err error) {
  114. wechatClient := GetWxChat()
  115. j := wechatClient.GetJs()
  116. jsConf, err = j.GetConfig(signUrl)
  117. return
  118. }
  119. type WxUserInfo struct {
  120. OpenId string `json:"openid"`
  121. AccessToken string `json:"access_token"`
  122. RefreshToken string `json:"refresh_token"`
  123. Scope string `json:"scope"`
  124. ErrCode int
  125. ErrMsg string
  126. }
  127. func GetWxUserInfo(code string) (info *WxUserInfo, err error) {
  128. httpUrl := `https://api.weixin.qq.com/sns/oauth2/access_token?appid=%s&secret=%s&code=%s&grant_type=authorization_code`
  129. confMap, err := models.GetMiniConf()
  130. if err != nil {
  131. return
  132. }
  133. httpUrl = fmt.Sprintf(httpUrl, confMap["WxAppId"], confMap["WxAppSecret"], code)
  134. client := http.Client{}
  135. wxReq, err := http.NewRequest("GET", httpUrl, nil)
  136. if err != nil {
  137. return
  138. }
  139. response, err := client.Do(wxReq)
  140. if err != nil {
  141. return
  142. }
  143. defer response.Body.Close()
  144. body, err := io.ReadAll(response.Body)
  145. if err != nil {
  146. return
  147. }
  148. alarm_msg.SendAlarmMsg(string(body), 1)
  149. if err = json.Unmarshal(body, &info); err != nil {
  150. return
  151. }
  152. return
  153. }