4146cb89b5
Mostly by removing whitespace before and after the docstring
75 lines
1.7 KiB
Python
75 lines
1.7 KiB
Python
# Copyright (C) 2020 by Thomas Lindner <tom@dl6tom.de>
|
|
# Copyright (C) 2020 by Cathy Hu <cathy.hu@fau.de>
|
|
# Copyright (C) 2020 by Martin Rey <martin.rey@mailbox.org>
|
|
#
|
|
# SPDX-License-Identifier: 0BSD
|
|
|
|
"""ORM Models for core."""
|
|
|
|
from databases import Database
|
|
from ormantic import Boolean, ForeignKey, Integer, Model, Text
|
|
from sqlalchemy import MetaData, create_engine
|
|
|
|
from kibicara.config import config
|
|
|
|
|
|
class Mapping:
|
|
database = Database(config['database_connection'])
|
|
metadata = MetaData()
|
|
|
|
@classmethod
|
|
def create_all(cls):
|
|
engine = create_engine(str(cls.database.url))
|
|
cls.metadata.create_all(engine)
|
|
|
|
@classmethod
|
|
def drop_all(cls):
|
|
engine = create_engine(str(cls.database.url))
|
|
cls.metadata.drop_all(engine)
|
|
|
|
|
|
class Admin(Model):
|
|
id: Integer(primary_key=True) = None
|
|
email: Text(unique=True)
|
|
passhash: Text()
|
|
|
|
class Mapping(Mapping):
|
|
table_name = 'admins'
|
|
|
|
|
|
class Hood(Model):
|
|
id: Integer(primary_key=True) = None
|
|
name: Text(unique=True)
|
|
landingpage: Text()
|
|
email_enabled: Boolean() = True
|
|
|
|
class Mapping(Mapping):
|
|
table_name = 'hoods'
|
|
|
|
|
|
class AdminHoodRelation(Model):
|
|
id: Integer(primary_key=True) = None
|
|
admin: ForeignKey(Admin)
|
|
hood: ForeignKey(Hood)
|
|
|
|
class Mapping(Mapping):
|
|
table_name = 'admin_hood_relations'
|
|
|
|
|
|
class Trigger(Model):
|
|
id: Integer(primary_key=True) = None
|
|
hood: ForeignKey(Hood)
|
|
pattern: Text()
|
|
|
|
class Mapping(Mapping):
|
|
table_name = 'triggers'
|
|
|
|
|
|
class BadWord(Model):
|
|
id: Integer(primary_key=True) = None
|
|
hood: ForeignKey(Hood)
|
|
pattern: Text()
|
|
|
|
class Mapping(Mapping):
|
|
table_name = 'badwords'
|