package controllers

import (
	"encoding/json"
	"fmt"
	"oppmg/common/log"
	"oppmg/protocol"
	"strconv"

	"github.com/astaxie/beego"
)

//BaseController 基础
type BaseController struct {
	beego.Controller
}

//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)
	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()
}

func (this *BaseController) GetCompanyId() int64 {
	v := this.Ctx.Input.GetData(protocol.HeaderCompanyid)
	companyid, _ := strconv.ParseInt(fmt.Sprint(v), 10, 64)
	return companyid
}

func (this *BaseController) GetUserId() int64 {
	v := this.Ctx.Input.GetData(protocol.HeaderUserid)
	userid, _ := strconv.ParseInt(fmt.Sprint(v), 10, 64)
	return userid
}