-
-
Notifications
You must be signed in to change notification settings - Fork 113
/
gas_request.go
259 lines (213 loc) · 5.98 KB
/
gas_request.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
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
package main
import (
"database/sql"
"encoding/json"
"io"
"net/http"
"time"
"github.com/gorilla/mux"
)
// ImportGas pulls in bots from the provided db
func (m *Manager) ImportGas() {
// query
rows, err := m.DB.Query("SELECT clientID, token, apiToken, nickname, network, frequency FROM gases")
if err != nil {
logger.Warningf("Unable to query tokens in db: %s", err)
return
}
// load existing bots from db
for rows.Next() {
var importedGas Gas
err = rows.Scan(&importedGas.ClientID, &importedGas.Token, &importedGas.APIToken, &importedGas.Nickname, &importedGas.Network, &importedGas.Frequency)
if err != nil {
logger.Errorf("Unable to load token from db: %s", err)
continue
}
go importedGas.watchGasPrice()
m.WatchGas(&importedGas)
logger.Infof("Loaded gas from db: %s", importedGas.label())
}
rows.Close()
// check all entries have id
for _, gas := range m.WatchingGas {
if gas.ClientID == "" {
id, err := getIDToken(gas.Token)
if err != nil {
logger.Errorf("Unable to get id from token: %s", err)
continue
}
stmt, err := m.DB.Prepare("UPDATE gases SET clientId = ? WHERE token = ?")
if err != nil {
logger.Errorf("Unable to prepare id update: %s", err)
continue
}
res, err := stmt.Exec(id, gas.Token)
if err != nil {
logger.Errorf("Unable to update db: %s", err)
continue
}
_, err = res.LastInsertId()
if err != nil {
logger.Errorf("Unable to confirm db update: %s", err)
continue
} else {
logger.Infof("Updated id in db for %s", gas.label())
gas.ClientID = id
}
}
}
}
// AddTicker adds a new Ticker or crypto to the list of what to watch
func (m *Manager) AddGas(w http.ResponseWriter, r *http.Request) {
m.Lock()
defer m.Unlock()
logger.Debugf("Got an API request to add a gas")
// read body
body, err := io.ReadAll(r.Body)
if err != nil {
logger.Errorf("%s", err)
w.WriteHeader(http.StatusInternalServerError)
return
}
// unmarshal into struct
var gasReq Gas
if err := json.Unmarshal(body, &gasReq); err != nil {
logger.Errorf("Unmarshalling: %s", err)
w.WriteHeader(http.StatusInternalServerError)
return
}
// ensure token is set
if gasReq.Token == "" {
logger.Error("Discord token required")
w.WriteHeader(http.StatusBadRequest)
return
}
// make sure token is valid
if gasReq.ClientID == "" {
id, err := getIDToken(gasReq.Token)
if err != nil {
logger.Errorf("Unable to authenticate with discord token: %s", err)
w.WriteHeader(http.StatusBadRequest)
return
}
gasReq.ClientID = id
}
// ensure frequency is set
if gasReq.Frequency <= 0 {
gasReq.Frequency = 60
}
// ensure network is set
if gasReq.Network == "" {
logger.Error("Network required")
w.WriteHeader(http.StatusBadRequest)
return
}
// check if already existing
if _, ok := m.WatchingGas[gasReq.label()]; ok {
logger.Error("Network already exists")
w.WriteHeader(http.StatusConflict)
return
}
go gasReq.watchGasPrice()
m.WatchGas(&gasReq)
if *db != "" {
m.StoreGas(&gasReq)
}
w.Header().Set("Content-Type", "application/json; charset=UTF-8")
w.WriteHeader(http.StatusOK)
err = json.NewEncoder(w).Encode(gasReq)
if err != nil {
logger.Errorf("Unable to encode gas: %s", err)
w.WriteHeader(http.StatusBadRequest)
}
logger.Infof("Added gas: %s\n", gasReq.Network)
}
func (m *Manager) WatchGas(gas *Gas) {
gasCount.Inc()
id := gas.label()
m.WatchingGas[id] = gas
}
// StoreGas puts a gas into the db
func (m *Manager) StoreGas(gas *Gas) {
// store new entry in db
stmt, err := m.DB.Prepare("INSERT INTO gases(clientId, token, apiToken, nickname, network, frequency) values(?,?,?,?,?,?)")
if err != nil {
logger.Warningf("Unable to store gas in db %s: %s", gas.label(), err)
return
}
res, err := stmt.Exec(gas.ClientID, gas.Token, gas.APIToken, gas.Nickname, gas.Network, gas.Frequency)
if err != nil {
logger.Warningf("Unable to store gas in db %s: %s", gas.label(), err)
return
}
_, err = res.LastInsertId()
if err != nil {
logger.Warningf("Unable to store gas in db %s: %s", gas.label(), err)
return
}
}
// DeleteGas addds a new gas or crypto to the list of what to watch
func (m *Manager) DeleteGas(w http.ResponseWriter, r *http.Request) {
m.Lock()
defer m.Unlock()
logger.Debugf("Got an API request to delete a gas")
vars := mux.Vars(r)
id := vars["id"]
if _, ok := m.WatchingGas[id]; !ok {
logger.Errorf("No gas found: %s", id)
w.WriteHeader(http.StatusNotFound)
return
}
// send shutdown sign
m.WatchingGas[id].Shutdown()
gasCount.Dec()
var noDB *sql.DB
if m.DB != noDB {
// remove from db
stmt, err := m.DB.Prepare("DELETE FROM gases WHERE network = ?")
if err != nil {
logger.Warningf("Unable to query holder in db %s: %s", id, err)
return
}
_, err = stmt.Exec(m.WatchingGas[id].Network)
if err != nil {
logger.Warningf("Unable to query holder in db %s: %s", id, err)
return
}
}
// remove from cache
delete(m.WatchingGas, id)
logger.Infof("Deleted gas %s", id)
w.WriteHeader(http.StatusNoContent)
}
// RestartGas stops and starts a gas
func (m *Manager) RestartGas(w http.ResponseWriter, r *http.Request) {
m.Lock()
defer m.Unlock()
logger.Debugf("Got an API request to restart a gas")
vars := mux.Vars(r)
id := vars["id"]
if _, ok := m.WatchingGas[id]; !ok {
logger.Errorf("No gas found: %s", id)
w.WriteHeader(http.StatusNotFound)
return
}
// send shutdown sign
m.WatchingGas[id].Shutdown()
// wait twice the update time
time.Sleep(time.Duration(m.WatchingGas[id].Frequency) * 2 * time.Second)
// start the gas again
go m.WatchingGas[id].watchGasPrice()
logger.Infof("Restarted gas %s", id)
w.WriteHeader(http.StatusNoContent)
}
// GetGas returns a list of what the manager is watching
func (m *Manager) GetGas(w http.ResponseWriter, r *http.Request) {
m.RLock()
defer m.RUnlock()
w.Header().Set("Content-Type", "application/json; charset=UTF-8")
w.WriteHeader(http.StatusOK)
if err := json.NewEncoder(w).Encode(m.WatchingGas); err != nil {
logger.Errorf("Serving request: %s", err)
}
}