-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontext.go
44 lines (39 loc) · 1.02 KB
/
context.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
package rl
import (
"errors"
"net/http"
"time"
)
var _ error = &Context{}
var ErrRateLimitExceeded error = errors.New("rate limit exceeded")
// Context is the error returned by the middleware.
type Context struct {
StatusCode int
Err error
Limiter *limiter
RequestLimit int
WindowLen time.Duration
RateLimitRemaining int
RateLimitReset int
Next http.Handler
Key string
lh *limitHandler
}
func newContext(statusCode int, err error, lh *limitHandler, next http.Handler) *Context {
return &Context{
StatusCode: statusCode,
Err: err,
Limiter: lh.limiter,
RequestLimit: lh.reqLimit,
WindowLen: lh.windowLen,
RateLimitRemaining: lh.rateLimitRemaining,
RateLimitReset: lh.rateLimitReset,
Next: next,
Key: lh.key,
lh: lh,
}
}
// Error returns the error message.
func (e *Context) Error() string {
return e.Err.Error()
}