-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
131 lines (106 loc) · 2.12 KB
/
main.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
package main
import (
"fmt"
"io"
"log"
"os"
"os/signal"
"strings"
"unicode"
"net/http"
"github.com/bwmarrin/discordgo"
"github.com/joho/godotenv"
)
type Core struct {
bot *discordgo.Session
spam *string
}
var core Core
func main() {
EnvInit()
GNULinuxBible()
DiscordInit()
fmt.Println("Spam cached:")
fmt.Println(*core.spam)
fmt.Println("Opening bot connection...")
core.bot.AddHandler(ListenLinuxMsg)
err := core.bot.Open()
defer core.bot.Close()
if err != nil {
log.Fatal(err)
}
c := make(chan os.Signal, 1)
signal.Notify(c, os.Interrupt)
<-c
fmt.Println("Closing bot connection...")
}
func EnvInit() {
err := godotenv.Load()
if err != nil {
fmt.Println("Error loading .env file")
}
}
func GNULinuxBible() {
response, err := http.Get("https://stallman-copypasta.github.io")
if err != nil {
log.Fatal(err)
return
}
defer response.Body.Close()
spmm := ""
if response.StatusCode == http.StatusOK {
body, err := io.ReadAll(response.Body)
if err != nil {
log.Fatal(err)
return
}
spmm = formatBible(string(body))
} else {
spmm = "XD"
}
core.spam = &spmm
}
func formatBible(str string) string {
// From-to main tag
start := strings.Index(str, "<main>")
end := strings.Index(str, "</main>")
str = str[start:end]
ignoreTag := false
content := ""
for _, char := range str {
// ignore all html tags
if char == '<' {
ignoreTag = true
continue
} else if char == '>' {
ignoreTag = false
continue
}
// remove any non-graphic rune except newlines
if ignoreTag || (char != '\n' && !unicode.IsGraphic(char)) {
continue
}
// concat it
content += string(char)
}
return content
}
func DiscordInit() {
discord, err := discordgo.New("Bot " + os.Getenv("DISCORD_BOT_TOKEN"))
if err != nil {
log.Fatal(err)
return
}
core.bot = discord
}
func ListenLinuxMsg(discord *discordgo.Session, message *discordgo.MessageCreate) {
if message.Author.ID == discord.State.User.ID {
return
}
if strings.Contains(strings.ToLower(message.Content), "linux") {
_, e := discord.ChannelMessageSend(message.ChannelID, *core.spam)
if e != nil {
log.Fatal(e)
}
}
}