2022-02-25 02:22:50 -05:00
|
|
|
# matrix-appservice-kakaotalk - A Matrix-KakaoTalk puppeting bridge.
|
|
|
|
# Copyright (C) 2022 Tulir Asokan, Andrew Ferrazzutti
|
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Affero General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU Affero General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
|
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
from __future__ import annotations
|
|
|
|
|
2022-03-24 19:32:46 -04:00
|
|
|
from typing import (
|
|
|
|
TYPE_CHECKING,
|
|
|
|
Any,
|
|
|
|
AsyncGenerator,
|
|
|
|
Awaitable,
|
2022-04-14 03:45:01 -04:00
|
|
|
Callable,
|
|
|
|
NamedTuple,
|
2022-03-24 19:32:46 -04:00
|
|
|
Pattern,
|
|
|
|
cast,
|
|
|
|
)
|
|
|
|
from io import BytesIO
|
2022-03-26 03:37:53 -04:00
|
|
|
from mimetypes import guess_extension
|
2022-02-25 02:22:50 -05:00
|
|
|
import asyncio
|
|
|
|
import re
|
2022-03-09 20:26:39 -05:00
|
|
|
import time
|
2022-02-25 02:22:50 -05:00
|
|
|
|
|
|
|
from mautrix.appservice import IntentAPI
|
|
|
|
from mautrix.bridge import BasePortal, NotificationDisabler, async_getter_lock
|
2022-04-05 02:44:03 -04:00
|
|
|
from mautrix.errors import MatrixError, MForbidden, MNotFound, SessionNotFound
|
2022-02-25 02:22:50 -05:00
|
|
|
from mautrix.types import (
|
2022-03-24 19:32:46 -04:00
|
|
|
AudioInfo,
|
2022-02-25 02:22:50 -05:00
|
|
|
ContentURI,
|
2022-03-24 19:32:46 -04:00
|
|
|
EncryptedFile,
|
2022-02-25 02:22:50 -05:00
|
|
|
EventID,
|
|
|
|
EventType,
|
2022-03-24 19:32:46 -04:00
|
|
|
FileInfo,
|
|
|
|
ImageInfo,
|
2022-04-11 23:45:00 -04:00
|
|
|
JoinRule,
|
|
|
|
JoinRulesStateEventContent,
|
2022-02-25 02:22:50 -05:00
|
|
|
LocationMessageEventContent,
|
2022-03-28 03:36:16 -04:00
|
|
|
MediaInfo,
|
2022-02-25 02:22:50 -05:00
|
|
|
MediaMessageEventContent,
|
|
|
|
Membership,
|
|
|
|
MessageEventContent,
|
|
|
|
MessageType,
|
2022-04-13 01:12:56 -04:00
|
|
|
PowerLevelStateEventContent,
|
2022-04-14 03:45:01 -04:00
|
|
|
RoomAvatarStateEventContent,
|
|
|
|
RoomNameStateEventContent,
|
|
|
|
RoomTopicStateEventContent,
|
2022-04-05 15:44:02 -04:00
|
|
|
RelationType,
|
2022-02-25 02:22:50 -05:00
|
|
|
RoomID,
|
2022-04-14 03:45:01 -04:00
|
|
|
StateEvent,
|
|
|
|
StateEventContent,
|
2022-02-25 02:22:50 -05:00
|
|
|
TextMessageEventContent,
|
|
|
|
UserID,
|
2022-03-24 19:32:46 -04:00
|
|
|
VideoInfo,
|
2022-02-25 02:22:50 -05:00
|
|
|
)
|
2022-03-26 03:37:53 -04:00
|
|
|
from mautrix.util import ffmpeg, magic
|
2022-02-25 02:22:50 -05:00
|
|
|
from mautrix.util.message_send_checkpoint import MessageSendCheckpointStatus
|
|
|
|
from mautrix.util.simple_lock import SimpleLock
|
|
|
|
|
|
|
|
from . import matrix as m, puppet as p, user as u
|
|
|
|
from .config import Config
|
|
|
|
from .db import (
|
|
|
|
Message as DBMessage,
|
|
|
|
Portal as DBPortal,
|
|
|
|
)
|
2022-03-09 20:26:39 -05:00
|
|
|
from .formatter import kakaotalk_to_matrix, matrix_to_kakaotalk
|
2022-02-25 02:22:50 -05:00
|
|
|
|
2022-03-11 03:43:00 -05:00
|
|
|
from .kt.types.bson import Long
|
2022-03-09 02:25:28 -05:00
|
|
|
from .kt.types.channel.channel_info import ChannelInfo
|
2022-02-25 02:22:50 -05:00
|
|
|
from .kt.types.channel.channel_type import KnownChannelType, ChannelType
|
2022-04-05 00:54:21 -04:00
|
|
|
from .kt.types.chat import Chatlog, ChatType, KnownChatType
|
2022-03-24 19:32:46 -04:00
|
|
|
from .kt.types.chat.attachment import (
|
2022-04-05 18:21:35 -04:00
|
|
|
Attachment,
|
2022-03-28 03:36:16 -04:00
|
|
|
AudioAttachment,
|
|
|
|
#FileAttachment,
|
|
|
|
MediaAttachment,
|
|
|
|
MultiPhotoAttachment,
|
2022-03-24 19:32:46 -04:00
|
|
|
PhotoAttachment,
|
2022-04-05 02:44:03 -04:00
|
|
|
ReplyAttachment,
|
2022-03-28 03:36:16 -04:00
|
|
|
VideoAttachment,
|
2022-03-24 19:32:46 -04:00
|
|
|
)
|
2022-04-13 01:12:56 -04:00
|
|
|
from .kt.types.user.channel_user_info import OpenChannelUserInfo
|
|
|
|
from .kt.types.openlink.open_link_type import OpenChannelUserPerm
|
2022-02-25 02:22:50 -05:00
|
|
|
|
2022-03-26 03:37:53 -04:00
|
|
|
from .kt.client.types import (
|
|
|
|
UserInfoUnion,
|
|
|
|
PortalChannelInfo,
|
|
|
|
ChannelProps,
|
|
|
|
TO_MSGTYPE_MAP,
|
2022-04-13 01:12:56 -04:00
|
|
|
FROM_PERM_MAP,
|
2022-04-13 15:29:44 -04:00
|
|
|
TO_PERM_MAP,
|
2022-03-26 03:37:53 -04:00
|
|
|
)
|
2022-03-09 20:26:39 -05:00
|
|
|
from .kt.client.errors import CommandException
|
2022-02-25 02:22:50 -05:00
|
|
|
|
|
|
|
if TYPE_CHECKING:
|
|
|
|
from .__main__ import KakaoTalkBridge
|
|
|
|
|
|
|
|
try:
|
|
|
|
from PIL import Image
|
|
|
|
except ImportError:
|
|
|
|
Image = None
|
|
|
|
|
|
|
|
try:
|
|
|
|
from mautrix.crypto.attachments import decrypt_attachment, encrypt_attachment
|
|
|
|
except ImportError:
|
|
|
|
decrypt_attachment = encrypt_attachment = None
|
|
|
|
|
|
|
|
geo_uri_regex: Pattern = re.compile(r"^geo:(-?\d+.\d+),(-?\d+.\d+)$")
|
|
|
|
|
|
|
|
|
|
|
|
class FakeLock:
|
|
|
|
async def __aenter__(self) -> None:
|
|
|
|
pass
|
|
|
|
|
|
|
|
async def __aexit__(self, exc_type, exc, tb) -> None:
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2022-04-14 03:45:01 -04:00
|
|
|
class StateEventHandler(NamedTuple):
|
|
|
|
# TODO Can this use Generic to force the two StateEventContent parameters to be of the same type?
|
|
|
|
# Or, just have a single StateEvent parameter
|
|
|
|
apply: Callable[[u.User, StateEventContent, StateEventContent], Awaitable[None]]
|
|
|
|
revert: Callable[[StateEventContent], Awaitable[None]]
|
|
|
|
action_name: str
|
|
|
|
|
|
|
|
|
2022-02-25 02:22:50 -05:00
|
|
|
StateBridge = EventType.find("m.bridge", EventType.Class.STATE)
|
|
|
|
StateHalfShotBridge = EventType.find("uk.half-shot.bridge", EventType.Class.STATE)
|
|
|
|
|
|
|
|
|
|
|
|
class Portal(DBPortal, BasePortal):
|
|
|
|
invite_own_puppet_to_pm: bool = False
|
|
|
|
by_mxid: dict[RoomID, Portal] = {}
|
2022-03-11 03:43:00 -05:00
|
|
|
by_ktid: dict[tuple[int, int], Portal] = {}
|
2022-02-25 02:22:50 -05:00
|
|
|
matrix: m.MatrixHandler
|
|
|
|
config: Config
|
|
|
|
|
|
|
|
_main_intent: IntentAPI | None
|
2022-04-04 20:07:30 -04:00
|
|
|
_kt_sender: Long | None
|
2022-02-25 02:22:50 -05:00
|
|
|
_create_room_lock: asyncio.Lock
|
|
|
|
_send_locks: dict[int, asyncio.Lock]
|
|
|
|
_noop_lock: FakeLock = FakeLock()
|
|
|
|
backfill_lock: SimpleLock
|
|
|
|
_backfill_leave: set[IntentAPI] | None
|
2022-03-10 02:46:24 -05:00
|
|
|
_sleeping_to_resync: bool
|
|
|
|
_scheduled_resync: asyncio.Task | None
|
|
|
|
_resync_targets: dict[int, p.Puppet]
|
2022-02-25 02:22:50 -05:00
|
|
|
|
|
|
|
def __init__(
|
|
|
|
self,
|
|
|
|
ktid: Long,
|
|
|
|
kt_receiver: Long,
|
|
|
|
kt_type: ChannelType,
|
|
|
|
mxid: RoomID | None = None,
|
|
|
|
name: str | None = None,
|
2022-04-13 13:02:55 -04:00
|
|
|
description: str | None = None,
|
2022-02-25 02:22:50 -05:00
|
|
|
photo_id: str | None = None,
|
|
|
|
avatar_url: ContentURI | None = None,
|
|
|
|
encrypted: bool = False,
|
|
|
|
name_set: bool = False,
|
2022-04-13 13:02:55 -04:00
|
|
|
topic_set: bool = False,
|
2022-02-25 02:22:50 -05:00
|
|
|
avatar_set: bool = False,
|
|
|
|
relay_user_id: UserID | None = None,
|
|
|
|
) -> None:
|
|
|
|
super().__init__(
|
|
|
|
ktid,
|
|
|
|
kt_receiver,
|
|
|
|
kt_type,
|
|
|
|
mxid,
|
|
|
|
name,
|
2022-04-13 13:02:55 -04:00
|
|
|
description,
|
2022-02-25 02:22:50 -05:00
|
|
|
photo_id,
|
|
|
|
avatar_url,
|
|
|
|
encrypted,
|
|
|
|
name_set,
|
2022-04-13 13:02:55 -04:00
|
|
|
topic_set,
|
2022-02-25 02:22:50 -05:00
|
|
|
avatar_set,
|
|
|
|
relay_user_id,
|
|
|
|
)
|
|
|
|
self.log = self.log.getChild(self.ktid_log)
|
|
|
|
|
|
|
|
self._main_intent = None
|
2022-03-13 00:30:29 -05:00
|
|
|
self._kt_sender = None
|
2022-02-25 02:22:50 -05:00
|
|
|
self._create_room_lock = asyncio.Lock()
|
|
|
|
self._send_locks = {}
|
2022-03-10 02:46:24 -05:00
|
|
|
self._sleeping_to_resync = False
|
|
|
|
self._scheduled_resync = None
|
|
|
|
self._resync_targets = {}
|
2022-02-25 02:22:50 -05:00
|
|
|
|
|
|
|
self.backfill_lock = SimpleLock(
|
|
|
|
"Waiting for backfilling to finish before handling %s", log=self.log
|
|
|
|
)
|
|
|
|
self._backfill_leave = None
|
|
|
|
|
|
|
|
self._relay_user = None
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def init_cls(cls, bridge: KakaoTalkBridge) -> None:
|
|
|
|
BasePortal.bridge = bridge
|
|
|
|
cls.az = bridge.az
|
|
|
|
cls.config = bridge.config
|
|
|
|
cls.loop = bridge.loop
|
|
|
|
cls.matrix = bridge.matrix
|
|
|
|
cls.invite_own_puppet_to_pm = cls.config["bridge.invite_own_puppet_to_pm"]
|
|
|
|
NotificationDisabler.puppet_cls = p.Puppet
|
|
|
|
NotificationDisabler.config_enabled = cls.config["bridge.backfill.disable_notifications"]
|
|
|
|
|
2022-04-14 03:45:01 -04:00
|
|
|
cls._CHAT_TYPE_HANDLER_MAP = {
|
2022-04-10 05:07:41 -04:00
|
|
|
KnownChatType.FEED: cls._handle_kakaotalk_feed,
|
2022-04-09 03:36:48 -04:00
|
|
|
KnownChatType.TEXT: cls._handle_kakaotalk_text,
|
|
|
|
KnownChatType.REPLY: cls._handle_kakaotalk_reply,
|
|
|
|
KnownChatType.PHOTO: cls._handle_kakaotalk_photo,
|
|
|
|
KnownChatType.MULTIPHOTO: cls._handle_kakaotalk_multiphoto,
|
|
|
|
KnownChatType.VIDEO: cls._handle_kakaotalk_video,
|
|
|
|
KnownChatType.AUDIO: cls._handle_kakaotalk_audio,
|
|
|
|
#KnownChatType.FILE: cls._handle_kakaotalk_file,
|
2022-04-11 15:49:21 -04:00
|
|
|
16385: cls._handle_kakaotalk_deleted,
|
2022-03-24 19:32:46 -04:00
|
|
|
}
|
|
|
|
|
2022-04-14 03:45:01 -04:00
|
|
|
cls._STATE_EVENT_HANDLER_MAP: dict[EventType, StateEventHandler] = {
|
|
|
|
EventType.ROOM_POWER_LEVELS: StateEventHandler(
|
|
|
|
cls._handle_matrix_power_levels,
|
|
|
|
cls._revert_matrix_power_levels,
|
|
|
|
"power level"
|
|
|
|
),
|
|
|
|
EventType.ROOM_NAME: StateEventHandler(
|
|
|
|
cls._handle_matrix_room_name,
|
|
|
|
cls._revert_matrix_room_name,
|
|
|
|
"room name"
|
|
|
|
),
|
|
|
|
EventType.ROOM_TOPIC: StateEventHandler(
|
|
|
|
cls._handle_matrix_room_topic,
|
|
|
|
cls._revert_matrix_room_topic,
|
|
|
|
"room topic"
|
|
|
|
),
|
|
|
|
EventType.ROOM_AVATAR: StateEventHandler(
|
|
|
|
cls._handle_matrix_room_avatar,
|
|
|
|
cls._revert_matrix_room_avatar,
|
|
|
|
"room avatar"
|
|
|
|
),
|
|
|
|
}
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def supports_state_event(cls, evt_type: EventType) -> bool:
|
|
|
|
return evt_type in cls._STATE_EVENT_HANDLER_MAP
|
|
|
|
|
2022-02-25 02:22:50 -05:00
|
|
|
# region DB conversion
|
|
|
|
|
|
|
|
async def delete(self) -> None:
|
|
|
|
if self.mxid:
|
|
|
|
await DBMessage.delete_all_by_room(self.mxid)
|
2022-04-02 23:16:53 -04:00
|
|
|
self.by_mxid.pop(self.mxid, None)
|
2022-04-04 20:07:30 -04:00
|
|
|
self.by_ktid.pop(self.ktid_full, None)
|
2022-04-02 23:16:53 -04:00
|
|
|
self.mxid = None
|
|
|
|
self.name_set = False
|
|
|
|
self.avatar_set = False
|
|
|
|
self.relay_user_id = None
|
|
|
|
self.encrypted = False
|
|
|
|
await super().save()
|
2022-02-25 02:22:50 -05:00
|
|
|
|
|
|
|
# endregion
|
|
|
|
# region Properties
|
|
|
|
|
|
|
|
@property
|
2022-04-04 20:07:30 -04:00
|
|
|
def ktid_full(self) -> tuple[Long, Long]:
|
2022-02-25 02:22:50 -05:00
|
|
|
return self.ktid, self.kt_receiver
|
|
|
|
|
|
|
|
@property
|
|
|
|
def ktid_log(self) -> str:
|
|
|
|
if self.is_direct:
|
2022-03-13 00:30:29 -05:00
|
|
|
return f"{self.ktid}->{self.kt_receiver}"
|
2022-02-25 02:22:50 -05:00
|
|
|
return str(self.ktid)
|
|
|
|
|
|
|
|
@property
|
|
|
|
def is_direct(self) -> bool:
|
|
|
|
return KnownChannelType.is_direct(self.kt_type)
|
|
|
|
|
2022-04-13 01:12:56 -04:00
|
|
|
@property
|
|
|
|
def is_open(self) -> bool:
|
|
|
|
return KnownChannelType.is_open(self.kt_type)
|
|
|
|
|
2022-03-13 00:30:29 -05:00
|
|
|
@property
|
|
|
|
def kt_sender(self) -> int | None:
|
|
|
|
if self.is_direct:
|
|
|
|
if not self._kt_sender:
|
|
|
|
raise ValueError("Direct chat portal must set sender")
|
|
|
|
else:
|
|
|
|
if self._kt_sender:
|
|
|
|
raise ValueError(f"Non-direct chat portal should have no sender, but has sender {self._kt_sender}")
|
|
|
|
return self._kt_sender
|
|
|
|
|
2022-03-21 01:33:22 -04:00
|
|
|
@property
|
|
|
|
def channel_props(self) -> ChannelProps:
|
|
|
|
return ChannelProps(
|
|
|
|
id=self.ktid,
|
|
|
|
type=self.kt_type
|
|
|
|
)
|
|
|
|
|
2022-02-25 02:22:50 -05:00
|
|
|
@property
|
|
|
|
def main_intent(self) -> IntentAPI:
|
|
|
|
if not self._main_intent:
|
2022-04-04 20:07:30 -04:00
|
|
|
raise ValueError("Portal must be postinit()ed before main_intent can be used")
|
2022-02-25 02:22:50 -05:00
|
|
|
return self._main_intent
|
|
|
|
|
2022-04-02 23:16:53 -04:00
|
|
|
async def get_dm_puppet(self) -> p.Puppet | None:
|
|
|
|
if not self.is_direct:
|
|
|
|
return None
|
|
|
|
return await p.Puppet.get_by_ktid(self.kt_sender)
|
|
|
|
|
2022-02-25 02:22:50 -05:00
|
|
|
# endregion
|
|
|
|
# region Chat info updating
|
|
|
|
|
2022-03-10 02:46:24 -05:00
|
|
|
def schedule_resync(self, source: u.User, target: p.Puppet) -> None:
|
|
|
|
self._resync_targets[target.ktid] = target
|
|
|
|
if (
|
|
|
|
self._sleeping_to_resync
|
|
|
|
and self._scheduled_resync
|
|
|
|
and not self._scheduled_resync.done()
|
|
|
|
):
|
|
|
|
return
|
|
|
|
self._sleeping_to_resync = True
|
|
|
|
self.log.debug(f"Scheduling resync through {source.mxid}/{source.ktid}")
|
|
|
|
self._scheduled_resync = asyncio.create_task(self._sleep_and_resync(source, 10))
|
|
|
|
|
|
|
|
async def _sleep_and_resync(self, source: u.User, sleep: int) -> None:
|
|
|
|
await asyncio.sleep(sleep)
|
|
|
|
targets = self._resync_targets
|
|
|
|
self._sleeping_to_resync = False
|
|
|
|
self._resync_targets = {}
|
|
|
|
for puppet in targets.values():
|
|
|
|
if not puppet.name or not puppet.name_set:
|
|
|
|
break
|
|
|
|
else:
|
|
|
|
self.log.debug(
|
|
|
|
f"Cancelled resync through {source.mxid}/{source.ktid}, all puppets have names"
|
|
|
|
)
|
|
|
|
return
|
|
|
|
self.log.debug(f"Resyncing chat through {source.mxid}/{source.ktid} after sleeping")
|
|
|
|
await self.update_info(source)
|
|
|
|
self._scheduled_resync = None
|
|
|
|
self.log.debug(f"Completed scheduled resync through {source.mxid}/{source.ktid}")
|
|
|
|
|
2022-02-25 02:22:50 -05:00
|
|
|
async def update_info(
|
|
|
|
self,
|
|
|
|
source: u.User,
|
2022-03-10 02:46:24 -05:00
|
|
|
info: PortalChannelInfo | None = None,
|
2022-02-25 02:22:50 -05:00
|
|
|
force_save: bool = False,
|
2022-03-13 00:30:29 -05:00
|
|
|
) -> PortalChannelInfo:
|
2022-03-10 02:46:24 -05:00
|
|
|
if not info:
|
|
|
|
self.log.debug("Called update_info with no info, fetching channel info...")
|
2022-03-21 01:33:22 -04:00
|
|
|
info = await source.client.get_portal_channel_info(self.channel_props)
|
2022-02-25 02:22:50 -05:00
|
|
|
changed = False
|
|
|
|
if not self.is_direct:
|
|
|
|
changed = any(
|
|
|
|
await asyncio.gather(
|
|
|
|
self._update_name(info.name),
|
2022-04-13 13:02:55 -04:00
|
|
|
self._update_description(info.description),
|
|
|
|
self._update_photo(source, info.photoURL),
|
2022-02-25 02:22:50 -05:00
|
|
|
)
|
|
|
|
)
|
2022-04-13 13:02:55 -04:00
|
|
|
if info.participants is not None:
|
|
|
|
changed = await self._update_participants(source, info.participants) or changed
|
|
|
|
if self.mxid and self.is_open:
|
|
|
|
user_power_levels = await self._get_mapped_participant_power_levels(info.participants, skip_default=False)
|
|
|
|
asyncio.create_task(self.set_power_levels(user_power_levels))
|
2022-02-25 02:22:50 -05:00
|
|
|
if changed or force_save:
|
|
|
|
await self.update_bridge_info()
|
|
|
|
await self.save()
|
2022-03-10 02:46:24 -05:00
|
|
|
return info
|
2022-02-25 02:22:50 -05:00
|
|
|
|
2022-04-13 01:12:56 -04:00
|
|
|
async def _get_mapped_participant_power_levels(self, participants: list[UserInfoUnion], skip_default: bool) -> dict[UserID, int]:
|
|
|
|
user_power_levels: dict[UserID, int] = {}
|
|
|
|
default_value = None if skip_default else 0
|
|
|
|
for participant in participants:
|
|
|
|
if not isinstance(participant, OpenChannelUserInfo):
|
|
|
|
self.log.warning(f"Info object for participant {participant.userId} of open channel is not an OpenChannelUserInfo")
|
|
|
|
continue
|
|
|
|
power_level = FROM_PERM_MAP.get(participant.perm, default_value)
|
|
|
|
if power_level is None:
|
|
|
|
continue
|
|
|
|
await self.update_mapped_ktid_power_levels(user_power_levels, participant.userId, power_level)
|
|
|
|
return user_power_levels
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
async def update_mapped_ktid_power_levels(user_power_levels: dict[UserID, int], ktid: int, power_level: int) -> None:
|
|
|
|
user = await u.User.get_by_ktid(ktid)
|
|
|
|
if user:
|
|
|
|
user_power_levels[user.mxid] = power_level
|
|
|
|
puppet = await p.Puppet.get_by_ktid(ktid)
|
|
|
|
if puppet:
|
|
|
|
user_power_levels[puppet.mxid] = power_level
|
|
|
|
|
|
|
|
async def set_power_levels(self, user_power_levels: dict[UserID, int]) -> None:
|
|
|
|
if self.mxid and user_power_levels:
|
|
|
|
changed = False
|
|
|
|
power_levels = await self.main_intent.get_power_levels(self.mxid)
|
|
|
|
for user, power_level in user_power_levels.items():
|
|
|
|
changed = power_levels.ensure_user_level(user, power_level) or changed
|
|
|
|
if changed:
|
|
|
|
await self.main_intent.set_power_levels(self.mxid, power_levels)
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
async def get_mapped_ktid_power_levels(ktid: int, power_level: int) -> dict[UserID, int]:
|
|
|
|
user_power_levels: dict[UserID, int] = {}
|
|
|
|
await Portal.update_mapped_ktid_power_levels(user_power_levels, ktid, power_level)
|
|
|
|
return user_power_levels
|
|
|
|
|
2022-02-25 02:22:50 -05:00
|
|
|
@classmethod
|
2022-04-09 03:36:48 -04:00
|
|
|
async def _reupload_kakaotalk_file(
|
2022-02-25 02:22:50 -05:00
|
|
|
cls,
|
|
|
|
url: str,
|
|
|
|
source: u.User,
|
|
|
|
intent: IntentAPI,
|
|
|
|
*,
|
|
|
|
filename: str | None = None,
|
2022-03-28 03:36:16 -04:00
|
|
|
mimetype: str | None,
|
2022-02-25 02:22:50 -05:00
|
|
|
encrypt: bool = False,
|
|
|
|
find_size: bool = False,
|
|
|
|
convert_audio: bool = False,
|
|
|
|
) -> tuple[ContentURI, FileInfo | VideoInfo | AudioInfo | ImageInfo, EncryptedFile | None]:
|
|
|
|
if not url:
|
|
|
|
raise ValueError("URL not provided")
|
|
|
|
sandbox = cls.config["bridge.sandbox_media_download"]
|
2022-03-24 19:32:46 -04:00
|
|
|
# TODO Referer header?
|
|
|
|
async with source.client.get(url, sandbox=sandbox) as resp:
|
2022-02-25 02:22:50 -05:00
|
|
|
length = int(resp.headers["Content-Length"])
|
|
|
|
if length > cls.matrix.media_config.upload_size:
|
|
|
|
raise ValueError("File not available: too large")
|
|
|
|
data = await resp.read()
|
2022-03-28 03:36:16 -04:00
|
|
|
if not mimetype:
|
|
|
|
mimetype = magic.mimetype(data)
|
|
|
|
if convert_audio and mimetype != "audio/ogg":
|
2022-02-25 02:22:50 -05:00
|
|
|
data = await ffmpeg.convert_bytes(
|
2022-03-28 03:36:16 -04:00
|
|
|
data, ".ogg", output_args=("-c:a", "libopus"), input_mime=mimetype
|
2022-02-25 02:22:50 -05:00
|
|
|
)
|
2022-03-28 03:36:16 -04:00
|
|
|
mimetype = "audio/ogg"
|
|
|
|
info = FileInfo(mimetype=mimetype, size=len(data))
|
|
|
|
if Image and mimetype.startswith("image/") and find_size:
|
2022-02-25 02:22:50 -05:00
|
|
|
with Image.open(BytesIO(data)) as img:
|
|
|
|
width, height = img.size
|
2022-03-28 03:36:16 -04:00
|
|
|
info = ImageInfo(mimetype=mimetype, size=len(data), width=width, height=height)
|
|
|
|
upload_mime_type = mimetype
|
2022-02-25 02:22:50 -05:00
|
|
|
decryption_info = None
|
|
|
|
if encrypt and encrypt_attachment:
|
|
|
|
data, decryption_info = encrypt_attachment(data)
|
|
|
|
upload_mime_type = "application/octet-stream"
|
|
|
|
filename = None
|
2022-04-02 23:16:53 -04:00
|
|
|
url = await intent.upload_media(
|
|
|
|
data,
|
|
|
|
mime_type=upload_mime_type,
|
|
|
|
filename=filename,
|
|
|
|
async_upload=cls.config["homeserver.async_media"],
|
|
|
|
)
|
2022-02-25 02:22:50 -05:00
|
|
|
if decryption_info:
|
|
|
|
decryption_info.url = url
|
|
|
|
return url, info, decryption_info
|
|
|
|
|
|
|
|
async def _update_name(self, name: str) -> bool:
|
|
|
|
if not name:
|
|
|
|
self.log.warning("Got empty name in _update_name call")
|
|
|
|
return False
|
|
|
|
if self.name != name or not self.name_set:
|
|
|
|
self.log.trace("Updating name %s -> %s", self.name, name)
|
|
|
|
self.name = name
|
|
|
|
if self.mxid and (self.encrypted or not self.is_direct):
|
|
|
|
try:
|
|
|
|
await self.main_intent.set_room_name(self.mxid, self.name)
|
|
|
|
self.name_set = True
|
|
|
|
except Exception:
|
|
|
|
self.log.exception("Failed to set room name")
|
|
|
|
self.name_set = False
|
|
|
|
return True
|
|
|
|
return False
|
|
|
|
|
2022-04-13 13:02:55 -04:00
|
|
|
async def _update_description(self, description: str | None) -> bool:
|
|
|
|
if self.description != description or not self.topic_set:
|
|
|
|
self.log.trace("Updating description %s -> %s", self.description, description)
|
|
|
|
self.description = description
|
|
|
|
if self.mxid and (self.encrypted or not self.is_direct):
|
|
|
|
try:
|
2022-04-23 13:56:44 -04:00
|
|
|
await self.main_intent.set_room_topic(self.mxid, self.description or "")
|
2022-04-13 13:02:55 -04:00
|
|
|
self.topic_set = True
|
|
|
|
except Exception:
|
|
|
|
self.log.exception("Failed to set room description")
|
|
|
|
self.topic_set = False
|
|
|
|
return True
|
|
|
|
return False
|
|
|
|
|
|
|
|
async def _update_photo(self, source: u.User, photo_id: str | None) -> bool:
|
2022-02-25 02:22:50 -05:00
|
|
|
if self.is_direct and not self.encrypted:
|
|
|
|
return False
|
2022-04-13 13:02:55 -04:00
|
|
|
if self.photo_id is not None and photo_id is None:
|
|
|
|
self.log.warning("Portal previously had a photo_id, but new photo_id is None. Leaving it as it is")
|
|
|
|
return False
|
2022-02-25 02:22:50 -05:00
|
|
|
if self.photo_id != photo_id or not self.avatar_set:
|
|
|
|
self.photo_id = photo_id
|
2022-04-13 13:02:55 -04:00
|
|
|
if photo_id:
|
2022-02-25 02:22:50 -05:00
|
|
|
if self.photo_id != photo_id or not self.avatar_url:
|
|
|
|
# Reset avatar_url first in case the upload fails
|
|
|
|
self.avatar_url = None
|
|
|
|
self.avatar_url = await p.Puppet.reupload_avatar(
|
|
|
|
source,
|
|
|
|
self.main_intent,
|
2022-04-13 13:02:55 -04:00
|
|
|
photo_id,
|
2022-02-25 02:22:50 -05:00
|
|
|
self.ktid,
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
self.avatar_url = ContentURI("")
|
|
|
|
if self.mxid:
|
|
|
|
try:
|
|
|
|
await self.main_intent.set_room_avatar(self.mxid, self.avatar_url)
|
|
|
|
self.avatar_set = True
|
|
|
|
except Exception:
|
|
|
|
self.log.exception("Failed to set room avatar")
|
|
|
|
self.avatar_set = False
|
|
|
|
return True
|
|
|
|
return False
|
|
|
|
|
|
|
|
async def _update_photo_from_puppet(self, puppet: p.Puppet) -> bool:
|
|
|
|
if self.photo_id == puppet.photo_id and self.avatar_set:
|
|
|
|
return False
|
|
|
|
self.photo_id = puppet.photo_id
|
|
|
|
if puppet.photo_mxc:
|
|
|
|
self.avatar_url = puppet.photo_mxc
|
|
|
|
elif self.photo_id:
|
|
|
|
profile = await self.main_intent.get_profile(puppet.default_mxid)
|
|
|
|
self.avatar_url = profile.avatar_url
|
|
|
|
puppet.photo_mxc = profile.avatar_url
|
|
|
|
else:
|
|
|
|
self.avatar_url = ContentURI("")
|
|
|
|
if self.mxid:
|
|
|
|
try:
|
|
|
|
await self.main_intent.set_room_avatar(self.mxid, self.avatar_url)
|
|
|
|
self.avatar_set = True
|
|
|
|
except Exception:
|
|
|
|
self.log.exception("Failed to set room avatar")
|
|
|
|
self.avatar_set = False
|
|
|
|
return True
|
|
|
|
|
2022-04-02 23:16:53 -04:00
|
|
|
async def update_info_from_puppet(self, puppet: p.Puppet | None = None) -> bool:
|
|
|
|
if not self.is_direct:
|
|
|
|
return False
|
|
|
|
if not puppet:
|
|
|
|
puppet = await self.get_dm_puppet()
|
|
|
|
changed = await self._update_name(puppet.name)
|
|
|
|
changed = await self._update_photo_from_puppet(puppet) or changed
|
|
|
|
return changed
|
|
|
|
|
2022-02-25 02:22:50 -05:00
|
|
|
"""
|
|
|
|
async def sync_per_room_nick(self, puppet: p.Puppet, name: str) -> None:
|
|
|
|
intent = puppet.intent_for(self)
|
|
|
|
content = MemberStateEventContent(
|
|
|
|
membership=Membership.JOIN,
|
|
|
|
avatar_url=puppet.photo_mxc,
|
|
|
|
displayname=name or puppet.name,
|
|
|
|
)
|
|
|
|
content[DOUBLE_PUPPET_SOURCE_KEY] = self.bridge.name
|
|
|
|
current_state = await intent.state_store.get_member(self.mxid, intent.mxid)
|
|
|
|
if not current_state or current_state.displayname != content.displayname:
|
|
|
|
self.log.debug(
|
|
|
|
"Syncing %s's per-room nick %s to the room",
|
|
|
|
puppet.ktid,
|
|
|
|
content.displayname,
|
|
|
|
)
|
|
|
|
await intent.send_state_event(
|
|
|
|
self.mxid, EventType.ROOM_MEMBER, content, state_key=intent.mxid
|
|
|
|
)
|
|
|
|
"""
|
|
|
|
|
2022-04-02 23:16:53 -04:00
|
|
|
async def _update_participant(
|
|
|
|
self, source: u.User, participant: UserInfoUnion
|
|
|
|
) -> bool:
|
|
|
|
# TODO nick map?
|
2022-04-04 20:07:30 -04:00
|
|
|
self.log.trace(f"Syncing participant {participant.userId}")
|
2022-04-02 23:16:53 -04:00
|
|
|
puppet = await p.Puppet.get_by_ktid(participant.userId)
|
|
|
|
await puppet.update_info_from_participant(source, participant)
|
|
|
|
changed = False
|
|
|
|
if self.is_direct and self._kt_sender == puppet.ktid and self.encrypted:
|
|
|
|
changed = await self._update_info_from_puppet(puppet.name) or changed
|
|
|
|
if self.mxid:
|
|
|
|
if puppet.ktid != self.kt_receiver or puppet.is_real_user:
|
|
|
|
await puppet.intent_for(self).ensure_joined(self.mxid, bot=self.main_intent)
|
|
|
|
#if puppet.ktid in nick_map:
|
|
|
|
# await self.sync_per_room_nick(puppet, nick_map[puppet.ktid])
|
|
|
|
return changed
|
|
|
|
|
|
|
|
|
2022-03-20 03:12:17 -04:00
|
|
|
async def _update_participants(self, source: u.User, participants: list[UserInfoUnion] | None = None) -> bool:
|
2022-04-02 23:16:53 -04:00
|
|
|
# TODO nick map?
|
2022-03-20 03:12:17 -04:00
|
|
|
if participants is None:
|
|
|
|
self.log.debug("Called _update_participants with no participants, fetching them now...")
|
2022-03-21 01:33:22 -04:00
|
|
|
participants = await source.client.get_participants(self.channel_props)
|
2022-04-02 23:16:53 -04:00
|
|
|
sync_tasks = [
|
|
|
|
self._update_participant(source, pcp) for pcp in participants
|
|
|
|
]
|
|
|
|
changed = any(await asyncio.gather(*sync_tasks))
|
2022-02-25 02:22:50 -05:00
|
|
|
return changed
|
|
|
|
|
|
|
|
# endregion
|
|
|
|
# region Matrix room creation
|
|
|
|
|
2022-03-10 02:46:24 -05:00
|
|
|
async def update_matrix_room(self, source: u.User, info: PortalChannelInfo | None = None) -> None:
|
2022-02-25 02:22:50 -05:00
|
|
|
try:
|
|
|
|
await self._update_matrix_room(source, info)
|
|
|
|
except Exception:
|
|
|
|
self.log.exception("Failed to update portal")
|
|
|
|
|
|
|
|
def _get_invite_content(self, double_puppet: p.Puppet | None) -> dict[str, Any]:
|
|
|
|
invite_content = {}
|
|
|
|
if double_puppet:
|
|
|
|
invite_content["fi.mau.will_auto_accept"] = True
|
|
|
|
if self.is_direct:
|
|
|
|
invite_content["is_direct"] = True
|
|
|
|
return invite_content
|
|
|
|
|
|
|
|
async def _update_matrix_room(
|
2022-03-10 02:46:24 -05:00
|
|
|
self, source: u.User, info: PortalChannelInfo | None = None
|
2022-02-25 02:22:50 -05:00
|
|
|
) -> None:
|
2022-03-13 00:30:29 -05:00
|
|
|
info = await self.update_info(source, info)
|
|
|
|
|
2022-02-25 02:22:50 -05:00
|
|
|
puppet = await p.Puppet.get_by_custom_mxid(source.mxid)
|
|
|
|
await self.main_intent.invite_user(
|
|
|
|
self.mxid,
|
|
|
|
source.mxid,
|
|
|
|
check_cache=True,
|
|
|
|
extra_content=self._get_invite_content(puppet),
|
|
|
|
)
|
|
|
|
if puppet:
|
|
|
|
did_join = await puppet.intent.ensure_joined(self.mxid)
|
|
|
|
if did_join and self.is_direct:
|
|
|
|
await source.update_direct_chats({self.main_intent.mxid: [self.mxid]})
|
|
|
|
|
2022-04-10 02:25:36 -04:00
|
|
|
# TODO Sync read receipts?
|
2022-02-25 02:22:50 -05:00
|
|
|
|
|
|
|
"""
|
|
|
|
async def _sync_read_receipts(self, receipts: list[None]) -> None:
|
|
|
|
for receipt in receipts:
|
|
|
|
message = await DBMessage.get_closest_before(
|
|
|
|
self.ktid, self.kt_receiver, receipt.timestamp
|
|
|
|
)
|
|
|
|
if not message:
|
|
|
|
continue
|
|
|
|
puppet = await p.Puppet.get_by_ktid(receipt.actor.id, create=False)
|
|
|
|
if not puppet:
|
|
|
|
continue
|
|
|
|
try:
|
|
|
|
await puppet.intent_for(self).mark_read(message.mx_room, message.mxid)
|
|
|
|
except Exception:
|
|
|
|
self.log.warning(
|
|
|
|
f"Failed to mark {message.mxid} in {message.mx_room} "
|
|
|
|
f"as read by {puppet.intent.mxid}",
|
|
|
|
exc_info=True,
|
|
|
|
)
|
|
|
|
"""
|
|
|
|
|
|
|
|
async def create_matrix_room(
|
2022-03-10 02:46:24 -05:00
|
|
|
self, source: u.User, info: PortalChannelInfo | None = None
|
2022-02-25 02:22:50 -05:00
|
|
|
) -> RoomID | None:
|
|
|
|
if self.mxid:
|
|
|
|
try:
|
|
|
|
await self._update_matrix_room(source, info)
|
|
|
|
except Exception:
|
|
|
|
self.log.exception("Failed to update portal")
|
|
|
|
return self.mxid
|
|
|
|
async with self._create_room_lock:
|
|
|
|
try:
|
|
|
|
return await self._create_matrix_room(source, info)
|
|
|
|
except Exception:
|
|
|
|
self.log.exception("Failed to create portal")
|
|
|
|
return None
|
|
|
|
|
|
|
|
@property
|
|
|
|
def bridge_info_state_key(self) -> str:
|
|
|
|
return f"net.miscworks.kakaotalk://kakaotalk/{self.ktid}"
|
|
|
|
|
|
|
|
@property
|
|
|
|
def bridge_info(self) -> dict[str, Any]:
|
|
|
|
return {
|
|
|
|
"bridgebot": self.az.bot_mxid,
|
|
|
|
"creator": self.main_intent.mxid,
|
|
|
|
"protocol": {
|
|
|
|
"id": "kakaotalk",
|
|
|
|
"displayname": "KakaoTalk",
|
|
|
|
"avatar_url": self.config["appservice.bot_avatar"],
|
|
|
|
},
|
|
|
|
"channel": {
|
|
|
|
"id": str(self.ktid),
|
|
|
|
"displayname": self.name,
|
|
|
|
"avatar_url": self.avatar_url,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
async def update_bridge_info(self) -> None:
|
|
|
|
if not self.mxid:
|
|
|
|
self.log.debug("Not updating bridge info: no Matrix room created")
|
|
|
|
return
|
|
|
|
try:
|
|
|
|
self.log.debug("Updating bridge info...")
|
|
|
|
await self.main_intent.send_state_event(
|
|
|
|
self.mxid, StateBridge, self.bridge_info, self.bridge_info_state_key
|
|
|
|
)
|
|
|
|
# TODO remove this once https://github.com/matrix-org/matrix-doc/pull/2346 is in spec
|
|
|
|
await self.main_intent.send_state_event(
|
|
|
|
self.mxid, StateHalfShotBridge, self.bridge_info, self.bridge_info_state_key
|
|
|
|
)
|
|
|
|
except Exception:
|
|
|
|
self.log.warning("Failed to update bridge info", exc_info=True)
|
|
|
|
|
|
|
|
async def _create_matrix_room(
|
2022-03-10 02:46:24 -05:00
|
|
|
self, source: u.User, info: PortalChannelInfo | None = None
|
2022-02-25 02:22:50 -05:00
|
|
|
) -> RoomID | None:
|
|
|
|
if self.mxid:
|
|
|
|
await self._update_matrix_room(source, info)
|
|
|
|
return self.mxid
|
|
|
|
|
|
|
|
self.log.debug(f"Creating Matrix room")
|
2022-03-13 00:30:29 -05:00
|
|
|
if self.is_direct:
|
|
|
|
# NOTE Must do this to find the other member of the DM, since the channel ID != the member's ID!
|
|
|
|
await self._update_participants(source, info.participants)
|
2022-02-25 02:22:50 -05:00
|
|
|
name: str | None = None
|
|
|
|
initial_state = [
|
|
|
|
{
|
|
|
|
"type": str(StateBridge),
|
|
|
|
"state_key": self.bridge_info_state_key,
|
|
|
|
"content": self.bridge_info,
|
|
|
|
},
|
|
|
|
# TODO remove this once https://github.com/matrix-org/matrix-doc/pull/2346 is in spec
|
|
|
|
{
|
|
|
|
"type": str(StateHalfShotBridge),
|
|
|
|
"state_key": self.bridge_info_state_key,
|
|
|
|
"content": self.bridge_info,
|
|
|
|
},
|
|
|
|
]
|
2022-04-13 01:12:56 -04:00
|
|
|
|
|
|
|
if self.is_open:
|
2022-04-11 23:45:00 -04:00
|
|
|
initial_state.extend((
|
|
|
|
{
|
|
|
|
"type": str(EventType.ROOM_JOIN_RULES),
|
|
|
|
"content": JoinRulesStateEventContent(join_rule=JoinRule.PUBLIC).serialize(),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "m.room.guest_access",
|
|
|
|
"content": {"guest_access": "forbidden"},
|
|
|
|
},
|
|
|
|
))
|
2022-04-13 01:12:56 -04:00
|
|
|
user_power_levels = await self._get_mapped_participant_power_levels(info.participants, skip_default=True)
|
|
|
|
user_power_levels[self.main_intent.mxid] = 1 + FROM_PERM_MAP.get(OpenChannelUserPerm.OWNER)
|
|
|
|
initial_state.append(
|
|
|
|
{
|
|
|
|
"type": str(EventType.ROOM_POWER_LEVELS),
|
|
|
|
"content": PowerLevelStateEventContent(users=user_power_levels).serialize()
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
2022-02-25 02:22:50 -05:00
|
|
|
invites = []
|
|
|
|
if self.config["bridge.encryption.default"] and self.matrix.e2ee:
|
|
|
|
self.encrypted = True
|
|
|
|
initial_state.append(
|
|
|
|
{
|
|
|
|
"type": "m.room.encryption",
|
|
|
|
"content": {"algorithm": "m.megolm.v1.aes-sha2"},
|
|
|
|
}
|
|
|
|
)
|
|
|
|
if self.is_direct:
|
|
|
|
invites.append(self.az.bot_mxid)
|
|
|
|
|
2022-03-10 02:46:24 -05:00
|
|
|
info = await self.update_info(source=source, info=info)
|
2022-02-25 02:22:50 -05:00
|
|
|
|
|
|
|
if self.encrypted or not self.is_direct:
|
|
|
|
name = self.name
|
|
|
|
initial_state.append(
|
|
|
|
{
|
|
|
|
"type": str(EventType.ROOM_AVATAR),
|
|
|
|
"content": {"url": self.avatar_url},
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
# We lock backfill lock here so any messages that come between the room being created
|
|
|
|
# and the initial backfill finishing wouldn't be bridged before the backfill messages.
|
|
|
|
with self.backfill_lock:
|
|
|
|
creation_content = {}
|
|
|
|
if not self.config["bridge.federate_rooms"]:
|
|
|
|
creation_content["m.federate"] = False
|
|
|
|
self.mxid = await self.main_intent.create_room(
|
|
|
|
name=name,
|
|
|
|
is_direct=self.is_direct,
|
|
|
|
initial_state=initial_state,
|
|
|
|
invitees=invites,
|
|
|
|
creation_content=creation_content,
|
|
|
|
)
|
|
|
|
if not self.mxid:
|
|
|
|
raise Exception("Failed to create room: no mxid returned")
|
|
|
|
|
|
|
|
if self.encrypted and self.matrix.e2ee and self.is_direct:
|
|
|
|
try:
|
|
|
|
await self.az.intent.ensure_joined(self.mxid)
|
|
|
|
except Exception:
|
|
|
|
self.log.warning(f"Failed to add bridge bot to new private chat {self.mxid}")
|
|
|
|
|
|
|
|
await self.save()
|
|
|
|
self.log.debug(f"Matrix room created: {self.mxid}")
|
|
|
|
self.by_mxid[self.mxid] = self
|
|
|
|
|
|
|
|
puppet = await p.Puppet.get_by_custom_mxid(source.mxid)
|
|
|
|
await self.main_intent.invite_user(
|
|
|
|
self.mxid, source.mxid, extra_content=self._get_invite_content(puppet)
|
|
|
|
)
|
|
|
|
if puppet:
|
|
|
|
try:
|
|
|
|
if self.is_direct:
|
|
|
|
await source.update_direct_chats({self.main_intent.mxid: [self.mxid]})
|
|
|
|
await puppet.intent.join_room_by_id(self.mxid)
|
|
|
|
except MatrixError:
|
|
|
|
self.log.debug(
|
|
|
|
"Failed to join custom puppet into newly created portal",
|
|
|
|
exc_info=True,
|
|
|
|
)
|
|
|
|
|
|
|
|
if not self.is_direct:
|
2022-03-13 00:30:29 -05:00
|
|
|
# NOTE Calling this after room creation to invite participants
|
2022-03-09 02:25:28 -05:00
|
|
|
await self._update_participants(source, info.participants)
|
2022-02-25 02:22:50 -05:00
|
|
|
|
|
|
|
try:
|
2022-03-09 02:25:28 -05:00
|
|
|
await self.backfill(source, is_initial=True, channel_info=info.channel_info)
|
2022-02-25 02:22:50 -05:00
|
|
|
except Exception:
|
|
|
|
self.log.exception("Failed to backfill new portal")
|
|
|
|
|
2022-04-10 02:25:36 -04:00
|
|
|
# TODO Sync read receipts?
|
2022-02-25 02:22:50 -05:00
|
|
|
|
|
|
|
return self.mxid
|
|
|
|
|
|
|
|
# endregion
|
|
|
|
# region Matrix event handling
|
|
|
|
|
2022-03-11 03:43:00 -05:00
|
|
|
def require_send_lock(self, user_id: int) -> asyncio.Lock:
|
2022-02-25 02:22:50 -05:00
|
|
|
try:
|
|
|
|
lock = self._send_locks[user_id]
|
|
|
|
except KeyError:
|
|
|
|
lock = asyncio.Lock()
|
|
|
|
self._send_locks[user_id] = lock
|
|
|
|
return lock
|
|
|
|
|
2022-03-11 03:43:00 -05:00
|
|
|
def optional_send_lock(self, user_id: int) -> asyncio.Lock | FakeLock:
|
2022-02-25 02:22:50 -05:00
|
|
|
try:
|
|
|
|
return self._send_locks[user_id]
|
|
|
|
except KeyError:
|
|
|
|
pass
|
|
|
|
return self._noop_lock
|
|
|
|
|
|
|
|
async def _send_delivery_receipt(self, event_id: EventID) -> None:
|
|
|
|
if event_id and self.config["bridge.delivery_receipts"]:
|
|
|
|
try:
|
|
|
|
await self.az.intent.mark_read(self.mxid, event_id)
|
|
|
|
except Exception:
|
|
|
|
self.log.exception(f"Failed to send delivery receipt for {event_id}")
|
|
|
|
|
|
|
|
async def _send_bridge_error(self, msg: str, thing: str = "message") -> None:
|
|
|
|
await self._send_message(
|
|
|
|
self.main_intent,
|
|
|
|
TextMessageEventContent(
|
|
|
|
msgtype=MessageType.NOTICE,
|
|
|
|
body=f"\u26a0 Your {thing} may not have been bridged: {msg}",
|
|
|
|
),
|
|
|
|
)
|
|
|
|
|
|
|
|
def _status_from_exception(self, e: Exception) -> MessageSendCheckpointStatus:
|
|
|
|
if isinstance(e, NotImplementedError):
|
|
|
|
return MessageSendCheckpointStatus.UNSUPPORTED
|
|
|
|
return MessageSendCheckpointStatus.PERM_FAILURE
|
|
|
|
|
|
|
|
async def handle_matrix_message(
|
|
|
|
self, sender: u.User, message: MessageEventContent, event_id: EventID
|
|
|
|
) -> None:
|
|
|
|
try:
|
|
|
|
await self._handle_matrix_message(sender, message, event_id)
|
|
|
|
except Exception as e:
|
|
|
|
self.log.exception(f"Failed to handle Matrix event {event_id}: {e}")
|
|
|
|
sender.send_remote_checkpoint(
|
|
|
|
self._status_from_exception(e),
|
|
|
|
event_id,
|
|
|
|
self.mxid,
|
|
|
|
EventType.ROOM_MESSAGE,
|
|
|
|
message.msgtype,
|
|
|
|
error=e,
|
|
|
|
)
|
|
|
|
await self._send_bridge_error(str(e))
|
|
|
|
else:
|
|
|
|
await self._send_delivery_receipt(event_id)
|
|
|
|
|
|
|
|
async def _handle_matrix_message(
|
|
|
|
self, orig_sender: u.User, message: MessageEventContent, event_id: EventID
|
|
|
|
) -> None:
|
|
|
|
if message.get_edit():
|
|
|
|
raise NotImplementedError("Edits are not supported by the KakaoTalk bridge.")
|
2022-04-05 15:44:02 -04:00
|
|
|
if message.relates_to.rel_type == RelationType.REPLY and not message.msgtype.is_text:
|
|
|
|
raise NotImplementedError("Replying with non-text content is not supported by the KakaoTalk bridge.")
|
2022-02-25 02:22:50 -05:00
|
|
|
sender, is_relay = await self.get_relay_sender(orig_sender, f"message {event_id}")
|
|
|
|
if not sender:
|
|
|
|
raise Exception("not logged in")
|
2022-04-10 02:42:15 -04:00
|
|
|
elif not sender.is_connected:
|
|
|
|
raise Exception("not connected to KakaoTalk chats")
|
2022-02-25 02:22:50 -05:00
|
|
|
elif is_relay:
|
2022-04-12 04:30:56 -04:00
|
|
|
if not message.msgtype.is_text:
|
|
|
|
intro_message = TextMessageEventContent(msgtype=MessageType.TEXT, body=message.body)
|
|
|
|
await self.apply_relay_message_format(orig_sender, intro_message)
|
|
|
|
await self._send_chat(sender, intro_message)
|
|
|
|
else:
|
|
|
|
await self.apply_relay_message_format(orig_sender, message)
|
2022-02-25 02:22:50 -05:00
|
|
|
if message.msgtype == MessageType.TEXT or message.msgtype == MessageType.NOTICE:
|
|
|
|
await self._handle_matrix_text(event_id, sender, message)
|
|
|
|
elif message.msgtype.is_media:
|
2022-03-26 03:37:53 -04:00
|
|
|
await self._handle_matrix_media(event_id, sender, message)
|
2022-02-25 02:22:50 -05:00
|
|
|
# elif message.msgtype == MessageType.LOCATION:
|
|
|
|
# await self._handle_matrix_location(sender, message)
|
|
|
|
else:
|
|
|
|
raise NotImplementedError(f"Unsupported message type {message.msgtype}")
|
|
|
|
|
2022-04-12 04:30:56 -04:00
|
|
|
async def _send_chat(
|
|
|
|
self, sender: u.User, message: TextMessageEventContent, event_id: EventID | None = None
|
2022-04-12 04:34:16 -04:00
|
|
|
) -> Long:
|
2022-04-14 04:24:23 -04:00
|
|
|
converted = await matrix_to_kakaotalk(message, self.mxid, self.log, self)
|
2022-04-12 04:30:56 -04:00
|
|
|
try:
|
|
|
|
return await sender.client.send_chat(
|
|
|
|
self.channel_props,
|
|
|
|
text=converted.text,
|
|
|
|
reply_to=converted.reply_to,
|
|
|
|
mentions=converted.mentions,
|
|
|
|
)
|
|
|
|
except CommandException as e:
|
|
|
|
self.log.debug(f"Error handling Matrix message {event_id if event_id else '<extra>'}: {e!s}")
|
|
|
|
raise
|
|
|
|
|
2022-03-26 03:37:53 -04:00
|
|
|
async def _make_dbm(self, event_id: EventID, ktid: Long | None = None) -> DBMessage:
|
|
|
|
dbm = DBMessage(
|
2022-03-09 20:26:39 -05:00
|
|
|
mxid=event_id,
|
|
|
|
mx_room=self.mxid,
|
|
|
|
ktid=ktid,
|
|
|
|
index=0,
|
|
|
|
kt_chat=self.ktid,
|
|
|
|
kt_receiver=self.kt_receiver,
|
|
|
|
timestamp=int(time.time() * 1000),
|
2022-03-26 03:37:53 -04:00
|
|
|
)
|
|
|
|
await dbm.insert()
|
|
|
|
return dbm
|
2022-03-09 20:26:39 -05:00
|
|
|
|
2022-02-25 02:22:50 -05:00
|
|
|
async def _handle_matrix_text(
|
|
|
|
self, event_id: EventID, sender: u.User, message: TextMessageEventContent
|
|
|
|
) -> None:
|
2022-04-12 04:34:16 -04:00
|
|
|
log_id = await self._send_chat(sender, message, event_id)
|
|
|
|
await self._make_dbm(event_id, log_id)
|
|
|
|
self.log.debug(f"Handled Matrix message {event_id} -> {log_id}")
|
2022-03-09 20:26:39 -05:00
|
|
|
sender.send_remote_checkpoint(
|
|
|
|
MessageSendCheckpointStatus.SUCCESS,
|
|
|
|
event_id,
|
|
|
|
self.mxid,
|
|
|
|
EventType.ROOM_MESSAGE,
|
|
|
|
message.msgtype,
|
|
|
|
)
|
2022-02-25 02:22:50 -05:00
|
|
|
|
|
|
|
async def _handle_matrix_media(
|
2022-03-26 03:37:53 -04:00
|
|
|
self, event_id: EventID, sender: u.User, message: MediaMessageEventContent
|
2022-02-25 02:22:50 -05:00
|
|
|
) -> None:
|
2022-03-26 03:37:53 -04:00
|
|
|
if message.file and decrypt_attachment:
|
|
|
|
data = await self.main_intent.download_media(message.file.url)
|
|
|
|
data = decrypt_attachment(
|
|
|
|
data, message.file.key.key, message.file.hashes.get("sha256"), message.file.iv
|
|
|
|
)
|
|
|
|
elif message.url:
|
|
|
|
data = await self.main_intent.download_media(message.url)
|
|
|
|
else:
|
|
|
|
raise NotImplementedError("No file or URL specified")
|
2022-03-28 03:36:16 -04:00
|
|
|
mimetype = message.info.mimetype or magic.mimetype(data)
|
2022-03-26 03:37:53 -04:00
|
|
|
filename = message.body
|
|
|
|
width, height = None, None
|
|
|
|
if message.info in (MessageType.IMAGE, MessageType.STICKER, MessageType.VIDEO):
|
|
|
|
width = message.info.width
|
|
|
|
height = message.info.height
|
|
|
|
try:
|
2022-04-12 04:34:16 -04:00
|
|
|
log_id = await sender.client.send_media(
|
2022-03-26 03:37:53 -04:00
|
|
|
self.channel_props,
|
|
|
|
TO_MSGTYPE_MAP[message.msgtype],
|
|
|
|
data,
|
|
|
|
filename,
|
|
|
|
width=width,
|
|
|
|
height=height,
|
2022-03-28 03:36:16 -04:00
|
|
|
ext=guess_extension(mimetype)[1:],
|
2022-03-26 03:37:53 -04:00
|
|
|
)
|
|
|
|
except CommandException as e:
|
|
|
|
self.log.debug(f"Error uploading media for Matrix message {event_id}: {e!s}")
|
|
|
|
raise
|
2022-04-12 04:34:16 -04:00
|
|
|
await self._make_dbm(event_id, log_id)
|
|
|
|
self.log.debug(f"Handled Matrix message {event_id} -> {log_id}")
|
2022-03-26 03:37:53 -04:00
|
|
|
sender.send_remote_checkpoint(
|
|
|
|
MessageSendCheckpointStatus.SUCCESS,
|
|
|
|
event_id,
|
|
|
|
self.mxid,
|
|
|
|
EventType.ROOM_MESSAGE,
|
|
|
|
message.msgtype,
|
|
|
|
)
|
2022-02-25 02:22:50 -05:00
|
|
|
|
|
|
|
async def _handle_matrix_location(
|
|
|
|
self, sender: u.User, message: LocationMessageEventContent
|
|
|
|
) -> str:
|
|
|
|
pass
|
|
|
|
# TODO
|
|
|
|
# match = geo_uri_regex.fullmatch(message.geo_uri)
|
|
|
|
# return await self.thread_for(sender).send_pinned_location(float(match.group(1)),
|
|
|
|
# float(match.group(2)))
|
|
|
|
|
|
|
|
async def handle_matrix_redaction(
|
|
|
|
self, sender: u.User, event_id: EventID, redaction_event_id: EventID
|
|
|
|
) -> None:
|
|
|
|
try:
|
2022-04-09 04:02:51 -04:00
|
|
|
await self._handle_matrix_redaction(sender, event_id)
|
2022-02-25 02:22:50 -05:00
|
|
|
except Exception as e:
|
2022-04-09 04:02:51 -04:00
|
|
|
self.log.error(
|
|
|
|
f"Failed to handle Matrix redaction {redaction_event_id}: {e}",
|
|
|
|
exc_info=not isinstance(e, NotImplementedError),
|
|
|
|
)
|
2022-02-25 02:22:50 -05:00
|
|
|
sender.send_remote_checkpoint(
|
|
|
|
self._status_from_exception(e),
|
2022-04-09 04:02:51 -04:00
|
|
|
redaction_event_id,
|
2022-02-25 02:22:50 -05:00
|
|
|
self.mxid,
|
|
|
|
EventType.ROOM_REDACTION,
|
|
|
|
error=e,
|
|
|
|
)
|
2022-04-09 04:02:51 -04:00
|
|
|
if not isinstance(e, NotImplementedError):
|
|
|
|
await self._send_bridge_error(str(e), thing="redaction")
|
2022-02-25 02:22:50 -05:00
|
|
|
else:
|
2022-04-09 04:02:51 -04:00
|
|
|
await self._send_delivery_receipt(redaction_event_id)
|
|
|
|
sender.send_remote_checkpoint(
|
|
|
|
MessageSendCheckpointStatus.SUCCESS,
|
|
|
|
redaction_event_id,
|
|
|
|
self.mxid,
|
|
|
|
EventType.ROOM_REDACTION,
|
|
|
|
)
|
2022-02-25 02:22:50 -05:00
|
|
|
|
2022-04-09 04:02:51 -04:00
|
|
|
async def _handle_matrix_redaction(self, sender: u.User, event_id: EventID) -> None:
|
|
|
|
sender, _ = await self.get_relay_sender(sender, f"redaction {event_id}")
|
|
|
|
if not sender:
|
|
|
|
raise Exception("not logged in")
|
2022-04-14 00:55:58 -04:00
|
|
|
elif not sender.is_connected:
|
|
|
|
raise Exception("not connected to KakaoTalk chats")
|
2022-04-09 04:02:51 -04:00
|
|
|
message = await DBMessage.get_by_mxid(event_id, self.mxid)
|
|
|
|
if message:
|
|
|
|
if not message.ktid:
|
|
|
|
raise NotImplementedError("Tried to redact message whose ktid is unknown")
|
|
|
|
try:
|
|
|
|
await message.delete()
|
|
|
|
await sender.client.delete_chat(self.channel_props, message.ktid)
|
|
|
|
except Exception as e:
|
|
|
|
self.log.exception(f"Unsend failed: {e}")
|
|
|
|
raise
|
|
|
|
return
|
|
|
|
|
|
|
|
raise NotImplementedError("Only message redactions are supported")
|
|
|
|
|
|
|
|
""" TODO
|
|
|
|
reaction = await DBReaction.get_by_mxid(event_id, self.mxid)
|
|
|
|
if reaction:
|
|
|
|
try:
|
|
|
|
await reaction.delete()
|
|
|
|
await sender.client.react(reaction.kt_msgid, None)
|
|
|
|
except Exception as e:
|
|
|
|
self.log.exception(f"Removing reaction failed: {e}")
|
|
|
|
raise
|
|
|
|
return
|
|
|
|
|
|
|
|
raise NotImplementedError("Only message and reaction redactions are supported")
|
|
|
|
"""
|
2022-02-25 02:22:50 -05:00
|
|
|
|
2022-04-10 23:05:43 -04:00
|
|
|
""" TODO
|
2022-02-25 02:22:50 -05:00
|
|
|
async def handle_matrix_reaction(
|
|
|
|
self, sender: u.User, event_id: EventID, reacting_to: EventID, reaction: str
|
|
|
|
) -> None:
|
2022-04-10 23:05:43 -04:00
|
|
|
pass
|
|
|
|
"""
|
2022-02-25 02:22:50 -05:00
|
|
|
|
2022-04-14 03:45:01 -04:00
|
|
|
async def handle_matrix_state_event(self, sender: u.User, evt: StateEvent) -> None:
|
|
|
|
try:
|
|
|
|
handler: StateEventHandler = self._STATE_EVENT_HANDLER_MAP[evt.type]
|
|
|
|
except KeyError:
|
|
|
|
# Misses should be guarded by supports_state_event, but handle this just in case
|
|
|
|
self.log.error(f"Skipping Matrix state event {evt.event_id} of unsupported type {evt.type}")
|
|
|
|
return
|
2022-04-13 15:29:44 -04:00
|
|
|
try:
|
2022-04-14 03:45:01 -04:00
|
|
|
effective_sender, _ = await self.get_relay_sender(sender, f"{handler.action_name} {evt.event_id}")
|
|
|
|
await handler.apply(self, effective_sender, evt.prev_content, evt.content)
|
2022-04-13 15:29:44 -04:00
|
|
|
except Exception as e:
|
|
|
|
self.log.error(
|
2022-04-14 03:45:01 -04:00
|
|
|
f"Failed to handle Matrix {handler.action_name} {evt.event_id}: {e}",
|
2022-04-13 15:29:44 -04:00
|
|
|
exc_info=not isinstance(e, NotImplementedError),
|
|
|
|
)
|
|
|
|
sender.send_remote_checkpoint(
|
|
|
|
self._status_from_exception(e),
|
2022-04-14 03:45:01 -04:00
|
|
|
evt.event_id,
|
2022-04-13 15:29:44 -04:00
|
|
|
self.mxid,
|
2022-04-14 03:45:01 -04:00
|
|
|
evt.type,
|
2022-04-13 15:29:44 -04:00
|
|
|
error=e,
|
|
|
|
)
|
2022-04-14 03:45:01 -04:00
|
|
|
change = f"{handler.action_name} change"
|
|
|
|
await self._send_bridge_error(
|
|
|
|
f"{e}. Reverting the {change}...",
|
|
|
|
thing=change
|
|
|
|
)
|
2022-04-13 15:29:44 -04:00
|
|
|
# NOTE Redacting instead doesn't work
|
2022-04-14 03:45:01 -04:00
|
|
|
await handler.revert(self, evt.prev_content)
|
2022-04-13 15:29:44 -04:00
|
|
|
else:
|
2022-04-14 03:45:01 -04:00
|
|
|
await self._send_delivery_receipt(evt.event_id)
|
2022-04-13 15:29:44 -04:00
|
|
|
sender.send_remote_checkpoint(
|
|
|
|
MessageSendCheckpointStatus.SUCCESS,
|
2022-04-14 03:45:01 -04:00
|
|
|
evt.event_id,
|
2022-04-13 15:29:44 -04:00
|
|
|
self.mxid,
|
2022-04-14 03:45:01 -04:00
|
|
|
evt.type,
|
2022-04-13 15:29:44 -04:00
|
|
|
)
|
|
|
|
|
2022-04-14 03:45:01 -04:00
|
|
|
async def _handle_matrix_power_levels(
|
2022-04-13 15:29:44 -04:00
|
|
|
self,
|
|
|
|
sender: u.User,
|
|
|
|
prev_content: PowerLevelStateEventContent,
|
|
|
|
content: PowerLevelStateEventContent,
|
|
|
|
) -> None:
|
|
|
|
for target_mxid, power_level in content.users.items():
|
|
|
|
if power_level == prev_content.get_user_level(target_mxid):
|
|
|
|
continue
|
|
|
|
puppet = await p.Puppet.get_by_mxid(target_mxid)
|
|
|
|
if puppet:
|
2022-04-14 00:55:58 -04:00
|
|
|
if sender and sender.is_connected:
|
2022-04-13 15:29:44 -04:00
|
|
|
perm = TO_PERM_MAP.get(power_level)
|
|
|
|
await sender.client.send_perm(self.channel_props, puppet.ktid, perm)
|
|
|
|
else:
|
2022-04-14 00:55:58 -04:00
|
|
|
raise Exception(
|
|
|
|
"Only users connected to KakaoTalk can set power levels of KakaoTalk users"
|
|
|
|
)
|
2022-04-13 15:29:44 -04:00
|
|
|
|
2022-04-14 03:45:01 -04:00
|
|
|
async def _revert_matrix_power_levels(self, prev_content: PowerLevelStateEventContent) -> None:
|
|
|
|
await self.main_intent.set_power_levels(self.mxid, prev_content)
|
|
|
|
|
|
|
|
async def _handle_matrix_room_name(
|
|
|
|
self,
|
|
|
|
sender: u.User,
|
|
|
|
prev_content: RoomNameStateEventContent,
|
|
|
|
content: RoomNameStateEventContent,
|
|
|
|
) -> None:
|
|
|
|
if content.name == prev_content.name:
|
|
|
|
return
|
|
|
|
if not (sender and sender.is_connected):
|
|
|
|
raise Exception(
|
|
|
|
"Only users connected to KakaoTalk can set the name of a KakaoTalk channel"
|
|
|
|
)
|
|
|
|
await sender.client.set_channel_name(self.channel_props, content.name)
|
|
|
|
self.name = content.name
|
|
|
|
self.name_set = True
|
|
|
|
await self.save()
|
|
|
|
|
|
|
|
async def _revert_matrix_room_name(self, prev_content: RoomNameStateEventContent) -> None:
|
|
|
|
await self.main_intent.set_room_name(self.mxid, prev_content.name)
|
|
|
|
|
|
|
|
async def _handle_matrix_room_topic(
|
|
|
|
self,
|
|
|
|
sender: u.User,
|
|
|
|
prev_content: RoomTopicStateEventContent,
|
|
|
|
content: RoomTopicStateEventContent,
|
|
|
|
) -> None:
|
|
|
|
if content.topic == prev_content.topic:
|
|
|
|
return
|
|
|
|
if not (sender and sender.is_connected):
|
|
|
|
raise Exception(
|
|
|
|
"Only users connected to KakaoTalk can set the description of a KakaoTalk channel"
|
|
|
|
)
|
|
|
|
await sender.client.set_channel_description(self.channel_props, content.topic)
|
|
|
|
self.description = content.topic
|
|
|
|
self.topic_set = True
|
|
|
|
await self.save()
|
|
|
|
|
|
|
|
async def _revert_matrix_room_topic(self, prev_content: RoomTopicStateEventContent) -> None:
|
|
|
|
await self.main_intent.set_room_topic(self.mxid, prev_content.topic)
|
|
|
|
|
|
|
|
async def _handle_matrix_room_avatar(
|
|
|
|
self,
|
|
|
|
sender: u.User,
|
|
|
|
prev_content: RoomAvatarStateEventContent,
|
|
|
|
content: RoomAvatarStateEventContent,
|
|
|
|
) -> None:
|
|
|
|
if content.url == prev_content.url:
|
|
|
|
return
|
|
|
|
if not (sender and sender.is_connected):
|
|
|
|
raise Exception(
|
|
|
|
"Only users connected to KakaoTalk can set the photo of a KakaoTalk channel"
|
|
|
|
)
|
|
|
|
raise NotImplementedError("Changing the room avatar is not supported by the KakaoTalk bridge.")
|
|
|
|
""" TODO
|
|
|
|
photo_url = str(self.main_intent.api.get_download_url(content.url))
|
|
|
|
await sender.client.set_channel_photo(self.channel_props, photo_url)
|
|
|
|
self.photo_id = photo_url
|
|
|
|
self.avatar_url = content.url
|
|
|
|
self.avatar_set = True
|
|
|
|
await self.save()
|
|
|
|
"""
|
|
|
|
|
|
|
|
async def _revert_matrix_room_avatar(self, prev_content: RoomAvatarStateEventContent) -> None:
|
|
|
|
await self.main_intent.set_room_avatar(self.mxid, prev_content.url)
|
|
|
|
|
2022-02-25 02:22:50 -05:00
|
|
|
async def handle_matrix_leave(self, user: u.User) -> None:
|
|
|
|
if self.is_direct:
|
|
|
|
self.log.info(f"{user.mxid} left private chat portal with {self.ktid}")
|
|
|
|
if user.ktid == self.kt_receiver:
|
|
|
|
self.log.info(
|
|
|
|
f"{user.mxid} was the recipient of this portal. Cleaning up and deleting..."
|
|
|
|
)
|
|
|
|
await self.cleanup_and_delete()
|
|
|
|
else:
|
|
|
|
self.log.debug(f"{user.mxid} left portal to {self.ktid}")
|
|
|
|
|
|
|
|
# endregion
|
|
|
|
# region KakaoTalk event handling
|
|
|
|
|
|
|
|
async def _bridge_own_message_pm(
|
|
|
|
self, source: u.User, sender: p.Puppet, mid: str, invite: bool = True
|
|
|
|
) -> bool:
|
|
|
|
if self.is_direct and sender.ktid == source.ktid and not sender.is_real_user:
|
|
|
|
if self.invite_own_puppet_to_pm and invite:
|
|
|
|
await self.main_intent.invite_user(self.mxid, sender.mxid)
|
|
|
|
elif (
|
|
|
|
await self.az.state_store.get_membership(self.mxid, sender.mxid) != Membership.JOIN
|
|
|
|
):
|
|
|
|
self.log.warning(
|
|
|
|
f"Ignoring own {mid} in private chat because own puppet is not in room."
|
|
|
|
)
|
|
|
|
return False
|
|
|
|
return True
|
|
|
|
|
2022-04-09 03:36:48 -04:00
|
|
|
async def _add_kakaotalk_reply(
|
2022-04-05 02:44:03 -04:00
|
|
|
self, content: MessageEventContent, reply_to: ReplyAttachment
|
|
|
|
) -> None:
|
|
|
|
message = await DBMessage.get_by_ktid(reply_to.src_logId, self.kt_receiver)
|
|
|
|
if not message:
|
|
|
|
self.log.warning(
|
|
|
|
f"Couldn't find reply target {reply_to.src_logId} to bridge reply metadata to Matrix"
|
|
|
|
)
|
|
|
|
return
|
|
|
|
|
|
|
|
content.set_reply(message.mxid)
|
|
|
|
if not isinstance(content, TextMessageEventContent):
|
|
|
|
return
|
|
|
|
|
|
|
|
try:
|
|
|
|
evt = await self.main_intent.get_event(message.mx_room, message.mxid)
|
|
|
|
except (MNotFound, MForbidden):
|
|
|
|
evt = None
|
|
|
|
if not evt:
|
|
|
|
return
|
|
|
|
|
|
|
|
if evt.type == EventType.ROOM_ENCRYPTED:
|
|
|
|
try:
|
|
|
|
evt = await self.matrix.e2ee.decrypt(evt, wait_session_timeout=0)
|
|
|
|
except SessionNotFound:
|
|
|
|
return
|
|
|
|
|
|
|
|
if isinstance(evt.content, TextMessageEventContent):
|
|
|
|
evt.content.trim_reply_fallback()
|
|
|
|
|
|
|
|
content.set_reply(evt)
|
|
|
|
|
2022-04-09 03:36:48 -04:00
|
|
|
async def handle_kakaotalk_chat(
|
2022-02-25 02:22:50 -05:00
|
|
|
self,
|
|
|
|
source: u.User,
|
|
|
|
sender: p.Puppet,
|
2022-04-09 03:36:48 -04:00
|
|
|
chat: Chatlog,
|
2022-02-25 02:22:50 -05:00
|
|
|
) -> None:
|
|
|
|
try:
|
2022-04-09 03:36:48 -04:00
|
|
|
await self._handle_kakaotalk_chat(source, sender, chat)
|
2022-02-25 02:22:50 -05:00
|
|
|
except Exception:
|
|
|
|
self.log.exception(
|
2022-04-09 03:36:48 -04:00
|
|
|
"Error handling KakaoTalk chat %s",
|
|
|
|
chat.logId,
|
2022-02-25 02:22:50 -05:00
|
|
|
)
|
|
|
|
|
2022-04-09 03:36:48 -04:00
|
|
|
async def _handle_kakaotalk_chat(
|
2022-02-25 02:22:50 -05:00
|
|
|
self,
|
|
|
|
source: u.User,
|
|
|
|
sender: p.Puppet,
|
2022-04-09 03:36:48 -04:00
|
|
|
chat: Chatlog,
|
2022-02-25 02:22:50 -05:00
|
|
|
) -> None:
|
2022-04-02 23:16:53 -04:00
|
|
|
# TODO Backfill!! This avoids timing conflicts on startup sync
|
2022-04-09 03:36:48 -04:00
|
|
|
self.log.debug(f"Handling KakaoTalk event {chat.logId}")
|
2022-03-09 02:25:28 -05:00
|
|
|
if not self.mxid:
|
|
|
|
mxid = await self.create_matrix_room(source)
|
|
|
|
if not mxid:
|
|
|
|
# Failed to create
|
|
|
|
return
|
2022-04-09 03:36:48 -04:00
|
|
|
if not await self._bridge_own_message_pm(source, sender, f"chat {chat.logId}"):
|
2022-03-09 02:25:28 -05:00
|
|
|
return
|
|
|
|
intent = sender.intent_for(self)
|
|
|
|
if (
|
|
|
|
self._backfill_leave is not None
|
|
|
|
and self.ktid != sender.ktid
|
|
|
|
and intent != sender.intent
|
|
|
|
and intent not in self._backfill_leave
|
|
|
|
):
|
|
|
|
self.log.debug("Adding %s's default puppet to room for backfilling", sender.mxid)
|
|
|
|
await self.main_intent.invite_user(self.mxid, intent.mxid)
|
|
|
|
await intent.ensure_joined(self.mxid)
|
|
|
|
self._backfill_leave.add(intent)
|
|
|
|
|
2022-04-14 03:45:01 -04:00
|
|
|
handler = self._CHAT_TYPE_HANDLER_MAP.get(chat.type, Portal._handle_kakaotalk_unsupported)
|
2022-03-28 03:36:16 -04:00
|
|
|
event_ids = [
|
|
|
|
event_id for event_id in
|
|
|
|
await handler(
|
|
|
|
self,
|
2022-04-05 00:54:21 -04:00
|
|
|
source=source,
|
|
|
|
intent=intent,
|
2022-04-09 03:36:48 -04:00
|
|
|
attachment=chat.attachment,
|
|
|
|
timestamp=chat.sendAt,
|
|
|
|
chat_text=chat.text,
|
|
|
|
chat_type=chat.type,
|
2022-04-05 00:54:21 -04:00
|
|
|
)
|
2022-03-28 03:36:16 -04:00
|
|
|
if event_id
|
|
|
|
]
|
2022-03-24 19:32:46 -04:00
|
|
|
if not event_ids:
|
2022-04-09 03:36:48 -04:00
|
|
|
self.log.warning(f"Unhandled KakaoTalk chat {chat.logId}")
|
2022-03-24 19:32:46 -04:00
|
|
|
return
|
2022-04-09 03:36:48 -04:00
|
|
|
self.log.debug(f"Handled KakaoTalk chat {chat.logId} -> {event_ids}")
|
2022-04-02 23:16:53 -04:00
|
|
|
# TODO Might have to handle remote reactions on messages created by bulk_create
|
2022-03-24 19:32:46 -04:00
|
|
|
await DBMessage.bulk_create(
|
2022-04-09 03:36:48 -04:00
|
|
|
ktid=chat.logId,
|
2022-03-24 19:32:46 -04:00
|
|
|
kt_chat=self.ktid,
|
|
|
|
kt_receiver=self.kt_receiver,
|
|
|
|
mx_room=self.mxid,
|
2022-04-09 03:36:48 -04:00
|
|
|
timestamp=chat.sendAt,
|
2022-03-24 19:32:46 -04:00
|
|
|
event_ids=event_ids,
|
|
|
|
)
|
|
|
|
await self._send_delivery_receipt(event_ids[-1])
|
|
|
|
|
2022-04-09 03:36:48 -04:00
|
|
|
async def _handle_kakaotalk_unsupported(
|
2022-03-28 03:36:16 -04:00
|
|
|
self,
|
|
|
|
intent: IntentAPI,
|
|
|
|
timestamp: int,
|
2022-04-09 03:36:48 -04:00
|
|
|
chat_text: str | None,
|
|
|
|
chat_type: ChatType,
|
2022-04-05 00:54:21 -04:00
|
|
|
**_
|
|
|
|
) -> Awaitable[list[EventID]]:
|
|
|
|
try:
|
2022-04-09 03:36:48 -04:00
|
|
|
type_str = KnownChatType(chat_type).name.lower()
|
2022-04-05 00:54:21 -04:00
|
|
|
except ValueError:
|
2022-04-09 03:36:48 -04:00
|
|
|
type_str = str(chat_type)
|
|
|
|
self.log.warning("No handler for chat type \"%s\" (%s)",
|
2022-04-05 00:54:21 -04:00
|
|
|
type_str,
|
2022-04-11 15:49:21 -04:00
|
|
|
f"text = \"{chat_text}\"" if chat_text is not None else "no text",
|
2022-04-05 00:54:21 -04:00
|
|
|
)
|
2022-04-09 03:36:48 -04:00
|
|
|
if chat_text:
|
|
|
|
events = await self._handle_kakaotalk_text(
|
2022-04-05 02:44:03 -04:00
|
|
|
intent=intent,
|
2022-04-10 04:52:43 -04:00
|
|
|
attachment=None,
|
2022-04-05 02:44:03 -04:00
|
|
|
timestamp=timestamp,
|
2022-04-09 03:36:48 -04:00
|
|
|
chat_text=chat_text,
|
2022-04-05 02:44:03 -04:00
|
|
|
)
|
|
|
|
else:
|
|
|
|
events = []
|
2022-04-05 00:54:21 -04:00
|
|
|
content = TextMessageEventContent(
|
|
|
|
msgtype=MessageType.NOTICE,
|
|
|
|
body=f"\u26a0 Unbridgeable message ({type_str})",
|
|
|
|
)
|
2022-04-05 02:44:03 -04:00
|
|
|
if events:
|
|
|
|
content.set_reply(events[-1])
|
|
|
|
events.append(await self._send_message(intent, content, timestamp=timestamp))
|
|
|
|
return events
|
2022-04-05 00:54:21 -04:00
|
|
|
|
2022-04-10 05:07:41 -04:00
|
|
|
async def _handle_kakaotalk_feed(
|
|
|
|
self,
|
|
|
|
timestamp: int,
|
|
|
|
chat_text: str | None,
|
|
|
|
**_
|
|
|
|
) -> list[EventID]:
|
|
|
|
self.log.info("Got feed message at %s: %s", timestamp, chat_text or "none")
|
|
|
|
return []
|
|
|
|
|
2022-04-11 15:49:21 -04:00
|
|
|
async def _handle_kakaotalk_deleted(
|
|
|
|
self,
|
|
|
|
timestamp: int,
|
|
|
|
**_
|
|
|
|
) -> list[EventID]:
|
2022-04-12 00:49:24 -04:00
|
|
|
self.log.info(f"Got deleted (?) message at {timestamp}")
|
2022-04-11 15:49:21 -04:00
|
|
|
return []
|
|
|
|
|
2022-04-09 03:36:48 -04:00
|
|
|
async def _handle_kakaotalk_text(
|
2022-04-05 00:54:21 -04:00
|
|
|
self,
|
|
|
|
intent: IntentAPI,
|
2022-04-05 18:21:35 -04:00
|
|
|
attachment: Attachment | None,
|
2022-04-05 00:54:21 -04:00
|
|
|
timestamp: int,
|
2022-04-09 03:36:48 -04:00
|
|
|
chat_text: str | None,
|
2022-04-05 00:54:21 -04:00
|
|
|
**_
|
2022-03-28 03:36:16 -04:00
|
|
|
) -> list[EventID]:
|
2022-04-09 03:36:48 -04:00
|
|
|
content = await kakaotalk_to_matrix(chat_text, attachment.mentions if attachment else None)
|
2022-03-28 03:36:16 -04:00
|
|
|
return [await self._send_message(intent, content, timestamp=timestamp)]
|
|
|
|
|
2022-04-09 03:36:48 -04:00
|
|
|
async def _handle_kakaotalk_reply(
|
2022-03-28 03:36:16 -04:00
|
|
|
self,
|
|
|
|
intent: IntentAPI,
|
2022-04-05 02:44:03 -04:00
|
|
|
attachment: ReplyAttachment,
|
2022-03-28 03:36:16 -04:00
|
|
|
timestamp: int,
|
2022-04-09 03:36:48 -04:00
|
|
|
chat_text: str,
|
2022-04-05 00:54:21 -04:00
|
|
|
**_
|
2022-04-05 02:44:03 -04:00
|
|
|
) -> list[EventID]:
|
2022-04-09 03:36:48 -04:00
|
|
|
content = await kakaotalk_to_matrix(chat_text, attachment.mentions)
|
|
|
|
await self._add_kakaotalk_reply(content, attachment)
|
2022-04-05 02:44:03 -04:00
|
|
|
return [await self._send_message(intent, content, timestamp=timestamp)]
|
|
|
|
|
2022-04-09 03:36:48 -04:00
|
|
|
def _handle_kakaotalk_photo(self, **kwargs) -> Awaitable[list[EventID]]:
|
|
|
|
return asyncio.gather(self._handle_kakaotalk_uniphoto(**kwargs))
|
2022-03-28 03:36:16 -04:00
|
|
|
|
2022-04-09 03:36:48 -04:00
|
|
|
async def _handle_kakaotalk_multiphoto(
|
2022-03-28 03:36:16 -04:00
|
|
|
self,
|
|
|
|
attachment: MultiPhotoAttachment,
|
2022-04-05 02:44:03 -04:00
|
|
|
**kwargs
|
2022-03-28 03:36:16 -04:00
|
|
|
) -> Awaitable[list[EventID]]:
|
|
|
|
# TODO Upload media concurrently, but post messages sequentially
|
2022-03-29 03:25:38 -04:00
|
|
|
return [
|
2022-04-09 03:36:48 -04:00
|
|
|
await self._handle_kakaotalk_uniphoto(
|
2022-04-05 02:44:03 -04:00
|
|
|
attachment=PhotoAttachment(
|
2022-03-29 03:25:38 -04:00
|
|
|
shout=attachment.shout,
|
|
|
|
mentions=attachment.mentions,
|
|
|
|
urls=attachment.urls,
|
|
|
|
url=attachment.imageUrls[i],
|
|
|
|
s=attachment.sl[i],
|
|
|
|
k=attachment.kl[i],
|
|
|
|
w=attachment.wl[i],
|
|
|
|
h=attachment.hl[i],
|
|
|
|
thumbnailUrl=attachment.thumbnailUrls[i],
|
|
|
|
thumbnailWidth=attachment.thumbnailWidths[i],
|
|
|
|
thumbnailHeight=attachment.thumbnailHeights[i],
|
|
|
|
cs=attachment.csl[i],
|
|
|
|
mt=attachment.mtl[i],
|
|
|
|
),
|
2022-04-05 02:44:03 -04:00
|
|
|
**kwargs
|
2022-03-29 03:25:38 -04:00
|
|
|
)
|
|
|
|
for i in range(len(attachment.imageUrls))
|
|
|
|
]
|
2022-03-28 03:36:16 -04:00
|
|
|
|
2022-04-09 03:36:48 -04:00
|
|
|
def _handle_kakaotalk_uniphoto(
|
2022-03-28 03:36:16 -04:00
|
|
|
self,
|
|
|
|
attachment: PhotoAttachment,
|
2022-04-05 02:44:03 -04:00
|
|
|
**kwargs
|
2022-03-28 03:36:16 -04:00
|
|
|
) -> Awaitable[EventID]:
|
2022-04-09 03:36:48 -04:00
|
|
|
return self._handle_kakaotalk_media(
|
2022-04-05 02:44:03 -04:00
|
|
|
attachment,
|
2022-03-28 03:36:16 -04:00
|
|
|
ImageInfo(
|
|
|
|
mimetype=attachment.mt,
|
|
|
|
size=attachment.s,
|
|
|
|
width=attachment.w,
|
|
|
|
height=attachment.h,
|
|
|
|
),
|
|
|
|
MessageType.IMAGE,
|
2022-04-05 02:44:03 -04:00
|
|
|
**kwargs
|
2022-03-28 03:36:16 -04:00
|
|
|
)
|
|
|
|
|
2022-04-09 03:36:48 -04:00
|
|
|
def _handle_kakaotalk_video(
|
2022-03-28 03:36:16 -04:00
|
|
|
self,
|
|
|
|
attachment: VideoAttachment,
|
2022-04-05 02:44:03 -04:00
|
|
|
**kwargs
|
2022-03-28 03:36:16 -04:00
|
|
|
) -> Awaitable[list[EventID]]:
|
2022-04-09 03:36:48 -04:00
|
|
|
return asyncio.gather(self._handle_kakaotalk_media(
|
2022-04-05 02:44:03 -04:00
|
|
|
attachment,
|
2022-03-28 03:36:16 -04:00
|
|
|
VideoInfo(
|
|
|
|
duration=attachment.d,
|
|
|
|
width=attachment.w,
|
|
|
|
height=attachment.h,
|
|
|
|
),
|
|
|
|
MessageType.VIDEO,
|
2022-04-05 02:44:03 -04:00
|
|
|
**kwargs
|
2022-03-28 03:36:16 -04:00
|
|
|
))
|
|
|
|
|
2022-04-09 03:36:48 -04:00
|
|
|
def _handle_kakaotalk_audio(
|
2022-03-28 03:36:16 -04:00
|
|
|
self,
|
|
|
|
attachment: AudioAttachment,
|
2022-04-05 02:44:03 -04:00
|
|
|
**kwargs
|
2022-03-28 03:36:16 -04:00
|
|
|
) -> Awaitable[list[EventID]]:
|
2022-04-09 03:36:48 -04:00
|
|
|
return asyncio.gather(self._handle_kakaotalk_media(
|
2022-04-05 02:44:03 -04:00
|
|
|
attachment,
|
2022-03-28 03:36:16 -04:00
|
|
|
AudioInfo(
|
|
|
|
size=attachment.s,
|
|
|
|
duration=attachment.d,
|
|
|
|
),
|
|
|
|
MessageType.AUDIO,
|
2022-04-05 02:44:03 -04:00
|
|
|
**kwargs
|
2022-03-28 03:36:16 -04:00
|
|
|
))
|
|
|
|
|
|
|
|
""" TODO Find what auth is required for reading file contents
|
2022-04-09 03:36:48 -04:00
|
|
|
def _handle_kakaotalk_file(
|
2022-03-28 03:36:16 -04:00
|
|
|
self,
|
|
|
|
attachment: FileAttachment,
|
2022-04-05 02:44:03 -04:00
|
|
|
**kwargs
|
2022-03-28 03:36:16 -04:00
|
|
|
) -> Awaitable[list[EventID]]:
|
2022-04-09 03:36:48 -04:00
|
|
|
return asyncio.gather(self._handle_kakaotalk_media(
|
2022-04-05 02:44:03 -04:00
|
|
|
attachment,
|
2022-03-28 03:36:16 -04:00
|
|
|
FileInfo(
|
|
|
|
size=attachment.size,
|
|
|
|
),
|
|
|
|
MessageType.FILE,
|
2022-04-05 02:44:03 -04:00
|
|
|
**kwargs
|
2022-03-28 03:36:16 -04:00
|
|
|
))
|
|
|
|
"""
|
|
|
|
|
2022-04-09 03:36:48 -04:00
|
|
|
async def _handle_kakaotalk_media(
|
2022-03-28 03:36:16 -04:00
|
|
|
self,
|
2022-04-05 02:44:03 -04:00
|
|
|
attachment: MediaAttachment,
|
|
|
|
info: MediaInfo,
|
|
|
|
msgtype: MessageType,
|
|
|
|
*,
|
2022-03-28 03:36:16 -04:00
|
|
|
source: u.User,
|
|
|
|
intent: IntentAPI,
|
|
|
|
timestamp: int,
|
2022-04-09 03:36:48 -04:00
|
|
|
chat_text: str | None,
|
2022-04-05 00:54:21 -04:00
|
|
|
**_
|
2022-03-28 03:36:16 -04:00
|
|
|
) -> EventID:
|
2022-04-09 03:36:48 -04:00
|
|
|
mxc, additional_info, decryption_info = await self._reupload_kakaotalk_file(
|
2022-03-28 03:36:16 -04:00
|
|
|
attachment.url,
|
2022-03-24 19:32:46 -04:00
|
|
|
source,
|
|
|
|
intent,
|
2022-03-28 03:36:16 -04:00
|
|
|
mimetype=info.mimetype,
|
2022-03-24 19:32:46 -04:00
|
|
|
encrypt=self.encrypted,
|
|
|
|
find_size=False,
|
|
|
|
)
|
|
|
|
info.size = additional_info.size
|
|
|
|
info.mimetype = additional_info.mimetype
|
|
|
|
content = MediaMessageEventContent(
|
2022-04-09 03:36:48 -04:00
|
|
|
url=mxc, file=decryption_info, msgtype=msgtype, body=chat_text, info=info
|
2022-03-24 19:32:46 -04:00
|
|
|
)
|
2022-03-28 03:36:16 -04:00
|
|
|
return await self._send_message(intent, content, timestamp=timestamp)
|
2022-02-25 02:22:50 -05:00
|
|
|
|
2022-04-09 03:36:48 -04:00
|
|
|
async def handle_kakaotalk_chat_delete(
|
2022-04-09 03:07:31 -04:00
|
|
|
self,
|
|
|
|
sender: p.Puppet,
|
2022-04-09 03:36:48 -04:00
|
|
|
chat_id: Long,
|
2022-04-09 03:07:31 -04:00
|
|
|
timestamp: int,
|
|
|
|
) -> None:
|
|
|
|
if not self.mxid:
|
|
|
|
return
|
2022-04-09 03:36:48 -04:00
|
|
|
for message in await DBMessage.get_all_by_ktid(chat_id, self.kt_receiver):
|
2022-04-09 03:07:31 -04:00
|
|
|
try:
|
|
|
|
await sender.intent_for(self).redact(
|
|
|
|
message.mx_room, message.mxid, timestamp=timestamp
|
|
|
|
)
|
|
|
|
except MForbidden:
|
|
|
|
await self.main_intent.redact(message.mx_room, message.mxid, timestamp=timestamp)
|
|
|
|
await message.delete()
|
|
|
|
|
2022-04-11 04:26:21 -04:00
|
|
|
async def handle_kakaotalk_chat_read(self, source: u.User, sender: p.Puppet, chat_id: Long) -> None:
|
|
|
|
if not self.mxid:
|
|
|
|
return
|
|
|
|
msg = await DBMessage.get_closest_before(self.ktid, self.kt_receiver, chat_id)
|
|
|
|
if not msg:
|
|
|
|
return
|
|
|
|
if not await self._bridge_own_message_pm(source, sender, "read receipt", invite=False):
|
|
|
|
return
|
|
|
|
# NOTE No need for timestamp when the read receipt happened, since this is only for live ones
|
|
|
|
await sender.intent_for(self).mark_read(msg.mx_room, msg.mxid)
|
|
|
|
self.log.debug(
|
|
|
|
f"Handled KakaoTalk read receipt from {sender.ktid} up to {chat_id}/{msg.mxid}"
|
|
|
|
)
|
|
|
|
|
2022-04-10 04:30:26 -04:00
|
|
|
async def handle_kakaotalk_user_join(
|
|
|
|
self, source: u.User, user: p.Puppet
|
|
|
|
) -> None:
|
|
|
|
await self.main_intent.ensure_joined(self.mxid)
|
|
|
|
if not user.name:
|
|
|
|
self.schedule_resync(source, user)
|
|
|
|
|
|
|
|
async def handle_kakaotalk_user_left(
|
|
|
|
self, source: u.User, sender: p.Puppet, removed: p.Puppet
|
|
|
|
) -> None:
|
|
|
|
if sender == removed:
|
|
|
|
await removed.intent_for(self).leave_room(self.mxid)
|
|
|
|
else:
|
|
|
|
try:
|
|
|
|
await sender.intent_for(self).kick_user(self.mxid, removed.mxid)
|
|
|
|
except MForbidden:
|
|
|
|
await self.main_intent.kick_user(
|
|
|
|
self.mxid, removed.mxid, reason=f"Kicked by {sender.name}"
|
|
|
|
)
|
2022-02-25 02:22:50 -05:00
|
|
|
|
|
|
|
# endregion
|
|
|
|
|
2022-03-09 02:25:28 -05:00
|
|
|
async def backfill(self, source: u.User, is_initial: bool, channel_info: ChannelInfo) -> None:
|
|
|
|
limit = (
|
|
|
|
self.config["bridge.backfill.initial_limit"]
|
|
|
|
if is_initial
|
|
|
|
else self.config["bridge.backfill.missed_limit"]
|
|
|
|
)
|
|
|
|
if limit == 0:
|
|
|
|
return
|
|
|
|
elif limit < 0:
|
|
|
|
limit = None
|
|
|
|
last_log_id = None
|
|
|
|
if not is_initial and channel_info.lastChatLog:
|
|
|
|
last_log_id = channel_info.lastChatLog.logId
|
|
|
|
most_recent = await DBMessage.get_most_recent(self.ktid, self.kt_receiver)
|
|
|
|
if most_recent and is_initial:
|
|
|
|
self.log.debug("Not backfilling %s: already bridged messages found", self.ktid_log)
|
|
|
|
# TODO Should this be removed? With it, can't sync an empty portal!
|
|
|
|
#elif (not most_recent or not most_recent.timestamp) and not is_initial:
|
|
|
|
# self.log.debug("Not backfilling %s: no most recent message found", self.ktid_log)
|
|
|
|
elif last_log_id and most_recent and int(most_recent.ktid) >= int(last_log_id):
|
|
|
|
self.log.debug(
|
|
|
|
"Not backfilling %s: last activity is equal to most recent bridged "
|
|
|
|
"message (%s >= %s)",
|
|
|
|
self.ktid_log,
|
|
|
|
most_recent.ktid,
|
|
|
|
last_log_id,
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
with self.backfill_lock:
|
|
|
|
await self._backfill(
|
|
|
|
source,
|
|
|
|
limit,
|
|
|
|
most_recent.ktid if most_recent else None,
|
|
|
|
)
|
|
|
|
|
|
|
|
async def _backfill(
|
|
|
|
self,
|
|
|
|
source: u.User,
|
|
|
|
limit: int | None,
|
|
|
|
after_log_id: Long | None,
|
|
|
|
) -> None:
|
2022-03-11 03:43:00 -05:00
|
|
|
self.log.debug(f"Backfilling history through {source.mxid}")
|
|
|
|
self.log.debug(f"Fetching {f'up to {limit}' if limit else 'all'} messages through {source.ktid}")
|
2022-04-09 03:36:48 -04:00
|
|
|
chats = await source.client.get_chats(
|
2022-03-21 01:33:22 -04:00
|
|
|
self.channel_props,
|
2022-03-12 23:26:23 -05:00
|
|
|
after_log_id,
|
2022-04-02 23:16:53 -04:00
|
|
|
limit,
|
2022-03-09 02:25:28 -05:00
|
|
|
)
|
2022-04-09 03:36:48 -04:00
|
|
|
if not chats:
|
2022-03-09 02:25:28 -05:00
|
|
|
self.log.debug("Didn't get any messages from server")
|
|
|
|
return
|
2022-04-09 03:36:48 -04:00
|
|
|
self.log.debug(f"Got {len(chats)} message{'s' if len(chats) > 1 else ''} from server")
|
2022-03-09 02:25:28 -05:00
|
|
|
self._backfill_leave = set()
|
|
|
|
async with NotificationDisabler(self.mxid, source):
|
2022-04-09 03:36:48 -04:00
|
|
|
for chat in chats:
|
|
|
|
puppet = await p.Puppet.get_by_ktid(chat.sender.userId)
|
|
|
|
await self.handle_kakaotalk_chat(source, puppet, chat)
|
2022-03-09 02:25:28 -05:00
|
|
|
for intent in self._backfill_leave:
|
|
|
|
self.log.trace("Leaving room with %s post-backfill", intent.mxid)
|
|
|
|
await intent.leave_room(self.mxid)
|
2022-04-09 03:36:48 -04:00
|
|
|
self.log.info("Backfilled %d messages through %s", len(chats), source.mxid)
|
2022-02-25 02:22:50 -05:00
|
|
|
|
|
|
|
# region Database getters
|
|
|
|
|
|
|
|
async def postinit(self) -> None:
|
2022-04-04 20:07:30 -04:00
|
|
|
self.by_ktid[self.ktid_full] = self
|
2022-02-25 02:22:50 -05:00
|
|
|
if self.mxid:
|
|
|
|
self.by_mxid[self.mxid] = self
|
2022-03-13 00:30:29 -05:00
|
|
|
if not self.is_direct:
|
|
|
|
self._main_intent = self.az.intent
|
2022-04-04 20:07:30 -04:00
|
|
|
else:
|
2022-03-20 03:12:17 -04:00
|
|
|
# TODO Save kt_sender in DB instead? Depends on if DM channels are shared...
|
|
|
|
user = await u.User.get_by_ktid(self.kt_receiver)
|
|
|
|
assert user, f"Found no user for this portal's receiver of {self.kt_receiver}"
|
2022-04-04 20:07:30 -04:00
|
|
|
if self.kt_type == KnownChannelType.MemoChat:
|
|
|
|
self._kt_sender = user.ktid
|
2022-04-01 05:07:05 -04:00
|
|
|
else:
|
2022-04-04 20:07:30 -04:00
|
|
|
# NOTE This throws if the user isn't connected--good!
|
|
|
|
# Nothing should init a portal for a disconnected user.
|
|
|
|
participants = await user.client.get_participants(self.channel_props)
|
|
|
|
self._kt_sender = participants[
|
|
|
|
0 if participants[0].userId != user.ktid else 1
|
|
|
|
].userId
|
|
|
|
self._main_intent = (await p.Puppet.get_by_ktid(self._kt_sender)).default_mxid_intent
|
2022-02-25 02:22:50 -05:00
|
|
|
|
|
|
|
@classmethod
|
|
|
|
@async_getter_lock
|
|
|
|
async def get_by_mxid(cls, mxid: RoomID) -> Portal | None:
|
|
|
|
try:
|
|
|
|
return cls.by_mxid[mxid]
|
|
|
|
except KeyError:
|
|
|
|
pass
|
|
|
|
|
|
|
|
portal = cast(cls, await super().get_by_mxid(mxid))
|
|
|
|
if portal:
|
|
|
|
await portal.postinit()
|
|
|
|
return portal
|
|
|
|
|
|
|
|
return None
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
@async_getter_lock
|
|
|
|
async def get_by_ktid(
|
|
|
|
cls,
|
2022-03-11 03:43:00 -05:00
|
|
|
ktid: int,
|
2022-02-25 02:22:50 -05:00
|
|
|
*,
|
2022-03-11 03:43:00 -05:00
|
|
|
kt_receiver: int = 0,
|
2022-02-25 02:22:50 -05:00
|
|
|
create: bool = True,
|
|
|
|
kt_type: ChannelType | None = None,
|
|
|
|
) -> Portal | None:
|
2022-03-13 00:30:29 -05:00
|
|
|
# TODO Find out if direct channels are shared. If so, don't need kt_receiver!
|
2022-02-25 02:22:50 -05:00
|
|
|
if kt_type:
|
2022-03-11 03:43:00 -05:00
|
|
|
kt_receiver = kt_receiver if KnownChannelType.is_direct(kt_type) else 0
|
2022-02-25 02:22:50 -05:00
|
|
|
ktid_full = (ktid, kt_receiver)
|
|
|
|
try:
|
|
|
|
return cls.by_ktid[ktid_full]
|
|
|
|
except KeyError:
|
|
|
|
pass
|
|
|
|
|
|
|
|
portal = cast(cls, await super().get_by_ktid(ktid, kt_receiver))
|
|
|
|
if portal:
|
|
|
|
await portal.postinit()
|
|
|
|
return portal
|
|
|
|
|
|
|
|
if kt_type and create:
|
|
|
|
portal = cls(ktid=ktid, kt_receiver=kt_receiver, kt_type=kt_type)
|
|
|
|
await portal.insert()
|
|
|
|
await portal.postinit()
|
|
|
|
return portal
|
|
|
|
|
|
|
|
return None
|
|
|
|
|
|
|
|
@classmethod
|
2022-03-11 03:43:00 -05:00
|
|
|
async def get_all_by_receiver(cls, kt_receiver: int) -> AsyncGenerator[Portal, None]:
|
2022-02-25 02:22:50 -05:00
|
|
|
portals = await super().get_all_by_receiver(kt_receiver)
|
|
|
|
portal: Portal
|
|
|
|
for portal in portals:
|
|
|
|
try:
|
|
|
|
yield cls.by_ktid[(portal.ktid, portal.kt_receiver)]
|
|
|
|
except KeyError:
|
|
|
|
await portal.postinit()
|
|
|
|
yield portal
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
async def all(cls) -> AsyncGenerator[Portal, None]:
|
|
|
|
portals = await super().all()
|
|
|
|
portal: Portal
|
|
|
|
for portal in portals:
|
|
|
|
try:
|
|
|
|
yield cls.by_ktid[(portal.ktid, portal.kt_receiver)]
|
|
|
|
except KeyError:
|
|
|
|
await portal.postinit()
|
|
|
|
yield portal
|
|
|
|
|
|
|
|
# endregion
|