forked from ARGOeu/argo-messaging
-
Notifications
You must be signed in to change notification settings - Fork 0
/
handlers.go
2265 lines (1764 loc) · 57 KB
/
handlers.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
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package main
import (
"encoding/json"
"fmt"
"io/ioutil"
"net/http"
"net/url"
"sort"
"strconv"
"strings"
"time"
log "github.com/Sirupsen/logrus"
"github.com/ARGOeu/argo-messaging/auth"
"github.com/ARGOeu/argo-messaging/brokers"
"github.com/ARGOeu/argo-messaging/config"
"github.com/ARGOeu/argo-messaging/messages"
"github.com/ARGOeu/argo-messaging/metrics"
"github.com/ARGOeu/argo-messaging/projects"
"github.com/ARGOeu/argo-messaging/push"
"github.com/ARGOeu/argo-messaging/stores"
"github.com/ARGOeu/argo-messaging/subscriptions"
"github.com/ARGOeu/argo-messaging/topics"
"github.com/gorilla/context"
"github.com/gorilla/mux"
"github.com/twinj/uuid"
)
// HandlerWrappers
//////////////////
// WrapValidate handles validation
func WrapValidate(hfn http.HandlerFunc) http.HandlerFunc {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
urlVars := mux.Vars(r)
// sort keys
keys := []string(nil)
for key := range urlVars {
keys = append(keys, key)
}
sort.Strings(keys)
// Iterate alphabetically
for _, key := range keys {
if validName(urlVars[key]) == false {
respondErr(w, 400, "Invalid "+key+" name", "INVALID_ARGUMENT")
return
}
}
hfn.ServeHTTP(w, r)
})
}
// WrapMockAuthConfig handle wrapper is used in tests were some auth context is needed
func WrapMockAuthConfig(hfn http.HandlerFunc, cfg *config.APICfg, brk brokers.Broker, str stores.Store, mgr *push.Manager) http.HandlerFunc {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
urlVars := mux.Vars(r)
nStr := str.Clone()
defer nStr.Close()
projectUUID := projects.GetUUIDByName(urlVars["project"], nStr)
context.Set(r, "auth_project_uuid", projectUUID)
context.Set(r, "brk", brk)
context.Set(r, "str", nStr)
context.Set(r, "mgr", mgr)
context.Set(r, "auth_resource", cfg.ResAuth)
context.Set(r, "auth_user", "UserA")
context.Set(r, "auth_user_uuid", "uuid1")
context.Set(r, "auth_roles", []string{"publisher", "consumer"})
hfn.ServeHTTP(w, r)
})
}
// WrapConfig handle wrapper to retrieve kafka configuration
func WrapConfig(hfn http.HandlerFunc, cfg *config.APICfg, brk brokers.Broker, str stores.Store, mgr *push.Manager) http.HandlerFunc {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
nStr := str.Clone()
defer nStr.Close()
context.Set(r, "brk", brk)
context.Set(r, "str", nStr)
context.Set(r, "mgr", mgr)
context.Set(r, "auth_resource", cfg.ResAuth)
context.Set(r, "auth_service_token", cfg.ServiceToken)
hfn.ServeHTTP(w, r)
})
}
// WrapLog handle wrapper to apply Logging
func WrapLog(hfn http.Handler, name string) http.HandlerFunc {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
start := time.Now()
hfn.ServeHTTP(w, r)
log.Info(
"ACCESS", "\t",
r.Method, "\t",
r.RequestURI, "\t",
name, "\t",
time.Since(start),
)
})
}
// WrapAuthenticate handle wrapper to apply authentication
func WrapAuthenticate(hfn http.Handler) http.HandlerFunc {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
urlVars := mux.Vars(r)
urlValues := r.URL.Query()
refStr := context.Get(r, "str").(stores.Store)
serviceToken := context.Get(r, "auth_service_token").(string)
projectUUID := projects.GetUUIDByName(urlVars["project"], refStr)
// Check first if service token is used
if serviceToken != "" && serviceToken == urlValues.Get("key") {
context.Set(r, "auth_roles", []string{})
context.Set(r, "auth_user", "")
context.Set(r, "auth_user_uuid", "")
context.Set(r, "auth_project_uuid", projectUUID)
hfn.ServeHTTP(w, r)
return
}
roles, user := auth.Authenticate(projectUUID, urlValues.Get("key"), refStr)
if len(roles) > 0 {
userUUID := auth.GetUUIDByName(user, refStr)
context.Set(r, "auth_roles", roles)
context.Set(r, "auth_user", user)
context.Set(r, "auth_user_uuid", userUUID)
context.Set(r, "auth_project_uuid", projectUUID)
hfn.ServeHTTP(w, r)
} else {
respondErr(w, 401, "Unauthorized", "UNAUTHORIZED")
}
})
}
// WrapAuthorize handle wrapper to apply authentication
func WrapAuthorize(hfn http.Handler, routeName string) http.HandlerFunc {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
urlValues := r.URL.Query()
refStr := context.Get(r, "str").(stores.Store)
refRoles := context.Get(r, "auth_roles").([]string)
serviceToken := context.Get(r, "auth_service_token").(string)
// Check first if service token is used
if serviceToken != "" && serviceToken == urlValues.Get("key") {
hfn.ServeHTTP(w, r)
return
}
if auth.Authorize(routeName, refRoles, refStr) {
hfn.ServeHTTP(w, r)
} else {
respondErr(w, 403, "Access to this resource is forbidden", "FORBIDDEN")
}
})
}
// HandlerFunctions
///////////////////
// ProjectDelete (DEL) deletes an existing project (also removes it's topics and subscriptions)
func ProjectDelete(w http.ResponseWriter, r *http.Request) {
// Init output
output := []byte("")
// Add content type header to the response
contentType := "application/json"
charset := "utf-8"
w.Header().Add("Content-Type", fmt.Sprintf("%s; charset=%s", contentType, charset))
// Grab context references
refStr := context.Get(r, "str").(stores.Store)
refMgr := context.Get(r, "mgr").(*push.Manager)
// Get Result Object
// Get project UUID First to use as reference
projectUUID := context.Get(r, "auth_project_uuid").(string)
// RemoveProject removes also attached subs and topics from the datastore
err := projects.RemoveProject(projectUUID, refStr)
if err != nil {
if err.Error() == "not found" {
respondErr(w, 404, "Project doesn't exist", "NOT_FOUND")
return
}
respondErr(w, 500, err.Error(), "INTERNAL")
return
}
// Stop any relevant push subscriptions
if err := refMgr.RemoveProjectAll(projectUUID); err != nil {
respondErr(w, 500, err.Error(), "INTERNAL")
}
// Write empty response if anything ok
respondOK(w, output)
}
// ProjectUpdate (PUT) updates the name or the description of an existing project
func ProjectUpdate(w http.ResponseWriter, r *http.Request) {
// Init output
output := []byte("")
// Add content type header to the response
contentType := "application/json"
charset := "utf-8"
w.Header().Add("Content-Type", fmt.Sprintf("%s; charset=%s", contentType, charset))
// Grab context references
refStr := context.Get(r, "str").(stores.Store)
projectUUID := context.Get(r, "auth_project_uuid").(string)
// Read POST JSON body
body, err := ioutil.ReadAll(r.Body)
if err != nil {
respondErr(w, 400, "Invalid Request body", "INVALID_ARGUMENT")
return
}
// Parse pull options
postBody, err := projects.GetFromJSON(body)
if err != nil {
respondErr(w, 400, "Invalid Project Arguments", "INVALID_ARGUMENT")
log.Error(string(body[:]))
return
}
modified := time.Now()
// Get Result Object
res, err := projects.UpdateProject(projectUUID, postBody.Name, postBody.Description, modified, refStr)
if err != nil {
if err.Error() == "not found" {
respondErr(w, 403, "Project not found", "NOT_FOUND")
return
}
if strings.HasPrefix(err.Error(), "invalid") {
respondErr(w, 400, err.Error(), "INVALID_ARGUMENT")
return
}
respondErr(w, 500, err.Error(), "INTERNAL")
return
}
// Output result to JSON
resJSON, err := res.ExportJSON()
if err != nil {
respondErr(w, 500, "Error exporting data to JSON", "INTERNAL")
return
}
// Write response
output = []byte(resJSON)
respondOK(w, output)
}
// ProjectCreate (POST) creates a new project
func ProjectCreate(w http.ResponseWriter, r *http.Request) {
// Init output
output := []byte("")
// Add content type header to the response
contentType := "application/json"
charset := "utf-8"
w.Header().Add("Content-Type", fmt.Sprintf("%s; charset=%s", contentType, charset))
// Grab url path variables
urlVars := mux.Vars(r)
urlProject := urlVars["project"]
// Grab context references
refStr := context.Get(r, "str").(stores.Store)
refUserUUID := context.Get(r, "auth_user_uuid").(string)
// Read POST JSON body
body, err := ioutil.ReadAll(r.Body)
if err != nil {
respondErr(w, 400, "Invalid Request body", "INVALID_ARGUMENT")
return
}
// Parse pull options
postBody, err := projects.GetFromJSON(body)
if err != nil {
respondErr(w, 400, "Invalid Project Arguments", "INVALID_ARGUMENT")
log.Error(string(body[:]))
return
}
uuid := uuid.NewV4().String() // generate a new uuid to attach to the new project
created := time.Now()
// Get Result Object
res, err := projects.CreateProject(uuid, urlProject, created, refUserUUID, postBody.Description, refStr)
if err != nil {
if err.Error() == "exists" {
respondErr(w, 409, "Project already exists", "ALREADY_EXISTS")
return
}
respondErr(w, 500, err.Error(), "INTERNAL_SERVER_ERROR")
return
}
// Output result to JSON
resJSON, err := res.ExportJSON()
if err != nil {
respondErr(w, 500, "Error exporting data to JSON", "INTERNAL_SERVER_ERROR")
return
}
// Write response
output = []byte(resJSON)
respondOK(w, output)
}
// ProjectListAll (GET) all projects
func ProjectListAll(w http.ResponseWriter, r *http.Request) {
// Init output
output := []byte("")
// Add content type header to the response
contentType := "application/json"
charset := "utf-8"
w.Header().Add("Content-Type", fmt.Sprintf("%s; charset=%s", contentType, charset))
// Grab context references
refStr := context.Get(r, "str").(stores.Store)
// Get Results Object
res, err := projects.Find("", "", refStr)
if err != nil && err.Error() != "not found" {
respondErr(w, 500, "Internal error while querying datastore", "INTERNAL_SERVER_ERROR")
return
}
// Output result to JSON
resJSON, err := res.ExportJSON()
if err != nil {
respondErr(w, 500, "Error exporting data", "INTERNAL_SERVER_ERROR")
return
}
// Write response
output = []byte(resJSON)
respondOK(w, output)
}
// ProjectListOne (GET) one project
func ProjectListOne(w http.ResponseWriter, r *http.Request) {
// Init output
output := []byte("")
// Add content type header to the response
contentType := "application/json"
charset := "utf-8"
w.Header().Add("Content-Type", fmt.Sprintf("%s; charset=%s", contentType, charset))
// Grab url path variables
urlVars := mux.Vars(r)
urlProject := urlVars["project"]
// Grab context references
refStr := context.Get(r, "str").(stores.Store)
// Get Results Object
results, err := projects.Find("", urlProject, refStr)
if err != nil {
if err.Error() == "not found" {
respondErr(w, 404, "Project does not exist", "NOT_FOUND")
return
}
respondErr(w, 500, "Internal error while querying datastore", "INTERNAL_SERVER_ERROR")
return
}
// Output result to JSON
res := results.One()
resJSON, err := res.ExportJSON()
if err != nil {
respondErr(w, 500, "Error exporting data", "INTERNAL")
return
}
// Write response
output = []byte(resJSON)
respondOK(w, output)
}
// RefreshToken (POST) refreshes user's token
func RefreshToken(w http.ResponseWriter, r *http.Request) {
// Init output
output := []byte("")
// Add content type header to the response
contentType := "application/json"
charset := "utf-8"
w.Header().Add("Content-Type", fmt.Sprintf("%s; charset=%s", contentType, charset))
// Grab url path variables
urlVars := mux.Vars(r)
urlUser := urlVars["user"]
// Grab context references
refStr := context.Get(r, "str").(stores.Store)
// Get Result Object
userUUID := auth.GetUUIDByName(urlUser, refStr)
token, err := auth.GenToken() // generate a new user token
res, err := auth.UpdateUserToken(userUUID, token, refStr)
if err != nil {
if err.Error() == "not found" {
respondErr(w, 403, "User not found", "NOT_FOUND")
return
}
respondErr(w, 500, err.Error(), "INTERNAL")
return
}
// Output result to JSON
resJSON, err := res.ExportJSON()
if err != nil {
respondErr(w, 500, "Error exporting data to JSON", "INTERNAL")
return
}
// Write response
output = []byte(resJSON)
respondOK(w, output)
}
// UserUpdate (PUT) updates the user information
func UserUpdate(w http.ResponseWriter, r *http.Request) {
// Init output
output := []byte("")
// Add content type header to the response
contentType := "application/json"
charset := "utf-8"
w.Header().Add("Content-Type", fmt.Sprintf("%s; charset=%s", contentType, charset))
// Grab url path variables
urlVars := mux.Vars(r)
urlUser := urlVars["user"]
// Grab context references
refStr := context.Get(r, "str").(stores.Store)
// Read POST JSON body
body, err := ioutil.ReadAll(r.Body)
if err != nil {
respondErr(w, 400, "Invalid Request body", "INVALID_ARGUMENT")
return
}
// Parse pull options
postBody, err := auth.GetUserFromJSON(body)
if err != nil {
respondErr(w, 400, "Invalid User Arguments", "INVALID_ARGUMENT")
log.Error(string(body[:]))
return
}
// Get Result Object
userUUID := auth.GetUUIDByName(urlUser, refStr)
modified := time.Now()
res, err := auth.UpdateUser(userUUID, postBody.Name, postBody.Projects, postBody.Email, postBody.ServiceRoles, modified, refStr)
if err != nil {
// In case of invalid project or role in post body
if err.Error() == "not found" {
respondErr(w, 403, "User not found", "NOT_FOUND")
return
}
if strings.HasPrefix(err.Error(), "invalid") {
respondErr(w, 400, err.Error(), "INVALID_ARGUMENT")
return
}
respondErr(w, 500, err.Error(), "INTERNAL")
return
}
// Output result to JSON
resJSON, err := res.ExportJSON()
if err != nil {
respondErr(w, 500, "Error exporting data to JSON", "INTERNAL")
return
}
// Write response
output = []byte(resJSON)
respondOK(w, output)
}
// UserCreate (POST) creates a new user inside a project
func UserCreate(w http.ResponseWriter, r *http.Request) {
// Init output
output := []byte("")
// Add content type header to the response
contentType := "application/json"
charset := "utf-8"
w.Header().Add("Content-Type", fmt.Sprintf("%s; charset=%s", contentType, charset))
// Grab url path variables
urlVars := mux.Vars(r)
urlUser := urlVars["user"]
// Grab context references
refStr := context.Get(r, "str").(stores.Store)
refUserUUID := context.Get(r, "auth_user_uuid").(string)
// Read POST JSON body
body, err := ioutil.ReadAll(r.Body)
if err != nil {
respondErr(w, 400, "Invalid Request body", "INVALID_ARGUMENT")
return
}
// Parse pull options
postBody, err := auth.GetUserFromJSON(body)
if err != nil {
respondErr(w, 400, "Invalid User Arguments", "INVALID_ARGUMENT")
log.Error(string(body[:]))
return
}
uuid := uuid.NewV4().String() // generate a new uuid to attach to the new project
token, err := auth.GenToken() // generate a new user token
created := time.Now()
// Get Result Object
res, err := auth.CreateUser(uuid, urlUser, postBody.Projects, token, postBody.Email, postBody.ServiceRoles, created, refUserUUID, refStr)
if err != nil {
if err.Error() == "exists" {
respondErr(w, 409, "User already exists", "ALREADY_EXISTS")
return
}
respondErr(w, 500, err.Error(), "INTERNAL")
return
}
// Output result to JSON
resJSON, err := res.ExportJSON()
if err != nil {
respondErr(w, 500, "Error exporting data to JSON", "INTERNAL")
return
}
// Write response
output = []byte(resJSON)
respondOK(w, output)
}
// OpMetrics (GET) all operational metrics
func OpMetrics(w http.ResponseWriter, r *http.Request) {
// Init output
output := []byte("")
// Add content type header to the response
contentType := "application/json"
charset := "utf-8"
w.Header().Add("Content-Type", fmt.Sprintf("%s; charset=%s", contentType, charset))
// Grab context references
refStr := context.Get(r, "str").(stores.Store)
// Get Results Object
res, err := metrics.GetUsageCpuMem(refStr)
if err != nil && err.Error() != "not found" {
respondErr(w, 500, "Internal error while querying datastore", "INTERNAL")
return
}
// Output result to JSON
resJSON, err := res.ExportJSON()
if err != nil {
respondErr(w, 500, "Error exporting data", "INTERNAL_SERVER_ERROR")
return
}
// Write response
output = []byte(resJSON)
respondOK(w, output)
}
// UserListByToken (GET) one user by his token
func UserListByToken(w http.ResponseWriter, r *http.Request) {
// Init output
output := []byte("")
// Add content type header to the response
contentType := "application/json"
charset := "utf-8"
w.Header().Add("Content-Type", fmt.Sprintf("%s; charset=%s", contentType, charset))
// Grab url path variables
urlVars := mux.Vars(r)
urlToken := urlVars["token"]
// Grab context references
refStr := context.Get(r, "str").(stores.Store)
// Get Results Object
result, err := auth.GetUserByToken(urlToken, refStr)
if err != nil {
if err.Error() == "not found" {
respondErr(w, 404, "User does not exist", "NOT_FOUND")
return
}
respondErr(w, 500, "Internal error while querying datastore", "INTERNAL")
return
}
// Output result to JSON
resJSON, err := result.ExportJSON()
if err != nil {
respondErr(w, 500, "Error exporting data", "INTERNAL")
return
}
// Write response
output = []byte(resJSON)
respondOK(w, output)
}
// UserListOne (GET) one user
func UserListOne(w http.ResponseWriter, r *http.Request) {
// Init output
output := []byte("")
// Add content type header to the response
contentType := "application/json"
charset := "utf-8"
w.Header().Add("Content-Type", fmt.Sprintf("%s; charset=%s", contentType, charset))
// Grab url path variables
urlVars := mux.Vars(r)
urlUser := urlVars["user"]
// Grab context references
refStr := context.Get(r, "str").(stores.Store)
// Get Results Object
results, err := auth.FindUsers("", "", urlUser, refStr)
if err != nil {
if err.Error() == "not found" {
respondErr(w, 404, "User does not exist", "NOT_FOUND")
return
}
respondErr(w, 500, "Internal error while querying datastore", "INTERNAL")
return
}
res := results.One()
// Output result to JSON
resJSON, err := res.ExportJSON()
if err != nil {
respondErr(w, 500, "Error exporting data", "INTERNAL")
return
}
// Write response
output = []byte(resJSON)
respondOK(w, output)
}
// UserListAll (GET) all users belonging to a project
func UserListAll(w http.ResponseWriter, r *http.Request) {
// Init output
output := []byte("")
// Add content type header to the response
contentType := "application/json"
charset := "utf-8"
w.Header().Add("Content-Type", fmt.Sprintf("%s; charset=%s", contentType, charset))
// Grab context references
refStr := context.Get(r, "str").(stores.Store)
// Get Results Object
res, err := auth.FindUsers("", "", "", refStr)
if err != nil && err.Error() != "not found" {
respondErr(w, 500, "Internal error while querying datastore", "INTERNAL")
return
}
// Output result to JSON
resJSON, err := res.ExportJSON()
if err != nil {
respondErr(w, 500, "Error exporting data", "INTERNAL_SERVER_ERROR")
return
}
// Write response
output = []byte(resJSON)
respondOK(w, output)
}
// UserDelete (DEL) deletes an existing user
func UserDelete(w http.ResponseWriter, r *http.Request) {
// Init output
output := []byte("")
// Add content type header to the response
contentType := "application/json"
charset := "utf-8"
w.Header().Add("Content-Type", fmt.Sprintf("%s; charset=%s", contentType, charset))
// Grab context references
refStr := context.Get(r, "str").(stores.Store)
// Grab url path variables
urlVars := mux.Vars(r)
urlUser := urlVars["user"]
userUUID := auth.GetUUIDByName(urlUser, refStr)
err := auth.RemoveUser(userUUID, refStr)
if err != nil {
if err.Error() == "not found" {
respondErr(w, 404, "User doesn't exist", "NOT_FOUND")
return
}
respondErr(w, 500, err.Error(), "INTERNAL")
return
}
// Write empty response if anything ok
respondOK(w, output)
}
// SubAck (GET) one subscription
func SubAck(w http.ResponseWriter, r *http.Request) {
// Init output
output := []byte("")
// Add content type header to the response
contentType := "application/json"
charset := "utf-8"
w.Header().Add("Content-Type", fmt.Sprintf("%s; charset=%s", contentType, charset))
// Grab url path variables
urlVars := mux.Vars(r)
// Grab context references
refStr := context.Get(r, "str").(stores.Store)
projectUUID := context.Get(r, "auth_project_uuid").(string)
// Read POST JSON body
body, err := ioutil.ReadAll(r.Body)
if err != nil {
respondErr(w, 400, "Invalid request body", "INVALID_ARGUMENT")
return
}
// Parse pull options
postBody, err := subscriptions.GetAckFromJSON(body)
if err != nil {
respondErr(w, 400, "Invalid ack parameter", "INVALID_ARGUMENT")
return
}
// Get urlParams
projectName := urlVars["project"]
subName := urlVars["subscription"]
// Check if sub exists
cur_sub, err := subscriptions.Find(projectUUID, subName, refStr)
if err != nil {
respondErr(w, 500, "Error handling acknowledgement", "INTERNAL_SERVER_ERROR")
return
}
if len(cur_sub.List) == 0 {
respondErr(w, 404, "Subscription doesn't exist", "NOT_FOUND")
return
}
// Get list of AckIDs
if postBody.IDs == nil {
respondErr(w, 400, "Invalid ack id", "INVALID_ARGUMENT")
return
}
// Check if each AckID is valid
for _, ackID := range postBody.IDs {
if validAckID(projectName, subName, ackID) == false {
respondErr(w, 400, "Invalid ack id", "INVALID_ARGUMENT")
return
}
}
// Get Max ackID
maxAckID, err := subscriptions.GetMaxAckID(postBody.IDs)
if err != nil {
respondErr(w, 500, "Error handling acknowledgement", "INTERNAL_SERVER_ERROR")
return
}
// Extract offset from max ackID
off, err := subscriptions.GetOffsetFromAckID(maxAckID)
if err != nil {
respondErr(w, 400, "Invalid ack id", "INVALID_ARGUMENT")
return
}
zSec := "2006-01-02T15:04:05Z"
t := time.Now()
ts := t.Format(zSec)
err = refStr.UpdateSubOffsetAck(projectUUID, urlVars["subscription"], int64(off+1), ts)
if err != nil {
if err.Error() == "ack timeout" {
respondErr(w, 408, err.Error(), "TIMEOUT")
return
}
respondErr(w, 400, err.Error(), "INTERNAL_SERVER_ERROR")
return
}
// Output result to JSON
resJSON := "{}"
// Write response
output = []byte(resJSON)
respondOK(w, output)
}
// SubListOne (GET) one subscription
func SubListOne(w http.ResponseWriter, r *http.Request) {
// Init output
output := []byte("")
// Add content type header to the response
contentType := "application/json"
charset := "utf-8"
w.Header().Add("Content-Type", fmt.Sprintf("%s; charset=%s", contentType, charset))
// Grab url path variables
urlVars := mux.Vars(r)
// Grab context references
refStr := context.Get(r, "str").(stores.Store)
projectUUID := context.Get(r, "auth_project_uuid").(string)
results, err := subscriptions.Find(projectUUID, urlVars["subscription"], refStr)
if err != nil {
respondErr(w, 500, "Backend Error", "INTERNAL_SERVER_ERROR")
return
}
// If not found
if results.Empty() {
respondErr(w, 404, "Subscription does not exist", "NOT_FOUND")
return
}
// Output result to JSON
resJSON, err := results.List[0].ExportJSON()
if err != nil {
respondErr(w, 500, "Error exporting data", "INTERNAL_SERVER_ERROR")
return
}
// Write response
output = []byte(resJSON)
respondOK(w, output)
}
// SubSetOffset (PUT) sets subscriptions current offset
func SubSetOffset(w http.ResponseWriter, r *http.Request) {
// Init output
output := []byte("")
// Add content type header to the response
contentType := "application/json"
charset := "utf-8"
w.Header().Add("Content-Type", fmt.Sprintf("%s; charset=%s", contentType, charset))
// Grab url path variables
urlVars := mux.Vars(r)
// Get Result Object
urlSub := urlVars["subscription"]
// Read POST JSON body
body, err := ioutil.ReadAll(r.Body)
if err != nil {
respondErr(w, 400, "Invalid Request body", "INVALID_ARGUMENT")
return
}
// Parse pull options
postBody, err := subscriptions.GetSetOffsetJSON(body)
if err != nil {
respondErr(w, 400, "Invalid Offset Argument", "INVALID_ARGUMENT")
log.Error(string(body[:]))
return
}
// Grab context references
refStr := context.Get(r, "str").(stores.Store)
refBrk := context.Get(r, "brk").(brokers.Broker)
// Get project UUID First to use as reference
projectUUID := context.Get(r, "auth_project_uuid").(string)
// Find Subscription
results, err := subscriptions.Find(projectUUID, urlVars["subscription"], refStr)
if err != nil {
respondErr(w, 500, "Backend Error", "INTERNAL_SERVER_ERROR")
return
}
// If not found