forked from casdoor/casdoor
81 lines
1.8 KiB
Go
81 lines
1.8 KiB
Go
// Copyright 2023 The Casdoor 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 object
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
|
|
"github.com/casdoor/casdoor/xlsx"
|
|
)
|
|
|
|
func getPermissionMap(owner string) (map[string]*Permission, error) {
|
|
m := map[string]*Permission{}
|
|
|
|
permissions, err := GetPermissions(owner)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
for _, permission := range permissions {
|
|
m[permission.GetId()] = permission
|
|
}
|
|
|
|
return m, err
|
|
}
|
|
|
|
func UploadPermissions(owner string, path string) (bool, error) {
|
|
table := xlsx.ReadXlsxFile(path)
|
|
|
|
if len(table) == 0 {
|
|
return false, fmt.Errorf("empty table")
|
|
}
|
|
|
|
for idx, row := range table[0] {
|
|
splitRow := strings.Split(row, "#")
|
|
if len(splitRow) > 1 {
|
|
table[0][idx] = splitRow[1]
|
|
}
|
|
}
|
|
|
|
uploadedPermissions, err := StringArrayToStruct[Permission](table)
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
|
|
oldPermissionMap, err := getPermissionMap(owner)
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
|
|
newPermissions := []*Permission{}
|
|
for _, permission := range uploadedPermissions {
|
|
if _, ok := oldPermissionMap[permission.GetId()]; !ok {
|
|
newPermissions = append(newPermissions, permission)
|
|
}
|
|
}
|
|
|
|
if len(newPermissions) == 0 {
|
|
return false, nil
|
|
}
|
|
|
|
affected, err := AddPermissionsInBatch(newPermissions)
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
|
|
return affected, nil
|
|
}
|