-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcrud.go
479 lines (422 loc) · 13.3 KB
/
crud.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
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
package gormcrud
import (
"encoding/json"
"fmt"
"io/ioutil"
"net/http"
"reflect"
"strconv"
"strings"
"github.com/gin-gonic/gin"
"github.com/gorilla/mux"
"github.com/jinzhu/gorm"
"github.com/biezhi/gorm-paginator/pagination"
)
type ErrorCrud struct {
error
Message string `json:"message"`
Code int `json:"code"`
}
type LinkStatusCrud struct {
Message string `json:"message"`
Status string `json:"status"`
Operation string `json:"operation"`
CountAfter int `json:"count_after"`
CountBefore int `json:"count_before"`
}
// ValidateSave is interface for validate save
type ValidateSave interface {
CrudValidateSave(db *gorm.DB) error
}
// ValidateDelete is interface for validate delete
type ValidateDelete interface {
CrudValidateDelete(db *gorm.DB) error
}
// Save entity
func Save(db *gorm.DB, new interface{}) func(w http.ResponseWriter, r *http.Request, id string) {
return func(w http.ResponseWriter, r *http.Request, id string) {
db1 := db.Set("gorm:auto_preload", true).
Set("gorm:association_autoupdate", false).
Set("gorm:association_autocreate", false)
w.Header().Set("Content-Type", "application/json")
entity := reflect.New(reflect.TypeOf(new)).Interface()
reqBody, _ := ioutil.ReadAll(r.Body)
json.Unmarshal(reqBody, entity)
if ok, err := entity.(ValidateSave); err {
errValidation := ok.CrudValidateSave(db1)
if errValidation != nil {
json.NewEncoder(w).Encode(errValidation)
return
}
}
fmt.Println(
reflect.New(reflect.TypeOf(new)))
ret := db1.Save(entity)
if ret != nil {
if ret.Error != nil {
json.NewEncoder(w).Encode(ret)
return
}
}
json.NewEncoder(w).Encode(ret)
}
}
// All return all entities
func All(db *gorm.DB, elem interface{}) func(w http.ResponseWriter, r *http.Request, id string) {
return func(w http.ResponseWriter, r *http.Request, id string) {
db := db.Set("gorm:auto_preload", true).Set("gorm:association_autoupdate", false).Set("gorm:association_autocreate", false)
w.Header().Set("Content-Type", "application/json")
entity := reflect.New(reflect.TypeOf(elem)).Interface()
ret := db.Find(entity)
if ret.RowsAffected == 0 {
var a [0]interface{}
json.NewEncoder(w).Encode(a)
return
}
json.NewEncoder(w).Encode(entity)
}
}
// Page return pagination
func Page(db *gorm.DB, elem interface{}) func(w http.ResponseWriter, r *http.Request, id string) {
return func(w http.ResponseWriter, r *http.Request, id string) {
db := db.Set("gorm:auto_preload", true).Set("gorm:association_autoupdate", false).Set("gorm:association_autocreate", false)
w.Header().Set("Content-Type", "application/json")
entity := reflect.New(reflect.TypeOf(elem)).Interface()
page, _ := strconv.Atoi(r.URL.Query().Get("page"))
limit, _ := strconv.Atoi(r.URL.Query().Get("limit"))
ret := pagination.Paging(&pagination.Param{
DB: db,
Page: page,
Limit: limit,
OrderBy: []string{"id desc"},
}, entity)
json.NewEncoder(w).Encode(ret)
}
}
// Get return one entity
func Get(db *gorm.DB, elem interface{}) func(w http.ResponseWriter, r *http.Request, id string) {
return func(w http.ResponseWriter, r *http.Request, id string) {
db := db.Set("gorm:auto_preload", true).
Set("gorm:association_autoupdate", false).
Set("gorm:association_autocreate", false)
w.Header().Set("Content-Type", "application/json")
entity := reflect.New(reflect.TypeOf(elem)).Interface()
key := id
ret := db.Where("id = ?", key).First(entity)
if ret != nil {
if ret.RowsAffected == 0 {
w.WriteHeader(http.StatusNotFound)
json.NewEncoder(w).Encode(ErrorCrud{Message: "Status Not Found", Code: http.StatusNotFound})
return
}
if ret.Error != nil {
json.NewEncoder(w).Encode(ret)
return
}
}
json.NewEncoder(w).Encode(entity)
}
}
// Delete is operation for delete entity
func Delete(db *gorm.DB, new interface{}) func(w http.ResponseWriter, r *http.Request, id string) {
return func(w http.ResponseWriter, r *http.Request, id string) {
w.Header().Set("Content-Type", "application/json")
entity := reflect.New(reflect.TypeOf(new)).Interface()
key := id
ret := db.Where("id = ?", key).First(entity)
if ret != nil {
if ret.RowsAffected == 0 {
w.WriteHeader(http.StatusNotFound)
_ = json.NewEncoder(w).Encode(ErrorCrud{Message: "Status Not Found", Code: http.StatusNotFound})
return
}
if ret.Error != nil {
_ = json.NewEncoder(w).Encode(ret)
return
}
}
if ok, err := entity.(ValidateDelete); err {
errValidation := ok.CrudValidateDelete(db)
if errValidation != nil {
_ = json.NewEncoder(w).Encode(errValidation)
return
}
}
db.Delete(entity)
_ = json.NewEncoder(w).Encode(entity)
return
}
}
// Link is operation for link and unlink entities
func Link(db *gorm.DB, root interface{}, op string) func(w http.ResponseWriter, r *http.Request, id string) {
return func(w http.ResponseWriter, r *http.Request, id string) {
db := db.Set("gorm:auto_preload", true).Set("gorm:association_autoupdate", false).Set("gorm:association_autocreate", false)
id1 := id
result := make(map[string]LinkStatusCrud)
rootEntity := reflect.New(reflect.TypeOf(root)).Interface()
w.Header().Set("Content-Type", "application/json")
ret := db.Where("id = ?", id1).First(rootEntity)
if ret != nil {
if ret.RowsAffected == 0 {
w.WriteHeader(http.StatusNotFound)
json.NewEncoder(w).Encode(ErrorCrud{Message: "Status Not Found (1)", Code: http.StatusNotFound})
return
}
if ret.Error != nil {
json.NewEncoder(w).Encode(ret)
return
}
}
for key, values := range r.URL.Query() {
field := key
for _, id2 := range values {
elem := reflect.ValueOf(rootEntity).Elem()
var child reflect.Type
var childCurrentValue reflect.Value
child = nil
childFieldIndex := 0
for i := 0; i < elem.NumField(); i++ {
name := elem.Type().Field(i).Name
if strings.EqualFold(name, field) {
child = elem.Field(i).Type()
childCurrentValue = elem.Field(i)
childFieldIndex = i
break
}
}
if child == nil {
result[field+id1+id2] = LinkStatusCrud{
Message: "ID:" + id1 + " -> " + id2 + "(err)(Field Not Found)",
Status: "err",
Operation: op,
CountAfter: -1,
CountBefore: -1,
}
continue
}
childEntity := reflect.New(child).Interface()
ret = db.Where("id = ?", id2).First(childEntity)
if ret != nil {
if ret.RowsAffected == 0 {
w.WriteHeader(http.StatusNotFound)
result[field+id1+"_"+id2] = LinkStatusCrud{
Message: "ID:" + id1 + " -> " + id2 + "(err)(Status Not Found)",
Status: "err",
Operation: op,
CountAfter: -1,
CountBefore: -1,
}
continue
}
if ret.Error != nil {
result[field+id1+id2] = LinkStatusCrud{
Message: "ID:" + id1 + " -> " + id2 + "(err)(" + string(ret.Error.Error()) + ")",
Status: "err",
Operation: op,
CountAfter: -1,
CountBefore: -1,
}
continue
}
}
func() {
association := db.Model(rootEntity).Association(field)
countBefore := association.Count()
if op == "link" {
defer func() {
if r := recover(); r != nil {
result[field+id1+"_"+id2] = LinkStatusCrud{
Message: "ID:" + id1 + " -> " + id2 + " (err) " + r.(string) + ".",
Status: "err",
Operation: op,
CountBefore: countBefore,
CountAfter: -1,
}
}
}()
value := reflect.ValueOf(childEntity).Elem().Index(0)
childCurrentValue = reflect.Append(childCurrentValue, value)
reflect.ValueOf(rootEntity).Elem().Field(childFieldIndex).Set(childCurrentValue)
db := db.
Set("gorm:association_autoupdate", true).
Set("gorm:association_autocreate", true)
db.Save(rootEntity)
countAfter := association.Count()
result[field+id1+"_"+id2] = LinkStatusCrud{
Message: "ID:" + id1 + " -> " + id2 + " (ok)",
Status: "ok",
Operation: "link",
CountBefore: countBefore,
CountAfter: countAfter,
}
} else {
countAfter := db.Model(rootEntity).Association(field).Delete(childEntity).Count()
result[field+id1+"_"+id2] = LinkStatusCrud{
Message: "ID:" + id1 + " -/-> " + id2 + " (ok)",
Status: "ok",
Operation: "unlink",
CountBefore: countBefore,
CountAfter: countAfter,
}
}
}()
}
}
json.NewEncoder(w).Encode(result)
return
}
}
type MapperGormCrud struct {
R *mux.Router
RestBase string
Db *gorm.DB
Entity interface{}
Array interface{}
}
func WrapMux(f func(http.ResponseWriter, *http.Request, string)) func(http.ResponseWriter, *http.Request) {
return func(w http.ResponseWriter, r *http.Request) {
vars := mux.Vars(r)
id := vars["id"]
f(w, r, id)
}
}
// https://tools.ietf.org/html/draft-snell-link-method-12
// MapMux is constructor for mapper of mux
func MapMux(r *mux.Router, db *gorm.DB) MapperGormCrud {
return MapperGormCrud{R: r, Db: db}
}
func (g MapperGormCrud) NewMap(restBase string, entity interface{}, array interface{}) MapperGormCrud {
return MapperGormCrud{R: g.R, RestBase: restBase, Db: g.Db, Entity: entity, Array: array}
}
func (g MapperGormCrud) Save() MapperGormCrud {
g.R.HandleFunc(g.RestBase, WrapMux(Save(g.Db, g.Entity))).Methods(http.MethodPost)
return g
}
func (g MapperGormCrud) All() MapperGormCrud {
g.R.HandleFunc(g.RestBase, WrapMux(All(g.Db, g.Array))).Methods(http.MethodGet)
return g
}
func (g MapperGormCrud) Page() MapperGormCrud {
g.R.HandleFunc(g.RestBase+".page", WrapMux(Page(g.Db, g.Array))).Methods(http.MethodGet)
return g
}
func (g MapperGormCrud) Get() MapperGormCrud {
g.R.HandleFunc(g.RestBase+"/{id}", WrapMux(Get(g.Db, g.Entity))).Methods(http.MethodGet)
return g
}
func (g MapperGormCrud) Delete() MapperGormCrud {
g.R.HandleFunc(g.RestBase+"/{id}", WrapMux(Delete(g.Db, g.Entity))).Methods(http.MethodDelete)
return g
}
func (g MapperGormCrud) LinkMethod() MapperGormCrud {
g.R.HandleFunc(g.RestBase+"/{id}", WrapMux(Link(g.Db, g.Entity, "link"))).Methods("LINK")
g.R.HandleFunc(g.RestBase+"/{id}", WrapMux(Link(g.Db, g.Entity, "unlink"))).Methods("UNLINK")
return g
}
func (g MapperGormCrud) LinkUrl() MapperGormCrud {
g.R.HandleFunc(g.RestBase+"/{id}/link", WrapMux(Link(g.Db, g.Entity, "link"))).Methods(http.MethodGet)
g.R.HandleFunc(g.RestBase+"/{id}/unlink", WrapMux(Link(g.Db, g.Entity, "unlink"))).Methods(http.MethodGet)
return g
}
func (g MapperGormCrud) Base() MapperGormCrud {
g.
Delete().
Get().
Page().
Save()
return g
}
func (g MapperGormCrud) Full() MapperGormCrud {
g.
All().
Delete().
Get().
LinkMethod().
LinkUrl().
Page().
Save()
return g
}
// MapperGinGornCrud is struct of mapper gingonic
type MapperGinGormCrud struct {
R *gin.Engine
RestBase string
Db *gorm.DB
Entity interface{}
Array interface{}
}
// WrapF is a helper function for wrapping http.HandlerFunc and returns a Gin middleware.
func WrapGin(f func(http.ResponseWriter, *http.Request, string)) gin.HandlerFunc {
return func(c *gin.Context) {
id := c.Param("id")
fmt.Println(id)
f(c.Writer, c.Request, id)
}
}
// MapGin is constructor mapper for gingonic
func MapGin(engine *gin.Engine, db *gorm.DB) MapperGinGormCrud {
g := MapperGinGormCrud{R: engine, Db: db}
return g
}
// NewMap configuration endpoint
func (g MapperGinGormCrud) NewMap(restBase string, entity interface{}, array interface{}) MapperGinGormCrud {
return MapperGinGormCrud{R: g.R, RestBase: restBase, Db: g.Db, Entity: entity, Array: array}
}
// Save one entity
func (g MapperGinGormCrud) Save() MapperGinGormCrud {
g.R.POST(g.RestBase, WrapGin(Save(g.Db, g.Entity)))
return g
}
// Return all entities
func (g MapperGinGormCrud) All() MapperGinGormCrud {
g.R.GET(g.RestBase, WrapGin(All(g.Db, g.Array)))
return g
}
// Page return page with querystring page(number page) and limit (size page) .page?pahe=1&limit=10
func (g MapperGinGormCrud) Page() MapperGinGormCrud {
g.R.GET(g.RestBase+".page", WrapGin(Page(g.Db, g.Array)))
return g
}
// Get return one entity for id
func (g MapperGinGormCrud) Get() MapperGinGormCrud {
g.R.GET(g.RestBase+"/:id", WrapGin(Get(g.Db, g.Entity)))
return g
}
// Delete map operation delete on method delete
func (g MapperGinGormCrud) Delete() MapperGinGormCrud {
g.R.DELETE(g.RestBase+"/:id", WrapGin(Delete(g.Db, g.Entity)))
return g
}
// LinkMethod map operation link and unlink with indicator in method htpp LINK UNLINK
func (g MapperGinGormCrud) LinkMethod() MapperGinGormCrud {
g.R.Handle("LINK", g.RestBase+"/:id/link", WrapGin(Link(g.Db, g.Entity, "link")))
g.R.Handle("UNLINK", g.RestBase+"/:id/unlink", WrapGin(Link(g.Db, g.Entity, "unlink")))
return g
}
// LinkUrl map operation link and unlink with indicator in url
func (g MapperGinGormCrud) LinkUrl() MapperGinGormCrud {
g.R.GET(g.RestBase+"/:id/link", WrapGin(Link(g.Db, g.Entity, "link")))
g.R.GET(g.RestBase+"/:id/unlink", WrapGin(Link(g.Db, g.Entity, "unlink")))
return g
}
// Base map only Delete, Get , Page and Save
func (g MapperGinGormCrud) Base() MapperGinGormCrud {
g.
Delete().
Get().
Page().
Save()
return g
}
// Full map all apis for entity
func (g MapperGinGormCrud) Full() MapperGinGormCrud {
g.
All().
Delete().
Get().
LinkMethod().
LinkUrl().
Page().
Save()
return g
}