base.go
1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
package controllers
import (
"encoding/json"
"fmt"
"oppmg/common/log"
"oppmg/protocol"
"strconv"
"github.com/astaxie/beego"
)
//BaseController 基础
type BaseController struct {
beego.Controller
// AppHead protocol.BaseHeader
}
//Prepare 实现beego.ControllerInterface 的接口
func (this *BaseController) Prepare() {
p := this.Ctx.Input.GetData("RouterPattern")
fmt.Println("====>r:", p)
}
func (this *BaseController) GetAppHead() (appHead protocol.BaseHeader) {
appHead.AccessToken = this.Ctx.Input.Header(protocol.HeaderAccessToken)
appHead.RefreshToken = this.Ctx.Input.Header(protocol.HeaderRefreshToken)
appHead.UID, _ = strconv.Atoi(this.Ctx.Input.Header(protocol.HeaderUID))
appHead.UUID = this.Ctx.Input.Header(protocol.HeaderUUID)
appHead.Timestamp, _ = strconv.Atoi(this.Ctx.Input.Header(protocol.HeaderTimestamp))
appHead.Devicetype = this.Ctx.Input.Header(protocol.HeaderDevicetype)
appHead.AppProject = this.Ctx.Input.Header(protocol.HeaderAppproject)
return
}
//Finish 实现beego.ControllerInterface 的接口
func (this *BaseController) Finish() {
strByte, _ := json.Marshal(this.Data["json"])
length := len(strByte)
if length > 5000 {
log.Info(fmt.Sprintf("<====Send to client: RspBodyData: %s......", string(strByte[:5000])))
} else {
log.Info(fmt.Sprintf("<====Send to client: RspBodyData: %s", string(strByte)))
}
}
func (this *BaseController) ResposeJson(msg *protocol.ResponseMessage) {
this.Data["json"] = msg
this.ServeJSON()
}