Browse Source

Fix handling of message update in MESSAGE_UPDATE

pull/140/merge
Zeta 9 years ago
committed by Rapptz
parent
commit
f235dc5ca4
  1. 35
      discord/message.py
  2. 11
      discord/state.py

35
discord/message.py

@ -92,26 +92,30 @@ class 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' ]
'clean_content', '_raw_channel_mentions', 'nonce' ]
def __init__(self, **kwargs):
self._update(**kwargs)
def _update(self, **data):
# 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', []))
self.edited_timestamp = utils.parse_time(data.get('edited_timestamp'))
self.timestamp = utils.parse_time(data.get('timestamp'))
self.tts = data.get('tts')
self.content = data.get('content')
self.mention_everyone = data.get('mention_everyone')
self.embeds = data.get('embeds')
self.id = data.get('id')
self.channel = data.get('channel')
self.author = User(**data.get('author', {}))
self.nonce = data.get('nonce')
self.attachments = data.get('attachments')
self._handle_upgrades(data.get('channel_id'))
self._handle_mentions(data.get('mentions', []))
self.clean_content = self._clean_content()
def _handle_mentions(self, mentions):
self.mentions = []
@ -152,8 +156,7 @@ class Message:
"""
return re.findall(r'<#([0-9]+)>', self.content)
@utils.cached_slot_property('_clean_content')
def clean_content(self):
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

11
discord/state.py

@ -175,17 +175,16 @@ class ConnectionState:
self.messages.remove(found)
def parse_message_update(self, data):
older_message = self._get_message(data.get('id'))
if older_message is not None:
message = self._get_message(data.get('id'))
if message is not None:
older_message = copy.copy(message)
if 'content' not in data:
# embed only edit
message = copy.copy(older_message)
message.embeds = data['embeds']
else:
message = Message(channel=older_message.channel, **data)
message._update(channel=message.channel, **data)
self.dispatch('message_edit', older_message, message)
# update the older message
older_message = message
def parse_presence_update(self, data):
server = self._get_server(data.get('guild_id'))

Loading…
Cancel
Save