// 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 ( _ "embed" "github.com/beego/beego" "github.com/casdoor/casdoor-go-sdk/auth" ) //go:embed token_jwt_key.pem var JwtPublicKey string func init() { InitAuthConfig() } func InitAuthConfig() { casdoorEndpoint := beego.AppConfig.String("casdoorEndpoint") clientId := beego.AppConfig.String("clientId") clientSecret := beego.AppConfig.String("clientSecret") casdoorOrganization := beego.AppConfig.String("casdoorOrganization") casdoorApplication := beego.AppConfig.String("casdoorApplication") auth.InitConfig(casdoorEndpoint, clientId, clientSecret, JwtPublicKey, casdoorOrganization, casdoorApplication) } func (c *ApiController) Signin() { code := c.Input().Get("code") state := c.Input().Get("state") token, err := auth.GetOAuthToken(code, state) if err != nil { panic(err) } claims, err := auth.ParseJwtToken(token.AccessToken) if err != nil { panic(err) } claims.AccessToken = token.AccessToken c.SetSessionClaims(claims) c.ResponseOk(claims) } func (c *ApiController) Signout() { c.SetSessionClaims(nil) c.ResponseOk() } func (c *ApiController) GetAccount() { if c.RequireSignedIn() { return } claims := c.GetSessionClaims() c.ResponseOk(claims) }