2022-02-13 23:39:27 +08:00
|
|
|
// Copyright 2021 The Casdoor Authors. All Rights Reserved.
|
2022-01-01 16:28:06 +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 object
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
2022-01-20 14:11:46 +08:00
|
|
|
"github.com/casdoor/casdoor/util"
|
2022-01-01 16:28:06 +08:00
|
|
|
"xorm.io/core"
|
|
|
|
)
|
|
|
|
|
|
|
|
type Permission struct {
|
|
|
|
Owner string `xorm:"varchar(100) notnull pk" json:"owner"`
|
|
|
|
Name string `xorm:"varchar(100) notnull pk" json:"name"`
|
|
|
|
CreatedTime string `xorm:"varchar(100)" json:"createdTime"`
|
|
|
|
DisplayName string `xorm:"varchar(100)" json:"displayName"`
|
|
|
|
|
|
|
|
Users []string `xorm:"mediumtext" json:"users"`
|
|
|
|
Roles []string `xorm:"mediumtext" json:"roles"`
|
|
|
|
|
2022-05-24 18:27:47 +08:00
|
|
|
Model string `xorm:"varchar(100)" json:"model"`
|
2022-01-01 16:28:06 +08:00
|
|
|
ResourceType string `xorm:"varchar(100)" json:"resourceType"`
|
|
|
|
Resources []string `xorm:"mediumtext" json:"resources"`
|
|
|
|
Actions []string `xorm:"mediumtext" json:"actions"`
|
|
|
|
Effect string `xorm:"varchar(100)" json:"effect"`
|
|
|
|
|
|
|
|
IsEnabled bool `json:"isEnabled"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func GetPermissionCount(owner, field, value string) int {
|
2022-01-26 19:36:36 +08:00
|
|
|
session := GetSession(owner, -1, -1, field, value, "", "")
|
2022-01-01 16:28:06 +08:00
|
|
|
count, err := session.Count(&Permission{})
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return int(count)
|
|
|
|
}
|
|
|
|
|
|
|
|
func GetPermissions(owner string) []*Permission {
|
|
|
|
permissions := []*Permission{}
|
|
|
|
err := adapter.Engine.Desc("created_time").Find(&permissions, &Permission{Owner: owner})
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return permissions
|
|
|
|
}
|
|
|
|
|
|
|
|
func GetPaginationPermissions(owner string, offset, limit int, field, value, sortField, sortOrder string) []*Permission {
|
|
|
|
permissions := []*Permission{}
|
|
|
|
session := GetSession(owner, offset, limit, field, value, sortField, sortOrder)
|
|
|
|
err := session.Find(&permissions)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return permissions
|
|
|
|
}
|
|
|
|
|
|
|
|
func getPermission(owner string, name string) *Permission {
|
|
|
|
if owner == "" || name == "" {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
permission := Permission{Owner: owner, Name: name}
|
|
|
|
existed, err := adapter.Engine.Get(&permission)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if existed {
|
|
|
|
return &permission
|
|
|
|
} else {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func GetPermission(id string) *Permission {
|
|
|
|
owner, name := util.GetOwnerAndNameFromId(id)
|
|
|
|
return getPermission(owner, name)
|
|
|
|
}
|
|
|
|
|
|
|
|
func UpdatePermission(id string, permission *Permission) bool {
|
|
|
|
owner, name := util.GetOwnerAndNameFromId(id)
|
|
|
|
if getPermission(owner, name) == nil {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
affected, err := adapter.Engine.ID(core.PK{owner, name}).AllCols().Update(permission)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return affected != 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func AddPermission(permission *Permission) bool {
|
|
|
|
affected, err := adapter.Engine.Insert(permission)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return affected != 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func DeletePermission(permission *Permission) bool {
|
|
|
|
affected, err := adapter.Engine.ID(core.PK{permission.Owner, permission.Name}).Delete(&Permission{})
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return affected != 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func (permission *Permission) GetId() string {
|
|
|
|
return fmt.Sprintf("%s/%s", permission.Owner, permission.Name)
|
|
|
|
}
|