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/>.
|
2021-06-30 03:04:25 -04:00
|
|
|
from typing import Optional, ClassVar, Dict, List, TYPE_CHECKING
|
2020-08-28 09:38:06 -04:00
|
|
|
|
|
|
|
from attr import dataclass
|
|
|
|
|
|
|
|
from mautrix.types import RoomID, EventID
|
|
|
|
from mautrix.util.async_db import Database
|
|
|
|
|
|
|
|
fake_db = Database("") if TYPE_CHECKING else None
|
|
|
|
|
|
|
|
|
|
|
|
@dataclass
|
|
|
|
class Message:
|
|
|
|
db: ClassVar[Database] = fake_db
|
|
|
|
|
2021-07-05 02:37:14 -04:00
|
|
|
mxid: Optional[EventID]
|
2020-08-28 09:38:06 -04:00
|
|
|
mx_room: RoomID
|
2021-06-10 02:10:18 -04:00
|
|
|
mid: Optional[int]
|
2021-04-22 02:39:52 -04:00
|
|
|
chat_id: str
|
2021-06-30 03:04:25 -04:00
|
|
|
is_outgoing: bool
|
2020-08-28 09:38:06 -04:00
|
|
|
|
|
|
|
async def insert(self) -> None:
|
2021-06-30 03:04:25 -04:00
|
|
|
q = "INSERT INTO message (mxid, mx_room, mid, chat_id, is_outgoing) VALUES ($1, $2, $3, $4, $5)"
|
|
|
|
await self.db.execute(q, self.mxid, self.mx_room, self.mid, self.chat_id, self.is_outgoing)
|
2020-08-28 09:38:06 -04:00
|
|
|
|
2021-06-17 00:42:06 -04:00
|
|
|
async def update_ids(self, new_mxid: EventID, new_mid: int) -> None:
|
|
|
|
q = ("UPDATE message SET mxid=$1, mid=$2 "
|
|
|
|
"WHERE mxid=$3 AND mx_room=$4 AND chat_id=$5")
|
|
|
|
await self.db.execute(q, new_mxid, new_mid,
|
|
|
|
self.mxid, self.mx_room, self.chat_id)
|
2020-08-28 09:38:06 -04:00
|
|
|
|
|
|
|
@classmethod
|
|
|
|
async def get_max_mid(cls, room_id: RoomID) -> int:
|
|
|
|
return await cls.db.fetchval("SELECT MAX(mid) FROM message WHERE mx_room=$1", room_id)
|
|
|
|
|
|
|
|
@classmethod
|
2021-04-22 02:39:52 -04:00
|
|
|
async def get_max_mids(cls) -> Dict[str, int]:
|
2020-08-28 09:38:06 -04:00
|
|
|
rows = await cls.db.fetch("SELECT chat_id, MAX(mid) AS max_mid "
|
|
|
|
"FROM message GROUP BY chat_id")
|
|
|
|
data = {}
|
|
|
|
for row in rows:
|
|
|
|
data[row["chat_id"]] = row["max_mid"]
|
|
|
|
return data
|
|
|
|
|
2021-06-30 03:04:25 -04:00
|
|
|
@classmethod
|
|
|
|
async def get_max_outgoing_mids(cls) -> Dict[str, int]:
|
|
|
|
rows = await cls.db.fetch("SELECT chat_id, MAX(mid) AS max_mid "
|
|
|
|
"FROM message WHERE is_outgoing GROUP BY chat_id")
|
|
|
|
data = {}
|
|
|
|
for row in rows:
|
|
|
|
data[row["chat_id"]] = row["max_mid"]
|
|
|
|
return data
|
|
|
|
|
2021-06-10 02:10:18 -04:00
|
|
|
@classmethod
|
|
|
|
async def get_num_noid_msgs(cls, room_id: RoomID) -> int:
|
|
|
|
return await cls.db.fetchval("SELECT COUNT(*) FROM message "
|
|
|
|
"WHERE mid IS NULL AND mx_room=$1", room_id)
|
|
|
|
|
2021-06-11 02:53:30 -04:00
|
|
|
@classmethod
|
|
|
|
async def is_last_by_mxid(cls, mxid: EventID, room_id: RoomID) -> bool:
|
|
|
|
q = ("SELECT mxid "
|
|
|
|
"FROM message INNER JOIN ( "
|
|
|
|
" SELECT mx_room, MAX(mid) AS max_mid "
|
|
|
|
" FROM message GROUP BY mx_room "
|
|
|
|
") by_room "
|
|
|
|
"ON mid=max_mid "
|
|
|
|
"WHERE by_room.mx_room=$1")
|
|
|
|
last_mxid = await cls.db.fetchval(q, room_id)
|
|
|
|
return last_mxid == mxid
|
|
|
|
|
2020-08-28 09:38:06 -04:00
|
|
|
@classmethod
|
|
|
|
async def get_by_mxid(cls, mxid: EventID, mx_room: RoomID) -> Optional['Message']:
|
2021-06-30 03:04:25 -04:00
|
|
|
row = await cls.db.fetchrow("SELECT mxid, mx_room, mid, chat_id, is_outgoing "
|
2020-08-28 09:38:06 -04:00
|
|
|
"FROM message WHERE mxid=$1 AND mx_room=$2", mxid, mx_room)
|
|
|
|
if not row:
|
|
|
|
return None
|
|
|
|
return cls(**row)
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
async def get_by_mid(cls, mid: int) -> Optional['Message']:
|
2021-06-30 03:04:25 -04:00
|
|
|
row = await cls.db.fetchrow("SELECT mxid, mx_room, mid, chat_id, is_outgoing FROM message WHERE mid=$1",
|
2020-08-28 09:38:06 -04:00
|
|
|
mid)
|
|
|
|
if not row:
|
|
|
|
return None
|
|
|
|
return cls(**row)
|
2021-06-10 02:10:18 -04:00
|
|
|
|
2021-06-30 03:04:25 -04:00
|
|
|
@classmethod
|
|
|
|
async def get_all_since(cls, chat_id: str, min_mid: int, max_mid: int) -> List['Message']:
|
|
|
|
rows = await cls.db.fetch("SELECT mxid, mx_room, mid, chat_id, is_outgoing FROM message "
|
|
|
|
"WHERE chat_id=$1 AND $2<mid AND mid<=$3",
|
|
|
|
chat_id, min_mid, max_mid)
|
|
|
|
return [cls(**row) for row in rows]
|
|
|
|
|
2021-06-10 02:10:18 -04:00
|
|
|
@classmethod
|
|
|
|
async def get_next_noid_msg(cls, room_id: RoomID) -> Optional['Message']:
|
2021-06-30 03:04:25 -04:00
|
|
|
row = await cls.db.fetchrow("SELECT mxid, mx_room, mid, chat_id, is_outgoing FROM message "
|
2021-06-10 02:10:18 -04:00
|
|
|
"WHERE mid IS NULL AND mx_room=$1", room_id)
|
|
|
|
if not row:
|
|
|
|
return None
|
|
|
|
return cls(**row)
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
async def delete_all_noid_msgs(cls, room_id: RoomID) -> None:
|
|
|
|
status = await cls.db.execute("DELETE FROM message "
|
|
|
|
"WHERE mid IS NULL AND mx_room=$1", room_id)
|
2021-06-18 00:38:45 -04:00
|
|
|
# Skip leading "DELETE "
|
|
|
|
return int(status[7:])
|