forked from CHESSComputing/MetaData
-
Notifications
You must be signed in to change notification settings - Fork 0
/
helpers.go
530 lines (513 loc) · 14.3 KB
/
helpers.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
package main
import (
"errors"
"fmt"
"html/template"
"log"
"net/http"
"strconv"
"strings"
"time"
srvConfig "github.com/CHESSComputing/golib/config"
mongo "github.com/CHESSComputing/golib/mongo"
server "github.com/CHESSComputing/golib/server"
utils "github.com/CHESSComputing/golib/utils"
"github.com/gin-gonic/gin"
)
// helper function to return user credentials form HTTP request
func userCredentials(r *http.Request) (string, error) {
if srvConfig.Config.CHESSMetaData.TestMode {
return "test", nil
}
// TODO: I need to decide how to do it
return "TestUser", nil
// return authz.UserCredentials(r)
}
// helper function to extract username from auth-session cookie
func username(r *http.Request) (string, error) {
if srvConfig.Config.CHESSMetaData.TestMode {
return "test", nil
}
cookie, err := r.Cookie("auth-session")
if err != nil {
return "", err
}
// byteArray := decrypt([]byte(cookie.Value), Config.StoreSecret)
// n := bytes.IndexByte(byteArray, 0)
// s := string(byteArray[:n])
s := cookie.Value
arr := strings.Split(s, "-")
if len(arr) != 2 {
msg := "Unable to decript auth-session"
log.Printf("ERROR: %s", msg)
return "", errors.New(msg)
}
user := arr[0]
return user, nil
}
// helper function to make pagination
func pagination(c *gin.Context, query string, nres, startIdx, limit int) string {
tmpl := server.MakeTmpl(StaticFs, "Search")
url := fmt.Sprintf("/search?query=%s", query)
if nres > 0 {
tmpl["StartIndex"] = fmt.Sprintf("%d", startIdx+1)
} else {
tmpl["StartIndex"] = fmt.Sprintf("%d", startIdx)
}
if nres > startIdx+limit {
tmpl["EndIndex"] = fmt.Sprintf("%d", startIdx+limit)
} else {
tmpl["EndIndex"] = fmt.Sprintf("%d", nres)
}
tmpl["Total"] = fmt.Sprintf("%d", nres)
tmpl["FirstUrl"] = makeURL(url, "first", startIdx, limit, nres)
tmpl["PrevUrl"] = makeURL(url, "prev", startIdx, limit, nres)
tmpl["NextUrl"] = makeURL(url, "next", startIdx, limit, nres)
tmpl["LastUrl"] = makeURL(url, "last", startIdx, limit, nres)
page := server.TmplPage(StaticFs, "pagination.tmpl", tmpl)
return fmt.Sprintf("%s<br>", page)
}
// helper function to make URL
func makeURL(url, urlType string, startIdx, limit, nres int) string {
var out string
var idx int
if urlType == "first" {
idx = 0
} else if urlType == "prev" {
if startIdx != 0 {
idx = startIdx - limit
} else {
idx = 0
}
} else if urlType == "next" {
idx = startIdx + limit
} else if urlType == "last" {
j := 0
for i := 0; i < nres; i = i + limit {
if i > nres {
break
}
j = i
}
idx = j
}
out = fmt.Sprintf("%s&idx=%d&&limit=%d", url, idx, limit)
return out
}
// helper function to generate input form
func genForm(c *gin.Context, fname string, record *map[string]any) (string, error) {
var out []string
val := fmt.Sprintf("<h3>Web form submission</h3><br/>")
out = append(out, val)
beamline := utils.FileName(fname)
val = fmt.Sprintf("<input class=\"input\" name=\"beamline\" type=\"hidden\" value=\"\"/>%s", beamline)
schema, err := _smgr.Load(fname)
if err != nil {
log.Println("unable to load", fname, "error", err)
return strings.Join(out, ""), err
}
optKeys, err := schema.OptionalKeys()
if err != nil {
log.Println("unable to get optional keys, error", err)
return strings.Join(out, ""), err
}
allKeys, err := schema.Keys()
if err != nil {
log.Println("unable to get keys, error", err)
return strings.Join(out, ""), err
}
sectionKeys, err := schema.SectionKeys()
if err != nil {
log.Println("unable to get section keys, error", err)
return strings.Join(out, ""), err
}
// loop over all defined sections
var rec string
sections, err := schema.Sections()
if err != nil {
log.Println("unable to get sections, error", err)
return strings.Join(out, ""), err
}
for _, s := range sections {
if skeys, ok := sectionKeys[s]; ok {
showSection := false
if len(skeys) != 0 {
showSection = true
}
if showSection {
out = append(out, fmt.Sprintf("<fieldset id=\"%s\">", s))
out = append(out, fmt.Sprintf("<legend>%s</legend>", s))
}
for _, k := range skeys {
if utils.InList[string](k, optKeys) {
rec = formEntry(c, schema.Map, k, s, "", record)
} else {
rec = formEntry(c, schema.Map, k, s, "required", record)
}
out = append(out, rec)
}
if showSection {
out = append(out, "</fieldset>")
}
}
}
// loop over the rest of section keys which did not show up in sections
for s, skeys := range sectionKeys {
if utils.InList[string](s, sections) {
continue
}
showSection := false
if len(skeys) != 0 {
showSection = true
}
if showSection {
out = append(out, fmt.Sprintf("<fieldset id=\"%s\">", s))
out = append(out, fmt.Sprintf("<legend>%s</legend>", s))
}
for _, k := range skeys {
if utils.InList[string](k, optKeys) {
rec = formEntry(c, schema.Map, k, s, "required", record)
} else {
rec = formEntry(c, schema.Map, k, s, "", record)
}
out = append(out, rec)
}
if showSection {
out = append(out, "</fieldset>")
}
}
// loop over all keys which do not have sections
var nOut []string
for _, k := range allKeys {
if r, ok := schema.Map[k]; ok {
if r.Section == "" {
if utils.InList[string](k, optKeys) {
rec = formEntry(c, schema.Map, k, "", "", record)
} else {
rec = formEntry(c, schema.Map, k, "", "required", record)
}
nOut = append(nOut, rec)
}
}
}
if len(nOut) > 0 {
out = append(out, fmt.Sprintf("<fieldset id=\"attributes\">"))
out = append(out, "<legend>Attriburtes</legend>")
for _, rec := range nOut {
out = append(out, rec)
}
out = append(out, "</fieldset>")
}
form := strings.Join(out, "\n")
tmpl := server.MakeTmpl(StaticFs, "Form")
tmpl["Beamline"] = beamline
tmpl["Form"] = template.HTML(form)
return server.TmplPage(StaticFs, "form_beamline.tmpl", tmpl), nil
}
// helper function to create form entry
func formEntry(c *gin.Context, smap map[string]SchemaRecord, k, s, required string, record *map[string]any) string {
// check if provided record has value
var defaultValue string
if record != nil {
rmap := *record
if v, ok := rmap[k]; ok {
defaultValue = fmt.Sprintf("%v", v)
}
defaultValue = strings.Replace(defaultValue, "[", "", -1)
defaultValue = strings.Replace(defaultValue, "]", "", -1)
}
tmpl := server.MakeTmpl(StaticFs, "FormEntry")
tmpl["Key"] = k
tmpl["Value"] = defaultValue
tmpl["Placeholder"] = ""
tmpl["Description"] = ""
tmpl["Required"] = required
if required != "" {
tmpl["Class"] = "is-req"
}
tmpl["Type"] = "text"
tmpl["Multiple"] = ""
tmpl["Selected"] = []string{}
if r, ok := smap[k]; ok {
if r.Section == s {
if r.Type == "list_str" || r.Type == "list" {
tmpl["List"] = true
switch values := r.Value.(type) {
case []any:
var vals, selected []string
if defaultValue != "" {
selected = append(selected, defaultValue)
}
tmpl["Selected"] = selected
for _, v := range values {
if v != defaultValue && v != "" {
strVal := fmt.Sprintf("%v", v)
if !utils.InList[string](strVal, selected) {
vals = append(vals, strVal)
}
}
}
vals = utils.List2Set[string](vals)
tmpl["Value"] = vals
default:
tmpl["Value"] = []string{}
}
} else if r.Type == "bool" || r.Type == "boolean" {
tmpl["List"] = true
if r.Value == true {
tmpl["Value"] = []string{"", "true", "false"}
} else {
tmpl["Value"] = []string{"", "false", "true"}
}
if defaultValue != "" {
if defaultValue == "true" {
tmpl["Value"] = []string{"true", "false"}
} else {
tmpl["Value"] = []string{"false", "true"}
}
}
} else {
if r.Value != nil {
switch values := r.Value.(type) {
case []any:
var vals []string
if defaultValue != "" {
vals = append(vals, defaultValue)
}
for _, v := range values {
vstr := fmt.Sprintf("%v", v)
for _, vvv := range strings.Split(vstr, ",") {
vals = append(vals, vvv)
}
}
var out []string
vstr := strings.Join(vals, ",")
for _, vvv := range strings.Split(vstr, ",") {
out = append(out, vvv)
}
vals = utils.List2Set[string](out)
tmpl["Value"] = strings.Join(vals, ",")
default:
tmpl["Value"] = fmt.Sprintf("%v", r.Value)
if defaultValue != "" {
tmpl["Value"] = fmt.Sprintf("%v", defaultValue)
}
}
}
}
if r.Multiple {
tmpl["Multiple"] = "multiple"
}
desc := fmt.Sprintf("%s", r.Description)
if desc == "" {
desc = "Not Available"
}
tmpl["Description"] = desc
tmpl["Placeholder"] = r.Placeholder
}
}
return server.TmplPage(StaticFs, "form_entry.tmpl", tmpl)
}
// helper function to obtain schema file name from schema name
func schemaFileName(sname string) string {
var fname string
for _, f := range srvConfig.Config.CHESSMetaData.SchemaFiles {
if strings.Contains(f, sname) {
fname = f
break
}
}
return utils.FullPath(fname)
}
// helper function to extract schema name from schema file name
func schemaName(fname string) string {
arr := strings.Split(fname, "/")
return strings.Split(arr[len(arr)-1], ".")[0]
}
// helper function to process input form
func processForm(r *http.Request) (string, map[string]any, error) {
rec := make(map[string]any)
rec["Date"] = time.Now().Unix()
// read schemaName from form itself
var sname string
for k, items := range r.PostForm {
if k == "SchemaName" {
sname = items[0]
break
}
}
fname := schemaFileName(sname)
schema, err := _smgr.Load(fname)
if err != nil {
log.Println("ERROR", err)
return fname, rec, err
}
desc := ""
// r.PostForm provides url.Values which is map[string][]string type
// we convert it to map[string]any
for k, items := range r.PostForm {
if Verbose > 0 {
log.Println("### PostForm", k, items)
}
if k == "SchemaName" {
continue
}
if k == "Description" {
desc = strings.Join(items, " ")
continue
}
val, err := parseValue(schema, k, items)
if err != nil {
// check if given key is mandatory or optional
srec, ok := schema.Map[k]
if ok {
if srec.Optional {
log.Println("WARNING: unable to parse optional key", k)
} else {
log.Println("ERROR: unable to parse mandatory key", k, "error", err)
return fname, rec, err
}
} else {
if !utils.InList(k, _skipKeys) {
log.Println("ERROR: no key", k, "found in schema map, error", err)
return fname, rec, err
}
}
}
rec[k] = val
}
user, _ := username(r)
rec["User"] = user
rec["Description"] = desc
log.Printf("process form, record %v\n", rec)
return fname, rec, nil
}
func htmlInputs(rec map[string]any) []template.HTML {
var inputs []template.HTML
// use attrs to adjust html form
// it was user for adjustable attributes
var attrs []string
for _, k := range mongo.MapKeys(rec) {
var v string
switch vvv := rec[k].(type) {
case []string:
v = strings.Join(vvv, ",")
case []interface{}:
var out []string
for _, val := range vvv {
out = append(out, fmt.Sprintf("%v", val))
}
v = strings.Join(out, ",")
case int64, int:
v = fmt.Sprintf("%d", vvv)
case float64:
d := int64(vvv)
if float64(d) == vvv {
v = fmt.Sprintf("%d", d)
} else {
v = fmt.Sprintf("%v", vvv)
}
default:
v = fmt.Sprintf("%v", vvv)
}
in := fmt.Sprintf("<label>%s</label>", k)
if strings.Contains(v, "ERROR") {
in = fmt.Sprintf("<label class=\"is-req\">%s</label>", k)
v = strings.Trim(strings.Replace(v, "ERROR", "", -1), " ")
in = fmt.Sprintf("%s<input required class=\"alert alert-error column-9\" type=\"text\" name=\"%s\" value=\"%s\"", in, k, v)
} else {
in = fmt.Sprintf("%s<input class=\"input\" type=\"text\" name=\"%s\" value=\"%s\"", in, k, v)
if utils.InList(k, attrs) {
in = fmt.Sprintf("%s class=\"column-9 alert-success\"", in)
} else {
in = fmt.Sprintf("%s class=\"column-9\" readonly", in)
}
}
in = fmt.Sprintf("%s>", in)
inputs = append(inputs, template.HTML(in))
}
return inputs
}
// helper function to parser form values
func parseValue(schema *Schema, key string, items []string) (any, error) {
r, ok := schema.Map[key]
if !ok {
if srvConfig.Config.CHESSMetaData.TestMode && utils.InList[string](key, _skipKeys) {
return "", nil
}
msg := fmt.Sprintf("No key %s found in schema map", key)
log.Printf("ERROR: %s", msg)
return false, errors.New(msg)
} else if r.Type == "list_str" {
return items, nil
} else if strings.HasPrefix(r.Type, "list_int") {
// parse given values to int data type
var vals []int
for _, values := range items {
for _, val := range strings.Split(values, " ") {
v, err := strconv.Atoi(val)
if err == nil {
vals = append(vals, v)
} else {
msg := fmt.Sprintf("ERROR: unable to parse input '%v' into int data-type, %v", items, err)
return items, errors.New(msg)
}
}
}
return vals, nil
} else if strings.HasPrefix(r.Type, "list_float") {
// parse given values to float data type
var vals []float64
for _, values := range items {
for _, val := range strings.Split(values, " ") {
v, err := strconv.ParseFloat(val, 32)
if err == nil {
vals = append(vals, v)
} else {
msg := fmt.Sprintf("ERROR: unable to parse input '%v' into float data-type, %v", items, err)
return items, errors.New(msg)
}
}
}
return vals, nil
} else if r.Type == "string" {
return items[0], nil
} else if r.Type == "bool" {
v, err := strconv.ParseBool(items[0])
if err == nil {
return v, nil
}
msg := fmt.Sprintf("Unable to parse boolean value for key=%s, please come back to web form and choose either true or false", key)
log.Printf("ERROR: %s", msg)
return false, errors.New(msg)
} else if strings.HasPrefix(r.Type, "int") {
v, err := strconv.ParseInt(items[0], 10, 64)
if err == nil {
if r.Type == "int64" {
return int64(v), nil
} else if r.Type == "int32" {
return int32(v), nil
} else if r.Type == "int16" {
return int16(v), nil
} else if r.Type == "int8" {
return int8(v), nil
} else if r.Type == "int" {
return int(v), nil
}
return v, nil
}
return 0, err
} else if strings.HasPrefix(r.Type, "float") {
v, err := strconv.ParseFloat(items[0], 64)
if err == nil {
if r.Type == "float32" {
return float32(v), nil
}
return v, nil
}
return 0.0, err
}
msg := fmt.Sprintf("Unable to parse form value for key %s", key)
log.Printf("ERROR: %s", msg)
return 0, errors.New(msg)
}