-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathEvents.cs
636 lines (525 loc) · 25.2 KB
/
Events.cs
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
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using Discord;
using Discord.WebSocket;
using Valkyrja.core;
using Discord.Net;
using guid = System.UInt64;
namespace Valkyrja.entities
{
public class Events
{
private ValkyrjaClient Client;
/// <summary> Triggers only once, as soon as the client connects for the first time. Consider using IModule.Init instead. </summary>
public Func<Task> Initialize = null;
/// <summary> Triggers after every re-connect (including the first connect) </summary>
public Func<Task> Connected = null;
/// <summary> Triggers every disconnect </summary>
public Func<Exception, Task> Disconnected = null;
// This is probably useless and doesn't have to be public, we have the above...
internal Func<Task> Ready = null;
/// <summary> Log entry was added. </summary>
public Func<LogEntry, Task> LogEntryAdded = null;
/// <summary> Exception was added. Don't call this event directly, call ValkyrjaClient.LogException </summary>
public Func<ExceptionEntry, Task> Exception = null;
public Func<SocketGuild, Task> JoinedGuild = null;
public Func<SocketGuild, Task> LeftGuild = null;
public Func<SocketGuild, Task> GuildAvailable = null;
public Func<SocketGuild, Task> GuildUnavailable = null;
public Func<SocketGuild, SocketGuild, Task> GuildUpdated = null;
public Func<SocketGuild, Task> GuildMembersDownloaded = null;
public Func<SocketGuildUser, SocketGuildUser, Task> GuildMemberUpdated = null;
public Func<SocketRole, Task> RoleCreated = null;
public Func<SocketRole, SocketRole, Task> RoleUpdated = null;
public Func<SocketRole, Task> RoleDeleted = null;
public Func<SocketChannel, Task> ChannelCreated = null;
public Func<SocketChannel, SocketChannel, Task> ChannelUpdated = null;
public Func<SocketChannel, Task> ChannelDestroyed = null;
public Func<SocketMessage, Task> MessageReceived = null;
/// <summary> Expects true to cancel the execution of other message events. </summary>
public Func<SocketMessage, Task<bool>> PriorityMessageReceived = null;
public Func<IMessage, SocketMessage, ISocketMessageChannel, Task> MessageUpdated = null;
public Func<IMessage, IMessageChannel, Task> MessageDeleted = null;
public Func<IUserMessage, IMessageChannel, SocketReaction, Task> ReactionAdded = null;
public Func<IUserMessage, IMessageChannel, SocketReaction, Task> ReactionRemoved = null;
public Func<IUserMessage, IMessageChannel, Task> ReactionsCleared = null;
public Func<SocketMessageComponent, Task> DropdownSelected = null;
public Func<SocketGuildUser, Task> UserJoined = null;
public Func<SocketGuild, SocketUser, Task> UserLeft = null;
public Func<IUser, IMessageChannel, Task> UserTyping = null;
public Func<SocketUser, SocketUser, Task> UserUpdated = null;
public Func<SocketUser, SocketVoiceState, SocketVoiceState, Task> UserVoiceStateUpdated = null;
public Func<SocketUser, SocketGuild, Task> UserBanned = null;
public Func<SocketUser, SocketGuild, Task> UserUnbanned = null;
/// <summary> An event used to pass a ban instruction to the responsible module.
/// This will merely record the ban into the database, without actually banning them. <br />
/// <see cref="T:guid" />: Server on which to ban. <br />
/// <see cref="T:guid" />: User to be banned. <br />
/// <see cref="T:TimeSpan" />: Duration of the ban. <br />
/// <see cref="T:string" />: Reason for the ban. </summary>
public Func<guid, guid, TimeSpan, string, Task> AddBan = null;
/// <summary> An event used to pass a ban instruction to the responsible module. <br />
/// <see cref="T:Server" />: Server on which to ban. <br />
/// <see cref="T:UserData" />: Users to be banned. <br />
/// <see cref="T:TimeSpan" />: Duration of the ban. <br />
/// <see cref="T:string" />: Reason for the ban. <br />
/// <see cref="T:SocketGuildUser" />: Who issued the ban. <br />
/// <see cref="T:bool" />: Silent? True to not PM the users. <br />
/// <see cref="T:bool" />: True to prune recent messages. </summary>
public Func<Server, UserData, TimeSpan, string, SocketGuildUser, bool, bool, Task> BanUser = null;
/// <summary> An event used to pass a ban instruction to the responsible module. <br />
/// <see cref="T:Server" />: Server on which to ban. <br />
/// <see cref="T:List{UserData}" />: Users to be banned. <br />
/// <see cref="T:TimeSpan" />: Duration of the ban. <br />
/// <see cref="T:string" />: Reason for the ban. <br />
/// <see cref="T:SocketGuildUser" />: Who issued the ban. <br />
/// <see cref="T:bool" />: Silent? True to not PM the users. <br />
/// <see cref="T:bool" />: True to prune recent messages. <br />
/// <see cref="T:bool" />: True for redacted user ID and discrim. </summary>
public Func<Server, List<UserData>, TimeSpan, string, SocketGuildUser, bool, bool, bool, Task> BanUsers = null;
/// <summary> An event used to pass an unban instruction to the responsible module. <br />
/// <see cref="T:Server" />: Server on which to unban. <br />
/// <see cref="T:List{UserData}" />: Users to be unbanned. <br />
/// <see cref="T:SocketGuildUser" />: Who issued the unban. </summary>
public Func<Server, List<UserData>, SocketGuildUser, Task> UnBanUsers = null;
/// <summary> An event used to pass a mute instruction to the responsible module. <br />
/// <see cref="T:Server" />: Server on which to mute. <br />
/// <see cref="T:List{UserData}" />: User to be muted. <br />
/// <see cref="T:TimeSpan" />: Duration of the mute. <br />
/// <see cref="T:IRole" />: MutedRole. <br />
/// <see cref="T:SocketGuildUser" />: Who issued the mute. <br />
/// <see cref="T:string" />: Reason for the mute. </summary>
public Func<Server, UserData, TimeSpan, IRole, SocketGuildUser, string, Task> MuteUser = null;
/// <summary> An event used to pass a mute instruction to the responsible module. <br />
/// <see cref="T:Server" />: Server on which to mute. <br />
/// <see cref="T:List{UserData}" />: Users to be muted. <br />
/// <see cref="T:TimeSpan" />: Duration of the mute. <br />
/// <see cref="T:IRole" />: MutedRole. <br />
/// <see cref="T:SocketGuildUser" />: Who issued the mute. <br />
/// <see cref="T:string" />: Reason for the mute. </summary>
public Func<Server, List<UserData>, TimeSpan, IRole, SocketGuildUser, string, Task> MuteUsers = null;
/// <summary> An event used to pass a mute instruction to the responsible module. <br />
/// <see cref="T:Server" />: Server on which to mute. <br />
/// <see cref="T:List{UserData}" />: Users to be muted. <br />
/// <see cref="T:IRole" />: MutedRole. <br />
/// <see cref="T:SocketGuildUser" />: Who issued the unmute. </summary>
public Func<Server, List<UserData>, IRole, SocketGuildUser, Task> UnMuteUsers = null;
/// <summary> An event used to pass a logMessage instruction to the responsible module. <br />
/// <see cref="T:Server" />: Server on which to log. <br />
/// <see cref="T:string" />: User name(s) <br />
/// <see cref="T:guid" />: User id(s) <br />
/// <see cref="T:string" />: Warning message. <br />
/// <see cref="T:SocketGuildUser" />: User who issued the kick. </summary>
public Func<Server, List<string>, List<guid>, string, SocketGuildUser, Task> LogWarning = null;
/// <summary> An event used to pass a logMessage instruction to the responsible module. <br />
/// <see cref="T:Server" />: Server on which to log. <br />
/// <see cref="T:string" />: Banned user name. <br />
/// <see cref="T:guid" />: Banned user id. <br />
/// <see cref="T:string" />: Ban reason. <br />
/// <see cref="T:string" />: Ban duration. <br />
/// <see cref="T:SocketGuildUser" />: User who issued the ban. </summary>
public Func<Server, string, guid, string, string, SocketGuildUser, Task> LogBan = null;
/// <summary> An event used to pass a logMessage instruction to the responsible module. <br />
/// <see cref="T:Server" />: Server on which to log. <br />
/// <see cref="T:string" />: Banned user name. <br />
/// <see cref="T:guid" />: Banned user id. <br />
/// <see cref="T:SocketGuildUser" />: User who issued the unban. </summary>
public Func<Server, string, guid, SocketGuildUser, Task> LogUnban = null;
/// <summary> An event used to pass a logMessage instruction to the responsible module. <br />
/// <see cref="T:Server" />: Server on which to log. <br />
/// <see cref="T:string" />: Kicked user name. <br />
/// <see cref="T:guid" />: Kicked user id. <br />
/// <see cref="T:string" />: Kick reason. <br />
/// <see cref="T:SocketGuildUser" />: User who issued the kick. </summary>
public Func<Server, string, guid, string, SocketGuildUser, Task> LogKick = null;
/// <summary> An event used to pass a logMessage instruction to the responsible module. <br />
/// <see cref="T:Server" />: Server on which to log. <br />
/// <see cref="T:IGuildUser" />: Muted user. <br />
/// <see cref="T:string" />: Mute duration. <br />
/// <see cref="T:SocketGuildUser" />: Who issued the mute. <br />
/// <see cref="T:string" />: Reason for the mute. </summary>
public Func<Server, IGuildUser, string, SocketGuildUser, string, Task> LogMute = null;
/// <summary> An event used to pass a logMessage instruction to the responsible module. <br />
/// <see cref="T:Server" />: Server on which to log. <br />
/// <see cref="T:IGuildUser" />: Muted user. <br />
/// <see cref="T:SocketGuildUser" />: User who issued the unmute. </summary>
public Func<Server, IGuildUser, SocketGuildUser, Task> LogUnmute = null;
/// <summary> An event used to pass a logMessage instruction to the responsible module. <br />
/// <see cref="T:Server" />: Server on which to log. <br />
/// <see cref="T:SocketGuildChannel" />: Muted channel. <br />
/// <see cref="T:string" />: Mute duration. <br />
/// <see cref="T:SocketGuildUser" />: User who issued the mute. </summary>
public Func<Server, SocketGuildChannel, string, SocketGuildUser, Task> LogMutedChannel = null;
/// <summary> An event used to pass a logMessage instruction to the responsible module. <br />
/// <see cref="T:Server" />: Server on which to log. <br />
/// <see cref="T:SocketGuildChannel" />: Muted channel. <br />
/// <see cref="T:SocketGuildUser" />: User who issued the unmute. </summary>
public Func<Server, SocketGuildChannel, SocketUser, Task> LogUnmutedChannel = null;
/// <summary> An event used to pass a logMessage instruction to the responsible module. <br />
/// <see cref="T:Server" />: Server on which to log. <br />
/// <see cref="T:IGuildUser" />: User who was promoted. <br />
/// <see cref="T:string" />: Name of the role. <br />
/// <see cref="T:SocketGuildUser" />: User who issued the promote. </summary>
public Func<Server, IGuildUser, string, SocketGuildUser, Task> LogPromote = null;
/// <summary> An event used to pass a logMessage instruction to the responsible module. <br />
/// <see cref="T:Server" />: Server on which to log. <br />
/// <see cref="T:IGuildUser" />: User who was demoted. <br />
/// <see cref="T:string" />: Name of the role. <br />
/// <see cref="T:SocketGuildUser" />: User who issued the demote. </summary>
public Func<Server, IGuildUser, string, SocketGuildUser, Task> LogDemote = null;
/// <summary> An event used to pass a logMessage instruction to the responsible module. <br />
/// <see cref="T:Server" />: Server on which to log. <br />
/// <see cref="T:SocketGuildUser" />: User who joined a role. <br />
/// <see cref="T:string" />: Name of the role. </summary>
public Func<Server, SocketGuildUser, string, Task> LogPublicRoleJoin = null;
/// <summary> An event used to pass a logMessage instruction to the responsible module. <br />
/// <see cref="T:Server" />: Server on which to log. <br />
/// <see cref="T:SocketGuildUser" />: User who left a role. <br />
/// <see cref="T:string" />: Name of the role. </summary>
public Func<Server, SocketGuildUser, string, Task> LogPublicRoleLeave = null;
public Events(DiscordSocketClient discordClient, ValkyrjaClient valkyrjaClient)
{
this.Client = valkyrjaClient;
discordClient.Log += OnLogEntryAdded;
discordClient.JoinedGuild += OnGuildJoined;
discordClient.LeftGuild += OnGuildLeft;
discordClient.GuildAvailable += OnGuildAvailable;
discordClient.GuildUnavailable += OnGuildUnavailable;
discordClient.GuildUpdated += OnGuildUpdated;
discordClient.GuildMembersDownloaded += OnGuildMembersDownloaded;
discordClient.GuildMemberUpdated += OnGuildMemberUpdated;
discordClient.RoleCreated += OnRoleCreated;
discordClient.RoleUpdated += OnRoleUpdated;
discordClient.RoleDeleted += OnRoleDeleted;
discordClient.ChannelCreated += OnChannelCreated;
discordClient.ChannelUpdated += OnChannelUpdated;
discordClient.ChannelDestroyed += OnChannelDestroyed;
discordClient.MessageReceived += OnMessageReceived;
discordClient.MessageUpdated += OnMessageUpdated;
discordClient.MessageDeleted += OnMessageDeleted;
discordClient.ReactionAdded += OnReactionAdded;
discordClient.ReactionRemoved += OnReactionRemoved;
discordClient.ReactionsCleared += OnReactionsCleared;
discordClient.SelectMenuExecuted += OnDropdownSelected;
discordClient.UserJoined += OnUserJoined;
discordClient.UserLeft += OnUserLeft;
discordClient.UserIsTyping += OnUserTyping;
discordClient.UserUpdated += OnUserUpdated;
discordClient.UserVoiceStateUpdated += OnUserVoiceStateUpdated;
discordClient.UserBanned += OnUserBanned;
discordClient.UserUnbanned += OnUserUnbanned;
}
private Task OnLogEntryAdded(LogMessage logMessage)
{
if( logMessage.Exception != null )
{
if( this.Exception != null && logMessage.Exception.Message != "Server requested a reconnect" &&
logMessage.Exception.Message != "Server missed last heartbeat" &&
logMessage.Exception.Message != "WebSocket connection was closed" )
{
ExceptionEntry exceptionEntry = new ExceptionEntry();
exceptionEntry.Message = logMessage.Exception.Message;
exceptionEntry.Stack = logMessage.Exception.StackTrace;
exceptionEntry.Data = "D.NET Message: " + logMessage.Message + "\n--Source: " + logMessage.Source;
Task.Run(async () => await this.Exception(exceptionEntry));
}
return Task.CompletedTask;
}
if( this.LogEntryAdded == null )
return Task.CompletedTask;
LogEntry logEntry = new LogEntry();
logEntry.Type = LogType.Debug;
logEntry.Message = "D.NET Message: " + logMessage.Message + "\n--Source: " + logMessage.Source;
Task.Run(async () => await this.LogEntryAdded(logEntry));
return Task.CompletedTask;
}
//Guild events
private Task OnGuildJoined(SocketGuild guild)
{
if( this.JoinedGuild == null )
return Task.CompletedTask;
Task.Run(async () => await this.JoinedGuild(guild));
return Task.CompletedTask;
}
private Task OnGuildLeft(SocketGuild guild)
{
if( this.LeftGuild == null )
return Task.CompletedTask;
Task.Run(async () => await this.LeftGuild(guild));
return Task.CompletedTask;
}
private Task OnGuildAvailable(SocketGuild guild)
{
if( this.GuildAvailable == null )
return Task.CompletedTask;
Task.Run(async () => await this.GuildAvailable(guild));
return Task.CompletedTask;
}
private Task OnGuildUnavailable(SocketGuild guild)
{
if( this.GuildUnavailable == null )
return Task.CompletedTask;
Task.Run(async () => await this.GuildUnavailable(guild));
return Task.CompletedTask;
}
private Task OnGuildUpdated(SocketGuild originalGuild, SocketGuild updatedGuild)
{
if( this.GuildUpdated == null )
return Task.CompletedTask;
Task.Run(async () => await this.GuildUpdated(originalGuild, updatedGuild));
return Task.CompletedTask;
}
private Task OnGuildMembersDownloaded(SocketGuild guild)
{
if( this.GuildMembersDownloaded == null )
return Task.CompletedTask;
Task.Run(async () => await this.GuildMembersDownloaded(guild));
return Task.CompletedTask;
}
//Role events
private Task OnRoleCreated(SocketRole role)
{
if( this.RoleCreated == null )
return Task.CompletedTask;
Task.Run(async () => await this.RoleCreated(role));
return Task.CompletedTask;
}
private Task OnRoleUpdated(SocketRole originalRole, SocketRole updatedRole)
{
if( this.RoleUpdated == null )
return Task.CompletedTask;
Task.Run(async () => await this.RoleUpdated(originalRole, updatedRole));
return Task.CompletedTask;
}
private Task OnRoleDeleted(SocketRole role)
{
if( this.RoleDeleted == null )
return Task.CompletedTask;
Task.Run(async () => await this.RoleDeleted(role));
return Task.CompletedTask;
}
//Channel events
private Task OnChannelCreated(SocketChannel channel)
{
if( this.ChannelCreated == null )
return Task.CompletedTask;
Task.Run(async () => await this.ChannelCreated(channel));
return Task.CompletedTask;
}
private Task OnChannelUpdated(SocketChannel originalChannel, SocketChannel updatedChannel)
{
if( this.ChannelUpdated == null )
return Task.CompletedTask;
Task.Run(async () => await this.ChannelUpdated(originalChannel, updatedChannel));
return Task.CompletedTask;
}
private Task OnChannelDestroyed(SocketChannel channel)
{
if( this.ChannelDestroyed == null )
return Task.CompletedTask;
Task.Run(async () => await this.ChannelDestroyed(channel));
return Task.CompletedTask;
}
//Message events
private Task OnMessageReceived(SocketMessage message)
{
DateTime startTime = DateTime.UtcNow;
if( this.Client.GlobalConfig.LogDebug )
Console.WriteLine($"ValkyrjaClient: [EVENT] MessageReceived: {message.Id}");
this.Client.Monitoring.Messages.Inc();
if( this.Client.GlobalConfig.LogDebug )
Console.WriteLine($"ValkyrjaClient: [EVENT] MessageReceived: {message.Id} | Monitoring took {(DateTime.UtcNow - startTime).Milliseconds}ms");
if( this.PriorityMessageReceived != null && this.PriorityMessageReceived(message).GetAwaiter().GetResult() )
return Task.CompletedTask;
if( this.Client.GlobalConfig.LogDebug )
Console.WriteLine($"ValkyrjaClient: [EVENT] MessageReceived: {message.Id} | Priority took {(DateTime.UtcNow - startTime).Milliseconds}ms");
if( this.MessageReceived != null )
Task.Run(async () => await TriggerMessageReceivedEvent(message));
return Task.CompletedTask;
}
private async Task TriggerMessageReceivedEvent(SocketMessage message)
{
try
{
await this.MessageReceived(message);
}
catch(Exception exception)
{
await this.Client.LogException(exception, $"--MessageId: {message.Id}\n--ChannelId: {message.Channel.Id}\n--Content: {message.Content}");
}
}
private Task OnMessageUpdated(Cacheable<IMessage, ulong> originalMessage, SocketMessage updatedMessage, ISocketMessageChannel channel)
{
if( this.MessageUpdated == null )
return Task.CompletedTask;
this.Client.Monitoring.Messages.Inc();
IMessage msg = null;
if( channel is SocketGuildChannel guildChannel && guildChannel.Guild.CurrentUser.GuildPermissions.ReadMessageHistory )
msg = originalMessage.GetOrDownloadAsync().GetAwaiter().GetResult();
Task.Run(async () => await this.MessageUpdated(msg, updatedMessage, channel));
return Task.CompletedTask;
}
private Task OnMessageDeleted(Cacheable<IMessage, ulong> originalMessage, Cacheable<IMessageChannel, ulong> channel)
{
if( this.MessageDeleted == null )
return Task.CompletedTask;
IMessage msg = null;
SocketGuildChannel c = channel.Value as SocketGuildChannel;
if( c == null || !this.Client.Servers.ContainsKey(c.Guild.Id) )
return Task.CompletedTask;
try
{
msg = originalMessage.HasValue ? originalMessage.Value : null;
}
catch( HttpException e )
{
this.Client.Servers[c.Guild.Id].HandleHttpException(e, $"I couldn't read messages in <#{c.Id}>, please ensure that I have `ReadMessageHistory`!").GetAwaiter().GetResult();
}
catch( Exception e )
{
this.Client.LogException(e, "Event Exception", c.Guild.Id).GetAwaiter().GetResult();
}
if( msg != null )
Task.Run(async () => await this.MessageDeleted(msg, channel.Value));
return Task.CompletedTask;
}
//Reaction events
private Task OnReactionAdded(Cacheable<IUserMessage, ulong> originalMessage, Cacheable<IMessageChannel, ulong> channel, SocketReaction reaction)
{
if( this.ReactionAdded == null )
return Task.CompletedTask;
IUserMessage msg = null;
SocketGuildChannel c = channel.Value as SocketGuildChannel;
if( c == null || !this.Client.Servers.ContainsKey(c.Guild.Id) )
return Task.CompletedTask;
try
{
msg = originalMessage.GetOrDownloadAsync().GetAwaiter().GetResult();
}
catch( HttpException e )
{
this.Client.Servers[c.Guild.Id].HandleHttpException(e, $"I couldn't read messages in <#{c.Id}>, please ensure that I have `ReadMessageHistory`!").GetAwaiter().GetResult();
}
catch( Exception e )
{
this.Client.LogException(e, "Event Exception", c.Guild.Id).GetAwaiter().GetResult();
}
if( msg != null )
Task.Run(async () => await this.ReactionAdded(msg, channel.Value, reaction));
return Task.CompletedTask;
}
private Task OnReactionRemoved(Cacheable<IUserMessage, ulong> originalMessage, Cacheable<IMessageChannel, ulong> channel, SocketReaction reaction)
{
if( this.ReactionRemoved == null )
return Task.CompletedTask;
IUserMessage msg = null;
SocketGuildChannel c = channel.Value as SocketGuildChannel;
if( c == null || !this.Client.Servers.ContainsKey(c.Guild.Id) )
return Task.CompletedTask;
try
{
msg = originalMessage.GetOrDownloadAsync().GetAwaiter().GetResult();
}
catch( HttpException e )
{
this.Client.Servers[c.Guild.Id].HandleHttpException(e, $"I couldn't read messages in <#{c.Id}>, please ensure that I have `ReadMessageHistory`!").GetAwaiter().GetResult();
}
catch( Exception e )
{
this.Client.LogException(e, "Event Exception", c.Guild.Id).GetAwaiter().GetResult();
}
if( msg != null )
Task.Run(async () => await this.ReactionRemoved(msg, channel.Value, reaction));
return Task.CompletedTask;
}
private Task OnReactionsCleared(Cacheable<IUserMessage, ulong> originalMessage, Cacheable<IMessageChannel, ulong> channel)
{
if( this.ReactionsCleared == null )
return Task.CompletedTask;
IUserMessage msg = null;
SocketGuildChannel c = channel.Value as SocketGuildChannel;
if( c == null || !this.Client.Servers.ContainsKey(c.Guild.Id) )
return Task.CompletedTask;
try
{
msg = originalMessage.GetOrDownloadAsync().GetAwaiter().GetResult();
}
catch( HttpException e )
{
this.Client.Servers[c.Guild.Id].HandleHttpException(e, $"I couldn't read messages in <#{c.Id}>, please ensure that I have `ReadMessageHistory`!").GetAwaiter().GetResult();
}
catch( Exception e )
{
this.Client.LogException(e, "Event Exception", c.Guild.Id).GetAwaiter().GetResult();
}
if( msg != null )
Task.Run(async () => await this.ReactionsCleared(msg, channel.Value));
return Task.CompletedTask;
}
private Task OnDropdownSelected(SocketMessageComponent component)
{
if( component?.User == null || component.ApplicationId != this.Client.DiscordClient.CurrentUser.Id || component.Data.Type != ComponentType.SelectMenu)
return Task.CompletedTask;
Task.Run(async() => await this.DropdownSelected(component));
return Task.CompletedTask;
}
//User events
private Task OnUserJoined(SocketGuildUser user)
{
if( this.UserJoined == null )
return Task.CompletedTask;
Task.Run(async () => await this.UserJoined(user));
return Task.CompletedTask;
}
private Task OnUserLeft(SocketGuild guild, SocketUser user)
{
if( this.UserLeft == null )
return Task.CompletedTask;
Task.Run(async () => await this.UserLeft(guild, user));
return Task.CompletedTask;
}
private Task OnUserTyping(Cacheable<IUser, ulong> user, Cacheable<IMessageChannel, ulong> channel)
{
if( this.UserTyping == null || !user.HasValue || !channel.HasValue )
return Task.CompletedTask;
Task.Run(async () => await this.UserTyping(user.Value, channel.Value));
return Task.CompletedTask;
}
private Task OnUserUpdated(SocketUser originalUser, SocketUser updatedUser)
{
if( this.UserUpdated == null )
return Task.CompletedTask;
Task.Run(async () => await this.UserUpdated(originalUser, updatedUser));
return Task.CompletedTask;
}
private Task OnGuildMemberUpdated(Cacheable<SocketGuildUser, ulong> originalUser, SocketGuildUser updatedUser)
{
if( this.GuildMemberUpdated == null || !originalUser.HasValue )
return Task.CompletedTask;
Task.Run(async () => await this.GuildMemberUpdated(originalUser.Value, updatedUser));
return Task.CompletedTask;
}
private Task OnUserVoiceStateUpdated(SocketUser user, SocketVoiceState originalState, SocketVoiceState updatedState)
{
if( this.UserVoiceStateUpdated == null )
return Task.CompletedTask;
Task.Run(async () => await this.UserVoiceStateUpdated(user, originalState, updatedState));
return Task.CompletedTask;
}
private Task OnUserBanned(SocketUser user, SocketGuild guild)
{
if( this.UserBanned == null )
return Task.CompletedTask;
Task.Run(async () => await this.UserBanned(user, guild));
return Task.CompletedTask;
}
private Task OnUserUnbanned(SocketUser user, SocketGuild guild)
{
if( this.UserUnbanned == null )
return Task.CompletedTask;
Task.Run(async () => await this.UserUnbanned(user, guild));
return Task.CompletedTask;
}
}
}