wechat.go 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214
  1. package controllers
  2. import (
  3. "encoding/json"
  4. "hongze/hongze_cygxzs/models"
  5. "hongze/hongze_cygxzs/services"
  6. "hongze/hongze_cygxzs/utils"
  7. "strconv"
  8. "time"
  9. )
  10. type WechatController struct {
  11. BaseAuthController
  12. }
  13. type WechatCommonController struct {
  14. BaseCommonController
  15. }
  16. // @Title 微信登录小助手接口
  17. // @Description 微信登录小助手接口
  18. // @Param Code query string true "微信唯一编码code"
  19. // @Success 200 {object} models.UserDetailByUserLogin
  20. // @router /loginByxzs [get]
  21. func (this *WechatCommonController) WechatLoginByxzs() {
  22. br := new(models.BaseResponse).Init()
  23. defer func() {
  24. this.Data["json"] = br
  25. this.ServeJSON()
  26. }()
  27. code := this.GetString("Code")
  28. if code == "" {
  29. br.Msg = "参数错误"
  30. br.ErrMsg = "Code 为空"
  31. return
  32. }
  33. item, err := services.WxGetUserOpenIdByCodeXzs(code)
  34. if err != nil {
  35. br.Msg = "获取用户信息失败"
  36. br.ErrMsg = "获取用户信息失败,Err:" + err.Error()
  37. return
  38. }
  39. if item.Errcode != 0 {
  40. br.Msg = "获取用户信息失败"
  41. br.ErrMsg = "获取access_token 失败 errcode:" + strconv.Itoa(item.Errcode) + " ;errmsg:" + item.Errmsg
  42. return
  43. }
  44. openId := item.Openid
  45. if openId == "" {
  46. br.Msg = "获取用户信息失败"
  47. br.ErrMsg = "获取openid失败,openid:" + item.Openid
  48. return
  49. }
  50. resp := new(models.UserDetailByUserLogin)
  51. accessToken, err := services.GetWxAccessTokenByXzs()
  52. if err != nil {
  53. br.Msg = "获取用户信息失败"
  54. br.ErrMsg = "获取access_token失败,err:" + err.Error()
  55. return
  56. }
  57. if accessToken == "" {
  58. br.Msg = "获取用户信息失败"
  59. br.ErrMsg = "access_token 为空,"
  60. return
  61. }
  62. wxUserInfo, err := services.WxGetUserInfo(openId, accessToken)
  63. if err != nil {
  64. br.Msg = "获取用户信息失败"
  65. br.ErrMsg = "获取微信用户信息失败,Err:" + err.Error()
  66. return
  67. }
  68. if wxUserInfo.Errcode != 0 {
  69. userInfoJson, _ := json.Marshal(wxUserInfo)
  70. br.Msg = "登录失败"
  71. br.ErrMsg = "获取用户信息失败,err:" + string(userInfoJson)
  72. return
  73. }
  74. unionId := wxUserInfo.Unionid
  75. if unionId == "" {
  76. br.Msg = "获取用户信息失败"
  77. br.ErrMsg = "获取unionid失败,unionid:" + item.Openid
  78. return
  79. }
  80. total, err := models.GetCygxUserRecordCount(openId)
  81. if err != nil {
  82. br.Msg = "获取用户信息失败"
  83. br.ErrMsg = "查询数量失败,Err:" + err.Error()
  84. return
  85. }
  86. items := new(models.CygxUserRecord)
  87. items.OpenId = openId
  88. items.UnionId = unionId
  89. items.NickName = wxUserInfo.Nickname
  90. items.Sex = wxUserInfo.Sex
  91. items.Province = wxUserInfo.Province
  92. items.City = wxUserInfo.City
  93. items.Country = wxUserInfo.Country
  94. items.Headimgurl = wxUserInfo.Headimgurl
  95. items.CreateTime = time.Now()
  96. if total == 0 {
  97. _, err = models.AddCygxUserRecord(items)
  98. if err != nil {
  99. br.Msg = "获取用户信息失败"
  100. br.ErrMsg = "添加openid失败,Err:" + err.Error()
  101. return
  102. }
  103. } else {
  104. err = models.UpdateCygxUserRecord(items)
  105. if err != nil {
  106. br.Msg = "获取用户信息失败"
  107. br.ErrMsg = "添加openid失败,Err:" + err.Error()
  108. return
  109. }
  110. }
  111. user, err := models.GetWxUserItemByUserUnionId(unionId)
  112. if err != nil && err.Error() != utils.ErrNoRow() {
  113. br.Msg = "获取用户信息失败"
  114. br.ErrMsg = "获取本地用户信息失败,Err:" + err.Error()
  115. return
  116. }
  117. if user == nil {
  118. resp.HasPermission = 3
  119. } else {
  120. permissionStr, err := models.GetCompanyPermission(user.CompanyId)
  121. if err != nil {
  122. br.Msg = "获取信息失败"
  123. br.ErrMsg = "获取客户信息失败,Err:" + err.Error()
  124. return
  125. }
  126. if permissionStr != "" {
  127. resp.Permission = permissionStr
  128. resp.Mobile = user.Mobile
  129. resp.RealName = user.RealName
  130. resp.CompanyName = user.CompanyName
  131. resp.HasPermission = 1
  132. } else {
  133. resp.Mobile = user.Mobile
  134. resp.RealName = user.RealName
  135. resp.HasPermission = 2
  136. }
  137. _ = models.UpdateUserRecord(items)
  138. }
  139. resp.Headimgurl = wxUserInfo.Headimgurl
  140. br.Ret = 200
  141. br.Success = true
  142. br.Msg = "获取成功"
  143. br.Data = resp
  144. }
  145. // @Title 微信获取签名接口
  146. // @Description 微信获取签名接口
  147. // @Param Url query string true "url地址"
  148. // @Success 200 {object} models.WechatSign
  149. // @router /getWxSign [get]
  150. func (this *WechatCommonController) GetWxSign() {
  151. br := new(models.BaseResponse).Init()
  152. defer func() {
  153. this.Data["json"] = br
  154. this.ServeJSON()
  155. }()
  156. getUrl := this.GetString("Url")
  157. accessToken, err := services.GetWxAccessTokenByXzs()
  158. if err != nil {
  159. br.Msg = "获取用户信息失败"
  160. br.ErrMsg = "获取access_token失败,err:" + err.Error()
  161. return
  162. }
  163. if accessToken == "" {
  164. br.Msg = "获取用户信息失败"
  165. br.ErrMsg = "access_token 为空,"
  166. return
  167. }
  168. ticket, err := services.GetWxTicket(accessToken)
  169. if err != nil {
  170. br.Msg = "获取Ticket失败,请联系客服"
  171. br.ErrMsg = "获取Ticket失败,Err" + err.Error()
  172. return
  173. }
  174. if ticket == "" {
  175. br.Msg = "获取Ticket失败,请联系客服"
  176. br.ErrMsg = "ticket为空" + ticket
  177. return
  178. }
  179. nonceStr := utils.GetRandStringNoSpecialChar(16)
  180. signature, nonceString, timestamp := services.GetWxSignature(ticket, getUrl, nonceStr)
  181. resp := new(models.WechatSign)
  182. resp.AppId = utils.WxPublicAppId
  183. resp.NonceStr = nonceString
  184. resp.Timestamp = timestamp
  185. resp.Url = getUrl
  186. resp.Signature = signature
  187. br.Ret = 200
  188. br.Success = true
  189. br.Msg = "获取签名成功"
  190. br.Data = resp
  191. }
  192. // @Title 路由2
  193. // @Description 路由2
  194. // @Param Url query string true "url地址"
  195. // @router /hello2 [get]
  196. func (this *WechatCommonController) TesrR2() {
  197. br := new(models.BaseResponse).Init()
  198. defer func() {
  199. this.Data["json"] = br
  200. this.ServeJSON()
  201. }()
  202. getUrl := this.GetString("Url")
  203. br.Ret = 200
  204. br.Success = true
  205. br.Msg = "路由2"
  206. br.Data = getUrl
  207. }