aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/rs/xhandler/middleware.go
blob: 7ad8fba625a69a1cb611b568d6bd3074e330252f (plain) (blame)
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
package xhandler

import (
    "net/http"
    "time"

    "golang.org/x/net/context"
)

// CloseHandler returns a Handler, cancelling the context when the client
// connection closes unexpectedly.
func CloseHandler(next HandlerC) HandlerC {
    return HandlerFuncC(func(ctx context.Context, w http.ResponseWriter, r *http.Request) {
        // Cancel the context if the client closes the connection
        if wcn, ok := w.(http.CloseNotifier); ok {
            var cancel context.CancelFunc
            ctx, cancel = context.WithCancel(ctx)
            defer cancel()

            notify := wcn.CloseNotify()
            go func() {
                select {
                case <-notify:
                    cancel()
                case <-ctx.Done():
                }
            }()
        }

        next.ServeHTTPC(ctx, w, r)
    })
}

// TimeoutHandler returns a Handler which adds a timeout to the context.
//
// Child handlers have the responsability of obeying the context deadline and to return
// an appropriate error (or not) response in case of timeout.
func TimeoutHandler(timeout time.Duration) func(next HandlerC) HandlerC {
    return func(next HandlerC) HandlerC {
        return HandlerFuncC(func(ctx context.Context, w http.ResponseWriter, r *http.Request) {
            ctx, _ = context.WithTimeout(ctx, timeout)
            next.ServeHTTPC(ctx, w, r)
        })
    }
}

// If is a special handler that will skip insert the condNext handler only if a condition
// applies at runtime.
func If(cond func(ctx context.Context, w http.ResponseWriter, r *http.Request) bool, condNext func(next HandlerC) HandlerC) func(next HandlerC) HandlerC {
    return func(next HandlerC) HandlerC {
        return HandlerFuncC(func(ctx context.Context, w http.ResponseWriter, r *http.Request) {
            if cond(ctx, w, r) {
                condNext(next).ServeHTTPC(ctx, w, r)
            } else {
                next.ServeHTTPC(ctx, w, r)
            }
        })
    }
}