From 2247ffd9b5f4f65e1ee1936781fe1ac84631ccad Mon Sep 17 00:00:00 2001 From: z03h <7235242+z03h@users.noreply.github.com> Date: Mon, 17 Apr 2023 21:36:53 -0700 Subject: [PATCH] Convert Webhook targets in AuditlogEntry --- discord/audit_logs.py | 12 ++++++++++++ discord/guild.py | 5 +++++ discord/state.py | 1 + 3 files changed, 18 insertions(+) diff --git a/discord/audit_logs.py b/discord/audit_logs.py index 47f397a8a..489e064b7 100644 --- a/discord/audit_logs.py +++ b/discord/audit_logs.py @@ -74,6 +74,7 @@ if TYPE_CHECKING: from .types.automod import AutoModerationTriggerMetadata, AutoModerationAction from .user import User from .app_commands import AppCommand + from .webhook import Webhook TargetType = Union[ Guild, @@ -89,6 +90,9 @@ if TYPE_CHECKING: Object, PartialIntegration, AutoModRule, + ScheduledEvent, + Webhook, + AppCommand, None, ] @@ -580,6 +584,7 @@ class AuditLogEntry(Hashable): integrations: Mapping[int, PartialIntegration], app_commands: Mapping[int, AppCommand], automod_rules: Mapping[int, AutoModRule], + webhooks: Mapping[int, Webhook], data: AuditLogEntryPayload, guild: Guild, ): @@ -589,6 +594,7 @@ class AuditLogEntry(Hashable): self._integrations: Mapping[int, PartialIntegration] = integrations self._app_commands: Mapping[int, AppCommand] = app_commands self._automod_rules: Mapping[int, AutoModRule] = automod_rules + self._webhooks: Mapping[int, Webhook] = webhooks self._from_data(data) def _from_data(self, data: AuditLogEntryPayload) -> None: @@ -845,3 +851,9 @@ class AuditLogEntry(Hashable): def _convert_target_auto_moderation(self, target_id: int) -> Union[AutoModRule, Object]: return self._automod_rules.get(target_id) or Object(target_id, type=AutoModRule) + + def _convert_target_webhook(self, target_id: int) -> Union[Webhook, Object]: + # circular import + from .webhook import Webhook + + return self._webhooks.get(target_id) or Object(target_id, type=Webhook) diff --git a/discord/guild.py b/discord/guild.py index 0f91eebe1..fdf30d6f8 100644 --- a/discord/guild.py +++ b/discord/guild.py @@ -3860,6 +3860,7 @@ class Guild(Hashable): # avoid circular import from .app_commands import AppCommand + from .webhook import Webhook while True: retrieve = 100 if limit is None else min(limit, 100) @@ -3886,6 +3887,9 @@ class Guild(Hashable): ) automod_rule_map = {rule.id: rule for rule in automod_rules} + webhooks = (Webhook.from_state(data=raw_webhook, state=self._state) for raw_webhook in data.get('webhooks', [])) + webhook_map = {webhook.id: webhook for webhook in webhooks} + count = 0 for count, raw_entry in enumerate(raw_entries, 1): @@ -3899,6 +3903,7 @@ class Guild(Hashable): integrations=integration_map, app_commands=app_command_map, automod_rules=automod_rule_map, + webhooks=webhook_map, guild=self, ) diff --git a/discord/state.py b/discord/state.py index 8b556f28c..f2f2a0a83 100644 --- a/discord/state.py +++ b/discord/state.py @@ -1108,6 +1108,7 @@ class ConnectionState(Generic[ClientT]): integrations={}, app_commands={}, automod_rules={}, + webhooks={}, data=data, guild=guild, )