forked from fair/matrix-puppeteer-line
More robust message syncing and room cleaning
This commit is contained in:
parent
99aa333bc2
commit
d30402a98f
|
@ -30,7 +30,7 @@ class Message:
|
||||||
mxid: EventID
|
mxid: EventID
|
||||||
mx_room: RoomID
|
mx_room: RoomID
|
||||||
mid: int
|
mid: int
|
||||||
chat_id: int
|
chat_id: str
|
||||||
|
|
||||||
async def insert(self) -> None:
|
async def insert(self) -> None:
|
||||||
q = "INSERT INTO message (mxid, mx_room, mid, chat_id) VALUES ($1, $2, $3, $4)"
|
q = "INSERT INTO message (mxid, mx_room, mid, chat_id) VALUES ($1, $2, $3, $4)"
|
||||||
|
@ -49,7 +49,7 @@ class Message:
|
||||||
return await cls.db.fetchval("SELECT MAX(mid) FROM message WHERE mx_room=$1", room_id)
|
return await cls.db.fetchval("SELECT MAX(mid) FROM message WHERE mx_room=$1", room_id)
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
async def get_max_mids(cls) -> Dict[int, int]:
|
async def get_max_mids(cls) -> Dict[str, int]:
|
||||||
rows = await cls.db.fetch("SELECT chat_id, MAX(mid) AS max_mid "
|
rows = await cls.db.fetch("SELECT chat_id, MAX(mid) AS max_mid "
|
||||||
"FROM message GROUP BY chat_id")
|
"FROM message GROUP BY chat_id")
|
||||||
data = {}
|
data = {}
|
||||||
|
|
|
@ -50,6 +50,10 @@ class Portal:
|
||||||
self.icon_path, self.icon_mxc,
|
self.icon_path, self.icon_mxc,
|
||||||
self.encrypted)
|
self.encrypted)
|
||||||
|
|
||||||
|
async def delete(self) -> None:
|
||||||
|
q = "DELETE FROM portal WHERE chat_id=$1"
|
||||||
|
await self.db.execute(q, self.chat_id)
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
async def get_by_mxid(cls, mxid: RoomID) -> Optional['Portal']:
|
async def get_by_mxid(cls, mxid: RoomID) -> Optional['Portal']:
|
||||||
q = ("SELECT chat_id, other_user, mxid, name, icon_path, icon_mxc, encrypted "
|
q = ("SELECT chat_id, other_user, mxid, name, icon_path, icon_mxc, encrypted "
|
||||||
|
@ -60,7 +64,7 @@ class Portal:
|
||||||
return cls(**row)
|
return cls(**row)
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
async def get_by_chat_id(cls, chat_id: int) -> Optional['Portal']:
|
async def get_by_chat_id(cls, chat_id: str) -> Optional['Portal']:
|
||||||
q = ("SELECT chat_id, other_user, mxid, name, icon_path, icon_mxc, encrypted "
|
q = ("SELECT chat_id, other_user, mxid, name, icon_path, icon_mxc, encrypted "
|
||||||
"FROM portal WHERE chat_id=$1")
|
"FROM portal WHERE chat_id=$1")
|
||||||
row = await cls.db.fetchrow(q, chat_id)
|
row = await cls.db.fetchrow(q, chat_id)
|
||||||
|
|
|
@ -16,10 +16,10 @@
|
||||||
from typing import TYPE_CHECKING
|
from typing import TYPE_CHECKING
|
||||||
|
|
||||||
from mautrix.bridge import BaseMatrixHandler
|
from mautrix.bridge import BaseMatrixHandler
|
||||||
from mautrix.types import (Event, ReactionEvent, MessageEvent, StateEvent, EncryptedEvent, RoomID,
|
from mautrix.types import (Event, ReactionEvent, MessageEvent, StateEvent, EncryptedEvent, RedactionEvent,
|
||||||
RedactionEvent)
|
EventID, RoomID, UserID)
|
||||||
|
|
||||||
from . import puppet as pu, user as u
|
from . import portal as po, puppet as pu, user as u
|
||||||
|
|
||||||
if TYPE_CHECKING:
|
if TYPE_CHECKING:
|
||||||
from .__main__ import MessagesBridge
|
from .__main__ import MessagesBridge
|
||||||
|
@ -48,3 +48,14 @@ class MatrixHandler(BaseMatrixHandler):
|
||||||
await inviter.update()
|
await inviter.update()
|
||||||
await self.az.intent.send_notice(room_id, "This room has been marked as your "
|
await self.az.intent.send_notice(room_id, "This room has been marked as your "
|
||||||
"LINE bridge notice room.")
|
"LINE bridge notice room.")
|
||||||
|
|
||||||
|
async def handle_leave(self, room_id: RoomID, user_id: UserID, event_id: EventID) -> None:
|
||||||
|
portal = await po.Portal.get_by_mxid(room_id)
|
||||||
|
if not portal:
|
||||||
|
return
|
||||||
|
|
||||||
|
user = await u.User.get_by_mxid(user_id, create=False)
|
||||||
|
if not user:
|
||||||
|
return
|
||||||
|
|
||||||
|
await portal.handle_matrix_leave(user)
|
||||||
|
|
|
@ -56,7 +56,7 @@ ReuploadedMediaInfo = NamedTuple('ReuploadedMediaInfo', mxc=Optional[ContentURI]
|
||||||
class Portal(DBPortal, BasePortal):
|
class Portal(DBPortal, BasePortal):
|
||||||
invite_own_puppet_to_pm: bool = False
|
invite_own_puppet_to_pm: bool = False
|
||||||
by_mxid: Dict[RoomID, 'Portal'] = {}
|
by_mxid: Dict[RoomID, 'Portal'] = {}
|
||||||
by_chat_id: Dict[int, 'Portal'] = {}
|
by_chat_id: Dict[str, 'Portal'] = {}
|
||||||
config: Config
|
config: Config
|
||||||
matrix: 'm.MatrixHandler'
|
matrix: 'm.MatrixHandler'
|
||||||
az: AppService
|
az: AppService
|
||||||
|
@ -66,7 +66,7 @@ class Portal(DBPortal, BasePortal):
|
||||||
backfill_lock: SimpleLock
|
backfill_lock: SimpleLock
|
||||||
_last_participant_update: Set[str]
|
_last_participant_update: Set[str]
|
||||||
|
|
||||||
def __init__(self, chat_id: int, other_user: Optional[str] = None,
|
def __init__(self, chat_id: str, other_user: Optional[str] = None,
|
||||||
mxid: Optional[RoomID] = None, name: Optional[str] = None,
|
mxid: Optional[RoomID] = None, name: Optional[str] = None,
|
||||||
icon_path: Optional[str] = None, icon_mxc: Optional[ContentURI] = None,
|
icon_path: Optional[str] = None, icon_mxc: Optional[ContentURI] = None,
|
||||||
encrypted: bool = False) -> None:
|
encrypted: bool = False) -> None:
|
||||||
|
@ -100,6 +100,7 @@ class Portal(DBPortal, BasePortal):
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def init_cls(cls, bridge: 'MessagesBridge') -> None:
|
def init_cls(cls, bridge: 'MessagesBridge') -> None:
|
||||||
|
BasePortal.bridge = bridge
|
||||||
cls.config = bridge.config
|
cls.config = bridge.config
|
||||||
cls.matrix = bridge.matrix
|
cls.matrix = bridge.matrix
|
||||||
cls.az = bridge.az
|
cls.az = bridge.az
|
||||||
|
@ -163,13 +164,15 @@ class Portal(DBPortal, BasePortal):
|
||||||
self.log.warning(f"Handled Matrix message {event_id} -> {message_id}")
|
self.log.warning(f"Handled Matrix message {event_id} -> {message_id}")
|
||||||
|
|
||||||
async def handle_matrix_leave(self, user: 'u.User') -> None:
|
async def handle_matrix_leave(self, user: 'u.User') -> None:
|
||||||
if self.is_direct:
|
self.log.info(f"{user.mxid} left portal to {self.chat_id}, "
|
||||||
self.log.info(f"{user.mxid} left private chat portal with {self.other_user}, "
|
f"cleaning up and deleting...")
|
||||||
f"cleaning up and deleting...")
|
if self.invite_own_puppet_to_pm:
|
||||||
await self.cleanup_and_delete()
|
# TODO Use own puppet instead of bridge bot. Then cleanup_and_delete will handle it
|
||||||
else:
|
try:
|
||||||
self.log.debug(f"{user.mxid} left portal to {self.chat_id}")
|
await self.az.intent.leave_room(self.mxid)
|
||||||
# TODO cleanup if empty
|
except MatrixError:
|
||||||
|
pass
|
||||||
|
await self.cleanup_and_delete()
|
||||||
|
|
||||||
async def _bridge_own_message_pm(self, source: 'u.User', sender: Optional['p.Puppet'], mid: str,
|
async def _bridge_own_message_pm(self, source: 'u.User', sender: Optional['p.Puppet'], mid: str,
|
||||||
invite: bool = True) -> Optional[IntentAPI]:
|
invite: bool = True) -> Optional[IntentAPI]:
|
||||||
|
@ -586,14 +589,12 @@ class Portal(DBPortal, BasePortal):
|
||||||
self._main_intent = self.az.intent
|
self._main_intent = self.az.intent
|
||||||
|
|
||||||
async def delete(self) -> None:
|
async def delete(self) -> None:
|
||||||
await DBMessage.delete_all(self.mxid)
|
if self.mxid:
|
||||||
|
# TODO Handle this with db foreign keys instead
|
||||||
|
await DBMessage.delete_all(self.mxid)
|
||||||
|
self.by_chat_id.pop(self.chat_id, None)
|
||||||
self.by_mxid.pop(self.mxid, None)
|
self.by_mxid.pop(self.mxid, None)
|
||||||
self.mxid = None
|
await super().delete()
|
||||||
self.name = None
|
|
||||||
self.icon_path = None
|
|
||||||
self.icon_mxc = None
|
|
||||||
self.encrypted = False
|
|
||||||
await self.update()
|
|
||||||
|
|
||||||
async def save(self) -> None:
|
async def save(self) -> None:
|
||||||
await self.update()
|
await self.update()
|
||||||
|
@ -624,7 +625,7 @@ class Portal(DBPortal, BasePortal):
|
||||||
return None
|
return None
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
async def get_by_chat_id(cls, chat_id: int, create: bool = False) -> Optional['Portal']:
|
async def get_by_chat_id(cls, chat_id: str, create: bool = False) -> Optional['Portal']:
|
||||||
try:
|
try:
|
||||||
return cls.by_chat_id[chat_id]
|
return cls.by_chat_id[chat_id]
|
||||||
except KeyError:
|
except KeyError:
|
||||||
|
|
|
@ -45,10 +45,10 @@ class Client(RPCClient):
|
||||||
resp = await self.request("get_chats")
|
resp = await self.request("get_chats")
|
||||||
return [ChatListInfo.deserialize(data) for data in resp]
|
return [ChatListInfo.deserialize(data) for data in resp]
|
||||||
|
|
||||||
async def get_chat(self, chat_id: int) -> ChatInfo:
|
async def get_chat(self, chat_id: str) -> ChatInfo:
|
||||||
return ChatInfo.deserialize(await self.request("get_chat", chat_id=chat_id))
|
return ChatInfo.deserialize(await self.request("get_chat", chat_id=chat_id))
|
||||||
|
|
||||||
async def get_messages(self, chat_id: int) -> List[Message]:
|
async def get_messages(self, chat_id: str) -> List[Message]:
|
||||||
resp = await self.request("get_messages", chat_id=chat_id)
|
resp = await self.request("get_messages", chat_id=chat_id)
|
||||||
return [Message.deserialize(data) for data in resp]
|
return [Message.deserialize(data) for data in resp]
|
||||||
|
|
||||||
|
@ -75,15 +75,15 @@ class Client(RPCClient):
|
||||||
resp = await self.request("is_connected")
|
resp = await self.request("is_connected")
|
||||||
return resp["is_connected"]
|
return resp["is_connected"]
|
||||||
|
|
||||||
async def send(self, chat_id: int, text: str) -> int:
|
async def send(self, chat_id: str, text: str) -> int:
|
||||||
resp = await self.request("send", chat_id=chat_id, text=text)
|
resp = await self.request("send", chat_id=chat_id, text=text)
|
||||||
return resp["id"]
|
return resp["id"]
|
||||||
|
|
||||||
async def send_file(self, chat_id: int, file_path: str) -> int:
|
async def send_file(self, chat_id: str, file_path: str) -> int:
|
||||||
resp = await self.request("send_file", chat_id=chat_id, file_path=file_path)
|
resp = await self.request("send_file", chat_id=chat_id, file_path=file_path)
|
||||||
return resp["id"]
|
return resp["id"]
|
||||||
|
|
||||||
async def set_last_message_ids(self, msg_ids: Dict[int, int]) -> None:
|
async def set_last_message_ids(self, msg_ids: Dict[str, int]) -> None:
|
||||||
await self.request("set_last_message_ids", msg_ids=msg_ids)
|
await self.request("set_last_message_ids", msg_ids=msg_ids)
|
||||||
|
|
||||||
async def on_message(self, func: Callable[[Message], Awaitable[None]]) -> None:
|
async def on_message(self, func: Callable[[Message], Awaitable[None]]) -> None:
|
||||||
|
|
|
@ -148,6 +148,7 @@ class User(DBUser, BaseUser):
|
||||||
portal = await po.Portal.get_by_chat_id(evt.chat_id, create=True)
|
portal = await po.Portal.get_by_chat_id(evt.chat_id, create=True)
|
||||||
puppet = await pu.Puppet.get_by_mid(evt.sender.id) if not portal.is_direct else None
|
puppet = await pu.Puppet.get_by_mid(evt.sender.id) if not portal.is_direct else None
|
||||||
if not portal.mxid:
|
if not portal.mxid:
|
||||||
|
await self.client.set_last_message_ids(await DBMessage.get_max_mids())
|
||||||
chat_info = await self.client.get_chat(evt.chat_id)
|
chat_info = await self.client.get_chat(evt.chat_id)
|
||||||
await portal.create_matrix_room(self, chat_info)
|
await portal.create_matrix_room(self, chat_info)
|
||||||
await portal.handle_remote_message(self, puppet, evt)
|
await portal.handle_remote_message(self, puppet, evt)
|
||||||
|
|
|
@ -344,17 +344,17 @@ export default class MessagesPuppeteer {
|
||||||
/**
|
/**
|
||||||
* Get info about a chat.
|
* Get info about a chat.
|
||||||
*
|
*
|
||||||
* @param {number} id - The chat ID whose info to get.
|
* @param {string} chatID - The chat ID whose info to get.
|
||||||
* @return {Promise<ChatInfo>} - Info about the chat.
|
* @return {Promise<ChatInfo>} - Info about the chat.
|
||||||
*/
|
*/
|
||||||
async getChatInfo(id) {
|
async getChatInfo(chatID) {
|
||||||
return await this.taskQueue.push(() => this._getChatInfoUnsafe(id))
|
return await this.taskQueue.push(() => this._getChatInfoUnsafe(chatID))
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Send a message to a chat.
|
* Send a message to a chat.
|
||||||
*
|
*
|
||||||
* @param {number} chatID - The ID of the chat to send a message to.
|
* @param {string} chatID - The ID of the chat to send a message to.
|
||||||
* @param {string} text - The text to send.
|
* @param {string} text - The text to send.
|
||||||
* @return {Promise<{id: number}>} - The ID of the sent message.
|
* @return {Promise<{id: number}>} - The ID of the sent message.
|
||||||
*/
|
*/
|
||||||
|
@ -365,25 +365,31 @@ export default class MessagesPuppeteer {
|
||||||
/**
|
/**
|
||||||
* Get messages in a chat.
|
* Get messages in a chat.
|
||||||
*
|
*
|
||||||
* @param {number} id The ID of the chat whose messages to get.
|
* @param {string} chatID The ID of the chat whose messages to get.
|
||||||
* @return {Promise<[MessageData]>} - The messages visible in the chat.
|
* @return {Promise<[MessageData]>} - The messages visible in the chat.
|
||||||
*/
|
*/
|
||||||
async getMessages(id) {
|
async getMessages(chatID) {
|
||||||
return this.taskQueue.push(async () => {
|
return this.taskQueue.push(async () => {
|
||||||
const messages = await this._getMessagesUnsafe(id)
|
const messages = await this._getMessagesUnsafe(chatID)
|
||||||
if (messages.length > 0) {
|
if (messages.length > 0) {
|
||||||
this.mostRecentMessages.set(id, messages[messages.length - 1].id)
|
// TODO Commonize this
|
||||||
|
const newFirstID = messages[0].id
|
||||||
|
const newLastID = messages[messages.length - 1].id
|
||||||
|
this.mostRecentMessages.set(chatID, newLastID)
|
||||||
|
const range = newFirstID === newLastID ? newFirstID : `${newFirstID}-${newLastID}`
|
||||||
|
this.log(`Loaded ${messages.length} messages in ${chatID}: got ${range}`)
|
||||||
}
|
}
|
||||||
for (const message of messages) {
|
for (const message of messages) {
|
||||||
message.chat_id = id
|
message.chat_id = chatID
|
||||||
}
|
}
|
||||||
return messages
|
return messages
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
setLastMessageIDs(ids) {
|
setLastMessageIDs(ids) {
|
||||||
|
this.mostRecentMessages.clear()
|
||||||
for (const [chatID, messageID] of Object.entries(ids)) {
|
for (const [chatID, messageID] of Object.entries(ids)) {
|
||||||
this.mostRecentMessages.set(+chatID, messageID)
|
this.mostRecentMessages.set(chatID, messageID)
|
||||||
}
|
}
|
||||||
this.log("Updated most recent message ID map:", this.mostRecentMessages)
|
this.log("Updated most recent message ID map:", this.mostRecentMessages)
|
||||||
}
|
}
|
||||||
|
@ -449,10 +455,10 @@ export default class MessagesPuppeteer {
|
||||||
return `#_chat_list_body div[data-chatid="${id}"]`
|
return `#_chat_list_body div[data-chatid="${id}"]`
|
||||||
}
|
}
|
||||||
|
|
||||||
async _switchChat(id) {
|
async _switchChat(chatID) {
|
||||||
// TODO Allow passing in an element directly
|
// TODO Allow passing in an element directly
|
||||||
this.log(`Switching to chat ${id}`)
|
this.log(`Switching to chat ${chatID}`)
|
||||||
const chatListItem = await this.page.$(this._listItemSelector(id))
|
const chatListItem = await this.page.$(this._listItemSelector(chatID))
|
||||||
|
|
||||||
const chatName = await chatListItem.evaluate(
|
const chatName = await chatListItem.evaluate(
|
||||||
element => window.__mautrixController.getChatListItemName(element))
|
element => window.__mautrixController.getChatListItemName(element))
|
||||||
|
@ -499,14 +505,14 @@ export default class MessagesPuppeteer {
|
||||||
//return participantList
|
//return participantList
|
||||||
}
|
}
|
||||||
|
|
||||||
async _getChatInfoUnsafe(id) {
|
async _getChatInfoUnsafe(chatID) {
|
||||||
const chatListItem = await this.page.$(this._listItemSelector(id))
|
const chatListItem = await this.page.$(this._listItemSelector(chatID))
|
||||||
const chatListInfo = await chatListItem.evaluate(
|
const chatListInfo = await chatListItem.evaluate(
|
||||||
(element, id) => window.__mautrixController.parseChatListItem(element, id),
|
(element, chatID) => window.__mautrixController.parseChatListItem(element, chatID),
|
||||||
id)
|
chatID)
|
||||||
|
|
||||||
let [isDirect, isGroup, isRoom] = [false,false,false]
|
let [isDirect, isGroup, isRoom] = [false,false,false]
|
||||||
switch (id.charAt(0)) {
|
switch (chatID.charAt(0)) {
|
||||||
case "u":
|
case "u":
|
||||||
isDirect = true
|
isDirect = true
|
||||||
break
|
break
|
||||||
|
@ -522,18 +528,18 @@ export default class MessagesPuppeteer {
|
||||||
if (!isDirect) {
|
if (!isDirect) {
|
||||||
this.log("Found multi-user chat, so clicking chat header to get participants")
|
this.log("Found multi-user chat, so clicking chat header to get participants")
|
||||||
// TODO This will mark the chat as "read"!
|
// TODO This will mark the chat as "read"!
|
||||||
await this._switchChat(id)
|
await this._switchChat(chatID)
|
||||||
const participantList = await this.getParticipantList()
|
const participantList = await this.getParticipantList()
|
||||||
// TODO Is a group not actually created until a message is sent(?)
|
// TODO Is a group not actually created until a message is sent(?)
|
||||||
// If so, maybe don't create a portal until there is a message.
|
// If so, maybe don't create a portal until there is a message.
|
||||||
participants = await participantList.evaluate(
|
participants = await participantList.evaluate(
|
||||||
element => window.__mautrixController.parseParticipantList(element))
|
element => window.__mautrixController.parseParticipantList(element))
|
||||||
} else {
|
} else {
|
||||||
this.log(`Found direct chat with ${id}`)
|
this.log(`Found direct chat with ${chatID}`)
|
||||||
//const chatDetailArea = await this.page.waitForSelector("#_chat_detail_area > .mdRGT02Info")
|
//const chatDetailArea = await this.page.waitForSelector("#_chat_detail_area > .mdRGT02Info")
|
||||||
//await chatDetailArea.$(".MdTxtDesc02") || // 1:1 chat with custom title - get participant's real name
|
//await chatDetailArea.$(".MdTxtDesc02") || // 1:1 chat with custom title - get participant's real name
|
||||||
participants = [{
|
participants = [{
|
||||||
id: id,
|
id: chatID,
|
||||||
avatar: chatListInfo.icon,
|
avatar: chatListInfo.icon,
|
||||||
name: chatListInfo.name,
|
name: chatListInfo.name,
|
||||||
}]
|
}]
|
||||||
|
@ -576,35 +582,37 @@ export default class MessagesPuppeteer {
|
||||||
// TODO Inbound read receipts
|
// TODO Inbound read receipts
|
||||||
// Probably use a MutationObserver mapped to msgID
|
// Probably use a MutationObserver mapped to msgID
|
||||||
|
|
||||||
async _getMessagesUnsafe(id, minID = 0) {
|
async _getMessagesUnsafe(chatID) {
|
||||||
// TODO Also handle "decrypting" state
|
// TODO Also handle "decrypting" state
|
||||||
// TODO Handle unloaded messages. Maybe scroll up
|
// TODO Handle unloaded messages. Maybe scroll up
|
||||||
// TODO This will mark the chat as "read"!
|
// TODO This will mark the chat as "read"!
|
||||||
await this._switchChat(id)
|
await this._switchChat(chatID)
|
||||||
this.log("Waiting for messages to load")
|
const minID = this.mostRecentMessages.get(chatID) || 0
|
||||||
|
this.log(`Waiting for messages newer than ${minID}`)
|
||||||
const messages = await this.page.evaluate(
|
const messages = await this.page.evaluate(
|
||||||
id => window.__mautrixController.parseMessageList(id), id)
|
chatID => window.__mautrixController.parseMessageList(chatID), chatID)
|
||||||
return messages.filter(msg => msg.id > minID && !this.sentMessageIDs.has(msg.id))
|
const filtered_messages = messages.filter(msg => msg.id > minID && !this.sentMessageIDs.has(msg.id))
|
||||||
|
this.log(`Found messages: ${messages.length} total, ${filtered_messages.length} new`)
|
||||||
|
return filtered_messages
|
||||||
}
|
}
|
||||||
|
|
||||||
async _processChatListChangeUnsafe(id) {
|
async _processChatListChangeUnsafe(chatID) {
|
||||||
this.updatedChats.delete(id)
|
this.updatedChats.delete(chatID)
|
||||||
this.log("Processing change to", id)
|
this.log("Processing change to", chatID)
|
||||||
const lastMsgID = this.mostRecentMessages.get(id) || 0
|
const messages = await this._getMessagesUnsafe(chatID)
|
||||||
const messages = await this._getMessagesUnsafe(id, lastMsgID)
|
|
||||||
if (messages.length === 0) {
|
if (messages.length === 0) {
|
||||||
this.log("No new messages found in", id)
|
this.log("No new messages found in", chatID)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
const newFirstID = messages[0].id
|
const newFirstID = messages[0].id
|
||||||
const newLastID = messages[messages.length - 1].id
|
const newLastID = messages[messages.length - 1].id
|
||||||
this.mostRecentMessages.set(id, newLastID)
|
this.mostRecentMessages.set(chatID, newLastID)
|
||||||
const range = newFirstID === newLastID ? newFirstID : `${newFirstID}-${newLastID}`
|
const range = newFirstID === newLastID ? newFirstID : `${newFirstID}-${newLastID}`
|
||||||
this.log(`Loaded ${messages.length} messages in ${id} after ${lastMsgID}: got ${range}`)
|
this.log(`Loaded ${messages.length} messages in ${chatID}: got ${range}`)
|
||||||
|
|
||||||
if (this.client) {
|
if (this.client) {
|
||||||
for (const message of messages) {
|
for (const message of messages) {
|
||||||
message.chat_id = id
|
message.chat_id = chatID
|
||||||
await this.client.sendMessage(message).catch(err =>
|
await this.client.sendMessage(message).catch(err =>
|
||||||
this.error("Failed to send message", message.id, "to client:", err))
|
this.error("Failed to send message", message.id, "to client:", err))
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue