-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhandler.go
52 lines (44 loc) · 2.14 KB
/
handler.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
45
46
47
48
49
50
51
52
package rmhttp
import "net/http"
// ------------------------------------------------------------------------------------------------
// HANDLER INTERFACE
// ------------------------------------------------------------------------------------------------
// Handler implements the http.Handler interface and adds ServeHTTPWithError, allowing Handlers to
// return errors.
type Handler interface {
ServeHTTP(http.ResponseWriter, *http.Request)
ServeHTTPWithError(http.ResponseWriter, *http.Request) error
}
// ------------------------------------------------------------------------------------------------
// HANDLERFUNC
// ------------------------------------------------------------------------------------------------
// HandlerFunc defines the function signature for HTTP handler functions in rmhttp, as well as
// implementing the rmhttp.Handler interface.
//
// The only difference between a http.HandlerFunc and rmhttp.HandlerFunc is that our version
// can return errors. The signature is the same otherwise, so as to provide as familiar an
// API as possible.
type HandlerFunc func(http.ResponseWriter, *http.Request) error
// ServeHTTP fulfills the http.Handler interface, and part of the rmhttp.Handler interface. It
// behaves exactly the same as a http.Handler.ServeHTTP call.
func (hf HandlerFunc) ServeHTTP(w http.ResponseWriter, r *http.Request) {
_ = hf(w, r)
}
// ServeHTTPWithError implements part of the rmhttp.Handler interface. It behaves very similarly
// to http.Handler.ServeHTTP, except that it also returns an error.
//
// It is also functionally equivalent to just calling the HandlerFunc directly.
func (hf HandlerFunc) ServeHTTPWithError(w http.ResponseWriter, r *http.Request) error {
return hf(w, r)
}
// createDefaultHandler creates and returns a HandlerFunc that simply sets the response status to
// the passed code, and response body to the textual version of the same code.
//
// It is generally used to create default error handlers.
func createDefaultHandler(code int) HandlerFunc {
return HandlerFunc(func(w http.ResponseWriter, r *http.Request) error {
w.WriteHeader(code)
_, _ = w.Write([]byte(http.StatusText(code)))
return nil
})
}