-
Notifications
You must be signed in to change notification settings - Fork 1
/
controllers.go
246 lines (215 loc) · 7.31 KB
/
controllers.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
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
package gorestframework
import (
"encoding/json"
"fmt"
"net/http"
"reflect"
"github.com/gorilla/mux"
"github.com/jinzhu/gorm"
)
// ControllerOutput contains the output of the Controller function
type ControllerOutput struct {
ModelPtr interface{} // pointer to the defined model
GetAll func(w http.ResponseWriter, r *http.Request) // function for retreiving all records
Get func(w http.ResponseWriter, r *http.Request) // function for retreiving a single record
Post func(w http.ResponseWriter, r *http.Request) // function for adding a record
Put func(w http.ResponseWriter, r *http.Request) // function for updating a record
Patch func(w http.ResponseWriter, r *http.Request) // function for updating a record
Delete func(w http.ResponseWriter, r *http.Request) // function for deleting a record
}
func getAll(T reflect.Type) func(http.ResponseWriter, *http.Request) {
return func(w http.ResponseWriter, r *http.Request) {
DbOperation(func(db *gorm.DB) {
resultsPtr := reflect.New(reflect.SliceOf(T)).Interface()
db.Find(resultsPtr)
JSONRespond(w, resultsPtr)
})
}
}
func get(T reflect.Type) func(http.ResponseWriter, *http.Request) {
return func(w http.ResponseWriter, r *http.Request) {
vars := mux.Vars(r)
DbOperation(func(db *gorm.DB) {
resultPtr := reflect.New(T).Interface()
res := db.First(resultPtr, vars["id"])
if res.RecordNotFound() {
JSONRespondWithStatus(w, map[string]interface{}{
"error": true,
"message": fmt.Sprintf("%s with ID %s not found", T.Name(), vars["id"]),
}, http.StatusNotFound)
return
} else if err := res.Error; err != nil {
JSONRespondWithStatus(w, err, http.StatusBadRequest)
return
}
JSONRespond(w, resultPtr)
})
}
}
func post(T reflect.Type) func(http.ResponseWriter, *http.Request) {
return func(w http.ResponseWriter, r *http.Request) {
// Declare a new struct.
modelDataPtr := reflect.New(T).Interface()
// Try to decode the request body into the struct. If there is an error,
// respond to the client with the error message and a 400 status code.
err := json.NewDecoder(r.Body).Decode(&modelDataPtr)
if err != nil {
JSONRespondWithStatus(w, map[string]interface{}{
"Severity": "error",
"Message": "Unable to parse JSON body.",
}, http.StatusBadRequest)
return
}
// try to create the record into the database
DbOperation(func(db *gorm.DB) {
if err := db.Create(modelDataPtr).Error; err != nil {
JSONRespondWithStatus(w, err, http.StatusBadRequest)
return
}
JSONRespond(w, modelDataPtr)
})
}
}
func put(T reflect.Type) func(http.ResponseWriter, *http.Request) {
return func(w http.ResponseWriter, r *http.Request) {
vars := mux.Vars(r)
// Declare a new struct.
modelDataPtr := reflect.New(T).Interface()
newModelDataPtr := reflect.New(T).Interface()
// Try to decode the request body into the struct. If there is an error,
// respond to the client with the error message and a 400 status code.
err := json.NewDecoder(r.Body).Decode(&newModelDataPtr)
if err != nil {
JSONRespondWithStatus(w, map[string]interface{}{
"Severity": "error",
"Message": "Unable to parse JSON body.",
}, http.StatusBadRequest)
return
}
// try to update the record into the database
DbOperation(func(db *gorm.DB) {
res := db.First(modelDataPtr, vars["id"])
if res.RecordNotFound() {
JSONRespondWithStatus(w, map[string]interface{}{
"error": true,
"message": fmt.Sprintf("%s with ID %s not found", T.Name(), vars["id"]),
}, http.StatusNotFound)
return
} else if err := res.Error; err != nil {
JSONRespondWithStatus(w, err, http.StatusBadRequest)
return
}
id := reflect.ValueOf(modelDataPtr).Elem().FieldByName("ID").Int()
newIDField := reflect.ValueOf(newModelDataPtr).Elem().FieldByName("ID")
if newIDField.IsValid() && id != newIDField.Int() {
JSONRespondWithStatus(w, map[string]interface{}{
"error": true,
"message": fmt.Sprintf(
"Unable to change ID of %s from %v to %v. PRs are welcome!",
T.Name(), id, newIDField,
),
}, http.StatusBadRequest)
return
}
res = db.Model(modelDataPtr).Updates(newModelDataPtr)
if err := res.Error; err != nil {
JSONRespondWithStatus(w, err, http.StatusBadRequest)
return
}
JSONRespond(w, modelDataPtr)
})
}
}
func patch(T reflect.Type) func(http.ResponseWriter, *http.Request) {
return func(w http.ResponseWriter, r *http.Request) {
vars := mux.Vars(r)
// Declare a new struct.
modelDataPtr := reflect.New(T).Interface()
newModelDataPtr := reflect.New(T).Interface()
// Try to decode the request body into the struct. If there is an error,
// respond to the client with the error message and a 400 status code.
err := json.NewDecoder(r.Body).Decode(&newModelDataPtr)
if err != nil {
JSONRespondWithStatus(w, map[string]interface{}{
"Severity": "error",
"Message": "Unable to parse JSON body.",
}, http.StatusBadRequest)
return
}
// try to update the record into the database
DbOperation(func(db *gorm.DB) {
res := db.First(modelDataPtr, vars["id"])
if res.RecordNotFound() {
JSONRespondWithStatus(w, map[string]interface{}{
"error": true,
"message": fmt.Sprintf("%s with ID %s not found", T.Name(), vars["id"]),
}, http.StatusNotFound)
return
} else if err := res.Error; err != nil {
JSONRespondWithStatus(w, err, http.StatusBadRequest)
return
}
id := reflect.ValueOf(modelDataPtr).Elem().FieldByName("ID").Int()
newIDField := reflect.ValueOf(newModelDataPtr).Elem().FieldByName("ID")
if newIDField.IsValid() && id != newIDField.Int() {
JSONRespondWithStatus(w, map[string]interface{}{
"error": true,
"message": fmt.Sprintf(
"Unable to change ID of %s from %v to %v. PRs are welcome!",
T.Name(), id, newIDField,
),
}, http.StatusBadRequest)
return
}
res = db.Model(modelDataPtr).Updates(newModelDataPtr)
if err := res.Error; err != nil {
JSONRespondWithStatus(w, err, http.StatusBadRequest)
return
}
JSONRespond(w, modelDataPtr)
})
}
}
func delete(T reflect.Type) func(http.ResponseWriter, *http.Request) {
return func(w http.ResponseWriter, r *http.Request) {
vars := mux.Vars(r)
// Declare a new struct.
modelDataPtr := reflect.New(T).Interface()
// try to delete the record into the database
DbOperation(func(db *gorm.DB) {
res := db.First(modelDataPtr, vars["id"])
if res.RecordNotFound() {
JSONRespondWithStatus(w, map[string]interface{}{
"error": true,
"message": fmt.Sprintf("%s with ID %s not found", T.Name(), vars["id"]),
}, http.StatusNotFound)
return
} else if err := res.Error; err != nil {
JSONRespondWithStatus(w, err, http.StatusBadRequest)
return
}
res = db.Model(modelDataPtr).Delete(modelDataPtr)
if err := res.Error; err != nil {
JSONRespondWithStatus(w, err, http.StatusBadRequest)
return
}
JSONRespond(w, modelDataPtr)
})
}
}
// Controller returns a ControllerOutput containing all REST handlers
func Controller(modelPtr interface{}) ControllerOutput {
T := reflect.TypeOf(modelPtr)
if T.Kind() == reflect.Ptr {
T = T.Elem()
}
return ControllerOutput{
ModelPtr: modelPtr,
GetAll: getAll(T),
Get: get(T),
Post: post(T),
Put: put(T),
Patch: patch(T),
Delete: delete(T),
}
}