88 lines
3.6 KiB
Python
88 lines
3.6 KiB
Python
# -*- coding: future_fstrings -*-
|
|
# mautrix-telegram - A Matrix-Telegram puppeting bridge
|
|
# Copyright (C) 2019 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 sqlalchemy import Column, Integer, String, Boolean
|
|
from sqlalchemy.engine.result import RowProxy
|
|
from sqlalchemy.sql import expression
|
|
from typing import Optional, Iterable
|
|
|
|
from ..types import MatrixUserID, MatrixRoomID, TelegramID
|
|
from .base import Base
|
|
|
|
|
|
class Puppet(Base):
|
|
__tablename__ = "puppet"
|
|
|
|
id = Column(Integer, primary_key=True) # type: TelegramID
|
|
custom_mxid = Column(String, nullable=True) # type: Optional[MatrixUserID]
|
|
access_token = Column(String, nullable=True)
|
|
displayname = Column(String, nullable=True)
|
|
displayname_source = Column(Integer, nullable=True) # type: Optional[TelegramID]
|
|
username = Column(String, nullable=True)
|
|
photo_id = Column(String, nullable=True)
|
|
is_bot = Column(Boolean, nullable=True)
|
|
matrix_registered = Column(Boolean, nullable=False, server_default=expression.false())
|
|
|
|
@classmethod
|
|
def scan(cls, row) -> Optional['Puppet']:
|
|
(id, custom_mxid, access_token, displayname, displayname_source, username, photo_id,
|
|
is_bot, matrix_registered) = row
|
|
return cls(id=id, custom_mxid=custom_mxid, access_token=access_token,
|
|
displayname=displayname, displayname_source=displayname_source,
|
|
username=username, photo_id=photo_id, is_bot=is_bot,
|
|
matrix_registered=matrix_registered)
|
|
|
|
@classmethod
|
|
def _one_or_none(cls, rows: RowProxy) -> Optional['Puppet']:
|
|
try:
|
|
return cls.scan(next(rows))
|
|
except StopIteration:
|
|
return None
|
|
|
|
@classmethod
|
|
def all_with_custom_mxid(cls) -> Iterable['Puppet']:
|
|
rows = cls.db.execute(cls.t.select().where(cls.c.custom_mxid != None))
|
|
for row in rows:
|
|
yield cls.scan(row)
|
|
|
|
@classmethod
|
|
def get_by_tgid(cls, tgid: TelegramID) -> Optional['Puppet']:
|
|
return cls._select_one_or_none(cls.c.id == tgid)
|
|
|
|
@classmethod
|
|
def get_by_custom_mxid(cls, mxid: MatrixUserID) -> Optional['Puppet']:
|
|
return cls._select_one_or_none(cls.c.custom_mxid == mxid)
|
|
|
|
@classmethod
|
|
def get_by_username(cls, username: str) -> Optional['Puppet']:
|
|
return cls._select_one_or_none(cls.c.username == username)
|
|
|
|
@classmethod
|
|
def get_by_displayname(cls, displayname: str) -> Optional['Puppet']:
|
|
return cls._select_one_or_none(cls.c.displayname == displayname)
|
|
|
|
@property
|
|
def _edit_identity(self):
|
|
return self.c.id == self.id
|
|
|
|
def insert(self) -> None:
|
|
with self.db.begin() as conn:
|
|
conn.execute(self.t.insert().values(
|
|
id=self.id, custom_mxid=self.custom_mxid, access_token=self.access_token,
|
|
displayname=self.displayname, displayname_source=self.displayname_source,
|
|
username=self.username, photo_id=self.photo_id, is_bot=self.is_bot,
|
|
matrix_registered=self.matrix_registered))
|