Blame view
http.go
3.24 KB
ea858b8a7 refactoring |
1 |
package webutility |
64041a2ea first commit |
2 3 |
import ( |
64041a2ea first commit |
4 |
"encoding/json" |
ad8e9dd2a added middleware ... |
5 |
"fmt" |
d2ddf82ef started on new rbac |
6 |
"net/http" |
64041a2ea first commit |
7 |
) |
707782344 lint; vet |
8 |
// StatusRecorder ... |
f38e87cf4 status recorder |
9 10 |
type StatusRecorder struct { writer http.ResponseWriter |
34436d11e in-out http logs ... |
11 |
status int |
f38e87cf4 status recorder |
12 |
size int |
34436d11e in-out http logs ... |
13 |
} |
707782344 lint; vet |
14 |
// NewStatusRecorder ... |
f38e87cf4 status recorder |
15 16 17 18 19 20 |
func NewStatusRecorder(w http.ResponseWriter) *StatusRecorder { return &StatusRecorder{ writer: w, status: 0, size: 0, } |
34436d11e in-out http logs ... |
21 |
} |
707782344 lint; vet |
22 |
// WriteHeader is a wrapper http.ResponseWriter interface |
f38e87cf4 status recorder |
23 |
func (r *StatusRecorder) WriteHeader(code int) { |
34436d11e in-out http logs ... |
24 |
r.status = code |
f38e87cf4 status recorder |
25 26 |
r.writer.WriteHeader(code) } |
707782344 lint; vet |
27 |
// Write is a wrapper for http.ResponseWriter interface |
f38e87cf4 status recorder |
28 29 30 |
func (r *StatusRecorder) Write(in []byte) (int, error) { r.size = len(in) return r.writer.Write(in) |
34436d11e in-out http logs ... |
31 |
} |
707782344 lint; vet |
32 |
// Header is a wrapper for http.ResponseWriter interface |
f38e87cf4 status recorder |
33 34 35 |
func (r *StatusRecorder) Header() http.Header { return r.writer.Header() } |
707782344 lint; vet |
36 |
// Status ... |
f38e87cf4 status recorder |
37 |
func (r *StatusRecorder) Status() int { |
34436d11e in-out http logs ... |
38 39 |
return r.status } |
707782344 lint; vet |
40 |
// Size ... |
f38e87cf4 status recorder |
41 42 43 |
func (r *StatusRecorder) Size() int { return r.size } |
ad8e9dd2a added middleware ... |
44 45 |
// NotFoundHandlerFunc writes HTTP error 404 to w. func NotFoundHandlerFunc(w http.ResponseWriter, req *http.Request) { |
9933169c8 localization support |
46 47 48 49 |
SetDefaultHeaders(w) if req.Method == "OPTIONS" { return } |
ad8e9dd2a added middleware ... |
50 |
NotFound(w, req, fmt.Sprintf("Resource you requested was not found: %s", req.URL.String())) |
9933169c8 localization support |
51 52 53 54 55 56 |
} // SetDefaultHeaders set's default headers for an HTTP response. func SetDefaultHeaders(w http.ResponseWriter) { w.Header().Set("Access-Control-Allow-Origin", "*") w.Header().Set("Access-Control-Allow-Methods", "POST, GET, PUT, DELETE, OPTIONS") |
34436d11e in-out http logs ... |
57 |
w.Header().Set("Access-Control-Allow-Headers", "Accept, Content-Type, Content-Length, Accept-Encoding, X-CSRF-Token, Authorization") |
9933169c8 localization support |
58 59 |
w.Header().Set("Content-Type", "application/json; charset=utf-8") } |
707782344 lint; vet |
60 |
// GetLocale ... |
34436d11e in-out http logs ... |
61 |
func GetLocale(req *http.Request, dflt string) string { |
a205e8f40 changes |
62 63 64 65 66 67 |
loc := req.FormValue("locale") if loc == "" { return dflt } return loc } |
707782344 lint; vet |
68 |
// Success ... |
1b7dfab73 Payload changed t... |
69 |
func Success(w http.ResponseWriter, payload interface{}, code int) { |
9933169c8 localization support |
70 71 |
w.WriteHeader(code) if payload != nil { |
1b7dfab73 Payload changed t... |
72 |
json.NewEncoder(w).Encode(payload) |
9933169c8 localization support |
73 74 |
} } |
707782344 lint; vet |
75 |
// OK ... |
1b7dfab73 Payload changed t... |
76 |
func OK(w http.ResponseWriter, payload interface{}) { |
9933169c8 localization support |
77 78 |
Success(w, payload, http.StatusOK) } |
707782344 lint; vet |
79 |
// Created ... |
1b7dfab73 Payload changed t... |
80 |
func Created(w http.ResponseWriter, payload interface{}) { |
9933169c8 localization support |
81 82 |
Success(w, payload, http.StatusCreated) } |
3fffcb954 removed old http API |
83 84 85 86 |
type weberror struct { Request string `json:"request"` Error string `json:"error"` } |
707782344 lint; vet |
87 |
// Error ... |
9933169c8 localization support |
88 |
func Error(w http.ResponseWriter, r *http.Request, code int, err string) { |
3fffcb954 removed old http API |
89 |
werr := weberror{Error: err, Request: r.Method + " " + r.RequestURI} |
9933169c8 localization support |
90 91 92 |
w.WriteHeader(code) json.NewEncoder(w).Encode(werr) } |
707782344 lint; vet |
93 |
// BadRequest ... |
9933169c8 localization support |
94 95 96 |
func BadRequest(w http.ResponseWriter, r *http.Request, err string) { Error(w, r, http.StatusBadRequest, err) } |
707782344 lint; vet |
97 |
// Unauthorized ... |
9933169c8 localization support |
98 99 100 |
func Unauthorized(w http.ResponseWriter, r *http.Request, err string) { Error(w, r, http.StatusUnauthorized, err) } |
707782344 lint; vet |
101 |
// Forbidden ... |
9933169c8 localization support |
102 103 104 |
func Forbidden(w http.ResponseWriter, r *http.Request, err string) { Error(w, r, http.StatusForbidden, err) } |
707782344 lint; vet |
105 |
// NotFound ... |
1b7dfab73 Payload changed t... |
106 107 108 |
func NotFound(w http.ResponseWriter, r *http.Request, err string) { Error(w, r, http.StatusNotFound, err) } |
707782344 lint; vet |
109 |
// Conflict ... |
9933169c8 localization support |
110 111 112 |
func Conflict(w http.ResponseWriter, r *http.Request, err string) { Error(w, r, http.StatusConflict, err) } |
707782344 lint; vet |
113 |
// InternalServerError ... |
9933169c8 localization support |
114 115 116 |
func InternalServerError(w http.ResponseWriter, r *http.Request, err string) { Error(w, r, http.StatusInternalServerError, err) } |
707782344 lint; vet |
117 |