base_auth.go 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252
  1. package controllers
  2. import (
  3. "encoding/json"
  4. "eta/eta_mini_crm/models"
  5. "eta/eta_mini_crm/utils"
  6. "fmt"
  7. "net/http"
  8. "net/url"
  9. "strconv"
  10. "strings"
  11. "time"
  12. "github.com/beego/beego/v2/client/orm"
  13. "github.com/beego/beego/v2/server/web"
  14. )
  15. type BaseAuthController struct {
  16. web.Controller
  17. SysUser *models.SysUser
  18. Session *models.SysSession
  19. }
  20. func (c *BaseAuthController) Prepare() {
  21. method := c.Ctx.Input.Method()
  22. uri := c.Ctx.Input.URI()
  23. if method != "HEAD" {
  24. if method == "POST" || method == "GET" {
  25. authorization := c.Ctx.Input.Header("authorization")
  26. if authorization == "" {
  27. c.JSON(models.BaseResponse{Ret: 408, Msg: "请重新授权!", ErrMsg: "请重新授权:Token is empty or account is empty"}, false, false)
  28. c.StopRun()
  29. return
  30. }
  31. tokenStr := authorization
  32. tokenArr := strings.Split(tokenStr, "=")
  33. if len(tokenArr) != 2 {
  34. c.JSON(models.BaseResponse{Ret: 408, Msg: "请重新授权!", ErrMsg: "请重新授权:Token is fault"}, false, false)
  35. c.StopRun()
  36. return
  37. }
  38. token := tokenArr[1]
  39. session, err := models.GetSysSessionByToken(token)
  40. if err != nil {
  41. if err == orm.ErrNoRows {
  42. c.JSON(models.BaseResponse{Ret: 408, Msg: "信息已变更,请重新登陆!", ErrMsg: "Token 信息已变更:Token: " + token}, false, false)
  43. c.StopRun()
  44. return
  45. }
  46. c.JSON(models.BaseResponse{Ret: 408, Msg: "网络异常,请稍后重试!", ErrMsg: "获取用户信息异常,Eerr:" + err.Error()}, false, false)
  47. c.StopRun()
  48. return
  49. }
  50. if session == nil {
  51. c.JSON(models.BaseResponse{Ret: 408, Msg: "网络异常,请稍后重试!", ErrMsg: "sesson is empty "}, false, false)
  52. c.StopRun()
  53. return
  54. }
  55. account := utils.MD5(session.UserName)
  56. if !utils.CheckToken(account, token) {
  57. c.JSON(models.BaseResponse{Ret: 408, Msg: "鉴权失败,请重新登录!", ErrMsg: "登录失效,请重新登陆!,CheckToken Fail"}, false, false)
  58. c.StopRun()
  59. return
  60. }
  61. if time.Now().After(session.ExpiredTime) {
  62. c.JSON(models.BaseResponse{Ret: 408, Msg: "请重新登录!", ErrMsg: "获取用户信息异常"}, false, false)
  63. c.StopRun()
  64. return
  65. }
  66. sysUser, err := models.GetSysUserById(session.SysUserId)
  67. if err != nil {
  68. if err == orm.ErrNoRows {
  69. c.JSON(models.BaseResponse{Ret: 408, Msg: "信息已变更,请重新登陆!", ErrMsg: "获取sysUser信息失败: " + strconv.Itoa(session.SysUserId)}, false, false)
  70. c.StopRun()
  71. return
  72. }
  73. c.JSON(models.BaseResponse{Ret: 408, Msg: "网络异常,请稍后重试!", ErrMsg: "获取sysUser信息异常,Err:" + err.Error()}, false, false)
  74. c.StopRun()
  75. return
  76. }
  77. if sysUser == nil {
  78. c.JSON(models.BaseResponse{Ret: 408, Msg: "网络异常,请稍后重试!", ErrMsg: "sysUser is empty"}, false, false)
  79. c.StopRun()
  80. return
  81. }
  82. if !sysUser.IsEnabled {
  83. c.JSON(models.BaseResponse{Ret: 408, Msg: "账户信息异常!", ErrMsg: "账户被禁用,不允许登陆!"}, false, false)
  84. c.StopRun()
  85. return
  86. }
  87. loginKey := fmt.Sprint(utils.CACHE_ACCESS_TOKEN_LOGIN, session.SysSessionId)
  88. loginInfo, _ := utils.Rc.RedisString(loginKey)
  89. if loginInfo == `` {
  90. c.JSON(models.BaseResponse{Ret: 408, Msg: "超时未操作,系统自动退出!", ErrMsg: "超时未操作,系统自动退出!"}, false, false)
  91. c.StopRun()
  92. return
  93. }
  94. if loginInfo != "1" {
  95. msg := "在其他网络登录。此客户端已退出登录。"
  96. c.JSON(models.BaseResponse{Ret: 408, Msg: msg, ErrMsg: msg}, false, false)
  97. c.StopRun()
  98. return
  99. }
  100. c.SysUser = sysUser
  101. c.Session = session
  102. //接口权限校验
  103. roleId := sysUser.SysRoleId
  104. list, e := models.GetMenuButtonsByRoleId(roleId)
  105. if e != nil {
  106. c.JSON(models.BaseResponse{Ret: 403, Msg: "获取接口权限出错!", ErrMsg: "获取接口权限出错!"}, false, false)
  107. c.StopRun()
  108. return
  109. }
  110. var api string
  111. for _, v := range list {
  112. api += v.Api + "&"
  113. }
  114. api = strings.TrimRight(api, "&")
  115. uri = strings.Replace(uri, "/adminapi", "", 1)
  116. uris := strings.Split(uri, "?")
  117. uri = uris[0]
  118. //fmt.Println("uri:", uri)
  119. apis := strings.Split(api, "&")
  120. apiMap := make(map[string]bool, 0)
  121. for _, s := range apis {
  122. apiMap[s] = true
  123. }
  124. if !apiMap[uri] && !utils.NoAuthApiMap[uri] {
  125. c.JSON(models.BaseResponse{Ret: 403, Msg: "无权访问!", ErrMsg: "无权访问!"}, false, false)
  126. c.StopRun()
  127. return
  128. }
  129. }
  130. }
  131. }
  132. func (c *BaseAuthController) ServeJSON(encoding ...bool) {
  133. var (
  134. hasIndent = false
  135. hasEncoding = false
  136. )
  137. if web.BConfig.RunMode == web.PROD {
  138. hasIndent = false
  139. }
  140. if len(encoding) > 0 && encoding[0] == true {
  141. hasEncoding = true
  142. }
  143. if c.Data["json"] == nil {
  144. body := "接口:" + "URI:" + c.Ctx.Input.URI() + ";无返回值"
  145. fmt.Println(body)
  146. utils.ApiLog.Notice(body)
  147. return
  148. }
  149. baseRes := c.Data["json"].(*models.BaseResponse)
  150. if baseRes != nil && baseRes.Ret != 408 {
  151. body, _ := json.Marshal(baseRes)
  152. var requestBody string
  153. method := c.Ctx.Input.Method()
  154. if method == "GET" {
  155. requestBody = c.Ctx.Request.RequestURI
  156. } else {
  157. //requestBody, _ = url.QueryUnescape(string(c.Ctx.Input.RequestBody))
  158. requestBody = string(c.Ctx.Input.RequestBody)
  159. }
  160. if baseRes.Ret != 200 {
  161. body := "URI:" + c.Ctx.Input.URI() + "<br/> " + "Params" + requestBody + " <br/>" + "ErrMsg:" + baseRes.ErrMsg + ";<br/>Msg:" + baseRes.Msg + ";<br/> Body:" + string(body) + "<br/>" + c.SysUser.SysRealName
  162. fmt.Println(body)
  163. utils.ApiLog.Notice(body)
  164. }
  165. }
  166. c.JSON(c.Data["json"], hasIndent, hasEncoding)
  167. }
  168. func (c *BaseAuthController) JSON(data interface{}, hasIndent bool, coding bool) error {
  169. c.Ctx.Output.Header("Content-Type", "application/json; charset=utf-8")
  170. desEncrypt := utils.DesBase64Encrypt([]byte(utils.DesKey), utils.DesKeySalt)
  171. c.Ctx.Output.Header("Dk", string(desEncrypt)) // des3加解密key
  172. // 设置Cookie为HTTPOnly
  173. c.Ctx.SetCookie("", "", -1, "/", "", false, true, "")
  174. var content []byte
  175. var err error
  176. if hasIndent {
  177. content, err = json.MarshalIndent(data, "", " ")
  178. } else {
  179. content, err = json.Marshal(data)
  180. }
  181. if err != nil {
  182. http.Error(c.Ctx.Output.Context.ResponseWriter, err.Error(), http.StatusInternalServerError)
  183. return err
  184. }
  185. ip := c.Ctx.Input.IP()
  186. requestBody, err := url.QueryUnescape(string(c.Ctx.Input.RequestBody))
  187. if err != nil {
  188. utils.ApiLog.Info("err:%s", err.Error())
  189. }
  190. c.logUri(content, requestBody, ip)
  191. if utils.RunMode != "debug" {
  192. content = utils.DesBase64Encrypt(content, utils.DesKey)
  193. content = []byte(`"` + string(content) + `"`)
  194. }
  195. if coding {
  196. content = []byte(utils.StringsToJSON(string(content)))
  197. }
  198. return c.Ctx.Output.Body(content)
  199. }
  200. func (c *BaseAuthController) logUri(respContent []byte, requestBody, ip string) {
  201. authorization := ""
  202. method := c.Ctx.Input.Method()
  203. uri := c.Ctx.Input.URI()
  204. if method != "HEAD" {
  205. if method == "POST" || method == "GET" {
  206. authorization = c.Ctx.Input.Header("authorization")
  207. if authorization == "" {
  208. authorization = c.Ctx.Input.Header("Authorization")
  209. }
  210. if authorization == "" {
  211. newAuthorization := c.GetString("authorization")
  212. if newAuthorization != `` {
  213. authorization = "authorization=" + newAuthorization
  214. } else {
  215. newAuthorization = c.GetString("Authorization")
  216. authorization = "authorization=" + newAuthorization
  217. }
  218. } else {
  219. if strings.Contains(authorization, ";") {
  220. authorization = strings.Replace(authorization, ";", "$", 1)
  221. }
  222. }
  223. if authorization == "" {
  224. strArr := strings.Split(uri, "?")
  225. for k, v := range strArr {
  226. fmt.Println(k, v)
  227. }
  228. if len(strArr) > 1 {
  229. authorization = strArr[1]
  230. authorization = strings.Replace(authorization, "Authorization", "authorization", -1)
  231. fmt.Println(authorization)
  232. }
  233. }
  234. }
  235. }
  236. utils.ApiLog.Info("uri:%s, authorization:%s, requestBody:%s, responseBody:%s, ip:%s", c.Ctx.Input.URI(), authorization, requestBody, respContent, ip)
  237. return
  238. }