base_auth.go 7.0 KB

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