casdoor/object/syncer_public_api.go

103 lines
2.2 KiB
Go
Raw Permalink Normal View History

2022-02-13 23:39:27 +08:00
// Copyright 2021 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.
2021-12-18 01:08:03 +08:00
package object
import "fmt"
func getDbSyncerForUser(user *User) (*Syncer, error) {
syncers, err := GetSyncers("admin")
if err != nil {
return nil, err
}
2021-12-19 22:30:54 +08:00
for _, syncer := range syncers {
if syncer.Organization == user.Owner && syncer.IsEnabled && syncer.Type == "Database" {
return syncer, nil
2021-12-19 22:30:54 +08:00
}
}
return nil, nil
2021-12-19 22:30:54 +08:00
}
func getEnabledSyncerForOrganization(organization string) (*Syncer, error) {
syncers, err := GetSyncers("admin")
if err != nil {
return nil, err
}
2021-12-18 01:08:03 +08:00
for _, syncer := range syncers {
if syncer.Organization == organization && syncer.IsEnabled {
2023-09-27 01:11:58 +08:00
err = syncer.initAdapter()
if err != nil {
return nil, err
}
return syncer, nil
}
}
return nil, nil
}
func AddUserToOriginalDatabase(user *User) error {
syncer, err := getEnabledSyncerForOrganization(user.Owner)
if err != nil {
return err
}
if syncer == nil {
return nil
}
if syncer.IsReadOnly {
return nil
}
2021-12-18 01:08:03 +08:00
updatedOUser := syncer.createOriginalUserFromUser(user)
_, err = syncer.addUser(updatedOUser)
if err != nil {
return err
}
fmt.Printf("Add from user to oUser: %v\n", updatedOUser)
return nil
}
func UpdateUserToOriginalDatabase(user *User) error {
syncer, err := getEnabledSyncerForOrganization(user.Owner)
if err != nil {
return err
}
if syncer == nil {
return nil
}
if syncer.IsReadOnly {
return nil
}
newUser, err := GetUser(user.GetId())
if err != nil {
return err
}
2021-12-18 01:08:03 +08:00
updatedOUser := syncer.createOriginalUserFromUser(newUser)
_, err = syncer.updateUser(updatedOUser)
if err != nil {
return err
}
fmt.Printf("Update from user to oUser: %v\n", updatedOUser)
return nil
}