2020-07-10 21:53:24 +00:00
|
|
|
# Copyright (C) 2020 by Cathy Hu <cathy.hu@fau.de>
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: 0BSD
|
|
|
|
|
|
|
|
from kibicara.model import Hood, Mapping
|
|
|
|
from ormantic import Boolean, Integer, ForeignKey, Model, Text
|
|
|
|
|
|
|
|
|
|
|
|
class Telegram(Model):
|
|
|
|
id: Integer(primary_key=True) = None
|
|
|
|
hood: ForeignKey(Hood)
|
2020-07-17 13:07:24 +00:00
|
|
|
api_token: Text(unique=True)
|
2020-07-10 21:53:24 +00:00
|
|
|
welcome_message: Text()
|
2020-07-17 13:07:24 +00:00
|
|
|
enabled: Boolean() = True
|
2020-07-10 21:53:24 +00:00
|
|
|
|
|
|
|
class Mapping(Mapping):
|
|
|
|
table_name = 'telegrambots'
|
|
|
|
|
|
|
|
|
|
|
|
class TelegramUser(Model):
|
|
|
|
id: Integer(primary_key=True) = None
|
|
|
|
user_id: Integer(unique=True)
|
|
|
|
# TODO unique
|
|
|
|
bot: ForeignKey(Telegram)
|
|
|
|
|
|
|
|
class Mapping(Mapping):
|
|
|
|
table_name = 'telegramusers'
|