-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhandlers.go
More file actions
228 lines (209 loc) · 6.34 KB
/
handlers.go
File metadata and controls
228 lines (209 loc) · 6.34 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
package main
import (
"encoding/json"
"fmt"
"io"
"log"
"net/http"
srvConfig "github.com/CHESSComputing/golib/config"
ql "github.com/CHESSComputing/golib/ql"
"github.com/CHESSComputing/golib/server"
services "github.com/CHESSComputing/golib/services"
"github.com/gin-gonic/gin"
)
// MetaParams represents /record?did=bla end-point
type MetaParams struct {
DID string `form:"did"`
}
// GetHandler handles queries via GET requests
func GetHandler(c *gin.Context) {
var params MetaParams
err := c.Bind(¶ms)
if err != nil {
rec := services.Response("MetaData", http.StatusBadRequest, services.BindError, err)
c.JSON(http.StatusBadRequest, rec)
return
}
var records []map[string]any
spec := map[string]any{"did": params.DID}
records = metaDB.Get(
srvConfig.Config.UserMetaData.DBName,
srvConfig.Config.UserMetaData.DBColl,
spec, 0, -1)
if Verbose > 0 {
log.Println("RecordHandler", spec, records)
}
c.JSON(http.StatusOK, records)
}
// helper function to exgract JSON dict from HTTP request
func parseRequest(c *gin.Context) (map[string]any, error) {
var spec map[string]any
defer c.Request.Body.Close()
body, err := io.ReadAll(c.Request.Body)
if err != nil {
return spec, fmt.Errorf("[UserMetaData.main.parseRequest] io.ReadAll error: %w", err)
}
err = json.Unmarshal(body, &spec)
if err != nil {
return spec, fmt.Errorf("[UserMetaData.main.parseRequest] json.Unmarshal error: %w", err)
}
return spec, nil
}
// helper function to parse incoming HTTP request into ServiceRequest structure
func parseQueryRequest(c *gin.Context) (services.ServiceRequest, error) {
var rec services.ServiceRequest
defer c.Request.Body.Close()
body, err := io.ReadAll(c.Request.Body)
if err != nil {
return rec, fmt.Errorf("[UserMetaData.main.parseQueryRequest] io.ReadAll error: %w", err)
}
err = json.Unmarshal(body, &rec)
if err != nil {
log.Printf("ERROR: unable to unmarshal response body %s, error %v", string(body), err)
return rec, err
}
if Verbose > 0 {
log.Printf("QueryHandler received request %+s", rec.String())
}
return rec, nil
}
// PostHandler handles POST upload of meta-data record
func PostHandler(c *gin.Context) {
rec, err := parseRequest(c)
if err != nil {
log.Println("ERROR:", err)
rec := services.Response("MetaData", http.StatusInternalServerError, services.ParseError, err)
c.JSON(http.StatusInternalServerError, rec)
return
}
// insert record to meta-data database
did, err := insertData(rec)
if err != nil {
log.Println("ERROR:", err)
rec := services.Response("MetaData", http.StatusInternalServerError, services.InsertError, err)
c.JSON(http.StatusInternalServerError, rec)
return
}
var records []map[string]any
resp := services.Response("MetaData", http.StatusOK, services.OK, nil)
r := make(map[string]any)
r["did"] = did
records = append(records, r)
resp.Results = services.ServiceResults{NRecords: 1, Records: records}
c.JSON(http.StatusOK, resp)
}
// SearchHandler handles POST queries
func SearchHandler(c *gin.Context) {
rec, err := parseQueryRequest(c)
if err != nil {
log.Println("ERROR:", err)
rec := services.Response("MetaData", http.StatusInternalServerError, services.ParseError, err)
c.JSON(http.StatusInternalServerError, rec)
return
}
// get all attributes we need
query := rec.ServiceQuery.Query
idx := rec.ServiceQuery.Idx
limit := rec.ServiceQuery.Limit
sortOrder := rec.ServiceQuery.SortOrder
sortKeys := rec.ServiceQuery.SortKeys
spec := rec.ServiceQuery.Spec
if spec != nil {
if Verbose > 0 {
log.Printf("use rec.ServiceQuery.Spec=%+v", spec)
}
} else {
spec, err = ql.ParseQuery(query)
if Verbose > 0 {
log.Printf("search query='%s' spec=%+v", query, spec)
}
if err != nil {
log.Println("ERROR:", err)
rec := services.Response("MetaData", http.StatusInternalServerError, services.ParseError, err)
c.JSON(http.StatusInternalServerError, rec)
return
}
}
var records []map[string]any
nrecords := 0
if spec != nil {
nrecords = metaDB.Count(srvConfig.Config.UserMetaData.DBName, srvConfig.Config.UserMetaData.DBColl, spec)
if len(sortKeys) > 0 {
records = metaDB.GetSorted(
srvConfig.Config.UserMetaData.DBName,
srvConfig.Config.UserMetaData.DBColl,
spec, sortKeys, sortOrder, idx, limit)
} else {
records = metaDB.Get(
srvConfig.Config.UserMetaData.DBName,
srvConfig.Config.UserMetaData.DBColl,
spec, idx, limit)
}
}
if Verbose > 0 {
log.Printf("spec %v sortedKeys %v nrecords %d return idx=%d limit=%d", spec, sortKeys, nrecords, idx, limit)
}
c.JSON(http.StatusOK, records)
}
// CountHandler handles POST queries
func CountHandler(c *gin.Context) {
rec, err := parseQueryRequest(c)
if err != nil {
log.Println("ERROR:", err)
rec := services.Response("MetaData", http.StatusInternalServerError, services.ParseError, err)
c.JSON(http.StatusInternalServerError, rec)
return
}
// get all attributes we need
query := rec.ServiceQuery.Query
idx := rec.ServiceQuery.Idx
limit := rec.ServiceQuery.Limit
spec := rec.ServiceQuery.Spec
if spec != nil {
if Verbose > 0 {
log.Printf("use rec.ServiceQuery.Spec=%+v", spec)
}
} else {
spec, err = ql.ParseQuery(query)
if Verbose > 0 {
log.Printf("search query='%s' spec=%+v", query, spec)
}
if err != nil {
log.Println("ERROR:", err)
rec := services.Response("MetaData", http.StatusInternalServerError, services.ParseError, err)
c.JSON(http.StatusInternalServerError, rec)
return
}
}
nrecords := 0
if spec != nil {
nrecords = metaDB.Count(srvConfig.Config.UserMetaData.DBName, srvConfig.Config.UserMetaData.DBColl, spec)
}
if Verbose > 0 {
log.Printf("spec %v nrecords %d return idx=%d limit=%d", spec, nrecords, idx, limit)
}
c.JSON(http.StatusOK, nrecords)
}
// DeleteHandler handles POST queries
func DeleteHandler(c *gin.Context) {
did := c.Request.FormValue("did")
_, _, err := server.GetAuthTokenUser(c)
if err != nil {
c.JSON(http.StatusBadRequest, gin.H{"error": "no user found in token", "message": "no user found", "code": services.RemoveError})
return
}
spec := make(map[string]any)
spec["did"] = did
err = metaDB.Remove(
srvConfig.Config.UserMetaData.DBName,
srvConfig.Config.UserMetaData.DBColl,
spec)
status := http.StatusOK
srvCode := services.OK
if err != nil {
status = http.StatusBadRequest
srvCode = services.RemoveError
}
rec := services.Response("MetaData", status, srvCode, err)
c.JSON(status, rec)
}