mirror of
https://github.com/maubot/maubot
synced 2025-08-29 02:10:38 +00:00
33 lines
1.2 KiB
Python
33 lines
1.2 KiB
Python
# maubot - A plugin-based Matrix bot system.
|
|
# Copyright (C) 2022 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 __future__ import annotations
|
|
|
|
import sqlalchemy as sql
|
|
|
|
from mautrix.types import FilterID, SyncToken, UserID
|
|
from mautrix.util.db import Base
|
|
|
|
|
|
class NextBatch(Base):
|
|
__tablename__ = "standalone_next_batch"
|
|
|
|
user_id: UserID = sql.Column(sql.String(255), primary_key=True)
|
|
next_batch: SyncToken = sql.Column(sql.String(255))
|
|
filter_id: FilterID = sql.Column(sql.String(255))
|
|
|
|
@classmethod
|
|
def get(cls, user_id: UserID) -> NextBatch | None:
|
|
return cls._select_one_or_none(cls.c.user_id == user_id)
|