mirror of https://github.com/authelia/authelia.git
26 lines
389 B
Go
26 lines
389 B
Go
package middlewares
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/valyala/fasthttp"
|
|
)
|
|
|
|
func ArbitraryDelay(delay time.Duration) Basic {
|
|
return func(next fasthttp.RequestHandler) (handler fasthttp.RequestHandler) {
|
|
return func(ctx *fasthttp.RequestCtx) {
|
|
started := time.Now()
|
|
|
|
next(ctx)
|
|
|
|
delta := delay - time.Since(started)
|
|
|
|
if delta < 0 {
|
|
return
|
|
}
|
|
|
|
time.Sleep(delta)
|
|
}
|
|
}
|
|
}
|