-
Notifications
You must be signed in to change notification settings - Fork 1
/
routes.go
137 lines (116 loc) · 3.24 KB
/
routes.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
package calc
import (
"encoding/json"
"errors"
"fmt"
"io/ioutil"
"log"
"net/http"
)
var (
errReadBody = errors.New("body read failed")
errParseBody = errors.New("parsing JSON failed")
serverErrorResponse = []byte(`{"message": "internal server error"}`)
notFoundResponse = []byte(`{"message": "not found"}`)
)
// Routes available in calc service.
func Routes(client HTTPClient) map[string]http.HandlerFunc {
return map[string]http.HandlerFunc{
"/do": doHandler(),
"/remote": remoteHandler(client),
"/": notFoundHandler,
}
}
func notFoundHandler(w http.ResponseWriter, r *http.Request) {
writeRawBody(w, r, notFoundResponse, http.StatusNotFound)
}
func doHandler() http.HandlerFunc {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
var req Request
if err := unmarshalBody(r, &req); err != nil {
log.Println(err)
response := NewErrorResponse(err)
writeBody(w, r, response, http.StatusBadRequest)
return
}
if err := req.Validate(); err != nil {
log.Println(err)
response := NewErrorResponse(err)
writeBody(w, r, response, http.StatusUnprocessableEntity)
return
}
operation := Operations[req.Operation]
result := Do(operation.lambda, req.Arguments)
response := Response{
Operation: req.Operation,
Arguments: req.Arguments,
Result: result,
}
writeBody(w, r, response, http.StatusOK)
})
}
func remoteHandler(client HTTPClient) http.HandlerFunc {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
url := r.URL.Query().Get("url")
if url == "" {
url = "http://example.com/"
}
req, err := http.NewRequest(http.MethodPost, url, r.Body)
if err != nil {
log.Println(err)
response := NewErrorResponse(err)
writeBody(w, r, response, http.StatusInternalServerError)
return
}
res, err := client.Do(req)
if err != nil {
log.Println(err)
response := NewErrorResponse(err)
writeBody(w, r, response, http.StatusInternalServerError)
return
}
defer res.Body.Close()
if res.StatusCode != http.StatusOK {
err := fmt.Errorf("remote call failed, returned status code %d", res.StatusCode)
log.Println(err)
response := NewErrorResponse(err)
writeBody(w, r, response, http.StatusInternalServerError)
return
}
body, err := ioutil.ReadAll(res.Body)
if err != nil {
log.Println(err)
response := NewErrorResponse(err)
writeBody(w, r, response, http.StatusInternalServerError)
return
}
writeRawBody(w, req, body, http.StatusOK)
})
}
func unmarshalBody(r *http.Request, v interface{}) error {
body, err := ioutil.ReadAll(r.Body)
if err != nil {
log.Println(err)
return errReadBody
}
defer r.Body.Close()
if err := json.Unmarshal(body, v); err != nil {
log.Println(err)
return errParseBody
}
return nil
}
func writeBody(w http.ResponseWriter, req *http.Request, response interface{}, status int) {
body, err := json.Marshal(response)
if err != nil {
log.Println(err)
body = serverErrorResponse
status = http.StatusInternalServerError
}
writeRawBody(w, req, body, status)
}
func writeRawBody(w http.ResponseWriter, req *http.Request, body []byte, status int) {
w.Header().Set("Content-Type", "application/json")
w.WriteHeader(status)
w.Write(append(body, byte('\n')))
}