2021-03-15 01:40:56 -04:00
|
|
|
# matrix-puppeteer-line - A very hacky Matrix-LINE bridge based on running LINE's Chrome extension in Puppeteer
|
2021-02-26 01:28:54 -05:00
|
|
|
# Copyright (C) 2020-2021 Tulir Asokan, Andrew Ferrazzutti
|
2020-08-28 09:38:06 -04:00
|
|
|
#
|
|
|
|
# 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 TYPE_CHECKING
|
|
|
|
|
|
|
|
from mautrix.bridge import BaseMatrixHandler
|
2021-04-22 02:39:52 -04:00
|
|
|
from mautrix.types import (Event, ReactionEvent, MessageEvent, StateEvent, EncryptedEvent, RedactionEvent,
|
|
|
|
EventID, RoomID, UserID)
|
2020-08-28 09:38:06 -04:00
|
|
|
|
2021-04-22 02:39:52 -04:00
|
|
|
from . import portal as po, puppet as pu, user as u
|
2020-08-28 09:38:06 -04:00
|
|
|
|
|
|
|
if TYPE_CHECKING:
|
|
|
|
from .__main__ import MessagesBridge
|
|
|
|
|
|
|
|
|
|
|
|
class MatrixHandler(BaseMatrixHandler):
|
|
|
|
def __init__(self, bridge: 'MessagesBridge') -> None:
|
|
|
|
prefix, suffix = bridge.config["bridge.username_template"].format(userid=":").split(":")
|
|
|
|
homeserver = bridge.config["homeserver.domain"]
|
|
|
|
self.user_id_prefix = f"@{prefix}"
|
|
|
|
self.user_id_suffix = f"{suffix}:{homeserver}"
|
|
|
|
|
2020-11-03 10:57:51 -05:00
|
|
|
super().__init__(bridge=bridge)
|
2020-08-28 09:38:06 -04:00
|
|
|
|
|
|
|
def filter_matrix_event(self, evt: Event) -> bool:
|
|
|
|
if not isinstance(evt, (ReactionEvent, MessageEvent, StateEvent, EncryptedEvent,
|
|
|
|
RedactionEvent)):
|
|
|
|
return True
|
|
|
|
return (evt.sender == self.az.bot_mxid
|
|
|
|
or pu.Puppet.get_id_from_mxid(evt.sender) is not None)
|
|
|
|
|
|
|
|
async def send_welcome_message(self, room_id: RoomID, inviter: 'u.User') -> None:
|
|
|
|
await super().send_welcome_message(room_id, inviter)
|
|
|
|
if not inviter.notice_room:
|
|
|
|
inviter.notice_room = room_id
|
|
|
|
await inviter.update()
|
|
|
|
await self.az.intent.send_notice(room_id, "This room has been marked as your "
|
2021-02-10 02:34:19 -05:00
|
|
|
"LINE bridge notice room.")
|
2021-04-22 02:39:52 -04:00
|
|
|
|
|
|
|
async def handle_leave(self, room_id: RoomID, user_id: UserID, event_id: EventID) -> None:
|
|
|
|
portal = await po.Portal.get_by_mxid(room_id)
|
|
|
|
if not portal:
|
|
|
|
return
|
|
|
|
|
|
|
|
user = await u.User.get_by_mxid(user_id, create=False)
|
|
|
|
if not user:
|
|
|
|
return
|
|
|
|
|
|
|
|
await portal.handle_matrix_leave(user)
|