-
-
Notifications
You must be signed in to change notification settings - Fork 113
/
token_request.go
272 lines (225 loc) · 6.96 KB
/
token_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
260
261
262
263
264
265
266
267
268
269
270
271
272
package main
import (
"database/sql"
"encoding/json"
"fmt"
"io"
"net/http"
"time"
"github.com/gorilla/mux"
)
// ImportToken pulls in bots from the provided db
func (m *Manager) ImportToken() {
// query
rows, err := m.DB.Query("SELECT clientID, token, name, nickname, color, activity, network, contract, decorator, decimals, source, frequency FROM tokens")
if err != nil {
logger.Warningf("Unable to query tokens in db: %s", err)
return
}
// load existing bots from db
for rows.Next() {
var importedToken Token
err = rows.Scan(&importedToken.ClientID, &importedToken.Token, &importedToken.Name, &importedToken.Nickname, &importedToken.Color, &importedToken.Activity, &importedToken.Network, &importedToken.Contract, &importedToken.Decorator, &importedToken.Decimals, &importedToken.Source, &importedToken.Frequency)
if err != nil {
logger.Errorf("Unable to load token from db: %s", err)
continue
}
// activate bot
go importedToken.watchTokenPrice()
m.WatchToken(&importedToken)
logger.Infof("Loaded token from db: %s", importedToken.label())
}
rows.Close()
// check all entries have id
for _, token := range m.WatchingToken {
if token.ClientID == "" {
id, err := getIDToken(token.Token)
if err != nil {
logger.Errorf("Unable to get id from token: %s", err)
continue
}
stmt, err := m.DB.Prepare("UPDATE tokens SET clientId = ? WHERE token = ?")
if err != nil {
logger.Errorf("Unable to prepare id update: %s", err)
continue
}
res, err := stmt.Exec(id, token.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", token.label())
token.ClientID = id
}
}
}
}
// AddToken adds a new Token or crypto to the list of what to watch
func (m *Manager) AddToken(w http.ResponseWriter, r *http.Request) {
m.Lock()
defer m.Unlock()
logger.Debugf("Got an API request to add a token")
// read body
body, err := io.ReadAll(r.Body)
if err != nil {
logger.Errorf("Error: %v", err)
w.WriteHeader(http.StatusInternalServerError)
fmt.Fprintf(w, "Error reading body: %v", err)
return
}
// unmarshal into struct
var tokenReq Token
if err := json.Unmarshal(body, &tokenReq); err != nil {
logger.Errorf("Error unmarshalling: %v", err)
w.WriteHeader(http.StatusInternalServerError)
fmt.Fprintf(w, "Error unmarshalling: %v", err)
return
}
// ensure token is set
if tokenReq.Token == "" {
logger.Error("Discord token required")
w.WriteHeader(http.StatusBadRequest)
fmt.Fprint(w, "Error: token required")
return
}
// make sure token is valid
if tokenReq.ClientID == "" {
id, err := getIDToken(tokenReq.Token)
if err != nil {
logger.Errorf("Unable to authenticate with discord token: %s", err)
w.WriteHeader(http.StatusBadRequest)
return
}
tokenReq.ClientID = id
}
// ensure frequency is set
if tokenReq.Frequency <= 0 {
tokenReq.Frequency = 60
}
// ensure network is set, default to eth
if tokenReq.Network == "" {
tokenReq.Network = "ethereum"
}
// ensure name is set
if tokenReq.Name == "" {
logger.Error("Name required for token")
w.WriteHeader(http.StatusBadRequest)
fmt.Fprint(w, "Error: Name required")
return
}
// check if already existing
if _, ok := m.WatchingToken[tokenReq.label()]; ok {
logger.Error("Error: token already exists")
w.WriteHeader(http.StatusConflict)
return
}
go tokenReq.watchTokenPrice()
m.WatchToken(&tokenReq)
if *db != "" {
m.StoreToken(&tokenReq)
}
w.Header().Set("Content-Type", "application/json; charset=UTF-8")
w.WriteHeader(http.StatusOK)
err = json.NewEncoder(w).Encode(tokenReq)
if err != nil {
w.WriteHeader(http.StatusBadRequest)
}
logger.Infof("Added token: %s-%s\n", tokenReq.Network, tokenReq.Contract)
}
func (m *Manager) WatchToken(token *Token) {
tokenCount.Inc()
id := token.label()
m.WatchingToken[id] = token
}
// StoreTicker puts a token into the db
func (m *Manager) StoreToken(token *Token) {
// store new entry in db
stmt, err := m.DB.Prepare("INSERT INTO tokens(clientId, token, name, nickname, color, activity, network, contract, decorator, decimals, source, frequency) values(?,?,?,?,?,?,?,?,?,?,?,?)")
if err != nil {
logger.Warningf("Unable to store token in db %s: %s", token.label(), err)
return
}
res, err := stmt.Exec(token.ClientID, token.Token, token.Name, token.Nickname, token.Color, token.Activity, token.Network, token.Contract, token.Decorator, token.Decimals, token.Source, token.Frequency)
if err != nil {
logger.Warningf("Unable to store token in db %s: %s", token.label(), err)
return
}
_, err = res.LastInsertId()
if err != nil {
logger.Warningf("Unable to store token in db %s: %s", token.label(), err)
return
}
}
// DeleteToken addds a new token or crypto to the list of what to watch
func (m *Manager) DeleteToken(w http.ResponseWriter, r *http.Request) {
m.Lock()
defer m.Unlock()
logger.Debugf("Got an API request to delete a token")
vars := mux.Vars(r)
id := vars["id"]
if _, ok := m.WatchingToken[id]; !ok {
logger.Error("Error: no token found")
w.WriteHeader(http.StatusNotFound)
fmt.Fprint(w, "Error: token not found")
return
}
// send shutdown sign
m.WatchingToken[id].Shutdown()
tokenCount.Dec()
var noDB *sql.DB
if m.DB != noDB {
// remove from db
stmt, err := m.DB.Prepare("DELETE FROM tokens WHERE network = ? AND contract = ?")
if err != nil {
logger.Warningf("Unable to query token in db %s: %s", id, err)
return
}
_, err = stmt.Exec(m.WatchingToken[id].Network, m.WatchingToken[id].Contract)
if err != nil {
logger.Warningf("Unable to query token in db %s: %s", id, err)
return
}
}
// remove from cache
delete(m.WatchingToken, id)
logger.Infof("Deleted token %s", id)
w.WriteHeader(http.StatusNoContent)
}
// RestartToken stops and starts a Token
func (m *Manager) RestartToken(w http.ResponseWriter, r *http.Request) {
m.Lock()
defer m.Unlock()
logger.Debugf("Got an API request to restart a token")
vars := mux.Vars(r)
id := vars["id"]
if _, ok := m.WatchingToken[id]; !ok {
logger.Error("Error: no token found")
w.WriteHeader(http.StatusNotFound)
fmt.Fprint(w, "Error: token not found")
return
}
// send shutdown sign
m.WatchingToken[id].Shutdown()
// wait twice the update time
time.Sleep(time.Duration(m.WatchingToken[id].Frequency) * 2 * time.Second)
// start the token again
go m.WatchingToken[id].watchTokenPrice()
logger.Infof("Restarted token %s", id)
w.WriteHeader(http.StatusNoContent)
}
// GetToken returns a list of what the manager is watching
func (m *Manager) GetToken(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.WatchingToken); err != nil {
logger.Errorf("Error serving request: %v", err)
fmt.Fprintf(w, "Error: %v", err)
}
}