2019-04-24 21:52:08 +00:00
|
|
|
package middlewares
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
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
|
|
|
|
2021-11-23 09:45:38 +00:00
|
|
|
"github.com/authelia/authelia/v4/internal/models"
|
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 {
|
|
|
|
defer delayFunc(ctx.Logger, requestTime, &success)
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
|
|
|
|
if jti, err = uuid.NewUUID(); err != nil {
|
|
|
|
ctx.Error(err, messageOperationFailed)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
verification := models.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)
|
|
|
|
ss, err := token.SignedString([]byte(ctx.Configuration.JWTSecret))
|
|
|
|
|
|
|
|
if err != nil {
|
2021-07-22 03:52:37 +00:00
|
|
|
ctx.Error(err, messageOperationFailed)
|
2019-04-24 21:52:08 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-11-30 06:58:21 +00:00
|
|
|
err = ctx.Providers.StorageProvider.SaveIdentityVerification(ctx, verification)
|
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
|
|
|
|
}
|
|
|
|
|
2021-08-10 00:31:08 +00:00
|
|
|
uri, err := ctx.ExternalRootURL()
|
2021-05-04 22:06:05 +00:00
|
|
|
if err != nil {
|
2021-07-22 03:52:37 +00:00
|
|
|
ctx.Error(err, messageOperationFailed)
|
2020-02-13 02:12:37 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-08-10 00:31:08 +00:00
|
|
|
link := fmt.Sprintf("%s%s?token=%s", uri, args.TargetEndpoint, ss)
|
2019-04-24 21:52:08 +00:00
|
|
|
|
2020-08-21 02:16:23 +00:00
|
|
|
bufHTML := new(bytes.Buffer)
|
|
|
|
|
|
|
|
disableHTML := false
|
|
|
|
if ctx.Configuration.Notifier != nil && ctx.Configuration.Notifier.SMTP != nil {
|
|
|
|
disableHTML = ctx.Configuration.Notifier.SMTP.DisableHTMLEmails
|
|
|
|
}
|
|
|
|
|
|
|
|
if !disableHTML {
|
|
|
|
htmlParams := map[string]interface{}{
|
|
|
|
"title": args.MailTitle,
|
|
|
|
"url": link,
|
|
|
|
"button": args.MailButtonContent,
|
|
|
|
}
|
|
|
|
|
|
|
|
err = templates.HTMLEmailTemplate.Execute(bufHTML, htmlParams)
|
|
|
|
|
|
|
|
if err != nil {
|
2021-07-22 03:52:37 +00:00
|
|
|
ctx.Error(err, messageOperationFailed)
|
2020-08-21 02:16:23 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bufText := new(bytes.Buffer)
|
|
|
|
textParams := map[string]interface{}{
|
|
|
|
"url": link,
|
2019-04-24 21:52:08 +00:00
|
|
|
}
|
2020-08-21 02:16:23 +00:00
|
|
|
|
|
|
|
err = templates.PlainTextEmailTemplate.Execute(bufText, textParams)
|
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
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2020-08-21 02:16:23 +00:00
|
|
|
err = ctx.Providers.Notifier.Send(identity.Email, args.MailTitle, bufText.String(), bufHTML.String())
|
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-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
|
|
|
|
}
|
|
|
|
|
2021-11-30 06:58:21 +00:00
|
|
|
token, err := jwt.ParseWithClaims(finishBody.Token, &models.IdentityVerificationClaim{},
|
2019-04-24 21:52:08 +00:00
|
|
|
func(token *jwt.Token) (interface{}, error) {
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2021-11-30 06:58:21 +00:00
|
|
|
claims, ok := token.Claims.(*models.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
|
|
|
|
}
|
|
|
|
|
2021-12-03 00:04:11 +00:00
|
|
|
err = ctx.Providers.StorageProvider.ConsumeIdentityVerification(ctx, claims.ID, models.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)
|
|
|
|
}
|
|
|
|
}
|