2021-07-24 06:16:34 -04:00
|
|
|
// 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 pam
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"strings"
|
|
|
|
|
2022-01-02 08:12:35 -05:00
|
|
|
"code.gitea.io/gitea/models/auth"
|
2021-11-11 02:03:30 -05:00
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2021-07-24 06:16:34 -04:00
|
|
|
"code.gitea.io/gitea/modules/auth/pam"
|
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2022-04-29 15:38:11 -04:00
|
|
|
"code.gitea.io/gitea/modules/util"
|
2021-08-12 03:26:33 -04:00
|
|
|
"code.gitea.io/gitea/services/mailer"
|
2021-07-24 06:16:34 -04:00
|
|
|
|
|
|
|
"github.com/google/uuid"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Authenticate queries if login/password is valid against the PAM,
|
|
|
|
// and create a local user if success when enabled.
|
2021-11-24 04:49:20 -05:00
|
|
|
func (source *Source) Authenticate(user *user_model.User, userName, password string) (*user_model.User, error) {
|
2021-09-24 07:32:56 -04:00
|
|
|
pamLogin, err := pam.Auth(source.ServiceName, userName, password)
|
2021-07-24 06:16:34 -04:00
|
|
|
if err != nil {
|
|
|
|
if strings.Contains(err.Error(), "Authentication failure") {
|
2021-11-24 04:49:20 -05:00
|
|
|
return nil, user_model.ErrUserNotExist{Name: userName}
|
2021-07-24 06:16:34 -04:00
|
|
|
}
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if user != nil {
|
|
|
|
return user, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Allow PAM sources with `@` in their name, like from Active Directory
|
|
|
|
username := pamLogin
|
|
|
|
email := pamLogin
|
|
|
|
idx := strings.Index(pamLogin, "@")
|
|
|
|
if idx > -1 {
|
|
|
|
username = pamLogin[:idx]
|
|
|
|
}
|
2021-11-11 02:03:30 -05:00
|
|
|
if user_model.ValidateEmail(email) != nil {
|
2021-07-24 06:16:34 -04:00
|
|
|
if source.EmailDomain != "" {
|
|
|
|
email = fmt.Sprintf("%s@%s", username, source.EmailDomain)
|
|
|
|
} else {
|
|
|
|
email = fmt.Sprintf("%s@%s", username, setting.Service.NoReplyAddress)
|
|
|
|
}
|
2021-11-11 02:03:30 -05:00
|
|
|
if user_model.ValidateEmail(email) != nil {
|
2021-07-24 06:16:34 -04:00
|
|
|
email = uuid.New().String() + "@localhost"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-24 04:49:20 -05:00
|
|
|
user = &user_model.User{
|
2021-07-24 06:16:34 -04:00
|
|
|
LowerName: strings.ToLower(username),
|
|
|
|
Name: username,
|
|
|
|
Email: email,
|
|
|
|
Passwd: password,
|
2022-01-02 08:12:35 -05:00
|
|
|
LoginType: auth.PAM,
|
|
|
|
LoginSource: source.authSource.ID,
|
2021-09-24 07:32:56 -04:00
|
|
|
LoginName: userName, // This is what the user typed in
|
2022-04-29 15:38:11 -04:00
|
|
|
}
|
|
|
|
overwriteDefault := &user_model.CreateUserOverwriteOptions{
|
|
|
|
IsActive: util.OptionalBoolTrue,
|
2021-07-24 06:16:34 -04:00
|
|
|
}
|
2021-08-12 03:26:33 -04:00
|
|
|
|
2022-04-29 15:38:11 -04:00
|
|
|
if err := user_model.CreateUser(user, overwriteDefault); err != nil {
|
2021-08-12 03:26:33 -04:00
|
|
|
return user, err
|
|
|
|
}
|
|
|
|
|
|
|
|
mailer.SendRegisterNotifyMail(user)
|
|
|
|
|
|
|
|
return user, nil
|
2021-07-24 06:16:34 -04:00
|
|
|
}
|
2021-09-26 21:02:01 -04:00
|
|
|
|
|
|
|
// IsSkipLocalTwoFA returns if this source should skip local 2fa for password authentication
|
|
|
|
func (source *Source) IsSkipLocalTwoFA() bool {
|
|
|
|
return source.SkipLocalTwoFA
|
|
|
|
}
|