Blame view
json_utility.go
5.13 KB
ea858b8a7 refactoring |
1 |
package webutility |
64041a2ea first commit |
2 3 |
import ( |
8dbe745c3 merged tables uti... |
4 5 |
"encoding/json" "errors" |
8dbe745c3 merged tables uti... |
6 |
"io" |
d2ddf82ef started on new rbac |
7 |
"net/http" |
17a4d0447 mutex lock for pa... |
8 |
"sync" |
1d0f61553 can't fetch clob |
9 |
|
1d0f61553 can't fetch clob |
10 |
"gopkg.in/rana/ora.v4" |
64041a2ea first commit |
11 |
) |
17a4d0447 mutex lock for pa... |
12 |
var mu = &sync.Mutex{} |
6ec91280b working on docume... |
13 |
var payloads []payloadBuff |
8dbe745c3 merged tables uti... |
14 |
|
64041a2ea first commit |
15 16 17 |
type LangMap map[string]map[string]string type Field struct { |
d2ddf82ef started on new rbac |
18 19 20 21 |
Parameter string `json:"param"` Type string `json:"type"` Visible bool `json:"visible"` Editable bool `json:"editable"` |
64041a2ea first commit |
22 |
} |
8dbe745c3 merged tables uti... |
23 24 25 26 27 28 29 |
type CorrelationField struct { Result string `json:"result"` Elements []string `json:"elements"` Type string `json:"type"` } type Translation struct { |
ecec68b18 updated todo list |
30 |
Language string `json:"language"` |
8dbe745c3 merged tables uti... |
31 |
FieldsLabels map[string]string `json:"fieldsLabels"` |
64041a2ea first commit |
32 |
} |
4a51e54d7 simplified |
33 |
type payloadBuff struct { |
8dbe745c3 merged tables uti... |
34 |
Type string `json:"tableType"` |
d2ddf82ef started on new rbac |
35 36 37 38 |
Method string `json:"method"` Params map[string]string `json:"params"` Lang []Translation `json:"lang"` Fields []Field `json:"fields"` |
c430f3af5 fixed camel case ... |
39 |
Correlations []CorrelationField `json:"correlationFields"` |
64041a2ea first commit |
40 |
IdField string `json:"idField"` |
6ec91280b working on docume... |
41 |
|
64041a2ea first commit |
42 |
// Data can only hold slices of any type. It can't be used for itteration |
d2ddf82ef started on new rbac |
43 |
Data interface{} `json:"data"` |
64041a2ea first commit |
44 |
} |
4a51e54d7 simplified |
45 |
type Payload struct { |
d2ddf82ef started on new rbac |
46 47 48 49 |
Method string `json:"method"` Params map[string]string `json:"params"` Lang []Translation `json:"lang"` Fields []Field `json:"fields"` |
4a51e54d7 simplified |
50 51 |
Correlations []CorrelationField `json:"correlationFields"` IdField string `json:"idField"` |
e1fbb41f9 added comments |
52 |
|
d66628295 cleaned up |
53 54 |
// Data contains JSON payload. // It can't be used for itteration |
d2ddf82ef started on new rbac |
55 |
Data interface{} `json:"data"` |
4a51e54d7 simplified |
56 |
} |
d66628295 cleaned up |
57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 |
// 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 } |
8bec68a1e added reload tabl... |
73 74 75 76 77 78 |
// ReloadTables reloads all payloads in the payloads variable. // Returns an error if it fails. func ReloadTables(db *ora.Ses, project string) error { payloads = make([]payloadBuff, 0) return InitTables(db, project) } |
d66628295 cleaned up |
79 80 81 82 83 |
// 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) } |
6ec91280b working on docume... |
84 |
// NewPayload returs a payload sceleton for provided table. |
8dbe745c3 merged tables uti... |
85 86 |
func NewPayload(r *http.Request, table string) Payload { var pload Payload |
64041a2ea first commit |
87 |
|
2d79a4120 Responses contain... |
88 89 |
//pload.Method = r.Method + " " + r.URL.Path pload.Method = r.Method + " " + r.RequestURI |
90f4ed079 sped up loadTable() |
90 91 |
if table != "" { pload.Params = make(map[string]string, 0) |
6ec91280b working on docume... |
92 93 94 95 |
pload.Lang = translations(table) pload.Fields = fields(table) pload.IdField = id(table) pload.Correlations = correlations(table) |
90f4ed079 sped up loadTable() |
96 |
} |
8dbe745c3 merged tables uti... |
97 98 |
return pload } |
64041a2ea first commit |
99 |
|
0c52d7717 make payload with... |
100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 |
// MakePayload returs a payload for provided table with populated Data field. func MakePayload(r *http.Request, table string, data interface{}) 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) } pload.Data = data return pload } |
6ec91280b working on docume... |
116 |
// DeliverPayload encodes payload to w. |
8dbe745c3 merged tables uti... |
117 118 119 |
func DeliverPayload(w http.ResponseWriter, payload Payload) { json.NewEncoder(w).Encode(payload) payload.Data = nil |
64041a2ea first commit |
120 |
} |
6ec91280b working on docume... |
121 122 123 |
// translations returns a slice of translations for a payload/table of ptype type. func translations(ptype string) []Translation { var translations []Translation |
8dbe745c3 merged tables uti... |
124 |
|
6ec91280b working on docume... |
125 126 |
for _, pload := range payloads { if pload.Type == ptype { |
8dbe745c3 merged tables uti... |
127 |
for _, t := range pload.Lang { |
8dbe745c3 merged tables uti... |
128 |
translations = append(translations, Translation{ |
d2ddf82ef started on new rbac |
129 |
Language: t.Language, |
8dbe745c3 merged tables uti... |
130 131 132 133 |
FieldsLabels: t.FieldsLabels, }) } } |
64041a2ea first commit |
134 |
} |
8dbe745c3 merged tables uti... |
135 136 137 |
return translations } |
6ec91280b working on docume... |
138 139 140 |
// fields returns a slice of fields for a payload/table of ptype type. func fields(ptype string) []Field { var fields []Field |
8dbe745c3 merged tables uti... |
141 |
|
6ec91280b working on docume... |
142 143 |
for _, pload := range payloads { if pload.Type == ptype { |
8dbe745c3 merged tables uti... |
144 145 146 147 148 149 150 151 |
for _, f := range pload.Fields { fields = append(fields, f) } } } return fields } |
6ec91280b working on docume... |
152 153 154 155 |
// 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 { |
8dbe745c3 merged tables uti... |
156 157 158 159 160 |
return pload.IdField } } return "" } |
6ec91280b working on docume... |
161 162 163 |
// correlations returns a slice of correlation fields for a payload/table of ptype type. func correlations(ptype string) []CorrelationField { var corr []CorrelationField |
8dbe745c3 merged tables uti... |
164 |
|
6ec91280b working on docume... |
165 166 167 168 |
for _, pload := range payloads { if pload.Type == ptype { for _, c := range pload.Correlations { corr = append(corr, c) |
8dbe745c3 merged tables uti... |
169 170 171 |
} } } |
6ec91280b working on docume... |
172 |
return corr |
8dbe745c3 merged tables uti... |
173 |
} |
6ec91280b working on docume... |
174 175 |
// fetchJSON returns a byte slice of JSON configuration file from TABLES_CONFIG table. // Returns an error if it fails. |
5316eaa97 ora v4 bug with u... |
176 |
func fetchJSON(db *ora.Ses, project string) ([]byte, error) { |
b0a6d6322 still can't read utf |
177 |
db.SetCfg(db.Cfg().SetClob(ora.S)) |
d2ddf82ef started on new rbac |
178 |
stmt, err := db.Prep(`SELECT JSON_NCLOB FROM TABLES_CONFIG WHERE PROJEKAT`+EqualQuotes(project), ora.S) |
8dbe745c3 merged tables uti... |
179 |
defer stmt.Close() |
8dbe745c3 merged tables uti... |
180 |
if err != nil { |
5316eaa97 ora v4 bug with u... |
181 |
return nil, err |
8dbe745c3 merged tables uti... |
182 183 184 185 |
} rset, err := stmt.Qry() if err != nil { |
5316eaa97 ora v4 bug with u... |
186 |
return nil, err |
8dbe745c3 merged tables uti... |
187 |
} |
1d0f61553 can't fetch clob |
188 |
var data string |
8dbe745c3 merged tables uti... |
189 |
if rset.Next() { |
1d0f61553 can't fetch clob |
190 |
data = rset.Row[0].(string) |
64041a2ea first commit |
191 |
} |
b0a6d6322 still can't read utf |
192 |
//fmt.Println(data) |
5316eaa97 ora v4 bug with u... |
193 |
return []byte(data), nil |
64041a2ea first commit |
194 |
} |