-
Notifications
You must be signed in to change notification settings - Fork 128
/
supplies.go
229 lines (208 loc) · 6.72 KB
/
supplies.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
package models
import (
"encoding/json"
"errors"
"fmt"
"strconv"
"time"
"github.com/diadata-org/diadata/pkg/dia"
"github.com/diadata-org/diadata/pkg/dia/helpers"
"github.com/go-redis/redis"
clientInfluxdb "github.com/influxdata/influxdb1-client/v2"
)
func getKeySupply(asset dia.Asset) string {
return "dia_supply_" + asset.Blockchain + "_" + asset.Address
}
func getKeyDiaTotalSupply() string {
return "dia_diaTotalSupply"
}
func getKeyDiaCirculatingSupply() string {
return "dia_diaCirculatingSupply"
}
func (datastore *DB) SaveSupplyInflux(supply *dia.Supply) error {
fields := map[string]interface{}{
"supply": supply.Supply,
"circulatingsupply": supply.CirculatingSupply,
"source": supply.Source,
}
tags := map[string]string{
"symbol": supply.Asset.Symbol,
"name": supply.Asset.Name,
"address": supply.Asset.Address,
"blockchain": supply.Asset.Blockchain,
}
pt, err := clientInfluxdb.NewPoint(influxDbSupplyTable, tags, fields, supply.Time)
if err != nil {
log.Errorln("NewSupplyInflux:", err)
} else {
datastore.addPoint(pt)
}
err = datastore.WriteBatchInflux()
if err != nil {
log.Errorln("SaveSupplyInflux", err)
}
return err
}
// GetSupplyInflux returns supply and circulating supply of @asset. Needs asset.Address and asset.Blockchain.
// If no time range is given it returns the latest supply.
func (datastore *DB) GetSupplyInflux(asset dia.Asset, starttime time.Time, endtime time.Time) ([]dia.Supply, error) {
retval := []dia.Supply{}
var q string
if starttime.IsZero() || endtime.IsZero() {
queryString := "SELECT supply,circulatingsupply,source,\"name\",\"symbol\" FROM %s WHERE \"address\" = '%s' AND \"blockchain\"='%s' AND time<now() ORDER BY DESC LIMIT 1"
q = fmt.Sprintf(queryString, influxDbSupplyTable, asset.Address, asset.Blockchain)
} else {
queryString := "SELECT supply,circulatingsupply,source,\"name\",\"symbol\" FROM %s WHERE time > %d AND time < %d AND \"address\" = '%s' AND \"blockchain\"='%s' ORDER BY DESC"
q = fmt.Sprintf(queryString, influxDbSupplyTable, starttime.UnixNano(), endtime.UnixNano(), asset.Address, asset.Blockchain)
}
res, err := queryInfluxDB(datastore.influxClient, q)
if err != nil {
return retval, err
}
if len(res) > 0 && len(res[0].Series) > 0 {
for i := 0; i < len(res[0].Series[0].Values); i++ {
currentSupply := dia.Supply{Asset: asset}
if res[0].Series[0].Values[i][0] != nil {
currentSupply.Time, err = time.Parse(time.RFC3339, res[0].Series[0].Values[i][0].(string))
if err != nil {
return retval, err
}
}
currentSupply.Supply, err = res[0].Series[0].Values[i][1].(json.Number).Float64()
if err != nil {
return retval, err
}
currentSupply.CirculatingSupply, err = res[0].Series[0].Values[i][2].(json.Number).Float64()
if err != nil {
return retval, err
}
if res[0].Series[0].Values[i][3] != nil {
currentSupply.Source = res[0].Series[0].Values[i][3].(string)
if err != nil {
return retval, err
}
}
if res[0].Series[0].Values[i][4] != nil {
currentSupply.Asset.Name = res[0].Series[0].Values[i][4].(string)
if err != nil {
log.Error("error getting symbol name from influx: ", err)
}
}
if res[0].Series[0].Values[i][5] != nil {
currentSupply.Asset.Symbol = res[0].Series[0].Values[i][5].(string)
if err != nil {
log.Error("error getting symbol name from influx: ", err)
}
}
retval = append(retval, currentSupply)
}
} else {
return retval, errors.New("parsing supply value from database")
}
return retval, nil
}
func (datastore *DB) GetLatestSupply(symbol string, relDB *RelDB) (*dia.Supply, error) {
val, err := datastore.GetSupply(symbol, time.Time{}, time.Time{}, relDB)
if err != nil {
log.Error(err)
return &dia.Supply{}, err
}
return &val[0], err
}
func (datastore *DB) GetSupply(symbol string, starttime, endtime time.Time, relDB *RelDB) ([]dia.Supply, error) {
// First get asset with @symbol with largest market cap.
topAsset, err := relDB.GetTopAssetByVolume(symbol)
if err != nil || len(topAsset) < 1 {
log.Error(err)
return []dia.Supply{}, err
}
switch symbol {
case "MIOTA":
retArray := []dia.Supply{}
s := dia.Supply{
Asset: dia.Asset{Name: helpers.NameForSymbol("MIOTA"), Symbol: "MIOTA"},
CirculatingSupply: 2779530283.0,
Time: time.Now(),
Source: dia.Diadata,
}
retArray = append(retArray, s)
return retArray, nil
default:
value, err := datastore.GetSupplyInflux(topAsset[0], starttime, endtime)
if err != nil {
log.Errorf("Error: %v on GetSupply %v\n", err, symbol)
return []dia.Supply{}, err
}
return value, err
}
}
func (datastore *DB) GetSupplyCache(asset dia.Asset) (supply dia.Supply, err error) {
err = datastore.redisClient.Get(getKeySupply(asset)).Scan(&supply)
if err != nil {
return
}
return supply, nil
}
func (datastore *DB) SetSupply(supply *dia.Supply) error {
key := getKeySupply(supply.Asset)
log.Debug("setting ", key, supply)
err := datastore.redisClient.Set(key, supply, 0).Err()
if err != nil {
log.Errorf("Error: %v on SetSupply (redis) %v\n", err, supply.Asset.Symbol)
}
err = datastore.SaveSupplyInflux(supply)
if err != nil {
log.Errorf("Error: %v on SetSupply (influx) %v\n", err, supply.Asset.Symbol)
}
return err
}
func (db *DB) SetDiaTotalSupply(totalSupply float64) error {
key := getKeyDiaTotalSupply()
log.Debug("setting ", key, totalSupply)
err := db.redisClient.Set(key, totalSupply, 0).Err()
if err != nil {
log.Errorf("Error: %v on SetDiaTotalSupply (redis) %v\n", err, totalSupply)
}
return err
}
func (db *DB) GetDiaTotalSupply() (float64, error) {
key := getKeyDiaTotalSupply()
value, err := db.redisClient.Get(key).Result()
if err != nil {
if err != redis.Nil {
log.Errorf("Error: %v on GetDiaTotalSupply\n", err)
}
return 0.0, err
}
retval, err := strconv.ParseFloat(value, 64)
if err != nil {
log.Error("Cannot convert to float in GetDiaTotalSupply")
return 0.0, err
}
return retval, nil
}
func (db *DB) SetDiaCirculatingSupply(circulatingSupply float64) error {
key := getKeyDiaCirculatingSupply()
log.Debug("setting ", key, circulatingSupply)
err := db.redisClient.Set(key, circulatingSupply, 0).Err()
if err != nil {
log.Errorf("Error: %v on SetDiaCirculatingSupply (redis) %v\n", err, circulatingSupply)
}
return err
}
func (db *DB) GetDiaCirculatingSupply() (float64, error) {
key := getKeyDiaCirculatingSupply()
value, err := db.redisClient.Get(key).Result()
if err != nil {
if err != redis.Nil {
log.Errorf("Error: %v on GetDiaCirculatingSupply\n", err)
}
return 0.0, err
}
retval, err := strconv.ParseFloat(value, 64)
if err != nil {
log.Error("Cannot convert to float in GetDiaCirculatingSupply")
return 0.0, err
}
return retval, nil
}