Browse Source

Add support for default notification level in audit logs and Guild.edit

pull/1739/head
Rapptz 6 years ago
parent
commit
8b18fa307b
  1. 40
      discord/audit_logs.py
  2. 2
      discord/enums.py
  3. 9
      discord/guild.py
  4. 2
      discord/http.py
  5. 8
      docs/api.rst

40
discord/audit_logs.py

@ -33,6 +33,9 @@ from .invite import Invite
def _transform_verification_level(entry, data): def _transform_verification_level(entry, data):
return enums.try_enum(enums.VerificationLevel, data) return enums.try_enum(enums.VerificationLevel, data)
def _transform_default_notifications(entry, data):
return enums.try_enum(enums.NotificationLevel, data)
def _transform_explicit_content_filter(entry, data): def _transform_explicit_content_filter(entry, data):
return enums.try_enum(enums.ContentFilter, data) return enums.try_enum(enums.ContentFilter, data)
@ -94,24 +97,25 @@ class AuditLogDiff:
class AuditLogChanges: class AuditLogChanges:
TRANSFORMERS = { TRANSFORMERS = {
'verification_level': (None, _transform_verification_level), 'verification_level': (None, _transform_verification_level),
'explicit_content_filter': (None, _transform_explicit_content_filter), 'explicit_content_filter': (None, _transform_explicit_content_filter),
'allow': (None, _transform_permissions), 'allow': (None, _transform_permissions),
'deny': (None, _transform_permissions), 'deny': (None, _transform_permissions),
'permissions': (None, _transform_permissions), 'permissions': (None, _transform_permissions),
'id': (None, _transform_snowflake), 'id': (None, _transform_snowflake),
'color': ('colour', _transform_color), 'color': ('colour', _transform_color),
'owner_id': ('owner', _transform_owner_id), 'owner_id': ('owner', _transform_owner_id),
'inviter_id': ('inviter', _transform_inviter_id), 'inviter_id': ('inviter', _transform_inviter_id),
'channel_id': ('channel', _transform_channel), 'channel_id': ('channel', _transform_channel),
'afk_channel_id': ('afk_channel', _transform_channel), 'afk_channel_id': ('afk_channel', _transform_channel),
'system_channel_id': ('system_channel', _transform_channel), 'system_channel_id': ('system_channel', _transform_channel),
'widget_channel_id': ('widget_channel', _transform_channel), 'widget_channel_id': ('widget_channel', _transform_channel),
'permission_overwrites': ('overwrites', _transform_overwrites), 'permission_overwrites': ('overwrites', _transform_overwrites),
'splash_hash': ('splash', None), 'splash_hash': ('splash', None),
'icon_hash': ('icon', None), 'icon_hash': ('icon', None),
'avatar_hash': ('avatar', None), 'avatar_hash': ('avatar', None),
'rate_limit_per_user': ('slowmode_delay', None), 'rate_limit_per_user': ('slowmode_delay', None),
'default_message_notifications': ('default_notifications', _transform_default_notifications),
} }
def __init__(self, entry, data): def __init__(self, entry, data):

2
discord/enums.py

@ -123,7 +123,7 @@ class RelationshipType(Enum):
incoming_request = 3 incoming_request = 3
outgoing_request = 4 outgoing_request = 4
class NotificationLevel(Enum): class NotificationLevel(IntEnum):
all_messages = 0 all_messages = 0
only_mentions = 1 only_mentions = 1

9
discord/guild.py

@ -748,6 +748,8 @@ class Guild(Hashable):
be owner of the guild to do this. be owner of the guild to do this.
verification_level: :class:`VerificationLevel` verification_level: :class:`VerificationLevel`
The new verification level for the guild. The new verification level for the guild.
default_notifications: :class:`NotificationLevel`
The new default notification level for the guild.
vanity_code: str vanity_code: str
The new vanity code for the guild. The new vanity code for the guild.
system_channel: Optional[:class:`TextChannel`] system_channel: Optional[:class:`TextChannel`]
@ -798,6 +800,13 @@ class Guild(Hashable):
fields['icon'] = icon fields['icon'] = icon
fields['splash'] = splash fields['splash'] = splash
try:
default_message_notifications = int(fields.pop('default_notifications'))
except (TypeError, KeyError):
pass
else:
fields['default_message_notifications'] = default_message_notifications
try: try:
afk_channel = fields.pop('afk_channel') afk_channel = fields.pop('afk_channel')
except KeyError: except KeyError:

2
discord/http.py

@ -565,7 +565,7 @@ class HTTPClient:
def edit_guild(self, guild_id, *, reason=None, **fields): def edit_guild(self, guild_id, *, reason=None, **fields):
valid_keys = ('name', 'region', 'icon', 'afk_timeout', 'owner_id', valid_keys = ('name', 'region', 'icon', 'afk_timeout', 'owner_id',
'afk_channel_id', 'splash', 'verification_level', 'afk_channel_id', 'splash', 'verification_level',
'system_channel_id') 'system_channel_id', 'default_message_notifications')
payload = { payload = {
k: v for k, v in fields.items() if k in valid_keys k: v for k, v in fields.items() if k in valid_keys

8
docs/api.rst

@ -855,7 +855,7 @@ All enumerations are subclasses of `enum`_.
.. class:: NotificationLevel .. class:: NotificationLevel
Specifies whether a :class:`Guild` has notifications on for all messages or mentions only by default. Specifies whether a :class:`Guild` has notifications on for all messages or mentions only by default.
..attribute:: all_messages ..attribute:: all_messages
Members receive notifications for every message regardless of them being mentioned. Members receive notifications for every message regardless of them being mentioned.
@ -1595,6 +1595,12 @@ this goal, it must make use of a couple of data classes that aid in this goal.
See also :attr:`Guild.verification_level`. See also :attr:`Guild.verification_level`.
.. attribute:: default_notifications
:class:`NotificationLevel` – The guild's default notification level.
See also :attr:`Guild.default_notifications`.
.. attribute:: explicit_content_filter .. attribute:: explicit_content_filter
:class:`ContentFilter` – The guild's content filter. :class:`ContentFilter` – The guild's content filter.

Loading…
Cancel
Save