openscore/controllers/base.go

69 lines
1.5 KiB
Go
Raw Normal View History

2021-07-24 23:48:03 +08:00
/*
* @Author: Junlang
* @Date: 2021-07-23 01:02:30
* @LastEditTime: 2021-07-23 17:10:55
* @LastEditors: Junlang
* @FilePath: /openscore/controllers/base.go
*/
// Copyright 2020 The casbin Authors. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package controllers
import (
"openscore/auth"
"openscore/util"
beego "github.com/beego/beego/v2/adapter"
// "github.com/astaxie/beego"
)
type ApiController struct {
beego.Controller
}
func (c *ApiController) GetSessionUser() *auth.Claims {
s := c.GetSession("user")
if s == nil {
return nil
}
claims := &auth.Claims{}
err := util.JsonToStruct(s.(string), claims)
if err != nil {
panic(err)
}
return claims
}
func (c *ApiController) SetSessionUser(claims *auth.Claims) {
if claims == nil {
c.DelSession("user")
return
}
s := util.StructToJson(claims)
c.SetSession("user", s)
}
func (c *ApiController) GetSessionUsername() string {
claims := c.GetSessionUser()
if claims == nil {
return ""
}
return claims.Username
}