mirror of
https://github.com/mautrix/telegram.git
synced 2026-05-16 23:15:45 +03:00
139 lines
5.3 KiB
Python
139 lines
5.3 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 telethon_aio.errors import *
|
|
from telethon_aio.tl.types import User as TLUser
|
|
from telethon_aio.tl.functions.messages import ImportChatInviteRequest, CheckChatInviteRequest
|
|
from telethon_aio.tl.functions.channels import JoinChannelRequest
|
|
|
|
from .. import puppet as pu, portal as po
|
|
from . import command_handler
|
|
|
|
|
|
@command_handler()
|
|
async def search(evt):
|
|
if len(evt.args) == 0:
|
|
return await evt.reply("**Usage:** `$cmdprefix+sp search [-r|--remote] <query>`")
|
|
|
|
force_remote = False
|
|
if evt.args[0] in {"-r", "--remote"}:
|
|
force_remote = True
|
|
evt.args.pop(0)
|
|
|
|
query = " ".join(evt.args)
|
|
if force_remote and len(query) < 5:
|
|
return await evt.reply("Minimum length of query for remote search is 5 characters.")
|
|
|
|
results, remote = await evt.sender.search(query, force_remote)
|
|
|
|
if not results:
|
|
if len(query) < 5 and remote:
|
|
return await evt.reply("No local results. "
|
|
"Minimum length of remote query is 5 characters.")
|
|
return await evt.reply("No results 3:")
|
|
|
|
reply = []
|
|
if remote:
|
|
reply += ["**Results from Telegram server:**", ""]
|
|
else:
|
|
reply += ["**Results in contacts:**", ""]
|
|
reply += [(f"* [{puppet.displayname}](https://matrix.to/#/{puppet.mxid}): "
|
|
f"{puppet.id} ({similarity}% match)")
|
|
for puppet, similarity in results]
|
|
|
|
# TODO somehow show remote channel results when joining by alias is possible?
|
|
|
|
return await evt.reply("\n".join(reply))
|
|
|
|
|
|
@command_handler(name="pm")
|
|
async def private_message(evt):
|
|
if len(evt.args) == 0:
|
|
return await evt.reply("**Usage:** `$cmdprefix+sp pm <user identifier>`")
|
|
|
|
user = await evt.sender.client.get_entity(evt.args[0])
|
|
if not user:
|
|
return await evt.reply("User not found.")
|
|
elif not isinstance(user, TLUser):
|
|
return await evt.reply("That doesn't seem to be a user.")
|
|
portal = po.Portal.get_by_entity(user, evt.sender.tgid)
|
|
await portal.create_matrix_room(evt.sender, user, [evt.sender.mxid])
|
|
return await evt.reply("Created private chat room with "
|
|
f"{pu.Puppet.get_displayname(user, False)}")
|
|
|
|
|
|
async def _join(evt, arg):
|
|
if arg.startswith("joinchat/"):
|
|
invite_hash = arg[len("joinchat/"):]
|
|
try:
|
|
await evt.sender.client(CheckChatInviteRequest(invite_hash))
|
|
except InviteHashInvalidError:
|
|
return None, await evt.reply("Invalid invite link.")
|
|
except InviteHashExpiredError:
|
|
return None, await evt.reply("Invite link expired.")
|
|
try:
|
|
return evt.sender.client(ImportChatInviteRequest(invite_hash)), None
|
|
except UserAlreadyParticipantError:
|
|
return None, await evt.reply("You are already in that chat.")
|
|
else:
|
|
channel = await evt.sender.client.get_entity(arg)
|
|
if not channel:
|
|
return None, await evt.reply("Channel/supergroup not found.")
|
|
return await evt.sender.client(JoinChannelRequest(channel)), None
|
|
|
|
|
|
@command_handler()
|
|
async def join(evt):
|
|
if len(evt.args) == 0:
|
|
return await evt.reply("**Usage:** `$cmdprefix+sp join <invite link>`")
|
|
|
|
regex = re.compile(r"(?:https?://)?t(?:elegram)?\.(?:dog|me)(?:joinchat/)?/(.+)")
|
|
arg = regex.match(evt.args[0])
|
|
if not arg:
|
|
return await evt.reply("That doesn't look like a Telegram invite link.")
|
|
|
|
updates, _ = await _join(evt, arg.group(1))
|
|
if not updates:
|
|
return
|
|
|
|
for chat in updates.chats:
|
|
portal = po.Portal.get_by_entity(chat)
|
|
if portal.mxid:
|
|
await portal.invite_to_matrix([evt.sender.mxid])
|
|
return await evt.reply(f"Invited you to portal of {portal.title}")
|
|
else:
|
|
await evt.reply(f"Creating room for {chat.title}... This might take a while.")
|
|
await portal.create_matrix_room(evt.sender, chat, [evt.sender.mxid])
|
|
return await evt.reply(f"Created room for {portal.title}")
|
|
|
|
|
|
@command_handler()
|
|
async def sync(evt):
|
|
if len(evt.args) > 0:
|
|
sync_only = evt.args[0]
|
|
if sync_only not in ("chats", "contacts", "me"):
|
|
return await evt.reply("**Usage:** `$cmdprefix+sp sync [chats|contacts|me]`")
|
|
else:
|
|
sync_only = None
|
|
|
|
if not sync_only or sync_only == "chats":
|
|
await evt.sender.sync_dialogs()
|
|
if not sync_only or sync_only == "contacts":
|
|
await evt.sender.sync_contacts()
|
|
if not sync_only or sync_only == "me":
|
|
await evt.sender.update_info()
|
|
return await evt.reply("Synchronization complete.")
|