summaryrefslogtreecommitdiff
path: root/handler.go
blob: f940b77b6f43d19b6c1bda0c90a41268553d5616 (plain)
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
package gus

import "context"

// Handler is a function which can turn a request into a response.
//
// A Handler can return a nil response, in which case the Server is expected
// to build the protocol-appropriate "Not Found" response.
type Handler func(context.Context, *Request) *Response

// Middleware is a handler decorator.
//
// It returns a handler which may call the passed-in handler or not, or may
// transform the request or response in some way.
type Middleware func(Handler) Handler

// FallthroughHandler builds a handler which tries multiple child handlers.
//
// The returned handler will invoke each of the passed-in handlers in order,
// stopping when it receives a non-nil response.
func FallthroughHandler(handlers ...Handler) Handler {
	return func(ctx context.Context, request *Request) *Response {
		for _, handler := range handlers {
			if response := handler(ctx, request); response != nil {
				return response
			}
		}
		return nil
	}
}

// Filter builds a middleware which only calls the wrapped under a condition.
//
// When the condition function returns false it instead invokes the
// test-failure handler. The failure handler may also be nil, in which case
// the final handler will return a nil response whenever the condition fails.
func Filter(
	condition func(context.Context, *Request) bool,
	failure Handler,
) Middleware {
	return func(success Handler) Handler {
		return func(ctx context.Context, request *Request) *Response {
			if condition(ctx, request) {
				return success(ctx, request)
			}
			if failure == nil {
				return nil
			}
			return failure(ctx, request)
		}
	}
}