Blame view
http_utility.go
2.8 KB
ea858b8a7 refactoring |
1 |
package webutility |
64041a2ea first commit |
2 3 4 5 6 |
import ( "net/http" "encoding/json" ) |
64041a2ea first commit |
7 8 9 10 |
const templateHttpErr500_EN = "An internal server error has occurred." const templateHttpErr500_RS = "Došlo je do greške na serveru." const templateHttpErr400_EN = "Bad request: invalid request body." const templateHttpErr400_RS = "Neispravan zahtev." |
33fd58161 minor changes, sh... |
11 12 |
const templateHttpErr401_EN = "Unauthorized request." const templateHttpErr401_RS = "Neautorizovan zahtev." |
64041a2ea first commit |
13 |
|
33fd58161 minor changes, sh... |
14 |
type httpError struct { |
64041a2ea first commit |
15 16 17 18 19 20 21 22 |
Error []HttpErrorDesc `json:"error"` Request string `json:"request"` } type HttpErrorDesc struct { Lang string `json:"lang"` Desc string `json:"description"` } |
e1fbb41f9 added comments |
23 |
// ErrorResponse writes HTTP error to w. |
33fd58161 minor changes, sh... |
24 25 |
func ErrorResponse(w http.ResponseWriter, r *http.Request, code int, desc []HttpErrorDesc) { err := httpError{ desc, r.Method + " " + r.URL.Path } |
64041a2ea first commit |
26 27 28 |
w.WriteHeader(code) json.NewEncoder(w).Encode(err) } |
e1fbb41f9 added comments |
29 |
// BadRequestResponse writes HTTP error 400 to w. |
33fd58161 minor changes, sh... |
30 31 32 33 |
func BadRequestResponse(w http.ResponseWriter, req *http.Request) { ErrorResponse(w, req, http.StatusBadRequest, []HttpErrorDesc{ { "en", templateHttpErr400_EN }, { "rs", templateHttpErr400_RS }, |
25e001550 exported everything |
34 |
}) |
64041a2ea first commit |
35 |
} |
e1fbb41f9 added comments |
36 |
// InternalSeverErrorResponse writes HTTP error 500 to w. |
33fd58161 minor changes, sh... |
37 38 39 40 |
func InternalServerErrorResponse(w http.ResponseWriter, req *http.Request) { ErrorResponse(w, req, http.StatusInternalServerError, []HttpErrorDesc{ { "en", templateHttpErr500_EN }, { "rs", templateHttpErr500_RS }, |
25e001550 exported everything |
41 |
}) |
64041a2ea first commit |
42 |
} |
e1fbb41f9 added comments |
43 |
// UnauthorizedError writes HTTP error 401 to w. |
33fd58161 minor changes, sh... |
44 45 46 47 48 49 |
func UnauthorizedResponse(w http.ResponseWriter, req *http.Request) { ErrorResponse(w, req, http.StatusUnauthorized, []HttpErrorDesc{ { "en", templateHttpErr500_EN }, { "rs", templateHttpErr500_RS }, }) } |
33fd58161 minor changes, sh... |
50 |
// TODO: Check for content type |
e1fbb41f9 added comments |
51 |
// Sets common headers, checks for token validity and performs access control. |
e77b75ec6 proper LIKE forma... |
52 |
func WrapHandler(handlerFunc http.HandlerFunc, auth bool) http.HandlerFunc { |
64041a2ea first commit |
53 |
return func(w http.ResponseWriter, req *http.Request) { |
64041a2ea first commit |
54 |
w.Header().Set("Access-Control-Allow-Origin", "*") |
33fd58161 minor changes, sh... |
55 |
|
64041a2ea first commit |
56 |
w.Header().Set("Access-Control-Allow-Methods", |
33fd58161 minor changes, sh... |
57 |
"POST, GET, PUT, DELETE, OPTIONS") |
64041a2ea first commit |
58 |
w.Header().Set("Access-Control-Allow-Headers", |
4b4ea384f hmm |
59 60 |
`Accept, Content-Type, Content-Length, Accept-Encoding, X-CSRF-Token, Authorization`) |
33fd58161 minor changes, sh... |
61 |
|
64041a2ea first commit |
62 63 64 65 66 |
w.Header().Set("Content-Type", "application/json; charset=utf-8") if req.Method == "OPTIONS" { return } |
e77b75ec6 proper LIKE forma... |
67 |
if auth { |
33fd58161 minor changes, sh... |
68 69 |
token := req.Header.Get("Authorization") if _, err := ParseAPIToken(token); err != nil { |
4b4ea384f hmm |
70 |
UnauthorizedResponse(w, req) |
33fd58161 minor changes, sh... |
71 |
return |
64041a2ea first commit |
72 73 74 75 76 |
} } err := req.ParseForm() if err != nil { |
33fd58161 minor changes, sh... |
77 |
BadRequestResponse(w, req) |
64041a2ea first commit |
78 79 |
return } |
4a51e54d7 simplified |
80 81 |
// execute HandlerFunc |
90f4ed079 sped up loadTable() |
82 |
handlerFunc(w, req) |
64041a2ea first commit |
83 84 |
} } |
e1fbb41f9 added comments |
85 |
// NotFoundHandler writes HTTP error 404 to w. |
25e001550 exported everything |
86 |
func NotFoundHandler(w http.ResponseWriter, req *http.Request) { |
33fd58161 minor changes, sh... |
87 88 89 |
ErrorResponse(w, req, http.StatusNotFound, []HttpErrorDesc{ { "en", "Not found." }, { "rs", "Traženi resurs ne postoji." }, |
25e001550 exported everything |
90 |
}) |
64041a2ea first commit |
91 |
} |