forked from Pycord-Development/pycord
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathraw_models.py
782 lines (646 loc) · 27.6 KB
/
raw_models.py
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
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
"""
The MIT License (MIT)
Copyright (c) 2015-2021 Rapptz
Copyright (c) 2021-present Pycord Development
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.
"""
from __future__ import annotations
import datetime
from typing import TYPE_CHECKING
from .automod import AutoModAction, AutoModTriggerType
from .enums import AuditLogAction, ChannelType, ReactionType, try_enum
from .types.user import User
if TYPE_CHECKING:
from .abc import MessageableChannel
from .guild import Guild
from .member import Member
from .message import Message
from .partial_emoji import PartialEmoji
from .state import ConnectionState
from .threads import Thread
from .types.raw_models import AuditLogEntryEvent
from .types.raw_models import AutoModActionExecutionEvent as AutoModActionExecution
from .types.raw_models import (
BulkMessageDeleteEvent,
IntegrationDeleteEvent,
MemberRemoveEvent,
MessageDeleteEvent,
MessageUpdateEvent,
ReactionActionEvent,
ReactionClearEmojiEvent,
ReactionClearEvent,
ScheduledEventSubscription,
ThreadDeleteEvent,
ThreadMembersUpdateEvent,
ThreadUpdateEvent,
TypingEvent,
VoiceChannelStatusUpdateEvent,
)
__all__ = (
"RawMessageDeleteEvent",
"RawBulkMessageDeleteEvent",
"RawMessageUpdateEvent",
"RawReactionActionEvent",
"RawReactionClearEvent",
"RawReactionClearEmojiEvent",
"RawIntegrationDeleteEvent",
"RawThreadUpdateEvent",
"RawThreadDeleteEvent",
"RawTypingEvent",
"RawMemberRemoveEvent",
"RawScheduledEventSubscription",
"AutoModActionExecutionEvent",
"RawThreadMembersUpdateEvent",
"RawAuditLogEntryEvent",
"RawVoiceChannelStatusUpdateEvent",
)
class _RawReprMixin:
def __repr__(self) -> str:
value = " ".join(f"{attr}={getattr(self, attr)!r}" for attr in self.__slots__)
return f"<{self.__class__.__name__} {value}>"
class RawMessageDeleteEvent(_RawReprMixin):
"""Represents the event payload for a :func:`on_raw_message_delete` event.
Attributes
----------
channel_id: :class:`int`
The channel ID where the deletion took place.
guild_id: Optional[:class:`int`]
The guild ID where the deletion took place, if applicable.
message_id: :class:`int`
The message ID that got deleted.
cached_message: Optional[:class:`Message`]
The cached message, if found in the internal message cache.
data: :class:`dict`
The raw data sent by the `gateway <https://discord.com/developers/docs/topics/gateway-events#message-delete>`_.
.. versionadded:: 2.5
"""
__slots__ = ("message_id", "channel_id", "guild_id", "cached_message", "data")
def __init__(self, data: MessageDeleteEvent) -> None:
self.message_id: int = int(data["id"])
self.channel_id: int = int(data["channel_id"])
self.cached_message: Message | None = None
try:
self.guild_id: int | None = int(data["guild_id"])
except KeyError:
self.guild_id: int | None = None
self.data: MessageDeleteEvent = data
class RawBulkMessageDeleteEvent(_RawReprMixin):
"""Represents the event payload for a :func:`on_raw_bulk_message_delete` event.
Attributes
----------
message_ids: Set[:class:`int`]
A :class:`set` of the message IDs that were deleted.
channel_id: :class:`int`
The channel ID where the message got deleted.
guild_id: Optional[:class:`int`]
The guild ID where the message got deleted, if applicable.
cached_messages: List[:class:`Message`]
The cached messages, if found in the internal message cache.
data: :class:`dict`
The raw data sent by the `gateway <https://discord.com/developers/docs/topics/gateway-events#message-delete-bulk>`_.
.. versionadded:: 2.5
"""
__slots__ = ("message_ids", "channel_id", "guild_id", "cached_messages", "data")
def __init__(self, data: BulkMessageDeleteEvent) -> None:
self.message_ids: set[int] = {int(x) for x in data.get("ids", [])}
self.channel_id: int = int(data["channel_id"])
self.cached_messages: list[Message] = []
try:
self.guild_id: int | None = int(data["guild_id"])
except KeyError:
self.guild_id: int | None = None
self.data: BulkMessageDeleteEvent = data
class RawMessageUpdateEvent(_RawReprMixin):
"""Represents the payload for a :func:`on_raw_message_edit` event.
Attributes
----------
message_id: :class:`int`
The message ID that got updated.
channel_id: :class:`int`
The channel ID where the update took place.
.. versionadded:: 1.3
guild_id: Optional[:class:`int`]
The guild ID where the message got updated, if applicable.
.. versionadded:: 1.7
data: :class:`dict`
The raw data sent by the `gateway <https://discord.com/developers/docs/topics/gateway#message-update>`_
cached_message: Optional[:class:`Message`]
The cached message, if found in the internal message cache. Represents the message before
it is modified by the data in :attr:`RawMessageUpdateEvent.data`.
"""
__slots__ = ("message_id", "channel_id", "guild_id", "data", "cached_message")
def __init__(self, data: MessageUpdateEvent) -> None:
self.message_id: int = int(data["id"])
self.channel_id: int = int(data["channel_id"])
self.data: MessageUpdateEvent = data
self.cached_message: Message | None = None
try:
self.guild_id: int | None = int(data["guild_id"])
except KeyError:
self.guild_id: int | None = None
class RawReactionActionEvent(_RawReprMixin):
"""Represents the payload for a :func:`on_raw_reaction_add` or
:func:`on_raw_reaction_remove` event.
Attributes
----------
message_id: :class:`int`
The message ID that got or lost a reaction.
user_id: :class:`int`
The user ID who added the reaction or whose reaction was removed.
channel_id: :class:`int`
The channel ID where the reaction got added or removed.
guild_id: Optional[:class:`int`]
The guild ID where the reaction got added or removed, if applicable.
emoji: :class:`PartialEmoji`
The custom or unicode emoji being used.
member: Optional[:class:`Member`]
The member who added the reaction. Only available if the reaction occurs within a guild.
.. versionadded:: 1.3
event_type: :class:`str`
The event type that triggered this action. Can be
``REACTION_ADD`` for reaction addition or
``REACTION_REMOVE`` for reaction removal.
.. versionadded:: 1.3
burst: :class:`bool`
Whether this reaction is a burst (super) reaction.
burst_colours: Optional[:class:`list`]
A list of hex codes this reaction can be. Only available if `event_type` is `REACTION_ADD`
and this emoji has super reactions available.
burst_colors: Optional[:class:`list`]
Alias for :attr:`burst_colours`.
type: :class:`ReactionType`
The type of reaction added.
data: :class:`dict`
The raw data sent by the `gateway <https://discord.com/developers/docs/topics/gateway-events#message-reaction-add>`_.
.. versionadded:: 2.5
"""
__slots__ = (
"message_id",
"user_id",
"channel_id",
"guild_id",
"emoji",
"burst",
"burst_colours",
"burst_colors",
"type",
"event_type",
"member",
"data",
)
def __init__(
self, data: ReactionActionEvent, emoji: PartialEmoji, event_type: str
) -> None:
self.message_id: int = int(data["message_id"])
self.channel_id: int = int(data["channel_id"])
self.user_id: int = int(data["user_id"])
self.emoji: PartialEmoji = emoji
self.event_type: str = event_type
self.member: Member | None = None
self.burst: bool = data.get("burst")
self.burst_colours: list = data.get("burst_colors", [])
self.burst_colors: list = self.burst_colours
self.type: ReactionType = try_enum(ReactionType, data.get("type", 0))
try:
self.guild_id: int | None = int(data["guild_id"])
except KeyError:
self.guild_id: int | None = None
self.data: ReactionActionEvent = data
class RawReactionClearEvent(_RawReprMixin):
"""Represents the payload for a :func:`on_raw_reaction_clear` event.
Attributes
----------
message_id: :class:`int`
The message ID that got its reactions cleared.
channel_id: :class:`int`
The channel ID where the reactions got cleared.
guild_id: Optional[:class:`int`]
The guild ID where the reactions got cleared.
data: :class:`dict`
The raw data sent by the `gateway <https://discord.com/developers/docs/topics/gateway-events#message-reaction-remove-all>`_.
.. versionadded:: 2.5
"""
__slots__ = ("message_id", "channel_id", "guild_id", "data")
def __init__(self, data: ReactionClearEvent) -> None:
self.message_id: int = int(data["message_id"])
self.channel_id: int = int(data["channel_id"])
try:
self.guild_id: int | None = int(data["guild_id"])
except KeyError:
self.guild_id: int | None = None
self.data: ReactionClearEvent = data
class RawReactionClearEmojiEvent(_RawReprMixin):
"""Represents the payload for a :func:`on_raw_reaction_clear_emoji` event.
.. versionadded:: 1.3
Attributes
----------
message_id: :class:`int`
The message ID that got its reactions cleared.
channel_id: :class:`int`
The channel ID where the reactions got cleared.
guild_id: Optional[:class:`int`]
The guild ID where the reactions got cleared.
emoji: :class:`PartialEmoji`
The custom or unicode emoji being removed.
burst: :class:`bool`
Whether this reaction was a burst (super) reaction.
burst_colours: :class:`list`
The available HEX codes of the removed super reaction.
burst_colors: Optional[:class:`list`]
Alias for :attr:`burst_colours`.
type: :class:`ReactionType`
The type of reaction removed.
data: :class:`dict`
The raw data sent by the `gateway <https://discord.com/developers/docs/topics/gateway-events#message-reaction-remove-emoji>`_.
.. versionadded:: 2.5
"""
__slots__ = ("message_id", "channel_id", "guild_id", "emoji", "burst", "data")
def __init__(self, data: ReactionClearEmojiEvent, emoji: PartialEmoji) -> None:
self.emoji: PartialEmoji = emoji
self.message_id: int = int(data["message_id"])
self.channel_id: int = int(data["channel_id"])
self.burst: bool = data.get("burst")
self.burst_colours: list = data.get("burst_colors", [])
self.burst_colors: list = self.burst_colours
self.type: ReactionType = try_enum(ReactionType, data.get("type", 0))
try:
self.guild_id: int | None = int(data["guild_id"])
except KeyError:
self.guild_id: int | None = None
self.data: ReactionClearEmojiEvent = data
class RawIntegrationDeleteEvent(_RawReprMixin):
"""Represents the payload for a :func:`on_raw_integration_delete` event.
.. versionadded:: 2.0
Attributes
----------
integration_id: :class:`int`
The ID of the integration that got deleted.
application_id: Optional[:class:`int`]
The ID of the bot/OAuth2 application for this deleted integration.
guild_id: :class:`int`
The guild ID where the integration got deleted.
data: :class:`dict`
The raw data sent by the `gateway <https://discord.com/developers/docs/topics/gateway-events#integration-delete>`_.
.. versionadded:: 2.5
"""
__slots__ = ("integration_id", "application_id", "guild_id", "data")
def __init__(self, data: IntegrationDeleteEvent) -> None:
self.integration_id: int = int(data["id"])
self.guild_id: int = int(data["guild_id"])
try:
self.application_id: int | None = int(data["application_id"])
except KeyError:
self.application_id: int | None = None
self.data: IntegrationDeleteEvent = data
class RawThreadUpdateEvent(_RawReprMixin):
"""Represents the payload for an :func:`on_raw_thread_update` event.
.. versionadded:: 2.4
Attributes
----------
thread_id: :class:`int`
The ID of the updated thread.
thread_type: :class:`discord.ChannelType`
The channel type of the updated thread.
guild_id: :class:`int`
The ID of the guild the thread belongs to.
parent_id: :class:`int`
The ID of the channel the thread belongs to.
data: :class:`dict`
The raw data sent by the `gateway <https://discord.com/developers/docs/topics/gateway-events#thread-update>`_.
thread: :class:`discord.Thread` | None
The thread, if it could be found in the internal cache.
"""
__slots__ = ("thread_id", "thread_type", "parent_id", "guild_id", "data", "thread")
def __init__(self, data: ThreadUpdateEvent) -> None:
self.thread_id: int = int(data["id"])
self.thread_type: ChannelType = try_enum(ChannelType, data["type"])
self.guild_id: int = int(data["guild_id"])
self.parent_id: int = int(data["parent_id"])
self.data: ThreadUpdateEvent = data
self.thread: Thread | None = None
class RawThreadDeleteEvent(_RawReprMixin):
"""Represents the payload for :func:`on_raw_thread_delete` event.
.. versionadded:: 2.0
Attributes
----------
thread_id: :class:`int`
The ID of the thread that was deleted.
thread_type: :class:`discord.ChannelType`
The channel type of the deleted thread.
guild_id: :class:`int`
The ID of the guild the deleted thread belonged to.
parent_id: :class:`int`
The ID of the channel the thread belonged to.
thread: Optional[:class:`discord.Thread`]
The thread that was deleted. This may be ``None`` if deleted thread is not found in internal cache.
data: :class:`dict`
The raw data sent by the `gateway <https://discord.com/developers/docs/topics/gateway-events#thread-delete>`_.
.. versionadded:: 2.5
"""
__slots__ = ("thread_id", "thread_type", "guild_id", "parent_id", "thread", "data")
def __init__(self, data: ThreadDeleteEvent) -> None:
self.thread_id: int = int(data["id"])
self.thread_type: ChannelType = try_enum(ChannelType, int(data["type"]))
self.guild_id: int = int(data["guild_id"])
self.parent_id: int = int(data["parent_id"])
self.thread: Thread | None = None
self.data: ThreadDeleteEvent = data
class RawVoiceChannelStatusUpdateEvent(_RawReprMixin):
"""Represents the payload for an :func:`on_raw_voice_channel_status_update` event.
.. versionadded:: 2.5
Attributes
----------
id: :class:`int`
The channel ID where the voice channel status update originated from.
guild_id: :class:`int`
The guild ID where the voice channel status update originated from.
status: Optional[:class:`str`]
The new new voice channel status.
data: :class:`dict`
The raw data sent by the `gateway <https://discord.com/developers/docs/topics/gateway-events#voice-channel-status-update>`_.
"""
__slots__ = ("id", "guild_id", "status", "data")
def __init__(self, data: VoiceChannelStatusUpdateEvent) -> None:
self.id: int = int(data["id"])
self.guild_id: int = int(data["guild_id"])
try:
self.status: str | None = data["status"]
except KeyError:
self.status: str | None = None
self.data: VoiceChannelStatusUpdateEvent = data
class RawTypingEvent(_RawReprMixin):
"""Represents the payload for a :func:`on_raw_typing` event.
.. versionadded:: 2.0
Attributes
----------
channel_id: :class:`int`
The channel ID where the typing originated from.
user_id: :class:`int`
The ID of the user that started typing.
when: :class:`datetime.datetime`
When the typing started as an aware datetime in UTC.
guild_id: Optional[:class:`int`]
The guild ID where the typing originated from, if applicable.
member: Optional[:class:`Member`]
The member who started typing. Only available if the member started typing in a guild.
data: :class:`dict`
The raw data sent by the `gateway <https://discord.com/developers/docs/topics/gateway-events#typing-start>`_.
.. versionadded:: 2.5
"""
__slots__ = ("channel_id", "user_id", "when", "guild_id", "member", "data")
def __init__(self, data: TypingEvent) -> None:
self.channel_id: int = int(data["channel_id"])
self.user_id: int = int(data["user_id"])
self.when: datetime.datetime = datetime.datetime.fromtimestamp(
data.get("timestamp"), tz=datetime.timezone.utc
)
self.member: Member | None = None
try:
self.guild_id: int | None = int(data["guild_id"])
except KeyError:
self.guild_id: int | None = None
self.data: TypingEvent = data
class RawMemberRemoveEvent(_RawReprMixin):
"""Represents the payload for an :func:`on_raw_member_remove` event.
.. versionadded:: 2.4
Attributes
----------
user: :class:`discord.User`
The user that left the guild.
guild_id: :class:`int`
The ID of the guild the user left.
data: :class:`dict`
The raw data sent by the `gateway <https://discord.com/developers/docs/topics/gateway-events#guild-member-remove>`_.
.. versionadded:: 2.5
"""
__slots__ = ("user", "guild_id", "data")
def __init__(self, data: MemberRemoveEvent, user: User):
self.user: User = user
self.guild_id: int = int(data["guild_id"])
self.data: MemberRemoveEvent = data
class RawScheduledEventSubscription(_RawReprMixin):
"""Represents the payload for a :func:`raw_scheduled_event_user_add` or
:func:`raw_scheduled_event_user_remove` event.
.. versionadded:: 2.0
Attributes
----------
event_id: :class:`int`
The event ID where the typing originated from.
user_id: :class:`int`
The ID of the user that subscribed/unsubscribed.
guild: Optional[:class:`Guild`]
The guild where the subscription/unsubscription happened.
event_type: :class:`str`
Can be either ``USER_ADD`` or ``USER_REMOVE`` depending on
the event called.
data: :class:`dict`
The raw data sent by the `gateway <https://discord.com/developers/docs/topics/gateway-events#guild-scheduled-event-user-add>`_.
.. versionadded:: 2.5
"""
__slots__ = ("event_id", "guild", "user_id", "event_type", "data")
def __init__(self, data: ScheduledEventSubscription, event_type: str):
self.event_id: int = int(data["guild_scheduled_event_id"])
self.user_id: int = int(data["user_id"])
self.guild: Guild | None = None
self.event_type: str = event_type
self.data: ScheduledEventSubscription = data
class AutoModActionExecutionEvent:
"""Represents the payload for an :func:`on_auto_moderation_action_execution`
.. versionadded:: 2.0
Attributes
----------
action: :class:`AutoModAction`
The action that was executed.
rule_id: :class:`int`
The ID of the rule that the action belongs to.
rule_trigger_type: :class:`AutoModTriggerType`
The category of trigger the rule belongs to.
.. versionadded:: 2.4
guild_id: :class:`int`
The ID of the guild that the action was executed in.
guild: Optional[:class:`Guild`]
The guild that the action was executed in, if cached.
user_id: :class:`int`
The ID of the user that triggered the action.
member: Optional[:class:`Member`]
The member that triggered the action, if cached.
channel_id: Optional[:class:`int`]
The ID of the channel in which the member's content was posted.
channel: Optional[Union[:class:`TextChannel`, :class:`Thread`, :class:`VoiceChannel`, :class:`StageChannel`]]
The channel in which the member's content was posted, if cached.
message_id: Optional[:class:`int`]
The ID of the message that triggered the action. This is only available if the
message was not blocked.
message: Optional[:class:`Message`]
The message that triggered the action, if cached.
alert_system_message_id: Optional[:class:`int`]
The ID of the system auto moderation message that was posted as a result
of the action.
alert_system_message: Optional[:class:`Message`]
The system auto moderation message that was posted as a result of the action,
if cached.
content: :class:`str`
The content of the message that triggered the action.
matched_keyword: :class:`str`
The word or phrase configured that was matched in the content.
matched_content: :class:`str`
The substring in the content that was matched.
data: :class:`dict`
The raw data sent by the `gateway <https://discord.com/developers/docs/topics/gateway-events#auto-moderation-action-execution>`_.
.. versionadded:: 2.5
"""
__slots__ = (
"action",
"rule_id",
"rule_trigger_type",
"guild_id",
"guild",
"user_id",
"member",
"content",
"matched_keyword",
"matched_content",
"channel_id",
"channel",
"message_id",
"message",
"alert_system_message_id",
"alert_system_message",
"data",
)
def __init__(self, state: ConnectionState, data: AutoModActionExecution) -> None:
self.action: AutoModAction = AutoModAction.from_dict(data["action"])
self.rule_id: int = int(data["rule_id"])
self.rule_trigger_type: AutoModTriggerType = try_enum(
AutoModTriggerType, int(data["rule_trigger_type"])
)
self.guild_id: int = int(data["guild_id"])
self.guild: Guild | None = state._get_guild(self.guild_id)
self.user_id: int = int(data["user_id"])
self.content: str | None = data.get("content", None)
self.matched_keyword: str = data["matched_keyword"]
self.matched_content: str | None = data.get("matched_content", None)
if self.guild:
self.member: Member | None = self.guild.get_member(self.user_id)
else:
self.member: Member | None = None
try:
# I don't see why this would be optional, but it's documented
# as such, so we should treat it that way
self.channel_id: int | None = int(data["channel_id"])
self.channel: MessageableChannel | None = self.guild.get_channel_or_thread(
self.channel_id
)
except KeyError:
self.channel_id: int | None = None
self.channel: MessageableChannel | None = None
try:
self.message_id: int | None = int(data["message_id"])
self.message: Message | None = state._get_message(self.message_id)
except KeyError:
self.message_id: int | None = None
self.message: Message | None = None
try:
self.alert_system_message_id: int | None = int(
data["alert_system_message_id"]
)
self.alert_system_message: Message | None = state._get_message(
self.alert_system_message_id
)
except KeyError:
self.alert_system_message_id: int | None = None
self.alert_system_message: Message | None = None
self.data: AutoModActionExecution = data
def __repr__(self) -> str:
return (
f"<AutoModActionExecutionEvent action={self.action!r} "
f"rule_id={self.rule_id!r} guild_id={self.guild_id!r} "
f"user_id={self.user_id!r}>"
)
class RawThreadMembersUpdateEvent(_RawReprMixin):
"""Represents the payload for an :func:`on_raw_thread_member_remove` event.
.. versionadded:: 2.4
Attributes
----------
thread_id: :class:`int`
The ID of the thread that was updated.
guild_id: :class:`int`
The ID of the guild the thread is in.
member_count: :class:`int`
The approximate number of members in the thread. Maximum of 50.
data: :class:`dict`
The raw data sent by the `gateway <https://discord.com/developers/docs/topics/gateway-events#thread-members-update>`_.
.. versionadded:: 2.5
"""
__slots__ = ("thread_id", "guild_id", "member_count", "data")
def __init__(self, data: ThreadMembersUpdateEvent) -> None:
self.thread_id = int(data["id"])
self.guild_id = int(data["guild_id"])
self.member_count = int(data["member_count"])
self.data: ThreadMembersUpdateEvent = data
class RawAuditLogEntryEvent(_RawReprMixin):
"""Represents the payload for an :func:`on_raw_audit_log_entry` event.
.. versionadded:: 2.5
Attributes
----------
action_type: :class:`AuditLogAction`
The action that was done.
id: :class:`int`
The entry ID.
guild_id: :class:`int`
The ID of the guild this action came from.
user_id: Optional[:class:`int`]
The ID of the user who initiated this action.
target_id: Optional[:class:`int`]
The ID of the target that got changed.
reason: Optional[:class:`str`]
The reason this action was done.
changes: Optional[:class:`list`]
The changes that were made to the target.
extra: Any
Extra information that this entry has that might be useful.
For most actions, this is ``None``. However, in some cases it
contains extra information. See :class:`AuditLogAction` for
which actions have this field filled out.
data: :class:`dict`
The raw data sent by the `gateway <https://discord.com/developers/docs/topics/gateway-events#guild-audit-log-entry-create>`_.
"""
__slots__ = (
"id",
"user_id",
"guild_id",
"target_id",
"action_type",
"reason",
"extra",
"changes",
"data",
)
def __init__(self, data: AuditLogEntryEvent) -> None:
self.id = int(data["id"])
self.user_id = data.get("user_id")
if self.user_id:
self.user_id = int(self.user_id)
self.guild_id = int(data["guild_id"])
self.target_id = data.get("target_id")
if self.target_id:
self.target_id = int(self.target_id)
self.action_type = try_enum(AuditLogAction, int(data["action_type"]))
self.reason = data.get("reason")
self.extra = data.get("options")
self.changes = data.get("changes")
self.data: AuditLogEntryEvent = data