json_utility.go
4.42 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
package webutility
import (
"encoding/json"
"errors"
"io"
"net/http"
"sync"
"gopkg.in/rana/ora.v4"
)
var mu = &sync.Mutex{}
var payloads []payloadBuff
type LangMap map[string]map[string]string
type Field struct {
Parameter string `json:"param"`
Type string `json:"type"`
Visible bool `json:"visible"`
Editable bool `json:"editable"`
}
type CorrelationField struct {
Result string `json:"result"`
Elements []string `json:"elements"`
Type string `json:"type"`
}
type Translation struct {
Language string `json:"language"`
FieldsLabels map[string]string `json:"fieldsLabels"`
}
type payloadBuff struct {
Type string `json:"tableType"`
Method string `json:"method"`
Params map[string]string `json:"params"`
Lang []Translation `json:"lang"`
Fields []Field `json:"fields"`
Correlations []CorrelationField `json:"correlationFields"`
IdField string `json:"idField"`
// Data can only hold slices of any type. It can't be used for itteration
Data interface{} `json:"data"`
}
type Payload struct {
Method string `json:"method"`
Params map[string]string `json:"params"`
Lang []Translation `json:"lang"`
Fields []Field `json:"fields"`
Correlations []CorrelationField `json:"correlationFields"`
IdField string `json:"idField"`
// Data contains JSON payload.
// It can't be used for itteration
Data interface{} `json:"data"`
}
// InitTables loads all payloads in the payloads variable.
// Returns an error if it fails.
func InitTables(db *ora.Ses, project string) error {
jsonbuf, err := fetchJSON(db, project)
if err != nil {
return err
}
mu.Lock()
defer mu.Unlock()
json.Unmarshal(jsonbuf, &payloads)
if len(payloads) == 0 {
return errors.New("tables config is corrupt")
}
return nil
}
// DecodeJSON decodes JSON data from r to v.
// Returns an error if it fails.
func DecodeJSON(r io.Reader, v interface{}) error {
return json.NewDecoder(r).Decode(v)
}
// NewPayload returs a payload sceleton for provided table.
func NewPayload(r *http.Request, table string) Payload {
var pload Payload
//pload.Method = r.Method + " " + r.URL.Path
pload.Method = r.Method + " " + r.RequestURI
if table != "" {
pload.Params = make(map[string]string, 0)
pload.Lang = translations(table)
pload.Fields = fields(table)
pload.IdField = id(table)
pload.Correlations = correlations(table)
}
return pload
}
// DeliverPayload encodes payload to w.
func DeliverPayload(w http.ResponseWriter, payload Payload) {
json.NewEncoder(w).Encode(payload)
payload.Data = nil
}
// translations returns a slice of translations for a payload/table of ptype type.
func translations(ptype string) []Translation {
var translations []Translation
for _, pload := range payloads {
if pload.Type == ptype {
for _, t := range pload.Lang {
translations = append(translations, Translation{
Language: t.Language,
FieldsLabels: t.FieldsLabels,
})
}
}
}
return translations
}
// fields returns a slice of fields for a payload/table of ptype type.
func fields(ptype string) []Field {
var fields []Field
for _, pload := range payloads {
if pload.Type == ptype {
for _, f := range pload.Fields {
fields = append(fields, f)
}
}
}
return fields
}
// id returns the name of ID field of a payload/table of ptype type.
func id(ptype string) string {
for _, pload := range payloads {
if pload.Type == ptype {
return pload.IdField
}
}
return ""
}
// correlations returns a slice of correlation fields for a payload/table of ptype type.
func correlations(ptype string) []CorrelationField {
var corr []CorrelationField
for _, pload := range payloads {
if pload.Type == ptype {
for _, c := range pload.Correlations {
corr = append(corr, c)
}
}
}
return corr
}
// fetchJSON returns a byte slice of JSON configuration file from TABLES_CONFIG table.
// Returns an error if it fails.
func fetchJSON(db *ora.Ses, project string) ([]byte, error) {
db.SetCfg(db.Cfg().SetClob(ora.S))
stmt, err := db.Prep(`SELECT JSON_NCLOB FROM TABLES_CONFIG WHERE PROJEKAT`+EqualQuotes(project), ora.S)
defer stmt.Close()
if err != nil {
return nil, err
}
rset, err := stmt.Qry()
if err != nil {
return nil, err
}
var data string
if rset.Next() {
data = rset.Row[0].(string)
}
//fmt.Println(data)
return []byte(data), nil
}