Add room specific settings. Probably broken
This commit is contained in:
+23
-16
@@ -95,15 +95,6 @@ bridge:
|
||||
- username
|
||||
- phone number
|
||||
|
||||
# Show message editing as a reply to the original message.
|
||||
# If this is false, message edits are not shown at all, as Matrix does not support editing yet.
|
||||
edits_as_replies: false
|
||||
# Highlight changed/added parts in edits. Requires lxml.
|
||||
highlight_edits: false
|
||||
# Whether or not Matrix bot messages (type m.notice) should be bridged.
|
||||
bridge_notices: true
|
||||
# Whether to bridge Telegram bot messages as m.notices or m.texts.
|
||||
bot_messages_as_notices: true
|
||||
# Maximum number of members to sync per portal when starting up. Other members will be
|
||||
# synced when they send messages. The maximum is 10000, after which the Telegram server
|
||||
# will not send any more members.
|
||||
@@ -119,19 +110,12 @@ bridge:
|
||||
# Allow logging in within Matrix. If false, the only way to log in is using the out-of-Matrix
|
||||
# login website (see appservice.public config section)
|
||||
allow_matrix_login: true
|
||||
# Use inline images instead of m.image to make rich captions possible.
|
||||
# N.B. Inline images are not supported on all clients (e.g. Riot iOS).
|
||||
inline_images: false
|
||||
# Whether or not to bridge plaintext highlights.
|
||||
# Only enable this if your displayname_template has some static part that the bridge can use to
|
||||
# reliably identify what is a plaintext highlight.
|
||||
plaintext_highlights: false
|
||||
# Whether or not to make portals of publicly joinable channels/supergroups publicly joinable on Matrix.
|
||||
public_portals: true
|
||||
# Whether to send stickers as the new native m.sticker type or normal m.images.
|
||||
# Old versions of Riot don't support the new type at all.
|
||||
# Remember that proper sticker support always requires Pillow to convert webp into png.
|
||||
native_stickers: true
|
||||
# Whether or not to fetch and handle Telegram updates at startup from the time the bridge was down.
|
||||
# Currently only works for private chats and normal groups.
|
||||
catch_up: false
|
||||
@@ -149,6 +133,29 @@ bridge:
|
||||
# You might need to increase this on high-traffic bridge instances.
|
||||
cache_queue_length: 20
|
||||
|
||||
# Show message editing as a reply to the original message.
|
||||
# If this is false, message edits are not shown at all, as Matrix does not support editing yet.
|
||||
edits_as_replies: false
|
||||
# Highlight changed/added parts in edits. Requires lxml.
|
||||
highlight_edits: false
|
||||
bridge_notices:
|
||||
# Whether or not Matrix bot messages (type m.notice) should be bridged.
|
||||
default: false
|
||||
# List of user IDs for whom the previous flag is flipped.
|
||||
# e.g. if bridge_notices.default is false, notices from other users will not be bridged, but
|
||||
# notices from users listed here will be bridged.
|
||||
exceptions:
|
||||
- @importantbot:example.com
|
||||
# Whether to bridge Telegram bot messages as m.notices or m.texts.
|
||||
bot_messages_as_notices: true
|
||||
# Use inline images instead of m.image to make rich captions possible.
|
||||
# N.B. Inline images are not supported on all clients (e.g. Riot iOS).
|
||||
inline_images: false
|
||||
# Whether to send stickers as the new native m.sticker type or normal m.images.
|
||||
# Old versions of Riot don't support the new type at all.
|
||||
# Remember that proper sticker support always requires Pillow to convert webp into png.
|
||||
native_stickers: true
|
||||
|
||||
# The formats to use when sending messages to Telegram via the relay bot.
|
||||
#
|
||||
# Telegram doesn't have built-in emotes, so the m.emote format is also used for non-relaybot users.
|
||||
|
||||
@@ -35,7 +35,7 @@ from alchemysession import AlchemySessionContainer
|
||||
|
||||
from . import portal as po, puppet as pu, __version__
|
||||
from .db import Message as DBMessage
|
||||
from .types import TelegramID
|
||||
from .types import TelegramID, MatrixUserID
|
||||
from .tgclient import MautrixTelegramClient
|
||||
|
||||
if TYPE_CHECKING:
|
||||
@@ -69,7 +69,7 @@ class AbstractUser(ABC):
|
||||
self.relaybot_whitelisted = False # type: bool
|
||||
self.client = None # type: MautrixTelegramClient
|
||||
self.tgid = None # type: TelegramID
|
||||
self.mxid = None # type: str
|
||||
self.mxid = None # type: MatrixUserID
|
||||
self.is_relaybot = False # type: bool
|
||||
self.is_bot = False # type: bool
|
||||
self.relaybot = None # type: Optional[Bot]
|
||||
|
||||
@@ -183,7 +183,13 @@ class Config(DictWithRecursion):
|
||||
|
||||
copy("bridge.edits_as_replies")
|
||||
copy("bridge.highlight_edits")
|
||||
copy("bridge.bridge_notices")
|
||||
if isinstance(self["bridge.bridge_notices"], bool):
|
||||
base["bridge.bridge_notices"] = {
|
||||
"default": self["bridge.bridge_notices"],
|
||||
"exceptions": ["@importantbot:example.com"],
|
||||
}
|
||||
else:
|
||||
copy("bridge.bridge_notices")
|
||||
copy("bridge.bot_messages_as_notices")
|
||||
copy("bridge.max_initial_member_sync")
|
||||
copy("bridge.sync_channel_members")
|
||||
|
||||
@@ -39,6 +39,8 @@ class Portal(Base):
|
||||
# Matrix portal information
|
||||
mxid = Column(String, unique=True, nullable=True) # type: Optional[MatrixRoomID]
|
||||
|
||||
config = Column(Text, nullable=True)
|
||||
|
||||
# Telegram chat metadata
|
||||
username = Column(String, nullable=True)
|
||||
title = Column(String, nullable=True)
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
#
|
||||
# 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 Optional, List, Tuple, Callable, Pattern, Match, TYPE_CHECKING
|
||||
from typing import Optional, List, Tuple, Callable, Pattern, Match, TYPE_CHECKING, Dict, Any
|
||||
import re
|
||||
import logging
|
||||
|
||||
@@ -22,6 +22,7 @@ from telethon.tl.types import (MessageEntityMention, MessageEntityMentionName, M
|
||||
TypeMessageEntity)
|
||||
|
||||
from ... import puppet as pu
|
||||
from ...types import TelegramID, MatrixRoomID
|
||||
from ...db import Message as DBMessage
|
||||
from ..util import (add_surrogates, remove_surrogates, trim_reply_fallback_html,
|
||||
trim_reply_fallback_text)
|
||||
@@ -90,8 +91,8 @@ def matrix_to_telegram(html: str) -> ParsedMessage:
|
||||
raise FormatError(f"Failed to convert Matrix format: {html}") from e
|
||||
|
||||
|
||||
def matrix_reply_to_telegram(content: dict, tg_space: int, room_id: Optional[str] = None
|
||||
) -> Optional[int]:
|
||||
def matrix_reply_to_telegram(content: Dict[str, Any], tg_space: TelegramID,
|
||||
room_id: Optional[MatrixRoomID] = None) -> Optional[TelegramID]:
|
||||
try:
|
||||
reply = content["m.relates_to"]["m.in_reply_to"]
|
||||
room_id = room_id or reply["room_id"]
|
||||
|
||||
+73
-44
@@ -14,7 +14,7 @@
|
||||
#
|
||||
# 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, Dict, List, Optional, Pattern, Tuple, Union, cast, TYPE_CHECKING
|
||||
from typing import Awaitable, Dict, List, Optional, Pattern, Tuple, Union, cast, TYPE_CHECKING, Any
|
||||
from collections import deque
|
||||
from datetime import datetime
|
||||
from string import Template
|
||||
@@ -25,6 +25,7 @@ import mimetypes
|
||||
import unicodedata
|
||||
import hashlib
|
||||
import logging
|
||||
import json
|
||||
import re
|
||||
|
||||
import magic
|
||||
@@ -79,8 +80,8 @@ config = None # type: Config
|
||||
|
||||
TypeMessage = Union[Message, MessageService]
|
||||
TypeParticipant = Union[TypeChatParticipant, TypeChannelParticipant]
|
||||
DedupMXID = Tuple[str, int]
|
||||
InviteList = Union[str, List[str]]
|
||||
DedupMXID = Tuple[MatrixEventID, TelegramID]
|
||||
InviteList = Union[MatrixUserID, List[MatrixUserID]]
|
||||
|
||||
|
||||
class Portal:
|
||||
@@ -90,10 +91,13 @@ class Portal:
|
||||
bot = None # type: Bot
|
||||
loop = None # type: asyncio.AbstractEventLoop
|
||||
|
||||
# Config cache
|
||||
filter_mode = None # type: str
|
||||
filter_list = None # type: List[str]
|
||||
|
||||
bridge_notices = False # type: bool
|
||||
public_portals = False # type: bool
|
||||
max_initial_member_sync = -1 # type: int
|
||||
sync_channel_members = True # type: bool
|
||||
|
||||
dedup_pre_db_check = False # type: bool
|
||||
dedup_cache_queue_length = 20 # type: int
|
||||
@@ -102,6 +106,7 @@ class Portal:
|
||||
mx_alias_regex = None # type: Pattern
|
||||
hs_domain = None # type: str
|
||||
|
||||
# Instance cache
|
||||
by_mxid = {} # type: Dict[MatrixRoomID, Portal]
|
||||
by_tgid = {} # type: Dict[Tuple[TelegramID, TelegramID], Portal]
|
||||
|
||||
@@ -109,7 +114,7 @@ class Portal:
|
||||
mxid: Optional[MatrixRoomID] = None, username: Optional[str] = None,
|
||||
megagroup: Optional[bool] = False, title: Optional[str] = None,
|
||||
about: Optional[str] = None, photo_id: Optional[str] = None,
|
||||
db_instance: DBPortal = None) -> None:
|
||||
config: Optional[str] = None, db_instance: DBPortal = None) -> None:
|
||||
self.mxid = mxid # type: Optional[MatrixRoomID]
|
||||
self.tgid = tgid # type: TelegramID
|
||||
self.tg_receiver = tg_receiver or tgid # type: TelegramID
|
||||
@@ -119,6 +124,7 @@ class Portal:
|
||||
self.title = title # type: Optional[str]
|
||||
self.about = about # type: str
|
||||
self.photo_id = photo_id # type: str
|
||||
self.local_config = json.loads(config or "{}") # type: Dict[str, Any]
|
||||
self._db_instance = db_instance # type: DBPortal
|
||||
self.deleted = False # type: bool
|
||||
|
||||
@@ -248,7 +254,7 @@ class Portal:
|
||||
try:
|
||||
found_mxid = self._dedup_mxid[evt_hash]
|
||||
except KeyError:
|
||||
return "None", 0
|
||||
return MatrixEventID("None"), TelegramID(0)
|
||||
|
||||
if found_mxid != expected_mxid:
|
||||
return found_mxid
|
||||
@@ -346,7 +352,7 @@ class Portal:
|
||||
self.megagroup = entity.megagroup
|
||||
|
||||
if self.peer_type == "channel" and entity.username:
|
||||
public = config["bridge.public_portals"]
|
||||
public = Portal.public_portals
|
||||
alias = self._get_alias_localpart(entity.username)
|
||||
self.username = entity.username
|
||||
else:
|
||||
@@ -451,7 +457,7 @@ class Portal:
|
||||
# * The member sync count is limited, because then we might ignore some members.
|
||||
# * It's a channel, because non-admins don't have access to the member list.
|
||||
trust_member_list = (len(allowed_tgids) < 9900
|
||||
and config["bridge.max_initial_member_sync"] == -1
|
||||
and Portal.max_initial_member_sync == -1
|
||||
and (self.megagroup or self.peer_type != "channel"))
|
||||
if trust_member_list:
|
||||
joined_mxids = cast(List[MatrixUserID],
|
||||
@@ -533,7 +539,7 @@ class Portal:
|
||||
self.username = username or None
|
||||
if self.username:
|
||||
await self.main_intent.add_room_alias(self.mxid, self._get_alias_localpart())
|
||||
if config["bridge.public_portals"]:
|
||||
if Portal.public_portals:
|
||||
await self.main_intent.set_join_rule(self.mxid, "public")
|
||||
else:
|
||||
await self.main_intent.set_join_rule(self.mxid, "invite")
|
||||
@@ -593,10 +599,10 @@ class Portal:
|
||||
chat = await user.client(GetFullChatRequest(chat_id=self.tgid))
|
||||
return chat.users, chat.full_chat.participants.participants
|
||||
elif self.peer_type == "channel":
|
||||
if not self.megagroup and not config["bridge.sync_channel_members"]:
|
||||
if not self.megagroup and not Portal.sync_channel_members:
|
||||
return [], []
|
||||
|
||||
limit = config["bridge.max_initial_member_sync"]
|
||||
limit = Portal.max_initial_member_sync
|
||||
if limit == 0:
|
||||
return [], []
|
||||
|
||||
@@ -712,9 +718,15 @@ class Portal:
|
||||
else:
|
||||
return ""
|
||||
|
||||
def get_config(self, key: str) -> Any:
|
||||
local = self.local_config.get("state_event_formats", None)
|
||||
if local is not None:
|
||||
return local
|
||||
return config[f"bridge.{key}"]
|
||||
|
||||
async def _get_state_change_message(self, event: str, user: 'u.User',
|
||||
arguments: Optional[Dict] = None) -> Optional[Dict]:
|
||||
tpl = config[f"bridge.state_event_formats.{event}"]
|
||||
tpl = self.get_config("state_event_formats").get(event, "")
|
||||
if len(tpl) == 0:
|
||||
# Empty format means they don't want the message
|
||||
return None
|
||||
@@ -731,7 +743,7 @@ class Portal:
|
||||
}
|
||||
|
||||
async def name_change_matrix(self, user: 'u.User', displayname: str, prev_displayname: str,
|
||||
event_id: str) -> None:
|
||||
event_id: MatrixEventID) -> None:
|
||||
async with self.require_send_lock(self.bot.tgid):
|
||||
message = await self._get_state_change_message(
|
||||
"name_change", user,
|
||||
@@ -805,7 +817,7 @@ class Portal:
|
||||
channel = await self.get_input_entity(user)
|
||||
await user.client(LeaveChannelRequest(channel=channel))
|
||||
|
||||
async def join_matrix(self, user: 'u.User', event_id: str) -> None:
|
||||
async def join_matrix(self, user: 'u.User', event_id: MatrixEventID) -> None:
|
||||
if await user.needs_relaybot(self):
|
||||
async with self.require_send_lock(self.bot.tgid):
|
||||
message = await self._get_state_change_message("join", user)
|
||||
@@ -824,14 +836,14 @@ class Portal:
|
||||
# We'll just assume the user is already in the chat.
|
||||
pass
|
||||
|
||||
async def _apply_msg_format(self, sender: 'u.User', msgtype: str, message: Dict) -> None:
|
||||
async def _apply_msg_format(self, sender: 'u.User', msgtype: str, message: Dict[str, Any]
|
||||
) -> None:
|
||||
if "formatted_body" not in message:
|
||||
message["format"] = "org.matrix.custom.html"
|
||||
message["formatted_body"] = escape_html(message.get("body", ""))
|
||||
body = message["formatted_body"]
|
||||
|
||||
tpl = config["bridge.message_formats"].get(msgtype,
|
||||
"<b>$sender_displayname</b>: $message")
|
||||
tpl = config.get("message_formats", {}).get(msgtype, "<b>$sender_displayname</b>: $message")
|
||||
displayname = await self.get_displayname(sender)
|
||||
tpl_args = dict(sender_mxid=sender.mxid,
|
||||
sender_username=sender.mxid_localpart,
|
||||
@@ -840,7 +852,7 @@ class Portal:
|
||||
message["formatted_body"] = Template(tpl).safe_substitute(tpl_args)
|
||||
|
||||
async def _pre_process_matrix_message(self, sender: 'u.User', use_relaybot: bool,
|
||||
message: dict) -> None:
|
||||
message: Dict[str, Any]) -> None:
|
||||
msgtype = message.get("msgtype", "m.text")
|
||||
if msgtype == "m.emote":
|
||||
await self._apply_msg_format(sender, msgtype, message)
|
||||
@@ -849,7 +861,8 @@ class Portal:
|
||||
await self._apply_msg_format(sender, msgtype, message)
|
||||
|
||||
@staticmethod
|
||||
def _matrix_event_to_entities(event: Dict) -> Tuple[str, Optional[List[TypeMessageEntity]]]:
|
||||
def _matrix_event_to_entities(event: Dict[str, Any]) -> Tuple[
|
||||
str, Optional[List[TypeMessageEntity]]]:
|
||||
try:
|
||||
if event.get("format", None) == "org.matrix.custom.html":
|
||||
message, entities = formatter.matrix_to_telegram(event.get("formatted_body", ""))
|
||||
@@ -859,7 +872,7 @@ class Portal:
|
||||
message, entities = None, None
|
||||
return message, entities
|
||||
|
||||
def require_send_lock(self, user_id: int) -> asyncio.Lock:
|
||||
def require_send_lock(self, user_id: TelegramID) -> asyncio.Lock:
|
||||
if user_id is None:
|
||||
raise ValueError("Required send lock for none id")
|
||||
try:
|
||||
@@ -868,7 +881,7 @@ class Portal:
|
||||
self._send_locks[user_id] = asyncio.Lock()
|
||||
return self._send_locks[user_id]
|
||||
|
||||
def optional_send_lock(self, user_id: int) -> Optional[asyncio.Lock]:
|
||||
def optional_send_lock(self, user_id: TelegramID) -> Optional[asyncio.Lock]:
|
||||
if user_id is None:
|
||||
return None
|
||||
try:
|
||||
@@ -876,18 +889,19 @@ class Portal:
|
||||
except KeyError:
|
||||
return None
|
||||
|
||||
async def _handle_matrix_text(self, sender_id: int, event_id: str, space: int,
|
||||
client: 'MautrixTelegramClient', message: Dict, reply_to: int
|
||||
) -> None:
|
||||
async def _handle_matrix_text(self, sender_id: TelegramID, event_id: MatrixEventID,
|
||||
space: TelegramID, client: 'MautrixTelegramClient', message: Dict,
|
||||
reply_to: TelegramID) -> None:
|
||||
lock = self.require_send_lock(sender_id)
|
||||
async with lock:
|
||||
response = await client.send_message(self.peer, message, reply_to=reply_to,
|
||||
parse_mode=self._matrix_event_to_entities)
|
||||
self._add_telegram_message_to_db(event_id, space, response)
|
||||
|
||||
async def _handle_matrix_file(self, msgtype: str, sender_id: int, event_id: str, space: int,
|
||||
client: 'MautrixTelegramClient', message: dict, reply_to: int
|
||||
) -> None:
|
||||
async def _handle_matrix_file(self, msgtype: str, sender_id: TelegramID,
|
||||
event_id: MatrixEventID, space: TelegramID,
|
||||
client: 'MautrixTelegramClient', message: dict,
|
||||
reply_to: TelegramID) -> None:
|
||||
file = await self.main_intent.download_file(message["url"])
|
||||
|
||||
info = message.get("info", {})
|
||||
@@ -919,9 +933,9 @@ class Portal:
|
||||
caption=caption)
|
||||
self._add_telegram_message_to_db(event_id, space, response)
|
||||
|
||||
async def _handle_matrix_location(self, sender_id: int, event_id: str, space: int,
|
||||
client: 'MautrixTelegramClient', message: Dict,
|
||||
reply_to: int) -> None:
|
||||
async def _handle_matrix_location(self, sender_id: TelegramID, event_id: MatrixEventID,
|
||||
space: TelegramID, client: 'MautrixTelegramClient',
|
||||
message: Dict[str, Any], reply_to: TelegramID) -> None:
|
||||
try:
|
||||
lat, long = message["geo_uri"][len("geo:"):].split(",")
|
||||
lat, long = float(lat), float(long)
|
||||
@@ -937,7 +951,7 @@ class Portal:
|
||||
caption=caption, entities=entities)
|
||||
self._add_telegram_message_to_db(event_id, space, response)
|
||||
|
||||
def _add_telegram_message_to_db(self, event_id: str, space: int,
|
||||
def _add_telegram_message_to_db(self, event_id: MatrixEventID, space: TelegramID,
|
||||
response: TypeMessage) -> None:
|
||||
self.log.debug("Handled Matrix message: %s", response)
|
||||
self.is_duplicate(response, (event_id, space))
|
||||
@@ -948,7 +962,8 @@ class Portal:
|
||||
mxid=event_id))
|
||||
self.db.commit()
|
||||
|
||||
async def handle_matrix_message(self, sender: 'u.User', message: dict, event_id: str) -> None:
|
||||
async def handle_matrix_message(self, sender: 'u.User', message: Dict[str, Any],
|
||||
event_id: MatrixEventID) -> None:
|
||||
puppet = p.Puppet.get_by_custom_mxid(sender.mxid)
|
||||
if puppet and message.get("net.maunium.telegram.puppet", False):
|
||||
self.log.debug("Ignoring puppet-sent message by confirmed puppet user %s", sender.mxid)
|
||||
@@ -965,7 +980,13 @@ class Portal:
|
||||
await self._pre_process_matrix_message(sender, not logged_in, message)
|
||||
msgtype = message["msgtype"]
|
||||
|
||||
if msgtype == "m.text" or (self.bridge_notices and msgtype == "m.notice"):
|
||||
if msgtype == "m.notice":
|
||||
bridge_notices = self.get_config("bridge_notices")
|
||||
if not bridge_notices.get("default", False):
|
||||
if sender_id not in bridge_notices.get("exceptions"):
|
||||
return
|
||||
|
||||
if msgtype == "m.text":
|
||||
await self._handle_matrix_text(sender_id, event_id, space, client, message, reply_to)
|
||||
elif msgtype == "m.location":
|
||||
await self._handle_matrix_location(sender_id, event_id, space, client, message,
|
||||
@@ -976,7 +997,8 @@ class Portal:
|
||||
else:
|
||||
self.log.debug(f"Unhandled Matrix event: {message}")
|
||||
|
||||
async def handle_matrix_pin(self, sender: 'u.User', pinned_message: Optional[str]) -> None:
|
||||
async def handle_matrix_pin(self, sender: 'u.User',
|
||||
pinned_message: Optional[MatrixEventID]) -> None:
|
||||
if self.peer_type != "channel":
|
||||
return
|
||||
try:
|
||||
@@ -1093,7 +1115,7 @@ class Portal:
|
||||
# endregion
|
||||
# region Telegram chat info updating
|
||||
|
||||
async def _get_telegram_users_in_matrix_room(self) -> List[int]:
|
||||
async def _get_telegram_users_in_matrix_room(self) -> List[TelegramID]:
|
||||
user_tgids = set()
|
||||
user_mxids = await self.main_intent.get_room_members(self.mxid, ("join", "invite"))
|
||||
for user_str in user_mxids:
|
||||
@@ -1202,7 +1224,8 @@ class Portal:
|
||||
largest_size.location)
|
||||
if not file:
|
||||
return None
|
||||
if config["bridge.inline_images"] and (evt.message or evt.fwd_from or evt.reply_to_msg_id):
|
||||
if self.get_config("inline_images") and (evt.message
|
||||
or evt.fwd_from or evt.reply_to_msg_id):
|
||||
text, html, relates_to = await formatter.telegram_to_matrix(
|
||||
evt, source, self.main_intent,
|
||||
prefix_html=f"<img src='{file.mxc}' alt='Inline Telegram photo'/><br/>",
|
||||
@@ -1305,7 +1328,7 @@ class Portal:
|
||||
"external_url": self.get_external_url(evt)
|
||||
}
|
||||
|
||||
if attrs["is_sticker"] and config["bridge.native_stickers"]:
|
||||
if attrs["is_sticker"] and self.get_config("native_stickers"):
|
||||
return await intent.send_sticker(**kwargs)
|
||||
|
||||
mime_type = info["mimetype"]
|
||||
@@ -1352,7 +1375,7 @@ class Portal:
|
||||
self.log.debug(f"Sending {evt.message} to {self.mxid} by {intent.mxid}")
|
||||
text, html, relates_to = await formatter.telegram_to_matrix(evt, source, self.main_intent)
|
||||
await intent.set_typing(self.mxid, is_typing=False)
|
||||
msgtype = "m.notice" if is_bot and config["bridge.bot_messages_as_notices"] else "m.text"
|
||||
msgtype = "m.notice" if is_bot and self.get_config("bot_messages_as_notices") else "m.text"
|
||||
return await intent.send_text(self.mxid, text, html=html, relates_to=relates_to,
|
||||
msgtype=msgtype, timestamp=evt.date,
|
||||
external_url=self.get_external_url(evt))
|
||||
@@ -1361,7 +1384,7 @@ class Portal:
|
||||
evt: Message) -> None:
|
||||
if not self.mxid:
|
||||
return
|
||||
elif not config["bridge.edits_as_replies"]:
|
||||
elif not self.get_config("edits_as_replies"):
|
||||
self.log.debug("Edits as replies disabled, ignoring edit event...")
|
||||
return
|
||||
|
||||
@@ -1372,7 +1395,8 @@ class Portal:
|
||||
|
||||
tg_space = self.tgid if self.peer_type == "channel" else source.tgid
|
||||
|
||||
temporary_identifier = f"${random.randint(1000000000000,9999999999999)}TGBRIDGEDITEMP"
|
||||
temporary_identifier = MatrixEventID(
|
||||
f"${random.randint(1000000000000,9999999999999)}TGBRIDGEDITEMP")
|
||||
duplicate_found = self.is_duplicate(evt, (temporary_identifier, tg_space), force_hash=True)
|
||||
if duplicate_found:
|
||||
mxid, other_tg_space = duplicate_found
|
||||
@@ -1419,7 +1443,8 @@ class Portal:
|
||||
|
||||
tg_space = self.tgid if self.peer_type == "channel" else source.tgid
|
||||
|
||||
temporary_identifier = f"${random.randint(1000000000000,9999999999999)}TGBRIDGETEMP"
|
||||
temporary_identifier = MatrixEventID(
|
||||
f"${random.randint(1000000000000,9999999999999)}TGBRIDGETEMP")
|
||||
duplicate_found = self.is_duplicate(evt, (temporary_identifier, tg_space))
|
||||
if duplicate_found:
|
||||
mxid, other_tg_space = duplicate_found
|
||||
@@ -1681,7 +1706,8 @@ class Portal:
|
||||
def new_db_instance(self) -> DBPortal:
|
||||
return DBPortal(tgid=self.tgid, tg_receiver=self.tg_receiver, peer_type=self.peer_type,
|
||||
mxid=self.mxid, username=self.username, megagroup=self.megagroup,
|
||||
title=self.title, about=self.about, photo_id=self.photo_id)
|
||||
title=self.title, about=self.about, photo_id=self.photo_id,
|
||||
config=json.dumps(self.local_config))
|
||||
|
||||
def migrate_and_save(self, new_id: TelegramID) -> None:
|
||||
existing = DBPortal.query.get(self.tgid_full)
|
||||
@@ -1702,6 +1728,7 @@ class Portal:
|
||||
self.db_instance.title = self.title
|
||||
self.db_instance.about = self.about
|
||||
self.db_instance.photo_id = self.photo_id
|
||||
self.db_instance.config = json.dumps(self.local_config)
|
||||
self.db.commit()
|
||||
|
||||
def delete(self) -> None:
|
||||
@@ -1724,7 +1751,7 @@ class Portal:
|
||||
peer_type=db_portal.peer_type, mxid=db_portal.mxid,
|
||||
username=db_portal.username, megagroup=db_portal.megagroup,
|
||||
title=db_portal.title, about=db_portal.about, photo_id=db_portal.photo_id,
|
||||
db_instance=db_portal)
|
||||
config=db_portal.config, db_instance=db_portal)
|
||||
|
||||
# endregion
|
||||
# region Class instance lookup
|
||||
@@ -1822,7 +1849,9 @@ class Portal:
|
||||
def init(context: Context) -> None:
|
||||
global config
|
||||
Portal.az, Portal.db, config, Portal.loop, Portal.bot = context.core
|
||||
Portal.bridge_notices = config["bridge.bridge_notices"]
|
||||
Portal.max_initial_member_sync = config["bridge.max_initial_member_sync"]
|
||||
Portal.sync_channel_members = config["bridge.sync_channel_members"]
|
||||
Portal.public_portals = config["bridge.public_portals"]
|
||||
Portal.filter_mode = config["bridge.filter.mode"]
|
||||
Portal.filter_list = config["bridge.filter.list"]
|
||||
Portal.dedup_pre_db_check = config["bridge.deduplication.pre_db_check"]
|
||||
|
||||
Reference in New Issue
Block a user