|
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- // Copyright 2023 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 (
- "encoding/gob"
-
- "github.com/astaxie/beego"
- "github.com/casdoor/casdoor-go-sdk/casdoorsdk"
- )
-
- type ApiController struct {
- beego.Controller
- }
-
- func init() {
- gob.Register(casdoorsdk.Claims{})
- }
-
- func GetUserName(user *casdoorsdk.User) string {
- if user == nil {
- return ""
- }
-
- return user.Name
- }
-
- func (c *ApiController) GetSessionClaims() *casdoorsdk.Claims {
- s := c.GetSession("user")
- if s == nil {
- return nil
- }
-
- claims := s.(casdoorsdk.Claims)
- return &claims
- }
-
- func (c *ApiController) SetSessionClaims(claims *casdoorsdk.Claims) {
- if claims == nil {
- c.DelSession("user")
- return
- }
-
- c.SetSession("user", *claims)
- }
-
- func (c *ApiController) GetSessionUser() *casdoorsdk.User {
- claims := c.GetSessionClaims()
- if claims == nil {
- return nil
- }
-
- return &claims.User
- }
-
- func (c *ApiController) SetSessionUser(user *casdoorsdk.User) {
- if user == nil {
- c.DelSession("user")
- return
- }
-
- claims := c.GetSessionClaims()
- if claims != nil {
- claims.User = *user
- c.SetSessionClaims(claims)
- }
- }
-
- func (c *ApiController) GetSessionUsername() string {
- user := c.GetSessionUser()
- if user == nil {
- return ""
- }
-
- return GetUserName(user)
- }
|