2019-04-24 21:52:08 +00:00
|
|
|
package handlers
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"net/url"
|
|
|
|
|
2019-12-24 02:14:52 +00:00
|
|
|
"github.com/authelia/authelia/internal/authentication"
|
|
|
|
"github.com/authelia/authelia/internal/duo"
|
|
|
|
"github.com/authelia/authelia/internal/middlewares"
|
2019-04-24 21:52:08 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// SecondFactorDuoPost handler for sending a push notification via duo api.
|
|
|
|
func SecondFactorDuoPost(duoAPI duo.API) middlewares.RequestHandler {
|
|
|
|
return func(ctx *middlewares.AutheliaCtx) {
|
|
|
|
var requestBody signDuoRequestBody
|
|
|
|
err := ctx.ParseBody(&requestBody)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
ctx.Error(err, mfaValidationFailedMessage)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
userSession := ctx.GetSession()
|
|
|
|
|
|
|
|
values := url.Values{}
|
|
|
|
// { username, ipaddr: clientIP, factor: "push", device: "auto", pushinfo: `target%20url=${targetURL}`}
|
|
|
|
values.Set("username", userSession.Username)
|
|
|
|
values.Set("ipaddr", ctx.RemoteIP().String())
|
|
|
|
values.Set("factor", "push")
|
|
|
|
values.Set("device", "auto")
|
|
|
|
if requestBody.TargetURL != "" {
|
|
|
|
values.Set("pushinfo", fmt.Sprintf("target%%20url=%s", requestBody.TargetURL))
|
|
|
|
}
|
|
|
|
|
|
|
|
duoResponse, err := duoAPI.Call(values)
|
|
|
|
if err != nil {
|
|
|
|
ctx.Error(fmt.Errorf("Duo API errored: %s", err), mfaValidationFailedMessage)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if duoResponse.Response.Result != "allow" {
|
|
|
|
ctx.ReplyUnauthorized()
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
userSession.AuthenticationLevel = authentication.TwoFactor
|
|
|
|
err = ctx.SaveSession(userSession)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
ctx.Error(fmt.Errorf("Unable to update authentication level with Duo: %s", err), mfaValidationFailedMessage)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-02-01 12:54:50 +00:00
|
|
|
HandleAuthResponse(ctx, requestBody.TargetURL)
|
2019-04-24 21:52:08 +00:00
|
|
|
}
|
|
|
|
}
|