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
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
|
package main
import (
"context"
"encoding/json"
"fmt"
"log"
"net/http"
"os"
"os/signal"
"syscall"
"github.com/arangodb/go-driver/v2/arangodb"
"github.com/arangodb/go-driver/v2/connection"
"github.com/ketsuna-org/bot-creator-api/internal"
)
var botList = make(map[string]*internal.Bot)
var database arangodb.Database
func init() {
// Initialisation de l'application
password := os.Getenv("DB_PASSWORD")
user := os.Getenv("DB_USERNAME")
host := os.Getenv("DB_HOST")
dbName := os.Getenv("DB_NAME")
if password == "" || user == "" || host == "" || dbName == "" {
// display which env variable is missing
array := []string{"DB_PASSWORD", "DB_USERNAME", "DB_HOST", "DB_NAME"}
for _, v := range array {
if os.Getenv(v) == "" {
log.Printf("[SERVER] %s is missing", v)
}
}
}
// Connexion à la base de données
conn := arangodb.NewClient(connection.NewHttp2Connection(connection.Http2Configuration{
Endpoint: connection.NewRoundRobinEndpoints([]string{
fmt.Sprintf("https://%s", host),
}),
Authentication: connection.NewBasicAuth(user, password),
}))
db, err := conn.GetDatabase(context.Background(), dbName, nil)
if err != nil {
log.Fatalf("Failed to open database: %v", err)
}
database = db
}
func main() {
// Créer un ServeMux
mux := http.NewServeMux()
// Route principale
mux.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
w.Write([]byte("Hello, World!"))
})
// Route POST /create/{bot_token}
mux.HandleFunc("POST /create/{bot_token}", func(w http.ResponseWriter, r *http.Request) {
// Extraire le token du bot de l'URL
botToken := r.PathValue("bot_token")
// we need to retrieve the amount of bots running
bot := &internal.Bot{
BotToken: botToken,
ProcessID: fmt.Sprint(len(botList) + 5555), // or any unique identifier
}
// let's start the bot
col, err := database.GetCollection(context.Background(), "bots", nil)
if err != nil {
log.Printf("[SERVER] Error getting collection: %v", err)
http.Error(w, "Error getting collection", http.StatusInternalServerError)
return
}
// let's check if the bot already exists
// Let's check if this discord bot exists
if _, ok := botList[botToken]; ok {
log.Printf("[SERVER] Bot already running: %s", botToken)
http.Error(w, "Bot already running", http.StatusConflict)
return
}
// let's check if it exist on Discord
httpClient := &http.Client{}
req, err := http.NewRequest("GET", "https://discord.com/api/v10/users/@me", nil)
if err != nil {
log.Printf("[SERVER] Error creating request: %v", err)
http.Error(w, "Error creating request", http.StatusInternalServerError)
return
}
req.Header.Set("Authorization", "Bot "+botToken)
resp, err := httpClient.Do(req)
if err != nil {
log.Printf("[SERVER] Error sending request: %v", err)
http.Error(w, "Error sending request", http.StatusInternalServerError)
return
}
defer resp.Body.Close()
if resp.StatusCode != http.StatusOK {
log.Printf("[SERVER] Bot not found: %s", botToken)
http.Error(w, "Bot not found", http.StatusNotFound)
return
}
var botData map[string]interface{}
if err := json.NewDecoder(resp.Body).Decode(&botData); err != nil {
log.Printf("[SERVER] Error decoding JSON: %v", err)
http.Error(w, "Error decoding JSON", http.StatusInternalServerError)
return
}
botData["_key"] = botData["id"]
id := botData["id"].(string)
botData["token"] = botToken
exist, err := col.DocumentExists(context.Background(), id)
if err != nil {
log.Printf("[SERVER] Error checking document: %v", err)
http.Error(w, "Error checking document", http.StatusInternalServerError)
return
}
if !exist { // let's create the bot
_, err = col.CreateDocument(context.Background(), botData)
if err != nil {
log.Printf("[SERVER] Error creating bot: %v", err)
http.Error(w, "Error creating document", http.StatusInternalServerError)
return
}
log.Printf("[SERVER] Bot created: %s", botToken)
} else {
// let's update the bot
_, err = col.UpdateDocument(context.Background(), botData["id"].(string), botData)
if err != nil {
log.Printf("[SERVER] Error updating document: %v", err)
http.Error(w, "Error updating document", http.StatusInternalServerError)
return
}
log.Printf("[SERVER] Bot updated: %s", botToken)
}
// let's check if the bot is already running
// let's parse the body.
var body map[string]interface{}
if err := json.NewDecoder(r.Body).Decode(&body); err != nil {
log.Printf("[SERVER] Error decoding JSON: %v", err)
http.Error(w, "Invalid JSON", http.StatusBadRequest)
return
}
if body["intents"] == nil {
// intents are the default ones we can set the default ones
body["intents"] = "3243773"
}
if body["data"] == nil {
// data are the default ones we can set the default ones
fmt.Printf("[SERVER] No data found, setting default ones")
body["data"] = map[string]interface{}{}
} else {
// let's create each commands associated with the bot, and it's corresponding commands ID
// let's check if the data is a map
dataToUse, ok := body["data"].(map[string]interface{})
if !ok {
log.Printf("[SERVER] Data is not a map")
http.Error(w, "Data is not a map", http.StatusBadRequest)
return
}
// let's check if the data is a map
// each command is a key. and the value is a map
for key, value := range dataToUse {
// let's check if the value is a map
valueToUse, ok := value.(map[string]interface{})
if !ok {
log.Printf("[SERVER] Value is not a map")
http.Error(w, "Value is not a map", http.StatusBadRequest)
return
}
valueToUse["_key"] = key
col, err := database.GetCollection(context.Background(), "commands", nil)
// let's check if the name is set
if err != nil {
log.Printf("[SERVER] Error getting collection: %v", err)
http.Error(w, "Error getting collection", http.StatusInternalServerError)
return
}
// first check if the command already exists
exist, err := col.DocumentExists(context.Background(), key)
if err != nil {
log.Printf("[SERVER] Error checking document: %v", err)
http.Error(w, "Error checking document", http.StatusInternalServerError)
return
}
if !exist {
// this mean we can create the command
// let's create the command
_, err = col.CreateDocument(context.Background(), valueToUse)
if err != nil {
log.Printf("[SERVER] Error creating document: %v", err)
http.Error(w, "Error creating document", http.StatusInternalServerError)
return
}
log.Printf("[SERVER] Command created: %s", key)
} else {
// let's update the command
_, err = col.UpdateDocument(context.Background(), key, valueToUse)
if err != nil {
log.Printf("[SERVER] Error updating document: %v", err)
http.Error(w, "Error updating document", http.StatusInternalServerError)
return
}
log.Printf("[SERVER] Command updated: %s", key)
}
// let's create edge or update the edge
edgeCol, err := database.GetCollection(context.Background(), "bots_commands", nil)
if err != nil {
log.Printf("[SERVER] Error getting collection: %v", err)
http.Error(w, "Error getting collection", http.StatusInternalServerError)
return
}
// let's check if the edge already exists
edgeID := fmt.Sprintf("%s_%s", id, key)
exist, err = edgeCol.DocumentExists(context.Background(), edgeID)
if err != nil {
log.Printf("[SERVER] Error checking document: %v", err)
http.Error(w, "Error checking document", http.StatusInternalServerError)
return
}
if !exist {
edge := map[string]interface{}{
"_from": "bots/" + id,
"_to": "commands/" + key,
"_key": edgeID,
}
_, err = edgeCol.CreateDocument(context.Background(), edge)
if err != nil {
log.Printf("[SERVER] Error creating document: %v", err)
http.Error(w, "Error creating document", http.StatusInternalServerError)
return
}
log.Printf("[SERVER] Edge created: %s", edgeID)
} else {
// let's update the edge
edge := map[string]interface{}{
"_from": "bots/" + id,
"_to": "commands/" + key,
}
_, err = edgeCol.UpdateDocument(context.Background(), edgeID, edge)
if err != nil {
log.Printf("[SERVER] Error updating document: %v", err)
http.Error(w, "Error updating document", http.StatusInternalServerError)
return
}
log.Printf("[SERVER] Edge updated: %s", edgeID)
}
}
}
// let's convert the data to a string
data, err := json.Marshal(body["data"])
if err != nil {
log.Printf("[SERVER] Error marshaling JSON: %v", err)
http.Error(w, "Error marshaling JSON", http.StatusInternalServerError)
return
}
fmt.Printf("[SERVER] Starting bot with data: %s", string(data))
bot, err = internal.Start(bot, string(data), fmt.Sprint(body["intents"]))
if err != nil {
log.Printf("[SERVER] Error starting bot: %v", err)
http.Error(w, "Error starting bot", http.StatusInternalServerError)
return
}
botList[botToken] = bot
log.Printf("[SERVER] Bot started successfully")
w.WriteHeader(http.StatusOK)
w.Write([]byte("Bot started successfully"))
})
// Route POST /stop/{bot_token}
mux.HandleFunc("POST /stop/{bot_token}", func(w http.ResponseWriter, r *http.Request) {
// Extraire le token du bot de l'URL
botToken := r.PathValue("bot_token")
bot, ok := botList[botToken]
if !ok {
http.Error(w, "Bot not found", http.StatusNotFound)
return
}
if err := bot.Stop(); err != nil {
log.Printf("[SERVER] Error stopping bot: %v", err)
http.Error(w, "Error stopping bot", http.StatusInternalServerError)
return
}
delete(botList, botToken)
log.Printf("[SERVER] Bot stopped successfully")
w.WriteHeader(http.StatusOK)
w.Write([]byte("Bot stopped successfully"))
})
// Route POST /update/{bot_token}
mux.HandleFunc("POST /update/{bot_token}", func(w http.ResponseWriter, r *http.Request) {
// Extraire le token du bot de l'URL
botToken := r.PathValue("bot_token")
bot, ok := botList[botToken]
if !ok {
http.Error(w, "Bot not found", http.StatusNotFound)
return
}
body := make(map[string]interface{})
if err := json.NewDecoder(r.Body).Decode(&body); err != nil {
log.Printf("[SERVER] Error decoding JSON: %v", err)
http.Error(w, "Invalid JSON", http.StatusBadRequest)
return
}
data, err := json.Marshal(body)
if err != nil {
log.Printf("[SERVER] Error marshaling JSON: %v", err)
http.Error(w, "Error marshaling JSON", http.StatusInternalServerError)
return
}
if err := bot.SendMessage(string(data)); err != nil {
log.Printf("[SERVER] Error sending message: %v", err)
http.Error(w, "Error sending message", http.StatusInternalServerError)
return
}
log.Printf("[SERVER] Bot updated successfully")
w.WriteHeader(http.StatusOK)
w.Write([]byte("Bot updated successfully"))
})
// Gestion des signaux pour l'arrêt propre
signals := make(chan os.Signal, 1)
signal.Notify(signals, os.Interrupt)
signal.Notify(signals, syscall.SIGTERM)
go func() {
sig := <-signals
log.Printf("Received signal: %s", sig)
// Arrêter tous les bots en cours
for _, bot := range botList {
if err := bot.Stop(); err != nil {
log.Printf("[SERVER] Error stopping bot: %v", err)
}
delete(botList, bot.BotToken)
}
// Quitter l'application
os.Exit(0)
}()
// Démarrer le serveur HTTP
log.Printf("[SERVER] Starting server on :2030")
log.Fatal(http.ListenAndServe(":2030", mux))
}
|