rDrama/files/classes/hole_relationship.py

40 lines
1002 B
Python

import time
from sqlalchemy import Column, ForeignKey
from sqlalchemy.orm import declared_attr
from sqlalchemy.sql.sqltypes import *
from files.classes import Base
class HoleRelationship(Base):
__tablename__ = NotImplemented
__abstract__ = True
@declared_attr
def user_id(self):
return Column(Integer, ForeignKey("users.id"), primary_key=True)
@declared_attr
def hole(self):
return Column(String(20), ForeignKey("holes.name"), primary_key=True)
@declared_attr
def created_utc(self):
return Column(Integer)
def __init__(self, *args, **kwargs):
if "created_utc" not in kwargs: kwargs["created_utc"] = int(time.time())
super().__init__(*args, **kwargs)
def __repr__(self):
return f"<{self.__class__.__name__}(user_id={self.user_id}, hole={self.hole})>"
class StealthHoleUnblock(HoleRelationship):
__tablename__ = "stealth_hole_unblocks"
class HoleBlock(HoleRelationship):
__tablename__ = "hole_blocks"
class HoleFollow(HoleRelationship):
__tablename__ = "hole_follows"