|
@ -5,11 +5,12 @@ import functools |
|
|
import unicodedata |
|
|
import unicodedata |
|
|
|
|
|
|
|
|
from disco.types.base import ( |
|
|
from disco.types.base import ( |
|
|
SlottedModel, Field, ListField, AutoDictField, snowflake, text, |
|
|
BitsetMap, BitsetValue, SlottedModel, Field, ListField, AutoDictField, |
|
|
datetime, enum, cached_property, |
|
|
snowflake, text, datetime, enum, cached_property, |
|
|
) |
|
|
) |
|
|
from disco.util.paginator import Paginator |
|
|
from disco.util.paginator import Paginator |
|
|
from disco.util.snowflake import to_snowflake |
|
|
from disco.util.snowflake import to_snowflake |
|
|
|
|
|
from disco.types.channel import ChannelType |
|
|
from disco.types.user import User |
|
|
from disco.types.user import User |
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -26,6 +27,7 @@ class MessageType(object): |
|
|
USER_PREMIUM_GUILD_SUBSCRIPTION_TIER_1 = 9 |
|
|
USER_PREMIUM_GUILD_SUBSCRIPTION_TIER_1 = 9 |
|
|
USER_PREMIUM_GUILD_SUBSCRIPTION_TIER_2 = 10 |
|
|
USER_PREMIUM_GUILD_SUBSCRIPTION_TIER_2 = 10 |
|
|
USER_PREMIUM_GUILD_SUBSCRIPTION_TIER_3 = 11 |
|
|
USER_PREMIUM_GUILD_SUBSCRIPTION_TIER_3 = 11 |
|
|
|
|
|
CHANNEL_FOLLOW_ADD = 12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class MessageActivityType(object): |
|
|
class MessageActivityType(object): |
|
@ -116,6 +118,12 @@ class MessageApplication(SlottedModel): |
|
|
name = Field(text) |
|
|
name = Field(text) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class MessageReference(SlottedModel): |
|
|
|
|
|
message_id = Field(snowflake) |
|
|
|
|
|
channel_id = Field(snowflake) |
|
|
|
|
|
guild_id = Field(snowflake) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class MessageActivity(SlottedModel): |
|
|
class MessageActivity(SlottedModel): |
|
|
""" |
|
|
""" |
|
|
The activity of a Rich Presence-related chat embed. |
|
|
The activity of a Rich Presence-related chat embed. |
|
@ -359,6 +367,23 @@ class MessageAttachment(SlottedModel): |
|
|
width = Field(int) |
|
|
width = Field(int) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class ChannelMention(SlottedModel): |
|
|
|
|
|
id = Field(snowflake) |
|
|
|
|
|
guild_id = Field(snowflake) |
|
|
|
|
|
type = Field(enum(ChannelType)) |
|
|
|
|
|
name = Field(text) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class MessageFlags(BitsetMap): |
|
|
|
|
|
CROSSPOSTED = 1 << 0 |
|
|
|
|
|
IS_CROSSPOST = 1 << 1 |
|
|
|
|
|
SUPPRESS_EMBEDS = 1 << 2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class MessageFlagValue(BitsetValue): |
|
|
|
|
|
map = MessageFlags |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class Message(SlottedModel): |
|
|
class Message(SlottedModel): |
|
|
""" |
|
|
""" |
|
|
Represents a Message created within a Channel on Discord. |
|
|
Represents a Message created within a Channel on Discord. |
|
@ -393,6 +418,8 @@ class Message(SlottedModel): |
|
|
IDs for roles mentioned within this message. |
|
|
IDs for roles mentioned within this message. |
|
|
embeds : list[`MessageEmbed`] |
|
|
embeds : list[`MessageEmbed`] |
|
|
Embeds for this message. |
|
|
Embeds for this message. |
|
|
|
|
|
mention_channels : list[`ChannelMention`] |
|
|
|
|
|
The channels mentioned in this message if it is cross-posted. |
|
|
attachments : dict[`MessageAttachment`] |
|
|
attachments : dict[`MessageAttachment`] |
|
|
Attachments for this message. |
|
|
Attachments for this message. |
|
|
reactions : list[`MessageReaction`] |
|
|
reactions : list[`MessageReaction`] |
|
@ -401,6 +428,10 @@ class Message(SlottedModel): |
|
|
The activity of a Rich Presence-related chat embed. |
|
|
The activity of a Rich Presence-related chat embed. |
|
|
application : `MessageApplication` |
|
|
application : `MessageApplication` |
|
|
The application of a Rich Presence-related chat embed. |
|
|
The application of a Rich Presence-related chat embed. |
|
|
|
|
|
message_reference: `MessageReference` |
|
|
|
|
|
The reference of a cross-posted message. |
|
|
|
|
|
flags: `MessageFlagValue` |
|
|
|
|
|
The flags attached to a message. |
|
|
""" |
|
|
""" |
|
|
id = Field(snowflake) |
|
|
id = Field(snowflake) |
|
|
channel_id = Field(snowflake) |
|
|
channel_id = Field(snowflake) |
|
@ -417,10 +448,13 @@ class Message(SlottedModel): |
|
|
mentions = AutoDictField(User, 'id') |
|
|
mentions = AutoDictField(User, 'id') |
|
|
mention_roles = ListField(snowflake) |
|
|
mention_roles = ListField(snowflake) |
|
|
embeds = ListField(MessageEmbed) |
|
|
embeds = ListField(MessageEmbed) |
|
|
|
|
|
mention_channels = ListField(ChannelMention) |
|
|
attachments = AutoDictField(MessageAttachment, 'id') |
|
|
attachments = AutoDictField(MessageAttachment, 'id') |
|
|
reactions = ListField(MessageReaction) |
|
|
reactions = ListField(MessageReaction) |
|
|
activity = Field(MessageActivity) |
|
|
activity = Field(MessageActivity) |
|
|
application = Field(MessageApplication) |
|
|
application = Field(MessageApplication) |
|
|
|
|
|
message_reference = Field(MessageReference) |
|
|
|
|
|
flags = Field(MessageFlagValue) |
|
|
|
|
|
|
|
|
def __str__(self): |
|
|
def __str__(self): |
|
|
return '<Message {} ({})>'.format(self.id, self.channel_id) |
|
|
return '<Message {} ({})>'.format(self.id, self.channel_id) |
|
@ -505,6 +539,28 @@ class Message(SlottedModel): |
|
|
""" |
|
|
""" |
|
|
return self.client.api.channels_messages_delete(self.channel_id, self.id) |
|
|
return self.client.api.channels_messages_delete(self.channel_id, self.id) |
|
|
|
|
|
|
|
|
|
|
|
def toggle_embeds_suppress(self, state=None): |
|
|
|
|
|
""" |
|
|
|
|
|
Toggle this message's embed suppression. |
|
|
|
|
|
|
|
|
|
|
|
Args |
|
|
|
|
|
---- |
|
|
|
|
|
`state` |
|
|
|
|
|
Whether this message's embeds should be suppressed, |
|
|
|
|
|
will just flip the state if not provided. |
|
|
|
|
|
""" |
|
|
|
|
|
flags = int(self.flags or 0) |
|
|
|
|
|
if state is None: |
|
|
|
|
|
state = not self.flags or not self.flags.SUPPRESS_EMBEDS |
|
|
|
|
|
|
|
|
|
|
|
if state: |
|
|
|
|
|
flags |= MessageFlags.SUPPRESS_EMBEDS |
|
|
|
|
|
else: |
|
|
|
|
|
flags &= ~MessageFlags.SUPPRESS_EMBEDS |
|
|
|
|
|
|
|
|
|
|
|
self.edit(flags=flags) |
|
|
|
|
|
return state |
|
|
|
|
|
|
|
|
def get_reactors(self, emoji, *args, **kwargs): |
|
|
def get_reactors(self, emoji, *args, **kwargs): |
|
|
""" |
|
|
""" |
|
|
Returns an iterator which paginates the reactors for the given emoji. |
|
|
Returns an iterator which paginates the reactors for the given emoji. |
|
|