Replaced server member lists, channel lists, and private channel lists with dicts. This allows O(1) lookups and removes (previously it would be an O(N) operation to lookup or remove). I did pretty extensive testing and benchmarking to compare the performance of using lists vs using dicts. Iterating through lists to find an item is only faster in the average case for extremely small lists (less than 3 items). For 100 items, using a dict is about 10 times faster on average (and about 100 times faster for 1000 items). The overhead in dicts is in memory usage and initial creation time. Creating and populating a dict is about 2 to 3 times slower than creating and appending items to a list. However this cost is still tiny. For 1000 items this equates to about a 70 microsecond difference (on an i7 CPU) for populating the entire dict. The memory overhead for a dict (compared to a list) is about 25-60 KB per 1000 items (can vary depending on dict resizing). Originally I wanted to use OrderedDicts to presereve order, but in my testing OrderedDicts have about 6x the memory overhead compared to normal dicts.
197 lines
7.7 KiB
Python
197 lines
7.7 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
"""
|
|
The MIT License (MIT)
|
|
|
|
Copyright (c) 2015-2016 Rapptz
|
|
|
|
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 . import utils
|
|
from .user import User
|
|
from .object import Object
|
|
import re
|
|
|
|
class Message:
|
|
"""Represents a message from Discord.
|
|
|
|
There should be no need to create one of these manually.
|
|
|
|
Attributes
|
|
-----------
|
|
edited_timestamp : Optional[datetime.datetime]
|
|
A naive UTC datetime object containing the edited time of the message.
|
|
timestamp : datetime.datetime
|
|
A naive UTC datetime object containing the time the message was created.
|
|
tts : bool
|
|
Specifies if the message was done with text-to-speech.
|
|
author
|
|
A :class:`Member` that sent the message. If :attr:`channel` is a
|
|
private channel, then it is a :class:`User` instead.
|
|
content : str
|
|
The actual contents of the message.
|
|
nonce
|
|
The value used by the discord server and the client to verify that the message is successfully sent.
|
|
This is typically non-important.
|
|
embeds : list
|
|
A list of embedded objects. The elements are objects that meet oEmbed's specification_.
|
|
|
|
.. _specification: http://oembed.com/
|
|
channel
|
|
The :class:`Channel` that the message was sent from.
|
|
Could be a :class:`PrivateChannel` if it's a private message.
|
|
In :issue:`very rare cases <21>` this could be a :class:`Object` instead.
|
|
|
|
For the sake of convenience, this :class:`Object` instance has an attribute ``is_private`` set to ``True``.
|
|
server : Optional[:class:`Server`]
|
|
The server that the message belongs to. If not applicable (i.e. a PM) then it's None instead.
|
|
mention_everyone : bool
|
|
Specifies if the message mentions everyone.
|
|
|
|
.. note::
|
|
|
|
This does not check if the ``@everyone`` text is in the message itself.
|
|
Rather this boolean indicates if the ``@everyone`` text is in the message
|
|
**and** it did end up mentioning everyone.
|
|
|
|
mentions : list
|
|
A list of :class:`Member` that were mentioned. If the message is in a private message
|
|
then the list is always empty.
|
|
|
|
.. warning::
|
|
|
|
The order of the mentions list is not in any particular order so you should
|
|
not rely on it. This is a discord limitation, not one with the library.
|
|
|
|
channel_mentions : list
|
|
A list of :class:`Channel` that were mentioned. If the message is in a private message
|
|
then the list is always empty.
|
|
id : str
|
|
The message ID.
|
|
attachments : list
|
|
A list of attachments given to a message.
|
|
"""
|
|
|
|
__slots__ = [ 'edited_timestamp', 'timestamp', 'tts', 'content', 'channel',
|
|
'mention_everyone', 'embeds', 'id', 'mentions', 'author',
|
|
'channel_mentions', 'server', '_raw_mentions', 'attachments',
|
|
'_clean_content', '_raw_channel_mentions', 'nonce' ]
|
|
|
|
def __init__(self, **kwargs):
|
|
# at the moment, the timestamps seem to be naive so they have no time zone and operate on UTC time.
|
|
# we can use this to our advantage to use strptime instead of a complicated parsing routine.
|
|
# example timestamp: 2015-08-21T12:03:45.782000+00:00
|
|
# sometimes the .%f modifier is missing
|
|
self.edited_timestamp = utils.parse_time(kwargs.get('edited_timestamp'))
|
|
self.timestamp = utils.parse_time(kwargs.get('timestamp'))
|
|
self.tts = kwargs.get('tts')
|
|
self.content = kwargs.get('content')
|
|
self.mention_everyone = kwargs.get('mention_everyone')
|
|
self.embeds = kwargs.get('embeds')
|
|
self.id = kwargs.get('id')
|
|
self.channel = kwargs.get('channel')
|
|
self.author = User(**kwargs.get('author', {}))
|
|
self.nonce = kwargs.get('nonce')
|
|
self.attachments = kwargs.get('attachments')
|
|
self._handle_upgrades(kwargs.get('channel_id'))
|
|
self._handle_mentions(kwargs.get('mentions', []))
|
|
|
|
def _handle_mentions(self, mentions):
|
|
self.mentions = []
|
|
self.channel_mentions = []
|
|
if getattr(self.channel, 'is_private', True):
|
|
return
|
|
|
|
if self.channel is not None:
|
|
for mention in mentions:
|
|
id_search = mention.get('id')
|
|
member = self.server.get_member(id_search)
|
|
if member is not None:
|
|
self.mentions.append(member)
|
|
|
|
if self.server is not None:
|
|
for mention in self.raw_channel_mentions:
|
|
channel = self.server.get_channel(mention)
|
|
if channel is not None:
|
|
self.channel_mentions.append(channel)
|
|
|
|
@utils.cached_slot_property('_raw_mentions')
|
|
def raw_mentions(self):
|
|
"""A property that returns an array of user IDs matched with
|
|
the syntax of <@user_id> in the message content.
|
|
|
|
This allows you receive the user IDs of mentioned users
|
|
even in a private message context.
|
|
"""
|
|
return re.findall(r'<@([0-9]+)>', self.content)
|
|
|
|
@utils.cached_slot_property('_raw_channel_mentions')
|
|
def raw_channel_mentions(self):
|
|
"""A property that returns an array of channel IDs matched with
|
|
the syntax of <#channel_id> in the message content.
|
|
|
|
This allows you receive the channel IDs of mentioned users
|
|
even in a private message context.
|
|
"""
|
|
return re.findall(r'<#([0-9]+)>', self.content)
|
|
|
|
@utils.cached_slot_property('_clean_content')
|
|
def clean_content(self):
|
|
"""A property that returns the content in a "cleaned up"
|
|
manner. This basically means that mentions are transformed
|
|
into the way the client shows it. e.g. ``<#id>`` will transform
|
|
into ``#name``.
|
|
"""
|
|
|
|
transformations = {
|
|
re.escape('<#{0.id}>'.format(channel)): '#' + channel.name
|
|
for channel in self.channel_mentions
|
|
}
|
|
|
|
mention_transforms = {
|
|
re.escape('<@{0.id}>'.format(member)): '@' + member.name
|
|
for member in self.mentions
|
|
}
|
|
|
|
transformations.update(mention_transforms)
|
|
|
|
def repl(obj):
|
|
return transformations.get(re.escape(obj.group(0)), '')
|
|
|
|
pattern = re.compile('|'.join(transformations.keys()))
|
|
return pattern.sub(repl, self.content)
|
|
|
|
def _handle_upgrades(self, channel_id):
|
|
self.server = None
|
|
if isinstance(self.channel, Object):
|
|
return
|
|
|
|
if self.channel is None:
|
|
if channel_id is not None:
|
|
self.channel = Object(id=channel_id)
|
|
self.channel.is_private = True
|
|
return
|
|
|
|
if not self.channel.is_private:
|
|
self.server = self.channel.server
|
|
found = self.server.get_member(self.author.id)
|
|
if found is not None:
|
|
self.author = found
|