1f5261ff8f
The database now contains a displayname_source field which is the telegram user ID of the user whose point of view the displayname is from. Updates from the relaybot user always take precendence, but currently the relaybot will never automatically fetch displaynames.
267 lines
10 KiB
Python
267 lines
10 KiB
Python
# -*- coding: future_fstrings -*-
|
|
# mautrix-telegram - A Matrix-Telegram puppeting bridge
|
|
# Copyright (C) 2018 Tulir Asokan
|
|
#
|
|
# 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 typing import Awaitable, Callable
|
|
import logging
|
|
import re
|
|
|
|
from telethon.tl.types import *
|
|
from telethon.tl.functions.messages import GetChatsRequest, GetFullChatRequest
|
|
from telethon.tl.functions.channels import GetChannelsRequest, GetParticipantRequest
|
|
from telethon.errors import ChannelInvalidError, ChannelPrivateError
|
|
|
|
from .abstract_user import AbstractUser
|
|
from .db import BotChat
|
|
from . import puppet as pu, portal as po, user as u
|
|
|
|
config = None
|
|
|
|
ReplyFunc = Callable[[str], Awaitable[Message]]
|
|
|
|
|
|
class Bot(AbstractUser):
|
|
log = logging.getLogger("mau.bot")
|
|
mxid_regex = re.compile("@.+:.+")
|
|
|
|
def __init__(self, token: str):
|
|
super().__init__()
|
|
self.token = token
|
|
self.whitelisted = True
|
|
self.username = None
|
|
self.is_relaybot = True
|
|
self.chats = {chat.id: chat.type for chat in BotChat.query.all()}
|
|
self.tg_whitelist = []
|
|
self.whitelist_group_admins = config["bridge.relaybot.whitelist_group_admins"] or False
|
|
|
|
async def init_permissions(self):
|
|
whitelist = config["bridge.relaybot.whitelist"] or []
|
|
for id in whitelist:
|
|
if isinstance(id, str):
|
|
entity = await self.client.get_input_entity(id)
|
|
if isinstance(entity, InputUser):
|
|
id = entity.user_id
|
|
else:
|
|
id = None
|
|
if isinstance(id, int):
|
|
self.tg_whitelist.append(id)
|
|
|
|
async def start(self):
|
|
await super().start()
|
|
if not self.logged_in:
|
|
await self.client.sign_in(bot_token=self.token)
|
|
await self.post_login()
|
|
return self
|
|
|
|
async def post_login(self):
|
|
await self.init_permissions()
|
|
info = await self.client.get_me()
|
|
self.tgid = info.id
|
|
self.username = info.username
|
|
self.mxid = pu.Puppet.get_mxid_from_id(self.tgid)
|
|
|
|
chat_ids = [id for id, type in self.chats.items() if type == "chat"]
|
|
response = await self.client(GetChatsRequest(chat_ids))
|
|
for chat in response.chats:
|
|
if isinstance(chat, ChatForbidden) or chat.left or chat.deactivated:
|
|
self.remove_chat(chat.id)
|
|
|
|
channel_ids = [InputChannel(id, 0)
|
|
for id, type in self.chats.items()
|
|
if type == "channel"]
|
|
for id in channel_ids:
|
|
try:
|
|
await self.client(GetChannelsRequest([id]))
|
|
except (ChannelPrivateError, ChannelInvalidError):
|
|
self.remove_chat(id.channel_id)
|
|
|
|
if config["bridge.catch_up"]:
|
|
try:
|
|
await self.client.catch_up()
|
|
except Exception:
|
|
self.log.exception("Failed to run catch_up() for bot")
|
|
|
|
def register_portal(self, portal: po.Portal):
|
|
self.add_chat(portal.tgid, portal.peer_type)
|
|
|
|
def unregister_portal(self, portal: po.Portal):
|
|
self.remove_chat(portal.tgid)
|
|
|
|
def add_chat(self, id: int, type: str):
|
|
if id not in self.chats:
|
|
self.chats[id] = type
|
|
self.db.add(BotChat(id=id, type=type))
|
|
self.db.commit()
|
|
|
|
def remove_chat(self, id: int):
|
|
try:
|
|
del self.chats[id]
|
|
except KeyError:
|
|
pass
|
|
existing_chat = BotChat.query.get(id)
|
|
if existing_chat:
|
|
self.db.delete(existing_chat)
|
|
self.db.commit()
|
|
|
|
async def _can_use_commands(self, chat, tgid):
|
|
if tgid in self.tg_whitelist:
|
|
return True
|
|
|
|
user = u.User.get_by_tgid(tgid)
|
|
if user and user.is_admin:
|
|
self.tg_whitelist.append(user.tgid)
|
|
return True
|
|
|
|
if self.whitelist_group_admins:
|
|
if isinstance(chat, PeerChannel):
|
|
p = await self.client(GetParticipantRequest(chat, tgid))
|
|
return isinstance(p, (ChannelParticipantCreator, ChannelParticipantAdmin))
|
|
elif isinstance(chat, PeerChat):
|
|
chat = await self.client(GetFullChatRequest(chat.chat_id))
|
|
participants = chat.full_chat.participants.participants
|
|
for p in participants:
|
|
if p.user_id == tgid:
|
|
return isinstance(p, (ChatParticipantCreator, ChatParticipantAdmin))
|
|
|
|
async def check_can_use_commands(self, event: Message, reply: ReplyFunc):
|
|
if not await self._can_use_commands(event.to_id, event.from_id):
|
|
await reply("You do not have the permission to use that command.")
|
|
return False
|
|
return True
|
|
|
|
async def handle_command_portal(self, portal: po.Portal, reply: ReplyFunc):
|
|
if not config["bridge.relaybot.authless_portals"]:
|
|
return await reply("This bridge doesn't allow portal creation from Telegram.")
|
|
|
|
await portal.create_matrix_room(self)
|
|
if portal.mxid:
|
|
if portal.username:
|
|
return await reply(
|
|
f"Portal is public: [{portal.alias}](https://matrix.to/#/{portal.alias})")
|
|
else:
|
|
return await reply(
|
|
"Portal is not public. Use `/invite <mxid>` to get an invite.")
|
|
|
|
async def handle_command_invite(self, portal: po.Portal, reply: ReplyFunc, mxid: str):
|
|
if len(mxid) == 0:
|
|
return await reply("Usage: `/invite <mxid>`")
|
|
elif not portal.mxid:
|
|
return await reply("Portal does not have Matrix room. "
|
|
"Create one with /portal first.")
|
|
if not self.mxid_regex.match(mxid):
|
|
return await reply("That doesn't look like a Matrix ID.")
|
|
user = await u.User.get_by_mxid(mxid).ensure_started()
|
|
if not user.whitelisted:
|
|
return await reply("That user is not whitelisted to use the bridge.")
|
|
elif user.logged_in:
|
|
displayname = f"@{user.username}" if user.username else user.displayname
|
|
return await reply("That user seems to be logged in. "
|
|
f"Just invite [{displayname}](tg://user?id={user.tgid})")
|
|
else:
|
|
await portal.main_intent.invite(portal.mxid, user.mxid)
|
|
return await reply(f"Invited `{user.mxid}` to the portal.")
|
|
|
|
def handle_command_id(self, message: Message, reply: ReplyFunc):
|
|
# Provide the prefixed ID to the user so that the user wouldn't need to specify whether the
|
|
# chat is a normal group or a supergroup/channel when using the ID.
|
|
if isinstance(message.to_id, PeerChannel):
|
|
return reply(f"-100{message.to_id.channel_id}")
|
|
return reply(str(-message.to_id.chat_id))
|
|
|
|
def match_command(self, text: str, command: str) -> bool:
|
|
text = text.lower()
|
|
command = f"/{command.lower()}"
|
|
command_targeted = f"{command}@{self.username.lower()}"
|
|
|
|
is_plain_command = text == command or text == command_targeted
|
|
if is_plain_command:
|
|
return True
|
|
|
|
is_arg_command = text.startswith(command + " ") or text.startswith(command_targeted + " ")
|
|
if is_arg_command:
|
|
return True
|
|
|
|
return False
|
|
|
|
async def handle_command(self, message: Message):
|
|
def reply(reply_text):
|
|
return self.client.send_message(message.to_id, reply_text, markdown=True,
|
|
reply_to=message.id)
|
|
|
|
text = message.message
|
|
|
|
if self.match_command(text, "id"):
|
|
return await self.handle_command_id(message, reply)
|
|
|
|
portal = po.Portal.get_by_entity(message.to_id)
|
|
|
|
if self.match_command(text, "portal"):
|
|
if not await self.check_can_use_commands(message, reply):
|
|
return
|
|
await self.handle_command_portal(portal, reply)
|
|
elif self.match_command(text, "invite"):
|
|
if not await self.check_can_use_commands(message, reply):
|
|
return
|
|
try:
|
|
mxid = text[text.index(" ") + 1:]
|
|
except ValueError:
|
|
mxid = ""
|
|
await self.handle_command_invite(portal, reply, mxid=mxid)
|
|
|
|
def handle_service_message(self, message: MessageService):
|
|
to_id = message.to_id
|
|
if isinstance(to_id, PeerChannel):
|
|
to_id = to_id.channel_id
|
|
type = "channel"
|
|
elif isinstance(to_id, PeerChat):
|
|
to_id = to_id.chat_id
|
|
type = "chat"
|
|
else:
|
|
return
|
|
|
|
action = message.action
|
|
if isinstance(action, MessageActionChatAddUser) and self.tgid in action.users:
|
|
self.add_chat(to_id, type)
|
|
elif isinstance(action, MessageActionChatDeleteUser) and action.user_id == self.tgid:
|
|
self.remove_chat(to_id)
|
|
|
|
async def update(self, update):
|
|
if not isinstance(update, (UpdateNewMessage, UpdateNewChannelMessage)):
|
|
return
|
|
if isinstance(update.message, MessageService):
|
|
return self.handle_service_message(update.message)
|
|
|
|
is_command = (isinstance(update.message, Message)
|
|
and update.message.entities and len(update.message.entities) > 0
|
|
and isinstance(update.message.entities[0], MessageEntityBotCommand))
|
|
if is_command:
|
|
return await self.handle_command(update.message)
|
|
|
|
def is_in_chat(self, peer_id) -> bool:
|
|
return peer_id in self.chats
|
|
|
|
@property
|
|
def name(self) -> str:
|
|
return "bot"
|
|
|
|
|
|
def init(context):
|
|
global config
|
|
config = context.config
|
|
token = config["telegram.bot_token"]
|
|
if token and not token.lower().startswith("disable"):
|
|
return Bot(token)
|
|
return None
|