mirror of
https://github.com/go-gitea/gitea.git
synced 2024-10-31 08:37:35 -04:00
e81ccc406b
Change all license headers to comply with REUSE specification. Fix #16132 Co-authored-by: flynnnnnnnnnn <flynnnnnnnnnn@github> Co-authored-by: John Olheiser <john.olheiser@gmail.com>
41 lines
1005 B
Go
41 lines
1005 B
Go
// Copyright 2021 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
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
|
|
}
|