mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
This fixes edge cases where the remote IP was not correctly logged. Generally this is not an issue as most errors do not hit this handler, but in instances where a transport error occurs this is important.
18 lines
386 B
Go
18 lines
386 B
Go
package middlewares
|
|
|
|
import (
|
|
"github.com/authelia/authelia/v4/internal/authentication"
|
|
)
|
|
|
|
// Require1FA check if user has enough permissions to execute the next handler.
|
|
func Require1FA(next RequestHandler) RequestHandler {
|
|
return func(ctx *AutheliaCtx) {
|
|
if ctx.GetSession().AuthenticationLevel < authentication.OneFactor {
|
|
ctx.ReplyForbidden()
|
|
return
|
|
}
|
|
|
|
next(ctx)
|
|
}
|
|
}
|