Blame view

json_utility.go 3.86 KB
ea858b8a7   Marko Tikvić   refactoring
1
  package webutility
64041a2ea   Marko Tikvić   first commit
2
3
  
  import (
8dbe745c3   Marko Tikvić   merged tables uti...
4
5
  	"encoding/json"
  	"errors"
66478e04f   Marko Tikvić   payload now retur...
6
  	"fmt"
8dbe745c3   Marko Tikvić   merged tables uti...
7
  	"io"
d2ddf82ef   Marko Tikvić   started on new rbac
8
  	"net/http"
17a4d0447   Marko Tikvić   mutex lock for pa...
9
  	"sync"
1d0f61553   Marko Tikvić   can't fetch clob
10

1d0f61553   Marko Tikvić   can't fetch clob
11
  	"gopkg.in/rana/ora.v4"
64041a2ea   Marko Tikvić   first commit
12
  )
17a4d0447   Marko Tikvić   mutex lock for pa...
13
  var mu = &sync.Mutex{}
66478e04f   Marko Tikvić   payload now retur...
14
  var payloads []Payload
8dbe745c3   Marko Tikvić   merged tables uti...
15

64041a2ea   Marko Tikvić   first commit
16
17
18
  type LangMap map[string]map[string]string
  
  type Field struct {
d2ddf82ef   Marko Tikvić   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   Marko Tikvić   first commit
23
  }
8dbe745c3   Marko Tikvić   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   Marko Tikvić   updated todo list
31
  	Language     string            `json:"language"`
8dbe745c3   Marko Tikvić   merged tables uti...
32
  	FieldsLabels map[string]string `json:"fieldsLabels"`
64041a2ea   Marko Tikvić   first commit
33
  }
4a51e54d7   Marko Tikvić   simplified
34
  type Payload struct {
66478e04f   Marko Tikvić   payload now retur...
35
  	Type         string             `json:"type"`
d2ddf82ef   Marko Tikvić   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   Marko Tikvić   simplified
40
41
  	Correlations []CorrelationField `json:"correlationFields"`
  	IdField      string             `json:"idField"`
e1fbb41f9   Marko Tikvić   added comments
42

66478e04f   Marko Tikvić   payload now retur...
43
  	// Data holds JSON payload. It can't be used for itteration.
d2ddf82ef   Marko Tikvić   started on new rbac
44
  	Data interface{} `json:"data"`
4a51e54d7   Marko Tikvić   simplified
45
  }
62a69beda   Marko Tikvić   Init/Reload Table...
46
  // InitPayloadsMetaData loads all payloads in the payloads variable.
d66628295   Marko Tikvić   cleaned up
47
  // Returns an error if it fails.
62a69beda   Marko Tikvić   Init/Reload Table...
48
49
  func InitPayloadsMetaData(db *ora.Ses, project string) error {
  	payloads = make([]Payload, 0)
d66628295   Marko Tikvić   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   Marko Tikvić   working on docume...
69
  // NewPayload returs a payload sceleton for provided table.
8dbe745c3   Marko Tikvić   merged tables uti...
70
71
  func NewPayload(r *http.Request, table string) Payload {
  	var pload Payload
64041a2ea   Marko Tikvić   first commit
72

2d79a4120   Marko Tikvić   Responses contain...
73
  	pload.Method = r.Method + " " + r.RequestURI
66478e04f   Marko Tikvić   payload now retur...
74
  	pload.Type = table
90f4ed079   Marko Tikvić   sped up loadTable()
75
76
  	if table != "" {
  		pload.Params = make(map[string]string, 0)
6ec91280b   Marko Tikvić   working on docume...
77
78
79
80
  		pload.Lang = translations(table)
  		pload.Fields = fields(table)
  		pload.IdField = id(table)
  		pload.Correlations = correlations(table)
90f4ed079   Marko Tikvić   sped up loadTable()
81
  	}
8dbe745c3   Marko Tikvić   merged tables uti...
82
83
  	return pload
  }
64041a2ea   Marko Tikvić   first commit
84

6ec91280b   Marko Tikvić   working on docume...
85
86
87
  // translations returns a slice of translations for a payload/table of ptype type.
  func translations(ptype string) []Translation {
  	var translations []Translation
8dbe745c3   Marko Tikvić   merged tables uti...
88

6ec91280b   Marko Tikvić   working on docume...
89
90
  	for _, pload := range payloads {
  		if pload.Type == ptype {
8dbe745c3   Marko Tikvić   merged tables uti...
91
  			for _, t := range pload.Lang {
8dbe745c3   Marko Tikvić   merged tables uti...
92
  				translations = append(translations, Translation{
d2ddf82ef   Marko Tikvić   started on new rbac
93
  					Language:     t.Language,
8dbe745c3   Marko Tikvić   merged tables uti...
94
95
96
97
  					FieldsLabels: t.FieldsLabels,
  				})
  			}
  		}
64041a2ea   Marko Tikvić   first commit
98
  	}
8dbe745c3   Marko Tikvić   merged tables uti...
99
100
101
  
  	return translations
  }
6ec91280b   Marko Tikvić   working on docume...
102
103
104
  // fields returns a slice of fields for a payload/table of ptype type.
  func fields(ptype string) []Field {
  	var fields []Field
8dbe745c3   Marko Tikvić   merged tables uti...
105

6ec91280b   Marko Tikvić   working on docume...
106
107
  	for _, pload := range payloads {
  		if pload.Type == ptype {
8dbe745c3   Marko Tikvić   merged tables uti...
108
109
110
111
112
113
114
115
  			for _, f := range pload.Fields {
  				fields = append(fields, f)
  			}
  		}
  	}
  
  	return fields
  }
6ec91280b   Marko Tikvić   working on docume...
116
117
118
119
  // 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   Marko Tikvić   merged tables uti...
120
121
122
123
124
  			return pload.IdField
  		}
  	}
  	return ""
  }
6ec91280b   Marko Tikvić   working on docume...
125
126
127
  // correlations returns a slice of correlation fields for a payload/table of ptype type.
  func correlations(ptype string) []CorrelationField {
  	var corr []CorrelationField
8dbe745c3   Marko Tikvić   merged tables uti...
128

6ec91280b   Marko Tikvić   working on docume...
129
130
131
132
  	for _, pload := range payloads {
  		if pload.Type == ptype {
  			for _, c := range pload.Correlations {
  				corr = append(corr, c)
8dbe745c3   Marko Tikvić   merged tables uti...
133
134
135
  			}
  		}
  	}
6ec91280b   Marko Tikvić   working on docume...
136
  	return corr
8dbe745c3   Marko Tikvić   merged tables uti...
137
  }
6ec91280b   Marko Tikvić   working on docume...
138
139
  // fetchJSON returns a byte slice of JSON configuration file from TABLES_CONFIG table.
  // Returns an error if it fails.
5316eaa97   Marko Tikvić   ora v4 bug with u...
140
  func fetchJSON(db *ora.Ses, project string) ([]byte, error) {
b0a6d6322   Marko Tikvić   still can't read utf
141
  	db.SetCfg(db.Cfg().SetClob(ora.S))
66478e04f   Marko Tikvić   payload now retur...
142
  	stmt, err := db.Prep(`SELECT JSON_NCLOB FROM TABLES_CONFIG WHERE PROJEKAT = `+fmt.Sprintf("'%s'", project), ora.S)
8dbe745c3   Marko Tikvić   merged tables uti...
143
  	defer stmt.Close()
8dbe745c3   Marko Tikvić   merged tables uti...
144
  	if err != nil {
5316eaa97   Marko Tikvić   ora v4 bug with u...
145
  		return nil, err
8dbe745c3   Marko Tikvić   merged tables uti...
146
147
148
149
  	}
  
  	rset, err := stmt.Qry()
  	if err != nil {
5316eaa97   Marko Tikvić   ora v4 bug with u...
150
  		return nil, err
8dbe745c3   Marko Tikvić   merged tables uti...
151
  	}
1d0f61553   Marko Tikvić   can't fetch clob
152
  	var data string
8dbe745c3   Marko Tikvić   merged tables uti...
153
  	if rset.Next() {
1d0f61553   Marko Tikvić   can't fetch clob
154
  		data = rset.Row[0].(string)
64041a2ea   Marko Tikvić   first commit
155
  	}
b0a6d6322   Marko Tikvić   still can't read utf
156
  	//fmt.Println(data)
5316eaa97   Marko Tikvić   ora v4 bug with u...
157
  	return []byte(data), nil
64041a2ea   Marko Tikvić   first commit
158
  }