forked from Nathan13888/CodeRunnerBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbot.go
580 lines (497 loc) · 14.5 KB
/
bot.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
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
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
package main
import (
"fmt"
"os"
"os/signal"
"runtime"
"strings"
"syscall"
"time"
"github.com/bwmarrin/discordgo"
"github.com/joho/godotenv"
"github.com/rs/zerolog"
"github.com/rs/zerolog/log"
"github.com/rs/zerolog/pkgerrors"
)
var (
TOKEN string
PISTON_URL string
DOTENV string
GUILD_ID string
BuildVersion string = "unknown"
BuildTime string = "unknown"
GOOS string = runtime.GOOS
ARCH string = runtime.GOARCH
languages []string
languageMappings map[string][]string
)
func init() {
// Initialize zerolog
zerolog.SetGlobalLevel(zerolog.DebugLevel)
zerolog.TimeFieldFormat = time.RFC3339
zerolog.ErrorStackMarshaler = pkgerrors.MarshalStack
consoleWriter := zerolog.ConsoleWriter{Out: os.Stdout}
multi := zerolog.MultiLevelWriter(consoleWriter)
log.Logger = zerolog.New(multi).With().Timestamp().Logger()
// Load environment from .env.
DOTENV = os.Getenv("DOTENV")
if len(DOTENV) == 0 {
log.Info().
Msg("Environment variable DOTENV not found, using default .env file.")
DOTENV = ".env"
}
err := godotenv.Load(".env")
if err != nil {
log.Fatal().
Err(err).
Str("env_file", DOTENV).
Msg("Error loading environment file.")
}
TOKEN = os.Getenv("TOKEN")
if TOKEN == "" {
log.Fatal().
Msg("TOKEN not found in .env file.")
}
PISTON_URL = os.Getenv("PISTON_URL")
if PISTON_URL == "" {
log.Info().
Msg("PISTON_URL not found in .env file, using default API endpoint.")
PISTON_URL = "https://emkc.org/api/v2/piston/"
}
GUILD_ID = os.Getenv("GUILD_ID")
if GUILD_ID == "" {
log.Info().
Msg("GUILD_ID not found in .env file, registering commands globally.")
}
// Load languages.
runtimes, err := GetRuntimes()
if err != nil {
log.Fatal().
Err(err).
Msg("Error loading languages.")
}
languages = make([]string, len(*runtimes))
languageMappings = make(map[string][]string, len(*runtimes))
for i, r := range *runtimes {
languages[i] = r.Language
languageMappings[r.Language] = r.Aliases
}
log.Debug().
Strs("languages", languages).
Str("env_file", DOTENV).
Str("token", TOKEN[:10]+strings.Repeat("*", len(TOKEN)-10)).
Str("piston_url", PISTON_URL).
Str("guild_id", GUILD_ID).
Str("build_version", BuildVersion).
Str("build_time", BuildTime).
Msg("Configured settings.")
}
func main() {
// Create a new Discord session using the provided bot token.
dg, err := discordgo.New("Bot " + TOKEN)
if err != nil {
log.Fatal().
Err(err).
Msg("Error creating Discord session.")
}
// Add a handler for the bot's status.
dg.AddHandler(func(s *discordgo.Session, _ *discordgo.Ready) {
s.UpdateListeningStatus("/run")
},
)
// Add guild messages intent.
dg.Identify.Intents = discordgo.IntentsGuildMessages
// Add handler to run the corresponding function when a command is run.
dg.AddHandler(func(s *discordgo.Session, i *discordgo.InteractionCreate) {
if h, ok := commandsHandlers[i.ApplicationCommandData().Name]; ok {
h(s, i)
log.Debug().
Str("command",
i.ApplicationCommandData().Name).
Str("user_id",
i.Member.User.ID).
Str("channel_id",
i.ChannelID).
Str("guild_id",
i.GuildID).
Msg("Command recieved.")
}
})
// Open a websocket connection to Discord and begin listening.
err = dg.Open()
if err != nil {
log.Fatal().
Err(err).
Msg("Error opening Disord connection.")
}
// Create all commands.
createdCommands, err := dg.ApplicationCommandBulkOverwrite(dg.State.User.ID, GUILD_ID, commands)
if err != nil {
log.Fatal().
Err(err).
Msg("Error creating commands.")
}
// Wait here until CTRL-C or other term signal is received.
log.Info().Msg("Bot is now running. Press CTRL-C to exit.")
sc := make(chan os.Signal, 1)
signal.Notify(sc, syscall.SIGINT, syscall.SIGTERM, os.Interrupt)
<-sc
// Delete all commands on shutdown.
for _, cmd := range createdCommands {
err := dg.ApplicationCommandDelete(dg.State.User.ID, GUILD_ID, cmd.ID)
if err != nil {
log.Error().
Err(err).
Str("command", cmd.Name).
Msg("Error deleting command.")
}
}
// Cleanly close the Discord session.
dg.Close()
}
var (
// Commands slice of all available commands.
commands = []*discordgo.ApplicationCommand{
{
Name: "Run Code",
Type: discordgo.MessageApplicationCommand,
},
{
Name: "run",
Description: "Runs code in a language. Run this command in a reply to a code message.",
Options: []*discordgo.ApplicationCommandOption{
{
Name: "language",
Description: "The language to run the code in.",
Type: discordgo.ApplicationCommandOptionString,
Required: false,
},
},
},
{
Name: "help",
Description: "Shows the help message.",
},
{
Name: "build_info",
Description: "Shows the build info for the bot.",
},
}
// CommandsHandlers map of all available commands and their corresponding handlers.
commandsHandlers = map[string]func(s *discordgo.Session, i *discordgo.InteractionCreate){
"Run Code": func(s *discordgo.Session, i *discordgo.InteractionCreate) {
// Send deferred message, telling the user that a response is coming shortly.
err := s.InteractionRespond(
i.Interaction, &discordgo.InteractionResponse{
Type: discordgo.InteractionResponseDeferredChannelMessageWithSource,
},
)
if err != nil {
log.Error().
Err(err).
Msg("Error responding to interaction.")
return
}
// Get message from ApplicationCommandData.
message := i.ApplicationCommandData().
Resolved.
Messages[i.ApplicationCommandData().TargetID]
// Check if the message is a code message.
if !isCodeMessage(message) {
_, err := s.FollowupMessageCreate(s.State.User.ID, i.Interaction, false, &discordgo.WebhookParams{
Content: "Message is not a code message. Did you remember to wrap your code in backticks (```)?",
})
if err != nil {
log.Error().
Err(err).
Msg("Error sending followup message.")
}
return
}
// Get the language and code from the message.
lang, code := getLanguageAndCodeFromMessage(message)
if lang != "" {
log.Debug().
Str("language", lang).
Msg("Language found from message.")
} else {
log.Debug().
Msg("No language found from message.")
_, err := s.FollowupMessageCreate(s.State.User.ID, i.Interaction, false, &discordgo.WebhookParams{
Content: "No language provided. Did you remember to put a valid language after the opening backticks? (e.g. ```py)",
})
if err != nil {
log.Error().
Err(err).
Msg("Error sending followup message.")
}
return
}
// Get output of executed code.
output, err := Exec(lang, "", code)
if err != nil {
log.Error().
Err(err).
Msg("Error executing code.")
_, err := s.FollowupMessageCreate(s.State.User.ID, i.Interaction, false, &discordgo.WebhookParams{
Content: fmt.Sprintf("Error executing code.```\n%v\n```", err),
})
if err != nil {
log.Error().
Err(err).
Msg("Error sending followup message.")
}
return
}
// Split code output into chunks of 500 characters and send them as followup messages.
for _, message := range splitOutput(output, 500) {
_, err := s.FollowupMessageCreate(s.State.User.ID, i.Interaction, false, &discordgo.WebhookParams{
Content: message,
})
if err != nil {
log.Error().
Err(err).
Msg("Error sending followup message.")
}
}
},
"run": func(s *discordgo.Session, i *discordgo.InteractionCreate) {
// Send deferred message, telling the user that a response is coming shortly.
err := s.InteractionRespond(
i.Interaction, &discordgo.InteractionResponse{
Type: discordgo.InteractionResponseDeferredChannelMessageWithSource,
},
)
if err != nil {
log.Error().
Err(err).
Msg("Error responding to interaction.")
return
}
// Get last 10 messages in channel.
messages, err := s.ChannelMessages(i.ChannelID, 10, "", "", "")
if err != nil {
log.Error().
Err(err).
Msg("Error getting messages in channel.")
_, err := s.FollowupMessageCreate(s.State.User.ID, i.Interaction, false, &discordgo.WebhookParams{
Content: "Error getting messages in channel.",
})
if err != nil {
log.Error().
Err(err).
Msg("Error sending followup message.")
}
return
}
// Check if any of those messages is a code message.
message := &discordgo.Message{}
for _, m := range messages {
if isCodeMessage(m) {
message = m
break
}
}
if message.Content == "" {
_, err := s.FollowupMessageCreate(s.State.User.ID, i.Interaction, false, &discordgo.WebhookParams{
Content: "No code messages found in the last 10 messages. Did you remember to wrap your code in backticks (```)?",
})
if err != nil {
log.Error().
Err(err).
Msg("Error sending followup message.")
}
return
}
// Get the language and code from the message.
lang, code := getLanguageAndCodeFromMessage(message)
if len(i.ApplicationCommandData().Options) > 0 {
lang = i.ApplicationCommandData().Options[0].StringValue()
log.Debug().
Str("language", lang).
Msg("Language found from options.")
if !stringInSlice(lang, languages) {
_, err := s.FollowupMessageCreate(s.State.User.ID, i.Interaction, false, &discordgo.WebhookParams{
Content: fmt.Sprintf("Language %v is not supported. Supported languages are: %v", lang, languages),
})
if err != nil {
log.Error().
Err(err).
Msg("Error sending followup message.")
}
return
}
} else {
log.Debug().
Str("language", lang).
Msg("Language found from message.")
}
if lang == "" {
log.Debug().
Msg("No language found from message.")
_, err := s.FollowupMessageCreate(s.State.User.ID, i.Interaction, false, &discordgo.WebhookParams{
Content: "No language provided. Did you remember to put a valid language after the opening backticks? (e.g. ```py)",
})
if err != nil {
log.Error().
Err(err).
Msg("Error sending followup message.")
}
return
}
// Get output of executed code.
output, err := Exec(lang, "", code)
if err != nil {
log.Error().
Err(err).
Msg("Error executing code.")
_, err := s.FollowupMessageCreate(s.State.User.ID, i.Interaction, false, &discordgo.WebhookParams{
Content: fmt.Sprintf("Error executing code.```\n%v\n```", err),
})
if err != nil {
log.Error().
Err(err).
Msg("Error sending followup message.")
}
return
}
// Split code output into chunks of 500 characters and send them as followup messages.
for _, message := range splitOutput(output, 500) {
_, err := s.FollowupMessageCreate(s.State.User.ID, i.Interaction, false, &discordgo.WebhookParams{
Content: message,
})
if err != nil {
log.Error().
Err(err).
Msg("Error sending followup message.")
}
}
},
"help": func(s *discordgo.Session, i *discordgo.InteractionCreate) {
err := s.InteractionRespond(
i.Interaction, &discordgo.InteractionResponse{
Type: discordgo.InteractionResponseChannelMessageWithSource,
Data: &discordgo.InteractionResponseData{
Embeds: []*discordgo.MessageEmbed{
{
Title: "Help",
Fields: []*discordgo.MessageEmbedField{
{
Name: "Run Code",
Value: "Right click on any message to run it, if that message is a code message.",
},
{
Name: "`/run [language]`",
Value: strings.Join([]string{
"Looks for a code message in the last 10 messages in the channel and executes it.",
"If the language is not specified, it will try to detect the language from the language specified after the backticks (e.g. \\`\\`\\`py).",
}, "\n"),
},
{
Name: "Supported Languages",
Value: strings.Join(languages, ", "),
},
},
},
},
},
},
)
if err != nil {
log.Error().
Err(err).
Msg("Error responding to interaction.")
return
}
},
"build_info": func(s *discordgo.Session, i *discordgo.InteractionCreate) {
err := s.InteractionRespond(
i.Interaction, &discordgo.InteractionResponse{
Type: discordgo.InteractionResponseChannelMessageWithSource,
Data: &discordgo.InteractionResponseData{
Embeds: []*discordgo.MessageEmbed{
{
Title: "Build Info",
Fields: []*discordgo.MessageEmbedField{
{
Name: "Version",
Value: BuildVersion,
},
{
Name: "Time",
Value: BuildTime,
},
{
Name: "Operating System",
Value: GOOS,
},
{
Name: "Architecture",
Value: ARCH,
},
},
},
},
},
},
)
if err != nil {
log.Error().
Err(err).
Msg("Error responding to interaction.")
return
}
},
}
)
func isCodeMessage(m *discordgo.Message) bool {
// Split on newlines.
c := strings.Split(strings.ReplaceAll(m.Content, "\r\n", "\n"), "\n")
// Check if the number of lines is greater than 1.
if len(c) < 2 {
return false
}
// Check if the first line starts with 3 backticks, and the last line is 3 backticks.
return c[0][:3] == "```" && c[len(c)-1] == "```"
}
func getLanguageAndCodeFromMessage(m *discordgo.Message) (string, string) {
// Split on newlines.
c := strings.Split(strings.ReplaceAll(m.Content, "\r\n", "\n"), "\n")
// Get language from first line.
for i, j := range languageMappings {
test := c[0][3:]
code := strings.Join(c[1:len(c)-1], "\n")
if strings.EqualFold(test, i) {
return i, code
}
for _, k := range j {
// Check if the language in the first line is a valid language.
if strings.EqualFold(k, test) {
return i, code
}
}
}
return "", strings.Join(c[1:len(c)-1], "\n")
}
func splitOutput(output string, limit int) []string {
// Initialize slice of messages.
var messages []string
// Remove the 6 backticks and 2 newlines from the limit.
codeLimit := limit - 8
// While the output is larger than the limit, add limit-sized chunks to the slice.
for len(output) > limit {
messages = append(messages, "```\n"+output[:codeLimit]+"\n```")
output = output[limit:]
}
// Add the remaining output to the slice.
messages = append(messages, "```\n"+output+"\n```")
return messages
}
func stringInSlice(s string, a []string) bool {
for _, i := range a {
if i == s {
return true
}
}
return false
}