40 lines
1.1 KiB
Python
40 lines
1.1 KiB
Python
import time
|
|
|
|
from sqlalchemy import Column, ForeignKey
|
|
from sqlalchemy.orm import relationship
|
|
from sqlalchemy.sql.sqltypes import *
|
|
|
|
from files.classes import Base
|
|
|
|
class HoleRelationship(Base):
|
|
__tablename__ = NotImplemented
|
|
__abstract__ = True
|
|
|
|
user_id = Column(Integer, ForeignKey("users.id"), primary_key=True)
|
|
hole = Column(String, ForeignKey("holes.name"), primary_key=True)
|
|
created_utc = 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"
|
|
|
|
class Mod(HoleRelationship):
|
|
__tablename__ = "mods"
|
|
|
|
class Exile(HoleRelationship):
|
|
__tablename__ = "exiles"
|
|
exiler_id = Column(Integer, ForeignKey("users.id"))
|
|
exiler = relationship("User", primaryjoin="User.id==Exile.exiler_id")
|