Minor cleanups
This commit is contained in:
parent
59ea91519a
commit
c8803bc8cc
|
@ -17,7 +17,7 @@ from typing import NamedTuple
|
||||||
|
|
||||||
from mautrix.bridge.commands import HelpSection
|
from mautrix.bridge.commands import HelpSection
|
||||||
|
|
||||||
HelpCacheKey = NamedTuple("FBHelpCacheKey", is_management=bool, is_admin=bool, is_logged_in=bool)
|
HelpCacheKey = NamedTuple("KTHelpCacheKey", is_management=bool, is_admin=bool, is_logged_in=bool)
|
||||||
|
|
||||||
SECTION_AUTH = HelpSection("Authentication", 10, "")
|
SECTION_AUTH = HelpSection("Authentication", 10, "")
|
||||||
SECTION_CONNECTION = HelpSection("Connection management", 15, "")
|
SECTION_CONNECTION = HelpSection("Connection management", 15, "")
|
||||||
|
|
|
@ -51,9 +51,6 @@ class Config(BaseBridgeConfig):
|
||||||
|
|
||||||
copy("homeserver.asmux")
|
copy("homeserver.asmux")
|
||||||
|
|
||||||
if self["appservice.bot_avatar"] == "mxc://maunium.net/ddtNPZSKMNqaUzqrHuWvUADv":
|
|
||||||
base["appservice.bot_avatar"] = "mxc://maunium.net/ygtkteZsXnGJLJHRchUwYWak"
|
|
||||||
|
|
||||||
copy("appservice.public.enabled")
|
copy("appservice.public.enabled")
|
||||||
copy("appservice.public.prefix")
|
copy("appservice.public.prefix")
|
||||||
copy("appservice.public.external")
|
copy("appservice.public.external")
|
||||||
|
|
|
@ -17,8 +17,6 @@
|
||||||
|
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
|
||||||
from typing import Type
|
|
||||||
|
|
||||||
from ..types.api.auth_api_client import KnownAuthStatusCode
|
from ..types.api.auth_api_client import KnownAuthStatusCode
|
||||||
from ..types.request import KnownDataStatusCode, RootCommandResult
|
from ..types.request import KnownDataStatusCode, RootCommandResult
|
||||||
|
|
||||||
|
|
|
@ -35,8 +35,8 @@ class PathAttachment(Attachment):
|
||||||
s: int
|
s: int
|
||||||
|
|
||||||
|
|
||||||
from .media import *
|
|
||||||
from .reply import *
|
from .reply import *
|
||||||
|
from .mention import *
|
||||||
from .media import *
|
from .media import *
|
||||||
from .emoticon import *
|
from .emoticon import *
|
||||||
#from .voip import *
|
#from .voip import *
|
||||||
|
|
|
@ -68,6 +68,8 @@ _attachment_type_map: dict[KnownChatType, Type[Attachment]] = {
|
||||||
KnownChatType.CONTACT: ContactAttachment,
|
KnownChatType.CONTACT: ContactAttachment,
|
||||||
KnownChatType.AUDIO: AudioAttachment,
|
KnownChatType.AUDIO: AudioAttachment,
|
||||||
KnownChatType.DITEMEMOTICON: EmoticonAttachment,
|
KnownChatType.DITEMEMOTICON: EmoticonAttachment,
|
||||||
|
KnownChatType.STICKER: EmoticonAttachment,
|
||||||
|
KnownChatType.STICKERANI: EmoticonAttachment,
|
||||||
KnownChatType.SCHEDULE: OpenScheduleAttachment,
|
KnownChatType.SCHEDULE: OpenScheduleAttachment,
|
||||||
KnownChatType.VOTE: VoteAttachment,
|
KnownChatType.VOTE: VoteAttachment,
|
||||||
KnownChatType.MAP: MapAttachment,
|
KnownChatType.MAP: MapAttachment,
|
||||||
|
|
|
@ -16,7 +16,6 @@
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
|
||||||
from typing import TYPE_CHECKING, Union
|
from typing import TYPE_CHECKING, Union
|
||||||
import time
|
|
||||||
|
|
||||||
from mautrix.bridge import BaseMatrixHandler
|
from mautrix.bridge import BaseMatrixHandler
|
||||||
from mautrix.errors import MatrixError
|
from mautrix.errors import MatrixError
|
||||||
|
@ -39,7 +38,6 @@ from mautrix.types import (
|
||||||
)
|
)
|
||||||
|
|
||||||
from . import portal as po, puppet as pu, user as u
|
from . import portal as po, puppet as pu, user as u
|
||||||
from .db import Message as DBMessage
|
|
||||||
|
|
||||||
if TYPE_CHECKING:
|
if TYPE_CHECKING:
|
||||||
from .__main__ import KakaoTalkBridge
|
from .__main__ import KakaoTalkBridge
|
||||||
|
@ -238,7 +236,7 @@ class MatrixHandler(BaseMatrixHandler):
|
||||||
event_id: EventID,
|
event_id: EventID,
|
||||||
data: SingleReceiptEventContent,
|
data: SingleReceiptEventContent,
|
||||||
) -> None:
|
) -> None:
|
||||||
self.log.info("TODO")
|
self.log.info("TODO: handle_read_receipt")
|
||||||
"""
|
"""
|
||||||
if not user.mqtt:
|
if not user.mqtt:
|
||||||
return
|
return
|
||||||
|
|
|
@ -63,7 +63,7 @@ class RPCClient:
|
||||||
r, w = await asyncio.open_unix_connection(self.config["rpc.connection.path"])
|
r, w = await asyncio.open_unix_connection(self.config["rpc.connection.path"])
|
||||||
break
|
break
|
||||||
except:
|
except:
|
||||||
self.log.warn(f'No unix socket available at {self.config["rpc.connection.path"]}, wait for it to exist...')
|
self.log.warning(f'No unix socket available at {self.config["rpc.connection.path"]}, wait for it to exist...')
|
||||||
await asyncio.sleep(10)
|
await asyncio.sleep(10)
|
||||||
elif self.config["rpc.connection.type"] == "tcp":
|
elif self.config["rpc.connection.type"] == "tcp":
|
||||||
while True:
|
while True:
|
||||||
|
@ -72,7 +72,7 @@ class RPCClient:
|
||||||
self.config["rpc.connection.port"])
|
self.config["rpc.connection.port"])
|
||||||
break
|
break
|
||||||
except:
|
except:
|
||||||
self.log.warn(f'No TCP connection open at {self.config["rpc.connection.host"]}:{self.config["rpc.connection.path"]}, wait for it to become available...')
|
self.log.warning(f'No TCP connection open at {self.config["rpc.connection.host"]}:{self.config["rpc.connection.path"]}, wait for it to become available...')
|
||||||
await asyncio.sleep(10)
|
await asyncio.sleep(10)
|
||||||
else:
|
else:
|
||||||
raise RuntimeError("invalid rpc connection type")
|
raise RuntimeError("invalid rpc connection type")
|
||||||
|
|
Loading…
Reference in New Issue