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.

account.go 1.9 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
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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. _ "embed"
  17. "github.com/astaxie/beego"
  18. "github.com/casdoor/casdoor-go-sdk/casdoorsdk"
  19. )
  20. //go:embed token_jwt_key.pem
  21. var JwtPublicKey string
  22. func init() {
  23. InitAuthConfig()
  24. }
  25. func InitAuthConfig() {
  26. casdoorEndpoint := beego.AppConfig.String("casdoorEndpoint")
  27. clientId := beego.AppConfig.String("clientId")
  28. clientSecret := beego.AppConfig.String("clientSecret")
  29. casdoorOrganization := beego.AppConfig.String("casdoorOrganization")
  30. casdoorApplication := beego.AppConfig.String("casdoorApplication")
  31. casdoorsdk.InitConfig(casdoorEndpoint, clientId, clientSecret, JwtPublicKey, casdoorOrganization, casdoorApplication)
  32. }
  33. func (c *ApiController) Signin() {
  34. code := c.Input().Get("code")
  35. state := c.Input().Get("state")
  36. token, err := casdoorsdk.GetOAuthToken(code, state)
  37. if err != nil {
  38. c.ResponseError(err.Error())
  39. return
  40. }
  41. claims, err := casdoorsdk.ParseJwtToken(token.AccessToken)
  42. if err != nil {
  43. c.ResponseError(err.Error())
  44. return
  45. }
  46. claims.AccessToken = token.AccessToken
  47. c.SetSessionClaims(claims)
  48. c.ResponseOk(claims)
  49. }
  50. func (c *ApiController) Signout() {
  51. c.SetSessionClaims(nil)
  52. c.ResponseOk()
  53. }
  54. func (c *ApiController) GetAccount() {
  55. _, ok := c.RequireSignedIn()
  56. if !ok {
  57. return
  58. }
  59. claims := c.GetSessionClaims()
  60. c.ResponseOk(claims)
  61. }