2019-04-24 21:52:08 +00:00
|
|
|
package middlewares
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
2022-07-18 00:56:09 +00:00
|
|
|
"net/mail"
|
2022-12-17 00:49:05 +00:00
|
|
|
"path"
|
2022-01-20 23:46:13 +00:00
|
|
|
"time"
|
2019-04-24 21:52:08 +00:00
|
|
|
|
2021-08-03 21:38:07 +00:00
|
|
|
"github.com/golang-jwt/jwt/v4"
|
2021-12-04 04:48:22 +00:00
|
|
|
"github.com/google/uuid"
|
2020-04-05 12:37:21 +00:00
|
|
|
|
2022-03-06 05:47:40 +00:00
|
|
|
"github.com/authelia/authelia/v4/internal/model"
|
2021-08-11 01:04:35 +00:00
|
|
|
"github.com/authelia/authelia/v4/internal/templates"
|
2019-04-24 21:52:08 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// IdentityVerificationStart the handler for initiating the identity validation process.
|
2022-01-20 23:46:13 +00:00
|
|
|
func IdentityVerificationStart(args IdentityVerificationStartArgs, delayFunc TimingAttackDelayFunc) RequestHandler {
|
2019-04-24 21:52:08 +00:00
|
|
|
if args.IdentityRetrieverFunc == nil {
|
|
|
|
panic(fmt.Errorf("Identity verification requires an identity retriever"))
|
|
|
|
}
|
|
|
|
|
|
|
|
return func(ctx *AutheliaCtx) {
|
2022-01-20 23:46:13 +00:00
|
|
|
requestTime := time.Now()
|
|
|
|
success := false
|
|
|
|
|
|
|
|
if delayFunc != nil {
|
2022-06-14 07:20:13 +00:00
|
|
|
defer delayFunc(ctx, requestTime, &success)
|
2022-01-20 23:46:13 +00:00
|
|
|
}
|
|
|
|
|
2019-04-24 21:52:08 +00:00
|
|
|
identity, err := args.IdentityRetrieverFunc(ctx)
|
|
|
|
if err != nil {
|
|
|
|
// In that case we reply ok to avoid user enumeration.
|
|
|
|
ctx.Logger.Error(err)
|
|
|
|
ctx.ReplyOK()
|
2020-05-05 19:35:32 +00:00
|
|
|
|
2019-04-24 21:52:08 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-12-04 04:48:22 +00:00
|
|
|
var jti uuid.UUID
|
|
|
|
|
2022-03-16 00:29:46 +00:00
|
|
|
if jti, err = uuid.NewRandom(); err != nil {
|
2021-12-04 04:48:22 +00:00
|
|
|
ctx.Error(err, messageOperationFailed)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-03-06 05:47:40 +00:00
|
|
|
verification := model.NewIdentityVerification(jti, identity.Username, args.ActionClaim, ctx.RemoteIP())
|
2021-11-30 06:58:21 +00:00
|
|
|
|
2019-04-24 21:52:08 +00:00
|
|
|
// Create the claim with the action to sign it.
|
2021-11-30 06:58:21 +00:00
|
|
|
claims := verification.ToIdentityVerificationClaim()
|
|
|
|
|
2019-04-24 21:52:08 +00:00
|
|
|
token := jwt.NewWithClaims(jwt.SigningMethodHS256, claims)
|
|
|
|
|
2022-12-17 00:49:05 +00:00
|
|
|
signedToken, err := token.SignedString([]byte(ctx.Configuration.JWTSecret))
|
2019-04-24 21:52:08 +00:00
|
|
|
if err != nil {
|
2021-07-22 03:52:37 +00:00
|
|
|
ctx.Error(err, messageOperationFailed)
|
2019-04-24 21:52:08 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-05-08 22:43:12 +00:00
|
|
|
if err = ctx.Providers.StorageProvider.SaveIdentityVerification(ctx, verification); err != nil {
|
2021-07-22 03:52:37 +00:00
|
|
|
ctx.Error(err, messageOperationFailed)
|
2019-04-24 21:52:08 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-12-17 00:49:05 +00:00
|
|
|
linkURL := ctx.RootURL()
|
|
|
|
|
|
|
|
query := linkURL.Query()
|
|
|
|
|
|
|
|
query.Set(queryArgToken, signedToken)
|
|
|
|
|
|
|
|
linkURL.Path = path.Join(linkURL.Path, args.TargetEndpoint)
|
|
|
|
linkURL.RawQuery = query.Encode()
|
|
|
|
|
2022-12-23 05:06:49 +00:00
|
|
|
data := templates.EmailIdentityVerificationValues{
|
2022-07-18 00:56:09 +00:00
|
|
|
Title: args.MailTitle,
|
2022-12-17 00:49:05 +00:00
|
|
|
LinkURL: linkURL.String(),
|
2022-07-18 00:56:09 +00:00
|
|
|
LinkText: args.MailButtonContent,
|
|
|
|
DisplayName: identity.DisplayName,
|
|
|
|
RemoteIP: ctx.RemoteIP().String(),
|
2022-05-08 22:43:12 +00:00
|
|
|
}
|
2020-08-21 02:16:23 +00:00
|
|
|
|
2019-11-17 01:05:46 +00:00
|
|
|
ctx.Logger.Debugf("Sending an email to user %s (%s) to confirm identity for registering a device.",
|
2019-04-24 21:52:08 +00:00
|
|
|
identity.Username, identity.Email)
|
2020-05-05 19:35:32 +00:00
|
|
|
|
2022-12-23 05:06:49 +00:00
|
|
|
recipient := mail.Address{Name: identity.DisplayName, Address: identity.Email}
|
|
|
|
|
|
|
|
if err = ctx.Providers.Notifier.Send(ctx, recipient, args.MailTitle, ctx.Providers.Templates.GetIdentityVerificationEmailTemplate(), data); err != nil {
|
2021-07-22 03:52:37 +00:00
|
|
|
ctx.Error(err, messageOperationFailed)
|
2019-04-24 21:52:08 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-01-20 23:46:13 +00:00
|
|
|
success = true
|
|
|
|
|
2019-04-24 21:52:08 +00:00
|
|
|
ctx.ReplyOK()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// IdentityVerificationFinish the middleware for finishing the identity validation process.
|
|
|
|
func IdentityVerificationFinish(args IdentityVerificationFinishArgs, next func(ctx *AutheliaCtx, username string)) RequestHandler {
|
|
|
|
return func(ctx *AutheliaCtx) {
|
|
|
|
var finishBody IdentityVerificationFinishBody
|
2020-05-05 19:35:32 +00:00
|
|
|
|
2019-04-24 21:52:08 +00:00
|
|
|
b := ctx.PostBody()
|
|
|
|
|
|
|
|
err := json.Unmarshal(b, &finishBody)
|
|
|
|
|
|
|
|
if err != nil {
|
2021-07-22 03:52:37 +00:00
|
|
|
ctx.Error(err, messageOperationFailed)
|
2019-04-24 21:52:08 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if finishBody.Token == "" {
|
2021-07-22 03:52:37 +00:00
|
|
|
ctx.Error(fmt.Errorf("No token provided"), messageOperationFailed)
|
2019-04-24 21:52:08 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-03-06 05:47:40 +00:00
|
|
|
token, err := jwt.ParseWithClaims(finishBody.Token, &model.IdentityVerificationClaim{},
|
2022-10-05 05:05:23 +00:00
|
|
|
func(token *jwt.Token) (any, error) {
|
2019-04-24 21:52:08 +00:00
|
|
|
return []byte(ctx.Configuration.JWTSecret), nil
|
|
|
|
})
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
if ve, ok := err.(*jwt.ValidationError); ok {
|
2020-05-06 00:52:06 +00:00
|
|
|
switch {
|
|
|
|
case ve.Errors&jwt.ValidationErrorMalformed != 0:
|
2021-07-22 03:52:37 +00:00
|
|
|
ctx.Error(fmt.Errorf("Cannot parse token"), messageOperationFailed)
|
2019-04-24 21:52:08 +00:00
|
|
|
return
|
2020-05-06 00:52:06 +00:00
|
|
|
case ve.Errors&(jwt.ValidationErrorExpired|jwt.ValidationErrorNotValidYet) != 0:
|
2022-01-31 05:25:15 +00:00
|
|
|
// Token is either expired or not active yet.
|
2021-07-22 03:52:37 +00:00
|
|
|
ctx.Error(fmt.Errorf("Token expired"), messageIdentityVerificationTokenHasExpired)
|
2019-04-24 21:52:08 +00:00
|
|
|
return
|
2020-05-06 00:52:06 +00:00
|
|
|
default:
|
2021-07-22 03:52:37 +00:00
|
|
|
ctx.Error(fmt.Errorf("Cannot handle this token: %s", ve), messageOperationFailed)
|
2019-04-24 21:52:08 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
2020-05-05 19:35:32 +00:00
|
|
|
|
2021-07-22 03:52:37 +00:00
|
|
|
ctx.Error(err, messageOperationFailed)
|
2020-05-05 19:35:32 +00:00
|
|
|
|
2019-04-24 21:52:08 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-03-06 05:47:40 +00:00
|
|
|
claims, ok := token.Claims.(*model.IdentityVerificationClaim)
|
2019-04-24 21:52:08 +00:00
|
|
|
if !ok {
|
2021-07-22 03:52:37 +00:00
|
|
|
ctx.Error(fmt.Errorf("Wrong type of claims (%T != *middlewares.IdentityVerificationClaim)", claims), messageOperationFailed)
|
2019-04-24 21:52:08 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-11-30 06:58:21 +00:00
|
|
|
verification, err := claims.ToIdentityVerification()
|
|
|
|
if err != nil {
|
|
|
|
ctx.Error(fmt.Errorf("Token seems to be invalid: %w", err),
|
|
|
|
messageOperationFailed)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
found, err := ctx.Providers.StorageProvider.FindIdentityVerification(ctx, verification.JTI.String())
|
|
|
|
if err != nil {
|
|
|
|
ctx.Error(err, messageOperationFailed)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if !found {
|
|
|
|
ctx.Error(fmt.Errorf("Token is not in DB, it might have already been used"),
|
|
|
|
messageIdentityVerificationTokenAlreadyUsed)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-04-24 21:52:08 +00:00
|
|
|
// Verify that the action claim in the token is the one expected for the given endpoint.
|
|
|
|
if claims.Action != args.ActionClaim {
|
2021-07-22 03:52:37 +00:00
|
|
|
ctx.Error(fmt.Errorf("This token has not been generated for this kind of action"), messageOperationFailed)
|
2019-04-24 21:52:08 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if args.IsTokenUserValidFunc != nil && !args.IsTokenUserValidFunc(ctx, claims.Username) {
|
2021-07-22 03:52:37 +00:00
|
|
|
ctx.Error(fmt.Errorf("This token has not been generated for this user"), messageOperationFailed)
|
2019-04-24 21:52:08 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-03-06 05:47:40 +00:00
|
|
|
err = ctx.Providers.StorageProvider.ConsumeIdentityVerification(ctx, claims.ID, model.NewNullIP(ctx.RemoteIP()))
|
2019-04-24 21:52:08 +00:00
|
|
|
if err != nil {
|
2021-07-22 03:52:37 +00:00
|
|
|
ctx.Error(err, messageOperationFailed)
|
2019-04-24 21:52:08 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
next(ctx, claims.Username)
|
|
|
|
}
|
|
|
|
}
|