|
- // 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 casdoor
-
- import (
- "github.com/casbin/casibase/util"
- "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"`
- Domains []string `xorm:"mediumtext" json:"domains"`
-
- Model string `xorm:"varchar(100)" json:"model"`
- 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"`
-
- Submitter string `xorm:"varchar(100)" json:"submitter"`
- Approver string `xorm:"varchar(100)" json:"approver"`
- ApproveTime string `xorm:"varchar(100)" json:"approveTime"`
- State string `xorm:"varchar(100)" json:"state"`
- }
-
- func GetPermissions(owner string) ([]*Permission, error) {
- permissions := []*Permission{}
- err := adapter.Engine.Desc("created_time").Find(&permissions, &Permission{Owner: owner})
- if err != nil {
- return permissions, err
- }
-
- return permissions, nil
- }
-
- func getPermission(owner string, name string) (*Permission, error) {
- if owner == "" || name == "" {
- return nil, nil
- }
-
- permission := Permission{Owner: owner, Name: name}
- existed, err := adapter.Engine.Get(&permission)
- if err != nil {
- return &permission, err
- }
-
- if existed {
- return &permission, nil
- } else {
- return nil, nil
- }
- }
-
- func GetPermission(id string) (*Permission, error) {
- owner, name := util.GetOwnerAndNameFromId(id)
- return getPermission(owner, name)
- }
-
- func UpdatePermission(id string, permission *Permission) (bool, error) {
- owner, name := util.GetOwnerAndNameFromId(id)
- oldPermission, err := getPermission(owner, name)
- if err != nil {
- return false, err
- }
- if oldPermission == nil {
- return false, nil
- }
-
- affected, err := adapter.Engine.ID(core.PK{owner, name}).AllCols().Update(permission)
- if err != nil {
- return false, err
- }
-
- return affected != 0, nil
- }
-
- func AddPermission(permission *Permission) (bool, error) {
- affected, err := adapter.Engine.Insert(permission)
- if err != nil {
- return false, err
- }
-
- return affected != 0, nil
- }
-
- func DeletePermission(permission *Permission) (bool, error) {
- affected, err := adapter.Engine.ID(core.PK{permission.Owner, permission.Name}).Delete(&Permission{})
- if err != nil {
- return false, err
- }
-
- return affected != 0, nil
- }
|