base_auth.go 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  1. package controllers
  2. import (
  3. "encoding/json"
  4. "fmt"
  5. "hongze/hongze_chart_lib/models"
  6. "hongze/hongze_chart_lib/utils"
  7. "net/http"
  8. "net/url"
  9. "github.com/beego/beego/v2/server/web"
  10. "github.com/rdlucklib/rdluck_tools/log"
  11. )
  12. var apiLog *log.Log
  13. func init() {
  14. if utils.RunMode == "release" {
  15. logDir := `/data/rdlucklog/hongze_admin`
  16. apiLog = log.Init("20060102.api", logDir)
  17. } else {
  18. apiLog = log.Init("20060102.api")
  19. }
  20. }
  21. type BaseAuthController struct {
  22. web.Controller
  23. }
  24. func (this *BaseAuthController) Prepare() {
  25. fmt.Println("enter prepare")
  26. method := this.Ctx.Input.Method()
  27. uri := this.Ctx.Input.URI()
  28. fmt.Println("Url:", uri)
  29. if method != "HEAD" {
  30. if method == "POST" || method == "GET" {
  31. //authorization := this.Ctx.Input.Header("authorization")
  32. //if authorization == "" {
  33. // authorization = this.Ctx.Input.Header("Authorization")
  34. //}
  35. //if authorization == "" {
  36. // newAuthorization := this.GetString("authorization")
  37. // account := this.GetString("account")
  38. // authorization = "authorization=" + newAuthorization + ";account=" + account
  39. // if newAuthorization == "" {
  40. // newAuthorization = this.GetString("Authorization")
  41. // if account == "" {
  42. // account = this.GetString("Account")
  43. // }
  44. // authorization = "authorization=" + newAuthorization + ";account=" + account
  45. // }
  46. //}
  47. //fmt.Println("authorization##################")
  48. //fmt.Println(authorization)
  49. //fmt.Println("authorization############")
  50. //if authorization == "" {
  51. // strArr := strings.Split(uri, "?")
  52. // for k, v := range strArr {
  53. // fmt.Println(k, v)
  54. // }
  55. // if len(strArr) > 1 {
  56. // authorization := strArr[1]
  57. // authorization = strings.Replace(authorization, "Authorization", "authorization", -1)
  58. // fmt.Println(authorization)
  59. // }
  60. //}
  61. //fmt.Println("authorization------------")
  62. //fmt.Println(authorization)
  63. //fmt.Println("authorization-------------")
  64. //if authorization == "" {
  65. // this.JSON(models.BaseResponse{Ret: 408, Msg: "请重新授权!", ErrMsg: "请重新授权:Token is empty or account is empty"}, false, false)
  66. // this.StopRun()
  67. // return
  68. //}
  69. //authorizationArr := strings.Split(authorization, ";")
  70. //tokenStr := authorizationArr[0]
  71. //tokenArr := strings.Split(tokenStr, "=")
  72. //token := tokenArr[1]
  73. //
  74. //accountStr := authorizationArr[1]
  75. //accountArr := strings.Split(accountStr, "=")
  76. //account := accountArr[1]
  77. //
  78. //fmt.Println("token:", token)
  79. //fmt.Println("account:", account)
  80. ////校验token是否合法
  81. //// JWT校验Token和Account
  82. //if !utils.CheckToken(account, token) {
  83. // fmt.Println("CheckToken Err")
  84. // this.JSON(models.BaseResponse{Ret: 408, Msg: "鉴权失败,请重新登录!", ErrMsg: "登录失效,请重新登陆!,CheckToken Fail"}, false, false)
  85. // this.StopRun()
  86. // return
  87. //}
  88. //
  89. //fmt.Println("GetUserByToken")
  90. //session, err := system.GetSysSessionByToken(token)
  91. //if err != nil {
  92. // if err.Error() == utils.ErrNoRow() {
  93. // this.JSON(models.BaseResponse{Ret: 408, Msg: "信息已变更,请重新登陆!", ErrMsg: "Token 信息已变更:Token: " + token}, false, false)
  94. // this.StopRun()
  95. // return
  96. // }
  97. // this.JSON(models.BaseResponse{Ret: 408, Msg: "网络异常,请稍后重试!", ErrMsg: "获取用户信息异常,Eerr:" + err.Error()}, false, false)
  98. // this.StopRun()
  99. // return
  100. //}
  101. //if session == nil {
  102. // this.JSON(models.BaseResponse{Ret: 408, Msg: "网络异常,请稍后重试!", ErrMsg: "sesson is empty "}, false, false)
  103. // this.StopRun()
  104. // return
  105. //}
  106. //if time.Now().After(session.ExpiredTime) {
  107. // this.JSON(models.BaseResponse{Ret: 408, Msg: "请重新登录!", ErrMsg: "获取用户信息异常,Eerr:" + err.Error()}, false, false)
  108. // this.StopRun()
  109. // return
  110. //}
  111. //admin, err := system.GetSysUserById(session.SysUserId)
  112. //if err != nil {
  113. // if err.Error() == utils.ErrNoRow() {
  114. // this.JSON(models.BaseResponse{Ret: 408, Msg: "信息已变更,请重新登陆!", ErrMsg: "获取admin 信息失败 " + strconv.Itoa(session.SysUserId)}, false, false)
  115. // this.StopRun()
  116. // return
  117. // }
  118. // this.JSON(models.BaseResponse{Ret: 408, Msg: "网络异常,请稍后重试!", ErrMsg: "获取admin信息异常,Eerr:" + err.Error()}, false, false)
  119. // this.StopRun()
  120. // return
  121. //}
  122. //if admin == nil {
  123. // this.JSON(models.BaseResponse{Ret: 408, Msg: "网络异常,请稍后重试!", ErrMsg: "admin is empty "}, false, false)
  124. // this.StopRun()
  125. // return
  126. //}
  127. //admin.RoleTypeCode = GetSysUserRoleTypeCode(admin.RoleTypeCode)
  128. //this.SysUser = admin
  129. } else {
  130. this.JSON(models.BaseResponse{Ret: 408, Msg: "请求异常,请联系客服!", ErrMsg: "POST之外的请求,暂不支持"}, false, false)
  131. this.StopRun()
  132. return
  133. }
  134. }
  135. }
  136. func (c *BaseAuthController) ServeJSON(encoding ...bool) {
  137. var (
  138. hasIndent = false
  139. hasEncoding = false
  140. )
  141. if web.BConfig.RunMode == web.PROD {
  142. hasIndent = false
  143. }
  144. if len(encoding) > 0 && encoding[0] == true {
  145. hasEncoding = true
  146. }
  147. if c.Data["json"] == nil {
  148. go utils.SendEmail("异常提醒:", "接口:"+"URI:"+c.Ctx.Input.URI()+";无返回值", utils.EmailSendToUsers)
  149. return
  150. }
  151. baseRes := c.Data["json"].(*models.BaseResponse)
  152. if baseRes != nil && baseRes.Ret != 200 && baseRes.Ret != 408 && baseRes.IsSendEmail {
  153. body, _ := json.Marshal(baseRes)
  154. var requestBody string
  155. method := c.Ctx.Input.Method()
  156. if method == "GET" {
  157. requestBody = c.Ctx.Request.RequestURI
  158. } else {
  159. requestBody, _ = url.QueryUnescape(string(c.Ctx.Input.RequestBody))
  160. }
  161. go utils.SendEmail(utils.APPNAME+"【"+utils.RunMode+"】"+"失败提醒", "URI:"+c.Ctx.Input.URI()+"<br/> "+"Params"+requestBody+" <br/>"+"ErrMsg:"+baseRes.ErrMsg+";<br/>Msg:"+baseRes.Msg+";<br/> Body:"+string(body)+"<br/>", utils.EmailSendToUsers)
  162. }
  163. c.JSON(c.Data["json"], hasIndent, hasEncoding)
  164. }
  165. func (c *BaseAuthController) JSON(data interface{}, hasIndent bool, coding bool) error {
  166. c.Ctx.Output.Header("Content-Type", "application/json; charset=utf-8")
  167. var content []byte
  168. var err error
  169. if hasIndent {
  170. content, err = json.MarshalIndent(data, "", " ")
  171. } else {
  172. content, err = json.Marshal(data)
  173. }
  174. if err != nil {
  175. http.Error(c.Ctx.Output.Context.ResponseWriter, err.Error(), http.StatusInternalServerError)
  176. return err
  177. }
  178. ip := c.Ctx.Input.IP()
  179. requestBody, err := url.QueryUnescape(string(c.Ctx.Input.RequestBody))
  180. if err != nil {
  181. requestBody = string(c.Ctx.Input.RequestBody)
  182. }
  183. if requestBody == "" {
  184. requestBody = c.Ctx.Input.URI()
  185. }
  186. apiLog.Println("请求地址:", c.Ctx.Input.URI(), "Authorization:", c.Ctx.Input.Header("Authorization"), "RequestBody:", requestBody, "ResponseBody", string(content), "IP:", ip)
  187. if coding {
  188. content = []byte(utils.StringsToJSON(string(content)))
  189. }
  190. return c.Ctx.Output.Body(content)
  191. }