106 lines
3.5 KiB
Python
106 lines
3.5 KiB
Python
# matrix-appservice-kakaotalk - A Matrix-KakaoTalk puppeting bridge.
|
|
# Copyright (C) 2022 Tulir Asokan, Andrew Ferrazzutti
|
|
#
|
|
# 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 __future__ import annotations
|
|
|
|
from typing import TYPE_CHECKING, ClassVar, List, Set
|
|
|
|
from asyncpg import Record
|
|
from attr import dataclass, field
|
|
|
|
from mautrix.types import RoomID, UserID
|
|
from mautrix.util.async_db import Database
|
|
|
|
from ..kt.types.bson import Long, to_optional_long
|
|
|
|
fake_db = Database.create("") if TYPE_CHECKING else None
|
|
|
|
|
|
@dataclass
|
|
class User:
|
|
db: ClassVar[Database] = fake_db
|
|
|
|
mxid: UserID
|
|
force_login: bool
|
|
was_connected: bool
|
|
ktid: Long | None = field(converter=to_optional_long)
|
|
uuid: str | None
|
|
access_token: str | None
|
|
refresh_token: str | None
|
|
notice_room: RoomID | None
|
|
|
|
@classmethod
|
|
def _from_row(cls, row: Record) -> User:
|
|
return cls(**row)
|
|
|
|
@classmethod
|
|
def _from_optional_row(cls, row: Record | None) -> User | None:
|
|
return cls._from_row(row) if row is not None else None
|
|
|
|
_columns = "mxid, force_login, was_connected, ktid, uuid, access_token, refresh_token, notice_room"
|
|
|
|
@classmethod
|
|
async def all_logged_in(cls) -> List[User]:
|
|
q = f'SELECT {cls._columns} FROM "user" WHERE ktid<>0'
|
|
rows = await cls.db.fetch(q)
|
|
return [cls._from_row(row) for row in rows if row]
|
|
|
|
@classmethod
|
|
async def get_by_ktid(cls, ktid: int) -> User | None:
|
|
q = f'SELECT {cls._columns} FROM "user" WHERE ktid=$1'
|
|
row = await cls.db.fetchrow(q, ktid)
|
|
return cls._from_optional_row(row)
|
|
|
|
@classmethod
|
|
async def get_by_mxid(cls, mxid: UserID) -> User | None:
|
|
q = f'SELECT {cls._columns} FROM "user" WHERE mxid=$1'
|
|
row = await cls.db.fetchrow(q, mxid)
|
|
return cls._from_optional_row(row)
|
|
|
|
@classmethod
|
|
async def get_all_uuids(cls) -> Set[str]:
|
|
q = 'SELECT uuid FROM "user" WHERE uuid IS NOT NULL'
|
|
return {tuple(record)[0] for record in await cls.db.fetch(q)}
|
|
|
|
@property
|
|
def _values(self):
|
|
return (
|
|
self.mxid,
|
|
self.force_login,
|
|
self.was_connected,
|
|
self.ktid,
|
|
self.uuid,
|
|
self.access_token,
|
|
self.refresh_token,
|
|
self.notice_room,
|
|
)
|
|
|
|
async def insert(self) -> None:
|
|
q = """
|
|
INSERT INTO "user" (mxid, force_login, was_connected, ktid, uuid, access_token, refresh_token, notice_room)
|
|
VALUES ($1, $2, $3, $4, $5, $6, $7, $8)
|
|
"""
|
|
await self.db.execute(q, *self._values)
|
|
|
|
async def delete(self) -> None:
|
|
await self.db.execute('DELETE FROM "user" WHERE mxid=$1', self.mxid)
|
|
|
|
async def save(self) -> None:
|
|
q = """
|
|
UPDATE "user" SET force_login=$2, was_connected=$3, ktid=$4, uuid=$5, access_token=$6, refresh_token=$7, notice_room=$8
|
|
WHERE mxid=$1
|
|
"""
|
|
await self.db.execute(q, *self._values)
|