rDrama/files/classes/hole_relationship.py

45 lines
1.3 KiB
Python
Raw Normal View History

import time
2024-02-15 13:17:23 +00:00
from typing import Optional, TYPE_CHECKING
2024-02-15 13:17:23 +00:00
from sqlalchemy import ForeignKey
from sqlalchemy.orm import Mapped, relationship, mapped_column
from sqlalchemy.sql.sqltypes import *
from files.classes import Base
2024-02-15 13:17:23 +00:00
if TYPE_CHECKING:
from files.classes import User
2023-10-07 17:55:50 +00:00
class HoleRelationship(Base):
__tablename__ = NotImplemented
__abstract__ = True
2024-02-15 13:17:23 +00:00
user_id: Mapped[int] = mapped_column(ForeignKey("users.id"), primary_key=True)
hole: Mapped[str] = mapped_column(ForeignKey("holes.name"), primary_key=True)
2024-02-15 13:17:23 +00:00
created_utc: Mapped[Optional[int]]
def __init__(self, *args, **kwargs):
if "created_utc" not in kwargs: kwargs["created_utc"] = int(time.time())
super().__init__(*args, **kwargs)
def __repr__(self):
2023-10-07 17:55:50 +00:00
return f"<{self.__class__.__name__}(user_id={self.user_id}, hole={self.hole})>"
2023-01-01 11:36:20 +00:00
2023-10-07 17:55:50 +00:00
class StealthHoleUnblock(HoleRelationship):
__tablename__ = "stealth_hole_unblocks"
2023-10-07 17:55:50 +00:00
class HoleBlock(HoleRelationship):
__tablename__ = "hole_blocks"
2023-10-07 17:55:50 +00:00
class HoleFollow(HoleRelationship):
__tablename__ = "hole_follows"
class Mod(HoleRelationship):
__tablename__ = "mods"
class Exile(HoleRelationship):
__tablename__ = "exiles"
2024-02-15 13:17:23 +00:00
exiler_id: Mapped[int] = mapped_column(ForeignKey("users.id"))
2024-02-15 13:17:23 +00:00
exiler: Mapped["User"] = relationship(primaryjoin="User.id==Exile.exiler_id")