123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172 |
- package controllers
- import (
- "encoding/json"
- "eta_gn/eta_api/cache"
- "eta_gn/eta_api/models"
- "eta_gn/eta_api/services/alarm_msg"
- "eta_gn/eta_api/utils"
- "fmt"
- "github.com/beego/beego/v2/server/web"
- "net/http"
- "net/url"
- "strings"
- )
- type BaseCommonController struct {
- web.Controller
- Lang string `description:"当前语言类型,中文:zh;英文:en;默认:zh"`
- }
- func (c *BaseCommonController) Prepare() {
- var requestBody string
- method := c.Ctx.Input.Method()
- if method == "GET" {
- requestBody = c.Ctx.Request.RequestURI
- } else {
- requestBody, _ = url.QueryUnescape(string(c.Ctx.Input.RequestBody))
- }
- // 当前语言
- {
- lang := c.Ctx.Input.Header("Lang")
- if lang == "" {
- lang = utils.ZhLangVersion
- }
- c.Lang = lang
- }
- ip := c.Ctx.Input.IP()
- utils.ApiLog.Info("uri:%s, requestBody:%s, responseBody:%s, ip:%s", c.Ctx.Input.URI(), requestBody, ip)
- }
- func (c *BaseCommonController) ServeJSON(encoding ...bool) {
- var (
- hasIndent = false
- hasEncoding = false
- )
- if web.BConfig.RunMode == web.PROD {
- hasIndent = false
- }
- if len(encoding) > 0 && encoding[0] == true {
- hasEncoding = true
- }
- if c.Data["json"] == nil {
- //go utils.SendEmail("异常提醒:"+utils.RunMode, "接口:"+"URI:"+c.Ctx.Input.URI()+";无返回值", utils.EmailSendToUsers)
- go alarm_msg.SendAlarmMsg("接口:URI:"+c.Ctx.Input.URI()+";无返回值", 3)
- return
- }
- baseRes := c.Data["json"].(*models.BaseResponse)
- if baseRes != nil && !baseRes.Success && baseRes.IsSendEmail {
- //go utils.SendEmail(utils.APPNAME+"【"+utils.RunMode+"】"+"失败提醒", "URI:"+c.Ctx.Input.URI()+" ErrMsg:"+baseRes.ErrMsg+";Msg"+baseRes.Msg, utils.EmailSendToUsers)
- go alarm_msg.SendAlarmMsg("失败提醒:URI:"+c.Ctx.Input.URI()+" ErrMsg:"+baseRes.ErrMsg+";Msg"+baseRes.Msg, 3)
- }
- //新增uuid记录
- {
- urlPath := c.Ctx.Request.URL.Path
- if _, ok := AdminOperateRecordMap[urlPath]; !ok {
- var adminId int
- var realName, params, ip, uriStr string
- ip = c.Ctx.Input.IP()
- uuid := c.Ctx.Input.Header("Uuid")
- uri := c.Ctx.Input.URI()
- userAgent := c.Ctx.Input.Header("User-Agent")
- uriStr, _ = url.PathUnescape(uri)
- if uriStr != "" {
- uri = uriStr
- }
- if c.Ctx.Input.Method() == "GET" {
- paramsJson, _ := json.Marshal(c.Ctx.Input.Params())
- params = string(paramsJson)
- } else {
- params = string(c.Ctx.Input.RequestBody)
- }
- header := c.Ctx.Request.Header
- headerJson, _ := json.Marshal(header)
- headerStr := string(headerJson)
- go cache.AdminOperateRecord(adminId, realName, uuid, uri, params, ip, userAgent, headerStr)
- }
- }
- c.JSON(c.Data["json"], hasIndent, hasEncoding)
- }
- func (c *BaseCommonController) JSON(data interface{}, hasIndent bool, coding bool) error {
- c.Ctx.Output.Header("Content-Type", "application/json; charset=utf-8")
- desEncrypt := utils.DesBase64Encrypt([]byte(utils.DesKey), utils.DesKeySalt)
- c.Ctx.Output.Header("Dk", string(desEncrypt)) // des3加解密key
- // 设置Cookie为HTTPOnly
- c.Ctx.SetCookie("", "", -1, "/", "", false, true, "")
- var content []byte
- var err error
- if hasIndent {
- content, err = json.MarshalIndent(data, "", " ")
- } else {
- content, err = json.Marshal(data)
- }
- if err != nil {
- http.Error(c.Ctx.Output.Context.ResponseWriter, err.Error(), http.StatusInternalServerError)
- return err
- }
- ip := c.Ctx.Input.IP()
- params := c.Ctx.Input.Params()
- fmt.Println("params")
- fmt.Println(params)
- requestBody, _ := url.QueryUnescape(string(c.Ctx.Input.RequestBody))
- c.logUri(content, requestBody, ip)
- // 如果不是debug分支的话,那么需要加密返回
- if utils.RunMode != "debug" {
- content = utils.DesBase64Encrypt(content, utils.DesKey)
- // get请求时,不加双引号就获取不到数据,不知道什么原因,所以还是在前后加上双引号吧
- content = []byte(`"` + string(content) + `"`)
- }
- if coding {
- content = []byte(utils.StringsToJSON(string(content)))
- }
- return c.Ctx.Output.Body(content)
- }
- func (c *BaseCommonController) logUri(respContent []byte, requestBody, ip string) {
- authorization := ""
- method := c.Ctx.Input.Method()
- uri := c.Ctx.Input.URI()
- //fmt.Println("Url:", uri)
- if method != "HEAD" {
- if method == "POST" || method == "GET" {
- authorization = c.Ctx.Input.Header("authorization")
- if authorization == "" {
- authorization = c.Ctx.Input.Header("Authorization")
- }
- if authorization == "" {
- newAuthorization := c.GetString("authorization")
- if newAuthorization != `` {
- authorization = "authorization=" + newAuthorization
- } else {
- newAuthorization = c.GetString("Authorization")
- authorization = "authorization=" + newAuthorization
- }
- } else {
- if strings.Contains(authorization, ";") {
- authorization = strings.Replace(authorization, ";", "$", 1)
- }
- }
- if authorization == "" {
- strArr := strings.Split(uri, "?")
- for k, v := range strArr {
- fmt.Println(k, v)
- }
- if len(strArr) > 1 {
- authorization = strArr[1]
- authorization = strings.Replace(authorization, "Authorization", "authorization", -1)
- fmt.Println(authorization)
- }
- }
- }
- }
- utils.ApiLog.Info("uri:%s, authorization:%s, requestBody:%s, responseBody:%s, ip:%s", c.Ctx.Input.URI(), authorization, requestBody, respContent, ip)
- return
- }
|