mirror of
https://github.com/go-gitea/gitea
synced 2024-10-31 23:34:25 +00:00
114 lines
2.7 KiB
Go
114 lines
2.7 KiB
Go
|
// 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 (
|
||
|
"strings"
|
||
|
|
||
|
"code.gitea.io/gitea/models"
|
||
|
"code.gitea.io/gitea/modules/log"
|
||
|
|
||
|
// Register the sources
|
||
|
_ "code.gitea.io/gitea/services/auth/source/db"
|
||
|
_ "code.gitea.io/gitea/services/auth/source/ldap"
|
||
|
_ "code.gitea.io/gitea/services/auth/source/oauth2"
|
||
|
_ "code.gitea.io/gitea/services/auth/source/pam"
|
||
|
_ "code.gitea.io/gitea/services/auth/source/smtp"
|
||
|
_ "code.gitea.io/gitea/services/auth/source/sspi"
|
||
|
)
|
||
|
|
||
|
// UserSignIn validates user name and password.
|
||
|
func UserSignIn(username, password string) (*models.User, error) {
|
||
|
var user *models.User
|
||
|
if strings.Contains(username, "@") {
|
||
|
user = &models.User{Email: strings.ToLower(strings.TrimSpace(username))}
|
||
|
// check same email
|
||
|
cnt, err := models.Count(user)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
if cnt > 1 {
|
||
|
return nil, models.ErrEmailAlreadyUsed{
|
||
|
Email: user.Email,
|
||
|
}
|
||
|
}
|
||
|
} else {
|
||
|
trimmedUsername := strings.TrimSpace(username)
|
||
|
if len(trimmedUsername) == 0 {
|
||
|
return nil, models.ErrUserNotExist{Name: username}
|
||
|
}
|
||
|
|
||
|
user = &models.User{LowerName: strings.ToLower(trimmedUsername)}
|
||
|
}
|
||
|
|
||
|
hasUser, err := models.GetUser(user)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
|
||
|
if hasUser {
|
||
|
source, err := models.GetLoginSourceByID(user.LoginSource)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
|
||
|
if !source.IsActive {
|
||
|
return nil, models.ErrLoginSourceNotActived
|
||
|
}
|
||
|
|
||
|
authenticator, ok := source.Cfg.(PasswordAuthenticator)
|
||
|
if !ok {
|
||
|
return nil, models.ErrUnsupportedLoginType
|
||
|
}
|
||
|
|
||
|
user, err := authenticator.Authenticate(user, username, password)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
|
||
|
// WARN: DON'T check user.IsActive, that will be checked on reqSign so that
|
||
|
// user could be hint to resend confirm email.
|
||
|
if user.ProhibitLogin {
|
||
|
return nil, models.ErrUserProhibitLogin{UID: user.ID, Name: user.Name}
|
||
|
}
|
||
|
|
||
|
return user, nil
|
||
|
}
|
||
|
|
||
|
sources, err := models.AllActiveLoginSources()
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
|
||
|
for _, source := range sources {
|
||
|
if !source.IsActive {
|
||
|
// don't try to authenticate non-active sources
|
||
|
continue
|
||
|
}
|
||
|
|
||
|
authenticator, ok := source.Cfg.(PasswordAuthenticator)
|
||
|
if !ok {
|
||
|
continue
|
||
|
}
|
||
|
|
||
|
authUser, err := authenticator.Authenticate(nil, username, password)
|
||
|
|
||
|
if err == nil {
|
||
|
if !authUser.ProhibitLogin {
|
||
|
return authUser, nil
|
||
|
}
|
||
|
err = models.ErrUserProhibitLogin{UID: authUser.ID, Name: authUser.Name}
|
||
|
}
|
||
|
|
||
|
if models.IsErrUserNotExist(err) {
|
||
|
log.Debug("Failed to login '%s' via '%s': %v", username, source.Name, err)
|
||
|
} else {
|
||
|
log.Warn("Failed to login '%s' via '%s': %v", username, source.Name, err)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return nil, models.ErrUserNotExist{Name: username}
|
||
|
}
|