-
-
Notifications
You must be signed in to change notification settings - Fork 113
/
floor_request.go
269 lines (222 loc) · 6.63 KB
/
floor_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
package main
import (
"database/sql"
"encoding/json"
"io"
"net/http"
"time"
"github.com/gorilla/mux"
)
// ImportFloor pulls in bots from the provided db
func (m *Manager) ImportFloor() {
m.Lock()
defer m.Unlock()
// query
rows, err := m.DB.Query("SELECT id, clientID, token, nickname, activity, color, decorator, currency, marketplace, name, frequency FROM floors")
if err != nil {
logger.Warningf("Unable to query tokens in db: %s", err)
return
}
// load existing bots from db
for rows.Next() {
var importedFloor Floor
var importedID int
err = rows.Scan(&importedID, &importedFloor.ClientID, &importedFloor.Token, &importedFloor.Nickname, &importedFloor.Activity, &importedFloor.Color, &importedFloor.Decorator, &importedFloor.Currency, &importedFloor.Marketplace, &importedFloor.Name, &importedFloor.Frequency)
if err != nil {
logger.Errorf("Unable to load token from db: %s", err)
continue
}
go importedFloor.watchFloorPrice()
m.WatchFloor(&importedFloor)
logger.Infof("Loaded floor from db: %s", importedFloor.label())
}
rows.Close()
// check all entries have id
for _, floor := range m.WatchingFloor {
if floor.ClientID == "" {
id, err := getIDToken(floor.Token)
if err != nil {
logger.Errorf("Unable to get id from token: %s", err)
continue
}
stmt, err := m.DB.Prepare("UPDATE floors SET clientId = ? WHERE token = ?")
if err != nil {
logger.Errorf("Unable to prepare id update: %s", err)
continue
}
res, err := stmt.Exec(id, floor.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", floor.label())
floor.ClientID = id
}
}
}
}
// AddTicker adds a new Ticker or crypto to the list of what to watch
func (m *Manager) AddFloor(w http.ResponseWriter, r *http.Request) {
m.Lock()
defer m.Unlock()
logger.Debugf("Got an API request to add a floor")
// read body
body, err := io.ReadAll(r.Body)
if err != nil {
logger.Errorf("%s", err)
w.WriteHeader(http.StatusInternalServerError)
return
}
// unmarshal into struct
var floorReq Floor
if err := json.Unmarshal(body, &floorReq); err != nil {
logger.Errorf("Unmarshalling: %s", err)
w.WriteHeader(http.StatusInternalServerError)
return
}
// ensure token is set
if floorReq.Token == "" {
logger.Error("Discord token required")
w.WriteHeader(http.StatusBadRequest)
return
}
// make sure token is valid
if floorReq.ClientID == "" {
id, err := getIDToken(floorReq.Token)
if err != nil {
logger.Errorf("Unable to authenticate with discord token: %s", err)
w.WriteHeader(http.StatusBadRequest)
return
}
floorReq.ClientID = id
}
// ensure frequency is set
if floorReq.Frequency <= 0 {
floorReq.Frequency = 60
}
// ensure marketplace is set
if floorReq.Marketplace == "" {
logger.Error("Marketplace required")
w.WriteHeader(http.StatusBadRequest)
return
}
// ensure name is set
if floorReq.Name == "" {
logger.Error("Name required")
w.WriteHeader(http.StatusBadRequest)
return
}
// check if already existing
if _, ok := m.WatchingFloor[floorReq.label()]; ok {
logger.Error("Marketplace already exists")
w.WriteHeader(http.StatusConflict)
return
}
go floorReq.watchFloorPrice()
m.WatchFloor(&floorReq)
if *db != "" {
m.StoreFloor(&floorReq)
}
w.Header().Set("Content-Type", "application/json; charset=UTF-8")
w.WriteHeader(http.StatusOK)
err = json.NewEncoder(w).Encode(floorReq)
if err != nil {
logger.Errorf("Unable to encode floor: %s", err)
w.WriteHeader(http.StatusBadRequest)
}
logger.Infof("Added floor: %s\n", floorReq.Marketplace)
}
func (m *Manager) WatchFloor(floor *Floor) {
floorCount.Inc()
id := floor.label()
m.WatchingFloor[id] = floor
}
// StoreTicker puts a floor into the db
func (m *Manager) StoreFloor(floor *Floor) {
// store new entry in db
stmt, err := m.DB.Prepare("INSERT INTO floors(clientId, token, nickname, activity, color, decorator, currency, marketplace, name, frequency) values(?,?,?,?,?,?,?,?,?,?)")
if err != nil {
logger.Warningf("Unable to store floor in db %s: %s", floor.label(), err)
return
}
res, err := stmt.Exec(floor.ClientID, floor.Token, floor.Nickname, floor.Activity, floor.Color, floor.Decorator, floor.Currency, floor.Marketplace, floor.Name, floor.Frequency)
if err != nil {
logger.Warningf("Unable to store floor in db %s: %s", floor.label(), err)
return
}
_, err = res.LastInsertId()
if err != nil {
logger.Warningf("Unable to store floor in db %s: %s", floor.label(), err)
return
}
}
// DeleteFloor addds a new floor or crypto to the list of what to watch
func (m *Manager) DeleteFloor(w http.ResponseWriter, r *http.Request) {
m.Lock()
defer m.Unlock()
logger.Debugf("Got an API request to delete a floor")
vars := mux.Vars(r)
id := vars["id"]
if _, ok := m.WatchingFloor[id]; !ok {
logger.Errorf("No floor found: %s", id)
w.WriteHeader(http.StatusNotFound)
return
}
// send shutdown sign
m.WatchingFloor[id].Shutdown()
floorCount.Dec()
var noDB *sql.DB
if m.DB != noDB {
// remove from db
stmt, err := m.DB.Prepare("DELETE FROM floors WHERE marketplace = ?")
if err != nil {
logger.Warningf("Unable to query holder in db %s: %s", id, err)
return
}
_, err = stmt.Exec(m.WatchingFloor[id].Marketplace)
if err != nil {
logger.Warningf("Unable to query holder in db %s: %s", id, err)
return
}
}
// remove from cache
delete(m.WatchingFloor, id)
logger.Infof("Deleted floor %s", id)
w.WriteHeader(http.StatusNoContent)
}
// RestartFloor stops and starts a floor
func (m *Manager) RestartFloor(w http.ResponseWriter, r *http.Request) {
m.Lock()
defer m.Unlock()
logger.Debugf("Got an API request to restart a floor")
vars := mux.Vars(r)
id := vars["id"]
if _, ok := m.WatchingFloor[id]; !ok {
logger.Errorf("No floor found: %s", id)
w.WriteHeader(http.StatusNotFound)
return
}
// send shutdown sign
m.WatchingFloor[id].Shutdown()
// wait twice the update time
time.Sleep(time.Duration(m.WatchingFloor[id].Frequency) * 2 * time.Second)
// start the floor again
go m.WatchingFloor[id].watchFloorPrice()
logger.Infof("Restarted floor %s", id)
w.WriteHeader(http.StatusNoContent)
}
// GetFloor returns a list of what the manager is watching
func (m *Manager) GetFloor(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.WatchingFloor); err != nil {
logger.Errorf("Serving request: %s", err)
}
}