90 lines
2.1 KiB
Go
90 lines
2.1 KiB
Go
// Copyright 2021 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/astaxie/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 {
|
|
c.ResponseError(err.Error())
|
|
return
|
|
}
|
|
|
|
claims, err := auth.ParseJwtToken(token.AccessToken)
|
|
if err != nil {
|
|
c.ResponseError(err.Error())
|
|
return
|
|
}
|
|
|
|
claims.AccessToken = token.AccessToken
|
|
c.SetSessionClaims(claims)
|
|
|
|
c.ResponseOk(claims)
|
|
}
|
|
|
|
func (c *ApiController) Signout() {
|
|
claims := c.GetSessionClaims()
|
|
if claims != nil {
|
|
clearUserDuplicated(claims)
|
|
}
|
|
|
|
c.SetSessionClaims(nil)
|
|
|
|
c.ResponseOk()
|
|
}
|
|
|
|
func (c *ApiController) GetAccount() {
|
|
if c.RequireSignedIn() {
|
|
return
|
|
}
|
|
|
|
claims := c.GetSessionClaims()
|
|
|
|
if isUserDuplicated(claims) {
|
|
if !claims.IsAdmin {
|
|
c.ResponseError("you have signed in from another place, this session has been ended")
|
|
return
|
|
}
|
|
}
|
|
|
|
c.ResponseOk(claims)
|
|
}
|