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