-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommand.Events.go
416 lines (347 loc) · 11.9 KB
/
command.Events.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
package main
import (
"fmt"
"strings"
"time"
"github.com/davecgh/go-spew/spew"
"github.com/lordmortis/DiscordDestinyInfo/discord"
"github.com/lordmortis/goBungieNet"
"github.com/bwmarrin/discordgo"
)
func init() {
discord.RegisterCommand("Events", "Tell me info about today/this week's events", handleEvents)
discord.RegisterCommand("WhatsOn", "Tell me info about today/this week's events", handleEvents)
discord.RegisterCommand("Xur", "Tell me info about Xur", handleXur)
discord.RegisterCommand("Nightfall", "Tell me info about this week's nightfall", handleNightfall)
discord.RegisterCommand("Flashpoint", "Tell me info about this week's flashpoint", handleFlashpoint)
discord.RegisterCommand("Meditations", "Tell me info about this week's meditations", handleMeditations)
discord.RegisterCommand("FactionRally", "Tell me info about the faction rally", handleFactionRally)
}
func fetchEventsAndDefinitions(languageCode string) (*map[uint32]goBungieNet.DestinyMilestone, *map[uint32]goBungieNet.DestinyMilestoneDefinition, error) {
milestones, err := goBungieNet.GetMilestones()
if err != nil {
return nil, nil, err
}
definitions := make(map[uint32]goBungieNet.DestinyMilestoneDefinition)
for key, milestone := range *milestones {
defn, err := milestone.Definition(languageCode)
if err != nil {
continue
}
definitions[key] = *defn
}
return milestones, &definitions, nil
}
func handleEvents(session *discordgo.Session, message *discordgo.Message, parameters string) {
channel, err := session.UserChannelCreate(message.Author.ID)
if err != nil {
discord.LogPMCreateError(message.Author)
return
}
discord.LogChatCommand(message.Author, "Events")
var milestones *map[uint32]goBungieNet.DestinyMilestone
var defns *map[uint32]goBungieNet.DestinyMilestoneDefinition
milestones, defns, err = fetchEventsAndDefinitions("en")
if err != nil {
discord.LogPMError(session, message.Author, channel, "Couldn't get milestone data: %s", err.Error())
return
}
msg := ""
_ = milestones
for key, defn := range *defns {
err = nil
var newMsg *string
milestone := (*milestones)[key]
switch defn.FriendlyName {
case "FactionRallyPledge", "FactionRallyWinAnnouncement":
// These just specify if the pledge is available and/or if the winner has been announced.
fallthrough
case "ClanProgress", "ClanObjectives":
// We ignore clan progress because it doesn't tell us much.
fallthrough
case "Raid":
// We ignore raid because it doesn't tell us much.
fallthrough
case "CallToArms", "Trials":
// We're ignoring these because they are there all the time and provide no info
// fallthrough
// case "FactionRally":
// I can't identify what the current faction rally is yet :/
case "Meditations":
newMsg, err = meditationsMessage(milestone, true)
case "Nightfall":
newMsg, err = nightfallMessage(milestone)
case "FactionRally":
fallthrough
case "Hotspot":
newMsg, err = hotspotMessage(milestone, defn)
case "":
// which one of these is it?
switch defn.DisplayProperties.Name {
case "Xûr":
newMsg = xurMessage(milestone.EndDate)
}
default:
err = dumpMilestoneData(milestone, defn)
}
if err != nil {
discord.LogPMError(session, message.Author, channel, err.Error())
msg += fmt.Sprintf("%s - error fetching data", defn.FriendlyName)
} else if newMsg != nil {
msg += fmt.Sprintf("%s\n\n", *newMsg)
}
}
msg = strings.TrimSuffix(msg, "\n")
session.ChannelMessageSend(message.ChannelID, msg)
}
func handleNightfall(session *discordgo.Session, message *discordgo.Message, parameters string) {
channel, err := session.UserChannelCreate(message.Author.ID)
if err != nil {
discord.LogPMCreateError(message.Author)
return
}
discord.LogChatCommand(message.Author, "Nightfall")
var milestones *map[uint32]goBungieNet.DestinyMilestone
var defns *map[uint32]goBungieNet.DestinyMilestoneDefinition
milestones, defns, err = fetchEventsAndDefinitions("en")
if err != nil {
discord.LogPMError(session, message.Author, channel, "Couldn't get milestone data: %s", err.Error())
return
}
var nightfallMilestone goBungieNet.DestinyMilestone
found := false
for key, defn := range *defns {
if defn.FriendlyName == "Nightfall" {
nightfallMilestone = ((*milestones)[key])
found = true
break
}
}
if !found {
session.ChannelMessageSend(message.ChannelID, "No Nightfall found")
}
var eventMsg *string
eventMsg, err = nightfallMessage(nightfallMilestone)
if err != nil {
discord.LogPMError(session, message.Author, channel, err.Error())
return
}
msg := "This week's nightfall is:\n"
msg += *eventMsg
session.ChannelMessageSend(message.ChannelID, msg)
}
func handleFlashpoint(session *discordgo.Session, message *discordgo.Message, parameters string) {
channel, err := session.UserChannelCreate(message.Author.ID)
if err != nil {
discord.LogPMCreateError(message.Author)
return
}
discord.LogChatCommand(message.Author, "Flashpoint")
var milestones *map[uint32]goBungieNet.DestinyMilestone
var defns *map[uint32]goBungieNet.DestinyMilestoneDefinition
milestones, defns, err = fetchEventsAndDefinitions("en")
if err != nil {
discord.LogPMError(session, message.Author, channel, "Couldn't get milestone data: %s", err.Error())
return
}
var milestone goBungieNet.DestinyMilestone
var milestoneDefn goBungieNet.DestinyMilestoneDefinition
found := false
for key, defn := range *defns {
if defn.FriendlyName == "Hotspot" {
milestone = ((*milestones)[key])
milestoneDefn = defn
found = true
break
}
}
if !found {
session.ChannelMessageSend(message.ChannelID, "No Nightfall found")
}
var eventMsg *string
eventMsg, err = hotspotMessage(milestone, milestoneDefn)
if err != nil {
discord.LogPMError(session, message.Author, channel, err.Error())
return
}
msg := "This week's flashpoint is:\n"
msg += *eventMsg
session.ChannelMessageSend(message.ChannelID, msg)
}
func handleXur(session *discordgo.Session, message *discordgo.Message, parameters string) {
channel, err := session.UserChannelCreate(message.Author.ID)
if err != nil {
discord.LogPMCreateError(message.Author)
return
}
discord.LogChatCommand(message.Author, "Xur")
var milestones *map[uint32]goBungieNet.DestinyMilestone
var defns *map[uint32]goBungieNet.DestinyMilestoneDefinition
milestones, defns, err = fetchEventsAndDefinitions("en")
if err != nil {
discord.LogPMError(session, message.Author, channel, "Couldn't get milestone data: %s", err.Error())
return
}
var milestone goBungieNet.DestinyMilestone
found := false
for key, defn := range *defns {
if defn.FriendlyName == "" && defn.DisplayProperties.Name == "Xûr" {
milestone = ((*milestones)[key])
found = true
break
}
}
if !found {
session.ChannelMessageSend(message.ChannelID, "Xur's not around?")
}
eventMsg := xurMessage(milestone.EndDate)
session.ChannelMessageSend(message.ChannelID, *eventMsg)
}
func handleMeditations(session *discordgo.Session, message *discordgo.Message, parameters string) {
channel, err := session.UserChannelCreate(message.Author.ID)
if err != nil {
discord.LogPMCreateError(message.Author)
return
}
discord.LogChatCommand(message.Author, "Meditations")
var milestones *map[uint32]goBungieNet.DestinyMilestone
var defns *map[uint32]goBungieNet.DestinyMilestoneDefinition
milestones, defns, err = fetchEventsAndDefinitions("en")
if err != nil {
discord.LogPMError(session, message.Author, channel, "Couldn't get milestone data: %s", err.Error())
return
}
var milestone goBungieNet.DestinyMilestone
found := false
for key, defn := range *defns {
if defn.FriendlyName == "Meditations" {
milestone = ((*milestones)[key])
found = true
break
}
}
if !found {
session.ChannelMessageSend(message.ChannelID, "No Meditations found")
}
var eventMsg *string
eventMsg, err = meditationsMessage(milestone, false)
if err != nil {
discord.LogPMError(session, message.Author, channel, err.Error())
return
}
msg := "This week's meditations are:\n"
msg += *eventMsg
session.ChannelMessageSend(message.ChannelID, msg)
}
func handleFactionRally(session *discordgo.Session, message *discordgo.Message, parameters string) {
channel, err := session.UserChannelCreate(message.Author.ID)
if err != nil {
discord.LogPMCreateError(message.Author)
return
}
discord.LogChatCommand(message.Author, "FactionRally")
var milestones *map[uint32]goBungieNet.DestinyMilestone
var defns *map[uint32]goBungieNet.DestinyMilestoneDefinition
milestones, defns, err = fetchEventsAndDefinitions("en")
if err != nil {
discord.LogPMError(session, message.Author, channel, "Couldn't get milestone data: %s", err.Error())
return
}
var dailyMilestone goBungieNet.DestinyMilestone
var dailyDefn goBungieNet.DestinyMilestoneDefinition
dailyFound := false
for key, defn := range *defns {
if defn.FriendlyName == "FactionRally" {
dailyMilestone = (*milestones)[key]
dailyDefn = defn
dailyFound = true
}
}
if !dailyFound {
session.ChannelMessageSend(message.ChannelID, "Faction Rally Events not running")
return
}
if dailyFound {
dailyMsg, err := hotspotMessage(dailyMilestone, dailyDefn)
if err == nil {
msg := "Faction rally is currently on, and the daily is: " + *dailyMsg
session.ChannelMessageSend(message.ChannelID, msg)
} else {
discord.LogPMError(session, message.Author, channel, "Couldn't set daily message: %s", err.Error())
}
}
}
func nightfallMessage(milestone goBungieNet.DestinyMilestone) (*string, error) {
nfQuestActivity := milestone.AvailableQuests[0].Activity
nfActDefn, err := nfQuestActivity.Definition("en")
if err != nil {
return nil, fmt.Errorf("Couldn't get activity definition: %s", err.Error())
}
var nfActModDefns *[]goBungieNet.DestinyActivityModifierDefinition
nfActModDefns, err = nfQuestActivity.Modifiers("en")
if err != nil {
return nil, fmt.Errorf("Couldn't get modifier definitions: %s", err.Error())
}
msg := fmt.Sprintf("%s - %s\n",
nfActDefn.DisplayProperties.Name,
nfActDefn.DisplayProperties.Description)
if len(*nfActModDefns) > 0 {
msg += "Modifiers\n"
for index, modifier := range *nfActModDefns {
if modifier.Redacted {
msg += fmt.Sprintf("%d. Redacted by Bungie :(\n", index+1)
} else {
msg += fmt.Sprintf("%d. %s %s\n", index+1, modifier.DisplayProperties.Name, modifier.DisplayProperties.Description)
}
}
}
msg = strings.TrimRight(msg, "\n")
return &msg, nil
}
func meditationsMessage(milestone goBungieNet.DestinyMilestone, preamble bool) (*string, error) {
activityHashes := make([]uint32, len(milestone.AvailableQuests))
for index, quest := range milestone.AvailableQuests {
activityHashes[index] = quest.Activity.ActivityHash
}
definitions, err := goBungieNet.ActivityDefinitions("en", activityHashes)
if err != nil {
return nil, fmt.Errorf("Couldn't get activity definitions: %s", err.Error())
}
if len(*definitions) == 0 {
msg := "No meditations found"
return &msg, nil
}
msg := ""
if preamble {
msg += "Meditations:\n"
}
for _, definition := range *definitions {
msg += fmt.Sprintf(
"%s - %s\n",
definition.DisplayProperties.Name,
definition.DisplayProperties.Description,
)
}
msg = strings.TrimRight(msg, "\n")
return &msg, nil
}
func xurMessage(xurVanish time.Time) *string {
amsg := "Xûr will be around for another "
now := time.Now().UTC()
amsg += friendlyDuration(xurVanish.Sub(now))
return &amsg
}
func hotspotMessage(milestone goBungieNet.DestinyMilestone, definition goBungieNet.DestinyMilestoneDefinition) (*string, error) {
questDefn := definition.Quests[milestone.AvailableQuests[0].QuestItemHash]
msg := fmt.Sprintf("%s - %s", questDefn.DisplayProperties.Name, questDefn.DisplayProperties.Description)
return &msg, nil
}
func dumpMilestoneData(milestone goBungieNet.DestinyMilestone, definition goBungieNet.DestinyMilestoneDefinition) error {
fmt.Printf("Dump of %s\n", definition.FriendlyName)
fmt.Print("Milestone:\n")
spew.Dump(milestone)
fmt.Print("\nDefinition:\n")
spew.Dump(definition)
fmt.Printf("\n")
return nil
}