-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
314 lines (260 loc) · 8.76 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
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
package main
import (
"fmt"
"log"
"regexp"
"strings"
"github.com/bwmarrin/discordgo"
"github.com/gocolly/colly/v2"
)
var sess *discordgo.Session
// Create a collection to store the discord key
type Secrets struct {
DiscordKey string `json:"discordKey"`
}
type SetupData struct {
Mode string `json:"mode"`
UserID string `json:"userID"`
SelectedChannelID string `json:"selectedChannelID"`
MediumCategory string `json:"mediumCategory"`
HourToSend string `json:"hourToSend"`
PreviousArticle string `json:"previousArticle"`
}
type Embed struct {
Title string `json:"title"`
Description string `json:"description"`
CustomID string `json:"customID"`
}
type MediumCategories struct {
MC []string `json:"mc"`
}
type EmbedsMap map[string]Embed
const (
EMBEDS_SOURCE = "embeds.json"
CONFIG_SOURCE = "setup-data.json"
CATEGORIES_SOURCE = "medium-categories.json"
)
func setupEmbed(s *discordgo.Session, i *discordgo.InteractionCreate) {
components := make([]discordgo.MessageComponent, 0)
components = append(components, discordgo.ActionsRow{
Components: []discordgo.MessageComponent{
&discordgo.Button{
Label: "Private Message Mode",
Style: discordgo.PrimaryButton,
CustomID: "private_message_mode",
},
&discordgo.Button{
Label: "Channel Mode",
Style: discordgo.SecondaryButton,
CustomID: "channel_mode",
},
},
})
embed := &discordgo.MessageEmbed{
Title: "Medium Daily Configuration",
Description: "Choose your options for your daily articles.",
Fields: []*discordgo.MessageEmbedField{
{
Name: "Private Message Mode",
Value: "Send articles inside your DM",
Inline: true,
},
{
Name: "Channel Mode",
Value: "Send articles inside a custom channel",
Inline: true,
},
},
}
s.InteractionRespond(i.Interaction, &discordgo.InteractionResponse{
Type: discordgo.InteractionResponseChannelMessageWithSource,
Data: &discordgo.InteractionResponseData{
Embeds: []*discordgo.MessageEmbed{embed},
Components: components,
},
})
}
func searchArticle(channelID string, tag *string) string {
var href = ""
var setupData SetupData
deserializeData(CONFIG_SOURCE, &setupData)
c := colly.NewCollector()
c.OnRequest(func(r *colly.Request) {
log.Printf("Visiting %s", r.URL)
})
c.OnResponse(func(r *colly.Response) {
log.Printf("Got response from %s: %d", r.Request.URL, r.StatusCode)
})
var hrefSlice []string
re := regexp.MustCompile(`\d+\s*(?:h(?:ours?)?|d(?:ays?)?)\s*ago`)
c.OnHTML("span", func(e *colly.HTMLElement) {
if re.MatchString(e.Text) {
// Search <a> elements inside parent
a := e.DOM.ParentsUntil("body").Filter("a").First()
// If no <a> parent is found, then search inside next ones
if a.Length() == 0 {
a = e.DOM.ParentsUntil("body").Find("a").First()
}
if href_, exists := a.Attr("href"); exists {
long_href := e.Request.AbsoluteURL(href_)
href := strings.Split(long_href, "?source")[0]
hrefSlice = append(hrefSlice, href)
}
}
})
c.OnError(func(r *colly.Response, err error) {
log.Println("Request URL:", r.Request.URL, "failed with response:", r, "\nError:", err)
})
var mc = setupData.MediumCategory
log.Println(mc)
var url string
if tag == nil {
mc = strings.Replace(mc, " ", "-", -1)
url = "https://medium.com/tag/" + mc + "/archive"
} else {
url = "https://medium.com/tag/" + *tag + "/archive"
}
err := c.Visit(url)
if err != nil {
log.Printf("Error visiting URL: %v", err)
}
for _, value := range hrefSlice {
if setupData.PreviousArticle == "" || !strings.Contains(value, setupData.PreviousArticle) {
setupData.PreviousArticle = value
serializeData(CONFIG_SOURCE, setupData)
return value
}
}
fmt.Print(href)
return href
}
func main() {
var secrets Secrets
deserializeData("secrets.json", &secrets)
var err error
sess, err = discordgo.New("Bot " + secrets.DiscordKey) // Use the global sess
if err != nil {
log.Fatal(err)
}
// Registers a callback function to handle incoming Discord messages, where `s` represents the current session and `m` represents the created message event.
sess.AddHandler(func(s *discordgo.Session, m *discordgo.MessageCreate) {
if m.Author.ID == s.State.User.ID {
return
}
if m.Content == "!daily" {
s.ChannelMessageSend(m.ChannelID, searchArticle(m.ChannelID, nil))
}
})
// Define the new slash command.
var (
dailyCommand = &discordgo.ApplicationCommand{
Name: "daily",
Description: "Responds with a daily article.",
Options: []*discordgo.ApplicationCommandOption{
{
Type: discordgo.ApplicationCommandOptionString,
Name: "tag",
Description: "Search articles by tag (e.g: redis, golang, javascript)",
Required: false,
},
},
}
setupCommand = &discordgo.ApplicationCommand{
Name: "setup",
Description: "Sets up your daily preferences.",
}
)
sess.AddHandler(func(s *discordgo.Session, r *discordgo.Ready) {
fmt.Printf("Online!")
// Register the command for the guild (server).
_, errCommand := sess.ApplicationCommandCreate(sess.State.Application.ID, "", dailyCommand)
if errCommand != nil {
log.Fatalf("Cannot create slash command: %v", errCommand)
}
_, errSetupCommand := sess.ApplicationCommandCreate(sess.State.Application.ID, "", setupCommand)
if errSetupCommand != nil {
log.Fatalf("Cannot create slash command: %v", errSetupCommand)
}
})
// Interactions Management like clicks on buttons
sess.AddHandler(func(s *discordgo.Session, i *discordgo.InteractionCreate) {
if i.Type == discordgo.InteractionMessageComponent {
// Use i.MessageComponentData().CustomID to identify the clicked button
var embed EmbedsMap
var setupData SetupData
deserializeData(EMBEDS_SOURCE, &embed)
var responseSelected string
if len(i.MessageComponentData().Values) > 0 {
responseSelected = i.MessageComponentData().Values[0]
}
deserializeData(CONFIG_SOURCE, &setupData)
switch i.MessageComponentData().CustomID {
case "private_message_mode":
categories_embed := embed["medium_category"]
mediumCatList := retrieveMediumCategories().MediumCategories
updateEmbed(s, i, categories_embed.Title, categories_embed.Description, categories_embed.CustomID, mediumCatList)
setupData.Mode = i.MessageComponentData().CustomID
serializeData(CONFIG_SOURCE, setupData)
case "channel_mode":
config_embed := embed["channel_config"]
updateEmbed(s, i, config_embed.Title, config_embed.Description, config_embed.CustomID, retrieveChannels(s, i))
setupData.Mode = i.MessageComponentData().CustomID
serializeData(CONFIG_SOURCE, setupData)
case "channel_config":
categories_embed := embed["medium_category"]
mediumCatList := retrieveMediumCategories().MediumCategories
updateEmbed(s, i, categories_embed.Title, categories_embed.Description, categories_embed.CustomID, mediumCatList)
setupData.SelectedChannelID, _ = findChannelIDByName(i.GuildID, responseSelected)
serializeData(CONFIG_SOURCE, setupData)
case "medium_category":
time_embed := embed["time_config"]
updateEmbed(s, i, time_embed.Title, time_embed.Description, time_embed.CustomID, retrieveDayHours())
setupData.MediumCategory = responseSelected
serializeData(CONFIG_SOURCE, setupData)
case "time_config":
setupData.HourToSend = responseSelected
setupData.UserID = i.Interaction.Member.User.ID
serializeData(CONFIG_SOURCE, setupData)
s.ChannelMessageSend(i.ChannelID, "Configuration complete!")
removeEmbed(s, i)
sendArticle()
}
// Acknowledge the interaction
err := s.InteractionRespond(i.Interaction, &discordgo.InteractionResponse{
Type: discordgo.InteractionResponseChannelMessageWithSource,
})
if err != nil {
log.Println("Erreur lors de l'envoi de l'acknowledgement:", err)
return
}
}
})
// Add the handler for the newly created command.
sess.AddHandler(func(s *discordgo.Session, i *discordgo.InteractionCreate) {
if i.Type == discordgo.InteractionApplicationCommand {
if i.ApplicationCommandData().Name == "daily" {
options := i.ApplicationCommandData().Options
var tag string
if len(options) > 0 {
tag = options[0].StringValue()
}
s.InteractionRespond(i.Interaction, &discordgo.InteractionResponse{
Type: discordgo.InteractionResponseChannelMessageWithSource,
Data: &discordgo.InteractionResponseData{
Content: searchArticle(i.ChannelID, &tag),
},
})
} else if i.ApplicationCommandData().Name == "setup" {
setupEmbed(s, i)
}
}
})
sess.Identify.Intents = discordgo.IntentsAllWithoutPrivileged
err = sess.Open()
if err != nil {
log.Fatal(err)
}
// Ensures that function call is executed just before the main exits, used for cleanup task.
defer sess.Close()
waitForInterrupt()
}