-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapi.go
More file actions
260 lines (227 loc) · 7.11 KB
/
Copy pathapi.go
File metadata and controls
260 lines (227 loc) · 7.11 KB
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
package main
import (
"encoding/json"
"fmt"
"io/ioutil"
"log"
"net/http"
"strings"
"github.com/gorilla/mux"
)
// JSONResponse a struct to ensure responses are in a consistent format
type JSONResponse struct {
Status string `json:"status"`
Error string `json:"error,omitempty"`
Message string `json:"message,omitempty"`
Version string `json:"version,omitempty"`
NextToken string `json:"nextToken,omitempty"`
Items []string `json:"items,omitempty"`
}
// RequestVars an object to hold the parameters from a request
type RequestVars struct {
CategoryName string
ObjectName string
ObjectPath string
ObjectVersion string
Dev bool
Token string
}
// API the api object, which has a router and the object controller
type API struct {
Objects *ObjectController
Router *mux.Router
}
func processRequest(req *http.Request) *RequestVars {
routeVars := mux.Vars(req)
categoryName := routeVars["category"]
objectVersion := routeVars["version"]
objectName := routeVars["object"]
dev := req.URL.Query().Get("dev")
devParam := strings.ToLower(dev) == "true"
token := req.URL.Query().Get("token")
return &RequestVars{
CategoryName: categoryName,
ObjectName: objectName,
ObjectPath: fmt.Sprintf("%s/%s", categoryName, objectName),
ObjectVersion: objectVersion,
Dev: devParam,
Token: token,
}
}
// TODO: add cors
// TODO: Authentication
func loggingMiddleware(next http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
log.Println(fmt.Sprintf("%s %s", r.RequestURI, r.Method))
next.ServeHTTP(w, r)
})
}
//
func NewAPI(bucket string, path string, table string) *API {
router := mux.NewRouter()
api := &API{
Objects: NewObjectController(bucket, path, table),
Router: router,
}
router.HandleFunc("/up", api.UpPageHandler).Methods("GET")
router.HandleFunc("/", api.ListCategoriesHandler).Methods("GET")
router.HandleFunc("/{category}", api.ListObjectsHandler).Methods("GET")
router.HandleFunc("/{category}/{object}/versions", api.ListObjectVersionsHandler).Methods("GET")
router.HandleFunc("/{category}/{object}/{version}", api.AddObjectHandler).Methods("POST")
router.HandleFunc("/{category}/{object}/{version}", api.GetObjectHandler).Methods("GET")
router.HandleFunc("/{category}/{object}/{version}", api.SetObjectVersion).Methods("PUT")
router.HandleFunc("/{category}/{object}", api.GetObjectHandler).Methods("GET")
router.Use(loggingMiddleware)
return api
}
// TODO: improve HTTP response codes. All errors are passed as 5XX, but some generate from bad requests
// UpPageHandler handles up page requests, always returns happy
func (a API) UpPageHandler(res http.ResponseWriter, req *http.Request) {
res.Write([]byte("Happy"))
}
// ListCategoriesHandler returns list of categories specified
func (a API) ListCategoriesHandler(res http.ResponseWriter, req *http.Request) {
reqVars := processRequest(req)
list, err := a.Objects.ListCategories(reqVars.Token)
if err != nil {
res.WriteHeader(http.StatusInternalServerError)
response, _ := json.Marshal(JSONResponse{
Status: "err",
Error: err.Error(),
})
res.Write(response)
} else {
response := JSONResponse{
Status: "ok",
Items: list.Objects,
}
if len(list.Token) > 0 {
response.NextToken = list.Token
}
content, _ := json.Marshal(response)
res.Write(content)
}
}
// ListObjectsHandler returns list of objects in a category
func (a API) ListObjectsHandler(res http.ResponseWriter, req *http.Request) {
reqVars := processRequest(req)
list, err := a.Objects.ListObjects(reqVars.CategoryName, reqVars.Token)
if err != nil {
res.WriteHeader(http.StatusInternalServerError)
response, _ := json.Marshal(JSONResponse{
Status: "err",
Error: err.Error(),
})
res.Write(response)
} else {
res.WriteHeader(http.StatusOK)
response := JSONResponse{
Status: "ok",
Items: list.Objects,
}
if len(list.Token) > 0 {
response.NextToken = list.Token
}
content, _ := json.Marshal(response)
res.Write(content)
}
}
// ListObjectVersionsHandler returns a paginated list of object versions
func (a API) ListObjectVersionsHandler(res http.ResponseWriter, req *http.Request) {
reqVars := processRequest(req)
list, err := a.Objects.ListObjectVersions(reqVars.CategoryName, reqVars.ObjectName, reqVars.Token)
if err != nil {
res.WriteHeader(http.StatusInternalServerError)
response, _ := json.Marshal(JSONResponse{
Status: "err",
Error: err.Error(),
})
res.Write(response)
} else {
res.WriteHeader(http.StatusOK)
response := JSONResponse{
Status: "ok",
Items: list.Objects,
}
if len(list.Token) > 0 {
response.NextToken = list.Token
}
content, _ := json.Marshal(response)
res.Write(content)
}
}
// AddObjectHandler POST requests to add object to cache
// request body: object content
// category/object/version in url params
func (a API) AddObjectHandler(res http.ResponseWriter, req *http.Request) {
objectContent := req.Body
reqVars := processRequest(req)
addObjectErr := a.Objects.AddObject(reqVars.ObjectPath, objectContent, false, false, reqVars.ObjectVersion)
// return json response for addobject
if addObjectErr != nil {
res.WriteHeader(http.StatusInternalServerError)
response, _ := json.Marshal(JSONResponse{
Status: "error",
Error: addObjectErr.Error(),
})
res.Write(response)
} else {
res.WriteHeader(http.StatusOK)
response, _ := json.Marshal(JSONResponse{
Status: "ok",
})
res.Write(response)
}
}
// GetObjectHandler GET requests to get object content
// category/object/version(optional) in url params
// pulls default version of map if no version is provided and version is set
func (a API) GetObjectHandler(res http.ResponseWriter, req *http.Request) {
reqVars := processRequest(req)
objectReader, getObjectErr := a.Objects.GetObject(reqVars.ObjectPath, reqVars.ObjectVersion, reqVars.Dev)
if getObjectErr != nil {
res.WriteHeader(http.StatusInternalServerError)
response, _ := json.Marshal(JSONResponse{
Status: "error",
Error: getObjectErr.Error(),
})
res.Write(response)
} else {
objectContent, objectReadErr := ioutil.ReadAll(objectReader)
if objectReadErr != nil {
res.WriteHeader(http.StatusInternalServerError)
response, _ := json.Marshal(JSONResponse{
Status: "error",
Error: objectReadErr.Error(),
})
res.Write(response)
} else {
res.WriteHeader(http.StatusOK)
res.Write(objectContent)
res.Header().Set("Content-Type", "application/java-archive")
}
}
}
func (a API) SetObjectVersion(res http.ResponseWriter, req *http.Request) {
reqVars := processRequest(req)
var setvznerr error
if reqVars.Dev {
setvznerr = a.Objects.SetObjectDevVersion(reqVars.ObjectPath, reqVars.ObjectVersion)
} else {
setvznerr = a.Objects.SetObjectVersion(reqVars.ObjectPath, reqVars.ObjectVersion)
}
if setvznerr != nil {
res.WriteHeader(http.StatusInternalServerError)
response, _ := json.Marshal(JSONResponse{
Status: "error",
Error: setvznerr.Error(),
})
res.Write(response)
} else {
res.WriteHeader(http.StatusOK)
response, _ := json.Marshal(JSONResponse{
Status: "ok",
})
res.Write(response)
}
}