You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

base.go 1.8 kB

3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. // Copyright 2023 The casbin Authors. All Rights Reserved.
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. package controllers
  15. import (
  16. "encoding/gob"
  17. "github.com/astaxie/beego"
  18. "github.com/casdoor/casdoor-go-sdk/casdoorsdk"
  19. )
  20. type ApiController struct {
  21. beego.Controller
  22. }
  23. func init() {
  24. gob.Register(casdoorsdk.Claims{})
  25. }
  26. func GetUserName(user *casdoorsdk.User) string {
  27. if user == nil {
  28. return ""
  29. }
  30. return user.Name
  31. }
  32. func (c *ApiController) GetSessionClaims() *casdoorsdk.Claims {
  33. s := c.GetSession("user")
  34. if s == nil {
  35. return nil
  36. }
  37. claims := s.(casdoorsdk.Claims)
  38. return &claims
  39. }
  40. func (c *ApiController) SetSessionClaims(claims *casdoorsdk.Claims) {
  41. if claims == nil {
  42. c.DelSession("user")
  43. return
  44. }
  45. c.SetSession("user", *claims)
  46. }
  47. func (c *ApiController) GetSessionUser() *casdoorsdk.User {
  48. claims := c.GetSessionClaims()
  49. if claims == nil {
  50. return nil
  51. }
  52. return &claims.User
  53. }
  54. func (c *ApiController) SetSessionUser(user *casdoorsdk.User) {
  55. if user == nil {
  56. c.DelSession("user")
  57. return
  58. }
  59. claims := c.GetSessionClaims()
  60. if claims != nil {
  61. claims.User = *user
  62. c.SetSessionClaims(claims)
  63. }
  64. }
  65. func (c *ApiController) GetSessionUsername() string {
  66. user := c.GetSessionUser()
  67. if user == nil {
  68. return ""
  69. }
  70. return GetUserName(user)
  71. }

基于Casbin的开源AI领域知识库平台