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 (
|
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"
|
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
|
|
|
|
2021-11-07 16:51:16 +08:00
|
|
|
record := object.NewRecord(ctx)
|
2021-09-05 22:09:54 +08:00
|
|
|
|
|
|
|
userId := getUser(ctx)
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2022-05-31 21:49:56 +08:00
|
|
|
util.SafeGoroutine(func() { object.AddRecord(record) })
|
2021-07-07 14:59:03 +08:00
|
|
|
}
|