Update forward_messages to use _get_response_message

This commit is contained in:
Lonami Exo 2019-04-02 10:44:42 +02:00
parent c0828f590f
commit a9ab3e1211
2 changed files with 30 additions and 51 deletions

View File

@ -93,19 +93,9 @@ class MessageParseMethods(UserMethods):
"""
Extracts the response message known a request and Update result.
The request may also be the ID of the message to match.
"""
# Telegram seems to send updateMessageID first, then updateNewMessage,
# however let's not rely on that just in case.
if isinstance(request, int):
msg_id = request
else:
msg_id = None
for update in result.updates:
if isinstance(update, types.UpdateMessageID):
if update.random_id == request.random_id:
msg_id = update.id
break
If ``request.random_id`` is a list, this method returns a list too.
"""
if isinstance(result, types.UpdateShort):
updates = [result.update]
entities = {}
@ -117,31 +107,43 @@ class MessageParseMethods(UserMethods):
else:
return None
found = None
random_to_id = {}
id_to_message = {}
for update in updates:
if isinstance(update, (
if isinstance(update, types.UpdateMessageID):
random_to_id[update.random_id] = update.id
elif isinstance(update, (
types.UpdateNewChannelMessage, types.UpdateNewMessage)):
if update.message.id == msg_id:
found = update.message
break
update.message._finish_init(self, entities, input_chat)
id_to_message[update.message.id] = update.message
elif (isinstance(update, types.UpdateEditMessage)
and not isinstance(request.peer, types.InputPeerChannel)):
if request.id == update.message.id:
found = update.message
break
update.message._finish_init(self, entities, input_chat)
return update.message
elif (isinstance(update, types.UpdateEditChannelMessage)
and utils.get_peer_id(request.peer) ==
utils.get_peer_id(update.message.to_id)):
utils.get_peer_id(update.message.to_id)):
if request.id == update.message.id:
found = update.message
break
update.message._finish_init(self, entities, input_chat)
return update.message
if found:
found._finish_init(self, entities, input_chat)
return found
if not utils.is_list_like(request.random_id):
if request.random_id in random_to_id:
return id_to_message[random_to_id[request.random_id]]
else:
return None
else:
return None # explicit is better than implicit
# ``rnd in random_to_id`` is needed because trying to forward only
# deleted messages causes `MESSAGE_ID_INVALID`, but forwarding
# valid and invalid messages in the same call makes the call
# succeed, although the API won't return those messages thus
# `random_to_id[rnd]` would `KeyError`.
return [id_to_message[random_to_id[rnd]]
if rnd in random_to_id else None
for rnd in request.random_id]
# endregion

View File

@ -667,31 +667,8 @@ class MessageMethods(UploadMethods, ButtonMethods, MessageParseMethods):
silent=silent
)
result = await self(req)
if isinstance(result, (types.Updates, types.UpdatesCombined)):
entities = {utils.get_peer_id(x): x
for x in itertools.chain(result.users, result.chats)}
else:
entities = {}
random_to_id = {}
id_to_message = {}
for update in result.updates:
if isinstance(update, types.UpdateMessageID):
random_to_id[update.random_id] = update.id
elif isinstance(update, (
types.UpdateNewMessage, types.UpdateNewChannelMessage)):
update.message._finish_init(self, entities, entity)
id_to_message[update.message.id] = update.message
# Trying to forward only deleted messages causes `MESSAGE_ID_INVALID`
# but forwarding valid and invalid messages in the same call makes the
# call succeed, although the API won't return those messages thus
# `random_to_id[rnd]` would `KeyError`. Check the key beforehand.
result = [id_to_message[random_to_id[rnd]]
if rnd in random_to_id else None
for rnd in req.random_id]
return result[0] if single else result
sent = self._get_response_message(req, result, entity)
return sent[0] if single else sent
async def edit_message(
self, entity, message=None, text=None,