17 lines
391 B
Go
17 lines
391 B
Go
|
package middlewares
|
||
|
|
||
|
import (
|
||
|
"github.com/clems4ever/authelia/authentication"
|
||
|
)
|
||
|
|
||
|
// RequireFirstFactor check if user has enough permissions to execute the next handler.
|
||
|
func RequireFirstFactor(next RequestHandler) RequestHandler {
|
||
|
return func(ctx *AutheliaCtx) {
|
||
|
if ctx.GetSession().AuthenticationLevel < authentication.OneFactor {
|
||
|
ctx.ReplyForbidden()
|
||
|
return
|
||
|
}
|
||
|
next(ctx)
|
||
|
}
|
||
|
}
|