forked from CHESSComputing/MetaData
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhandlers.go
265 lines (241 loc) · 7.54 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
package main
import (
"encoding/json"
"errors"
"io/ioutil"
"log"
"net/http"
beamlines "github.com/CHESSComputing/golib/beamlines"
srvConfig "github.com/CHESSComputing/golib/config"
lexicon "github.com/CHESSComputing/golib/lexicon"
mongo "github.com/CHESSComputing/golib/mongo"
ql "github.com/CHESSComputing/golib/ql"
services "github.com/CHESSComputing/golib/services"
"github.com/gin-gonic/gin"
bson "go.mongodb.org/mongo-driver/bson"
)
// MetaParams represents /record?did=bla end-point
type MetaParams struct {
DID string `form:"did"`
}
// MetaDetailsHandler provides MetaData details dictionary via /meta end-point
func MetaDetailsHandler(c *gin.Context) {
records := _smgr.MetaDetails()
c.JSON(http.StatusOK, records)
}
// SummaryHandler handles queries via GET requests
func SummaryHandler(c *gin.Context) {
summary := make(map[string]any)
var attrs []string
if err := c.BindJSON(&attrs); err != nil {
c.JSON(http.StatusBadRequest, gin.H{"error": "Invalid JSON"})
return
}
// total number of records
spec := bson.M{}
nrec := mongo.Count(
srvConfig.Config.CHESSMetaData.DBName,
srvConfig.Config.CHESSMetaData.DBColl,
spec)
summary["total"] = nrec
// find unique values of attributes
filter := bson.D{}
for _, field := range attrs {
records, err := mongo.Distinct(
srvConfig.Config.CHESSMetaData.DBName,
srvConfig.Config.CHESSMetaData.DBColl,
field, filter)
if err == nil {
summary[field] = records
} else {
log.Printf("ERROR: fail to look up %s, %v, error %v", field, filter, err)
}
}
c.JSON(http.StatusOK, summary)
}
// RecordHandler handles queries via GET requests
func RecordHandler(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 := bson.M{"did": params.DID}
records = mongo.Get(
srvConfig.Config.CHESSMetaData.DBName,
srvConfig.Config.CHESSMetaData.DBColl,
spec, 0, -1)
if Verbose > 0 {
log.Println("RecordHandler", spec, records)
}
c.JSON(http.StatusOK, records)
}
// 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 := ioutil.ReadAll(c.Request.Body)
if err != nil {
return rec, 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
}
// helper function to parse input HTTP request JSON data
func parseRequest(c *gin.Context) (services.MetaRecord, error) {
var rec services.MetaRecord
defer c.Request.Body.Close()
body, err := ioutil.ReadAll(c.Request.Body)
if err != nil {
return rec, err
}
err = json.Unmarshal(body, &rec)
if err != nil {
return rec, err
}
if Verbose > 0 {
log.Printf("QueryHandler received request %+v", rec)
}
return rec, nil
}
// DataHandler handles POST upload of meta-data record
func DataHandler(c *gin.Context) {
rec, err := parseRequest(c)
if err != nil {
rec := services.Response("MetaData", http.StatusInternalServerError, services.ParseError, err)
c.JSON(http.StatusInternalServerError, rec)
return
}
sname := rec.Schema
if sname == "" {
err := errors.New("No schema found in meta-data record")
rec := services.Response("MetaData", http.StatusBadRequest, services.SchemaError, err)
log.Println("### error", rec.JsonString())
c.JSON(http.StatusBadRequest, rec)
return
}
schema := beamlines.SchemaFileName(sname)
record := rec.Record
if Verbose > 0 {
log.Printf("insert schema=%s record=%+v", schema, record)
}
err = lexicon.ValidateRecord(record)
if err != nil {
rec := services.Response("MetaData", http.StatusInternalServerError, services.ValidateError, err)
c.JSON(http.StatusInternalServerError, rec)
return
}
// insert record to meta-data database
attrs := srvConfig.Config.DID.Attributes
sep := srvConfig.Config.DID.Separator
div := srvConfig.Config.DID.Divider
updateRecord := false
if c.Request.Method == "PUT" {
updateRecord = true
}
did, err := insertData(schema, record, attrs, sep, div, updateRecord)
if err != nil {
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)
}
// QueryCountHandler handles POST queries
func QueryCountHandler(c *gin.Context) {
rec, err := parseQueryRequest(c)
if err != nil {
rec := services.Response("MetaData", http.StatusInternalServerError, services.ParseError, err)
c.JSON(http.StatusInternalServerError, rec)
return
}
// get all attributes we need
query := rec.ServiceQuery.Query
spec, err := ql.ParseQuery(query)
if Verbose > 0 {
log.Printf("search query='%s' spec=%+v", query, spec)
}
if err != nil {
rec := services.Response("MetaData", http.StatusInternalServerError, services.ParseError, err)
c.JSON(http.StatusInternalServerError, rec)
return
}
nrecords := 0
if spec != nil {
nrecords = mongo.Count(srvConfig.Config.CHESSMetaData.DBName, srvConfig.Config.CHESSMetaData.DBColl, spec)
}
if Verbose > 0 {
log.Printf("spec %v nrecords %d", spec, nrecords)
}
c.JSON(http.StatusOK, nrecords)
}
// QueryHandler handles POST queries
func QueryHandler(c *gin.Context) {
rec, err := parseQueryRequest(c)
if err != nil {
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, err := ql.ParseQuery(query)
if Verbose > 0 {
log.Printf("search query='%s' spec=%+v", query, spec)
}
if err != nil {
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 = mongo.Count(srvConfig.Config.CHESSMetaData.DBName, srvConfig.Config.CHESSMetaData.DBColl, spec)
if len(sortKeys) > 0 {
records = mongo.GetSorted(
srvConfig.Config.CHESSMetaData.DBName,
srvConfig.Config.CHESSMetaData.DBColl,
spec, sortKeys, sortOrder, idx, limit)
} else {
records = mongo.Get(
srvConfig.Config.CHESSMetaData.DBName,
srvConfig.Config.CHESSMetaData.DBColl,
spec, idx, limit)
}
}
if Verbose > 0 {
log.Printf("spec %v nrecords %d return idx=%d limit=%d", spec, nrecords, idx, limit)
}
// r := services.Response("MetaData", http.StatusOK, services.OK, nil)
// r.ServiceQuery = services.ServiceQuery{Query: query, Spec: spec, Idx: idx, Limit: limit}
// r.Results = services.ServiceResults{NRecords: nrecords, Records: records}
// c.JSON(http.StatusOK, r)
c.JSON(http.StatusOK, records)
}
// DeleteHandler handles POST queries
func DeleteHandler(c *gin.Context) {
err := errors.New("Not implemented yet")
rec := services.Response("MetaData", http.StatusInternalServerError, services.ParseError, err)
c.JSON(http.StatusInternalServerError, rec)
}