Files
casdoor/object/user_upload.go

101 lines
2.1 KiB
Go
Raw Normal View History

2022-02-13 23:39:27 +08:00
// Copyright 2021 The Casdoor Authors. All Rights Reserved.
2021-12-31 12:56:19 +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 (
"sort"
"strings"
2022-01-20 14:11:46 +08:00
"github.com/casdoor/casdoor/util"
"github.com/casdoor/casdoor/xlsx"
2021-12-31 12:56:19 +08:00
)
func getUserMap(owner string) (map[string]*User, error) {
2021-12-31 12:56:19 +08:00
m := map[string]*User{}
users, err := GetUsers(owner)
if err != nil {
return m, err
}
2021-12-31 12:56:19 +08:00
for _, user := range users {
m[user.GetId()] = user
}
return m, nil
2021-12-31 12:56:19 +08:00
}
func parseLineItem(line *[]string, i int) string {
if i >= len(*line) {
return ""
} else {
return (*line)[i]
}
}
func parseLineItemInt(line *[]string, i int) int {
s := parseLineItem(line, i)
return util.ParseInt(s)
}
func parseLineItemBool(line *[]string, i int) bool {
return parseLineItemInt(line, i) != 0
}
func parseListItem(lines *[]string, i int) []string {
if i >= len(*lines) {
return nil
}
line := (*lines)[i]
items := strings.Split(line, ";")
trimmedItems := make([]string, 0, len(items))
for _, item := range items {
trimmedItem := strings.TrimSpace(item)
if trimmedItem != "" {
trimmedItems = append(trimmedItems, trimmedItem)
}
}
sort.Strings(trimmedItems)
return trimmedItems
}
2023-08-24 21:52:30 +08:00
func UploadUsers(owner string, path string) (bool, error) {
table := xlsx.ReadXlsxFile(path)
2021-12-31 12:56:19 +08:00
oldUserMap, err := getUserMap(owner)
if err != nil {
return false, err
}
transUsers, err := StringArrayToUser(table)
if err != nil {
return false, err
}
2021-12-31 12:56:19 +08:00
newUsers := []*User{}
for _, user := range transUsers {
2021-12-31 12:56:19 +08:00
if _, ok := oldUserMap[user.GetId()]; !ok {
newUsers = append(newUsers, user)
}
}
if len(newUsers) == 0 {
return false, nil
2021-12-31 12:56:19 +08:00
}
2021-12-31 12:56:19 +08:00
return AddUsersInBatch(newUsers)
}