2022-05-04 23:09:46 +00:00
|
|
|
from sqlalchemy import *
|
|
|
|
from sqlalchemy.orm import relationship
|
|
|
|
from files.__main__ import Base
|
2022-09-12 10:19:35 +00:00
|
|
|
import time
|
2022-05-04 23:09:46 +00:00
|
|
|
|
|
|
|
class UserBlock(Base):
|
|
|
|
|
|
|
|
__tablename__ = "userblocks"
|
|
|
|
user_id = Column(Integer, ForeignKey("users.id"), primary_key=True)
|
|
|
|
target_id = Column(Integer, ForeignKey("users.id"), primary_key=True)
|
2022-09-19 20:40:33 +00:00
|
|
|
created_utc = Column(Integer)
|
2022-05-04 23:09:46 +00:00
|
|
|
|
2022-07-02 06:48:04 +00:00
|
|
|
user = relationship("User", primaryjoin="User.id==UserBlock.user_id", back_populates="blocking")
|
|
|
|
target = relationship("User", primaryjoin="User.id==UserBlock.target_id", back_populates="blocked")
|
2022-05-04 23:09:46 +00:00
|
|
|
|
2022-09-19 20:40:33 +00:00
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
if "created_utc" not in kwargs: kwargs["created_utc"] = int(time.time())
|
|
|
|
super().__init__(*args, **kwargs)
|
|
|
|
|
2022-05-04 23:09:46 +00:00
|
|
|
def __repr__(self):
|
2022-09-29 05:43:29 +00:00
|
|
|
return f"<UserBlock(user={self.user_id}, target={self.target_id})>"
|