-
-
Notifications
You must be signed in to change notification settings - Fork 113
/
circulating_request.go
259 lines (215 loc) · 7.04 KB
/
circulating_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"
"strings"
"time"
"github.com/gorilla/mux"
)
// ImportCirculating pulls in bots from the provided db
func (m *Manager) ImportCirculating() {
// query
rows, err := m.DB.Query("SELECT clientID, token, ticker, name, nickname, activity, decimals, currencySymbol, frequency FROM circulatings")
if err != nil {
logger.Warningf("Unable to query circulatings in db: %s", err)
return
}
// load existing bots from db
for rows.Next() {
var importedCirculating Circulating
err = rows.Scan(&importedCirculating.ClientID, &importedCirculating.Token, &importedCirculating.Ticker, &importedCirculating.Name, &importedCirculating.Nickname, &importedCirculating.Activity, &importedCirculating.Decimals, &importedCirculating.CurrencySymbol, &importedCirculating.Frequency)
if err != nil {
logger.Errorf("Unable to load circulatings from db: %s", err)
continue
}
// activate bot
go importedCirculating.watchCirculating()
m.WatchCirculating(&importedCirculating)
logger.Infof("Loaded circulating from db: %s", importedCirculating.label())
}
rows.Close()
// check all entries have id
for _, circulating := range m.WatchingCirculating {
if circulating.ClientID == "" {
id, err := getIDToken(circulating.Token)
if err != nil {
logger.Errorf("Unable to get id from token: %s", err)
continue
}
stmt, err := m.DB.Prepare("UPDATE circulatings SET clientId = ? WHERE token = ?")
if err != nil {
logger.Errorf("Unable to prepare id update: %s", err)
continue
}
res, err := stmt.Exec(id, circulating.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", circulating.label())
circulating.ClientID = id
}
}
}
}
// AddCirculating adds a new Circulating or crypto to the list of what to watch
func (m *Manager) AddCirculating(w http.ResponseWriter, r *http.Request) {
m.Lock()
defer m.Unlock()
logger.Debugf("Got an API request to add a Circulating")
// read body
body, err := io.ReadAll(r.Body)
if err != nil {
logger.Errorf("%s", err)
w.WriteHeader(http.StatusInternalServerError)
return
}
// unmarshal into struct
var circulatingReq Circulating
if err := json.Unmarshal(body, &circulatingReq); err != nil {
logger.Errorf("Unmarshalling: %s", err)
w.WriteHeader(http.StatusInternalServerError)
return
}
// ensure token is set
if circulatingReq.Token == "" {
logger.Error("Discord token required")
w.WriteHeader(http.StatusBadRequest)
return
}
// make sure token is valid
if circulatingReq.ClientID == "" {
id, err := getIDToken(circulatingReq.Token)
if err != nil {
logger.Errorf("Unable to authenticate with discord token: %s", err)
w.WriteHeader(http.StatusBadRequest)
return
}
circulatingReq.ClientID = id
}
// ensure frequency is set
if circulatingReq.Frequency <= 0 {
circulatingReq.Frequency = 60
}
// ensure name is set
if circulatingReq.Name == "" {
logger.Error("Name required for crypto")
w.WriteHeader(http.StatusBadRequest)
return
}
// check if already existing
if _, ok := m.WatchingCirculating[circulatingReq.label()]; ok {
logger.Error("Circulating already exists")
w.WriteHeader(http.StatusConflict)
return
}
go circulatingReq.watchCirculating()
m.WatchCirculating(&circulatingReq)
if *db != "" {
m.StoreCirculating(&circulatingReq)
}
w.Header().Set("Content-Type", "application/json; charset=UTF-8")
w.WriteHeader(http.StatusOK)
err = json.NewEncoder(w).Encode(circulatingReq)
if err != nil {
logger.Errorf("Unable to encode circulatings: %s", err)
w.WriteHeader(http.StatusBadRequest)
}
logger.Infof("Added circulating: %s\n", circulatingReq.Name)
}
func (m *Manager) WatchCirculating(circulating *Circulating) {
circulatingCount.Inc()
id := circulating.label()
m.WatchingCirculating[id] = circulating
}
// StoreTicker puts a circulating into the db
func (m *Manager) StoreCirculating(circulating *Circulating) {
// store new entry in db
stmt, err := m.DB.Prepare("INSERT INTO circulatings(clientId, token, ticker, name, nickname, activity, decimals, currencySymbol, frequency) values(?,?,?,?,?,?,?,?,?)")
if err != nil {
logger.Warningf("Unable to store circulating in db %s: %s", circulating.label(), err)
return
}
res, err := stmt.Exec(circulating.ClientID, circulating.Token, circulating.Ticker, circulating.Name, circulating.Nickname, circulating.Activity, circulating.Decimals, circulating.CurrencySymbol, circulating.Frequency)
if err != nil {
logger.Warningf("Unable to store circulating in db %s: %s", circulating.label(), err)
return
}
_, err = res.LastInsertId()
if err != nil {
logger.Warningf("Unable to store circulating in db %s: %s", circulating.label(), err)
return
}
}
// DeleteCirculating addds a new Circulating or crypto to the list of what to watch
func (m *Manager) DeleteCirculating(w http.ResponseWriter, r *http.Request) {
m.Lock()
defer m.Unlock()
logger.Debugf("Got an API request to delete a circulating")
vars := mux.Vars(r)
id := vars["id"]
if _, ok := m.WatchingCirculating[id]; !ok {
logger.Errorf("No circulating found: %s", id)
w.WriteHeader(http.StatusNotFound)
return
}
// send shutdown sign
m.WatchingCirculating[id].Shutdown()
circulatingCount.Dec()
var noDB *sql.DB
if m.DB != noDB {
// remove from db
stmt, err := m.DB.Prepare("DELETE FROM circulatings WHERE name = ?")
if err != nil {
logger.Warningf("Unable to query circulating in db %s: %s", id, err)
return
}
_, err = stmt.Exec(m.WatchingCirculating[id].Name)
if err != nil {
logger.Warningf("Unable to query circulating in db %s: %s", id, err)
return
}
}
// remove from cache
delete(m.WatchingCirculating, id)
logger.Infof("Deleted circulating %s", id)
w.WriteHeader(http.StatusNoContent)
}
// RestartCirculating stops and starts a circulating
func (m *Manager) RestartCirculating(w http.ResponseWriter, r *http.Request) {
m.Lock()
defer m.Unlock()
logger.Debugf("Got an API request to restart a circulating")
vars := mux.Vars(r)
id := strings.ToUpper(vars["id"])
if _, ok := m.WatchingCirculating[id]; !ok {
logger.Errorf("No circulating found: %s", id)
w.WriteHeader(http.StatusNotFound)
return
}
// send shutdown sign
m.WatchingCirculating[id].Shutdown()
// wait twice the update time
time.Sleep(time.Duration(m.WatchingCirculating[id].Frequency) * 2 * time.Second)
// start the circulating again
go m.WatchingCirculating[id].watchCirculating()
logger.Infof("Restarted circulating %s", id)
w.WriteHeader(http.StatusNoContent)
}
// GetCirculatings returns a list of what the manager is watching
func (m *Manager) GetCirculatings(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.WatchingCirculating); err != nil {
logger.Errorf("Serving request: %s", err)
}
}