123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- package controllers
- import (
- "encoding/json"
- "fmt"
- "github.com/beego/beego/v2/server/web"
- "hongze/hongze_open_api/utils"
- "net/url"
- )
- //不需要授权的基类
- type BaseCommon struct {
- web.Controller
- Response
- }
- type Response struct {
- Code int `json:"code"`
- Data interface{} `json:"data"`
- Msg string `json:"msg"`
- }
- const (
- SUCCESS = 200 //成功
- ERROR = 400 //代表业务处理失败,前端同学需要做额外逻辑处理
- SIGN_ERROR = 401 //签名异常
- )
- //返回数据
- func (c BaseCommon) Result() {
- var content []byte
- var err error
- content, err = json.Marshal(c.Response)
- ip := c.Ctx.Input.IP()
- requestBody, err := url.QueryUnescape(string(c.Ctx.Input.RequestBody))
- if err != nil {
- fmt.Println("base auth url.QueryUnescape Err:", err.Error())
- requestBody = string(c.Ctx.Input.RequestBody)
- }
- utils.ApiLog.Println("请求地址:", c.Ctx.Input.URI(), "RequestBody:", requestBody, "ResponseBody", string(content), "IP:", ip)
- c.Controller.Data["json"] = c.Response
- c.Controller.ServeJSON()
- c.StopRun()
- }
- //没有任何信息的返回
- func (c BaseCommon) Ok() {
- c.Response.Code = SUCCESS
- c.Response.Msg = "操作成功"
- c.Response.Data = map[string]interface{}{}
- c.Result()
- }
- func (c BaseCommon) OkWithMessage(message string) {
- c.Response.Code = SUCCESS
- c.Response.Msg = message
- c.Response.Data = map[string]interface{}{}
- c.Result()
- }
- func (c BaseCommon) OkWithData(data interface{}) {
- c.Response.Code = SUCCESS
- c.Response.Msg = "操作成功"
- c.Response.Data = data
- c.Result()
- }
- func (c BaseCommon) OkDetailed(data interface{}, message string) {
- c.Response.Code = SUCCESS
- c.Response.Msg = message
- c.Response.Data = data
- c.Result()
- }
- func (c BaseCommon) Fail() {
- c.Response.Code = ERROR
- c.Response.Msg = "操作失败"
- c.Response.Data = map[string]interface{}{}
- c.Result()
- }
- func (c BaseCommon) FailWithMessage(message string) {
- c.Response.Code = ERROR
- c.Response.Msg = message
- c.Response.Data = map[string]interface{}{}
- c.Result()
- }
- func (c BaseCommon) FailWithDetailed(code int, data interface{}, message string) {
- c.Response.Code = code
- c.Response.Msg = message
- c.Response.Data = data
- c.Result()
- }
- // SignError 签名异常
- func (c BaseCommon) SignError(message string) {
- c.Response.Code = SIGN_ERROR
- c.Response.Msg = message
- c.Response.Data = map[string]interface{}{}
- c.Result()
- }
|