2022-02-13 23:39:27 +08:00
|
|
|
// Copyright 2021 The Casdoor Authors. All Rights Reserved.
|
2021-07-07 14:59:03 +08:00
|
|
|
//
|
|
|
|
// 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 routers
|
|
|
|
|
|
|
|
import (
|
2024-03-25 21:20:33 +08:00
|
|
|
"fmt"
|
|
|
|
|
2022-09-29 19:44:08 +08:00
|
|
|
"github.com/beego/beego/context"
|
2022-01-20 14:11:46 +08:00
|
|
|
"github.com/casdoor/casdoor/object"
|
|
|
|
"github.com/casdoor/casdoor/util"
|
2024-03-27 15:15:40 +08:00
|
|
|
"github.com/casvisor/casvisor-go-sdk/casvisorsdk"
|
2021-07-07 14:59:03 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
func getUser(ctx *context.Context) (username string) {
|
|
|
|
defer func() {
|
|
|
|
if r := recover(); r != nil {
|
|
|
|
username = getUserByClientIdSecret(ctx)
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
username = ctx.Input.Session("username").(string)
|
|
|
|
|
|
|
|
if username == "" {
|
|
|
|
username = getUserByClientIdSecret(ctx)
|
|
|
|
}
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func getUserByClientIdSecret(ctx *context.Context) string {
|
2021-09-05 22:02:32 +08:00
|
|
|
clientId := ctx.Input.Query("clientId")
|
|
|
|
clientSecret := ctx.Input.Query("clientSecret")
|
|
|
|
if clientId == "" || clientSecret == "" {
|
2021-07-07 14:59:03 +08:00
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2023-05-30 15:49:39 +08:00
|
|
|
application, err := object.GetApplicationByClientId(clientId)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
2021-09-05 22:09:54 +08:00
|
|
|
if application == nil || application.ClientSecret != clientSecret {
|
2021-07-07 14:59:03 +08:00
|
|
|
return ""
|
|
|
|
}
|
2021-09-05 22:09:54 +08:00
|
|
|
|
2023-05-19 14:26:32 +08:00
|
|
|
return util.GetId(application.Organization, application.Name)
|
2021-07-07 14:59:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func RecordMessage(ctx *context.Context) {
|
2022-03-01 18:25:48 +08:00
|
|
|
if ctx.Request.URL.Path == "/api/login" || ctx.Request.URL.Path == "/api/signup" {
|
2021-09-05 22:02:32 +08:00
|
|
|
return
|
|
|
|
}
|
2021-09-05 22:09:54 +08:00
|
|
|
|
|
|
|
userId := getUser(ctx)
|
2024-03-22 14:53:38 +08:00
|
|
|
|
|
|
|
ctx.Input.SetParam("recordUserId", userId)
|
|
|
|
}
|
|
|
|
|
|
|
|
func AfterRecordMessage(ctx *context.Context) {
|
|
|
|
record, err := object.NewRecord(ctx)
|
|
|
|
if err != nil {
|
2024-03-25 21:20:33 +08:00
|
|
|
fmt.Printf("AfterRecordMessage() error: %s\n", err.Error())
|
2024-03-22 14:53:38 +08:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
userId := ctx.Input.Params()["recordUserId"]
|
2021-09-05 22:09:54 +08:00
|
|
|
if userId != "" {
|
2021-11-07 17:20:15 +08:00
|
|
|
record.Organization, record.User = util.GetOwnerAndNameFromId(userId)
|
2021-09-05 22:09:54 +08:00
|
|
|
}
|
|
|
|
|
2024-03-27 15:15:40 +08:00
|
|
|
var record2 *casvisorsdk.Record
|
2024-03-22 14:53:38 +08:00
|
|
|
recordSignup := ctx.Input.Params()["recordSignup"]
|
|
|
|
if recordSignup == "true" {
|
2024-03-27 15:15:40 +08:00
|
|
|
record2 = object.CopyRecord(record)
|
2024-03-25 21:20:33 +08:00
|
|
|
record2.Action = "new-user"
|
|
|
|
|
|
|
|
var user *object.User
|
|
|
|
user, err = object.GetUser(userId)
|
|
|
|
if err != nil {
|
|
|
|
fmt.Printf("AfterRecordMessage() error: %s\n", err.Error())
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if user == nil {
|
|
|
|
err = fmt.Errorf("the user: %s is not found", userId)
|
|
|
|
fmt.Printf("AfterRecordMessage() error: %s\n", err.Error())
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2024-03-27 15:15:40 +08:00
|
|
|
record2.Object = util.StructToJson(user)
|
2024-03-22 14:53:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
util.SafeGoroutine(func() {
|
|
|
|
object.AddRecord(record)
|
2024-03-27 15:15:40 +08:00
|
|
|
|
|
|
|
if record2 != nil {
|
|
|
|
object.AddRecord(record2)
|
|
|
|
}
|
2024-03-22 14:53:38 +08:00
|
|
|
})
|
2021-07-07 14:59:03 +08:00
|
|
|
}
|