2021-07-24 11:16:34 +01:00
|
|
|
// Copyright 2021 The Gitea Authors. All rights reserved.
|
2022-11-27 13:20:29 -05:00
|
|
|
// SPDX-License-Identifier: MIT
|
2021-07-24 11:16:34 +01:00
|
|
|
|
|
|
|
|
package oauth2
|
|
|
|
|
|
|
|
|
|
import (
|
2023-09-14 19:09:32 +02:00
|
|
|
"context"
|
|
|
|
|
|
2021-11-24 17:49:20 +08:00
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2021-07-24 11:16:34 +01:00
|
|
|
"code.gitea.io/gitea/services/auth/source/db"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// Authenticate falls back to the db authenticator
|
2023-09-14 19:09:32 +02:00
|
|
|
func (source *Source) Authenticate(ctx context.Context, user *user_model.User, login, password string) (*user_model.User, error) {
|
|
|
|
|
return db.Authenticate(ctx, user, login, password)
|
2021-07-24 11:16:34 +01:00
|
|
|
}
|
2021-09-17 12:43:47 +01:00
|
|
|
|
|
|
|
|
// NB: Oauth2 does not implement LocalTwoFASkipper for password authentication
|
|
|
|
|
// as its password authentication drops to db authentication
|