Платформа ЦРНП "Мирокод" для разработки проектов
https://git.mirocod.ru
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.1 KiB
41 lines
1.1 KiB
// Copyright 2021 The Gitea Authors. All rights reserved. |
|
// Use of this source code is governed by a MIT-style |
|
// license that can be found in the LICENSE file. |
|
|
|
package auth |
|
|
|
import ( |
|
"code.gitea.io/gitea/models/auth" |
|
"code.gitea.io/gitea/models/db" |
|
user_model "code.gitea.io/gitea/models/user" |
|
) |
|
|
|
// DeleteSource deletes a AuthSource record in DB. |
|
func DeleteSource(source *auth.Source) error { |
|
count, err := db.GetEngine(db.DefaultContext).Count(&user_model.User{LoginSource: source.ID}) |
|
if err != nil { |
|
return err |
|
} else if count > 0 { |
|
return auth.ErrSourceInUse{ |
|
ID: source.ID, |
|
} |
|
} |
|
|
|
count, err = db.GetEngine(db.DefaultContext).Count(&user_model.ExternalLoginUser{LoginSourceID: source.ID}) |
|
if err != nil { |
|
return err |
|
} else if count > 0 { |
|
return auth.ErrSourceInUse{ |
|
ID: source.ID, |
|
} |
|
} |
|
|
|
if registerableSource, ok := source.Cfg.(auth.RegisterableSource); ok { |
|
if err := registerableSource.UnregisterSource(); err != nil { |
|
return err |
|
} |
|
} |
|
|
|
_, err = db.GetEngine(db.DefaultContext).ID(source.ID).Delete(new(auth.Source)) |
|
return err |
|
}
|
|
|