2022-02-26 13:31:49 +00:00
|
|
|
import time
|
|
|
|
|
2022-11-15 09:19:08 +00:00
|
|
|
from sqlalchemy import Column, ForeignKey
|
|
|
|
from sqlalchemy.orm import relationship
|
|
|
|
from sqlalchemy.sql.sqltypes import *
|
|
|
|
|
|
|
|
from files.classes import Base
|
|
|
|
|
2022-02-26 13:31:49 +00:00
|
|
|
class Follow(Base):
|
|
|
|
__tablename__ = "follows"
|
|
|
|
target_id = Column(Integer, ForeignKey("users.id"), primary_key=True)
|
|
|
|
user_id = Column(Integer, ForeignKey("users.id"), primary_key=True)
|
2022-09-19 20:40:33 +00:00
|
|
|
created_utc = Column(Integer)
|
2022-02-26 13:31:49 +00:00
|
|
|
|
2022-07-02 06:48:04 +00:00
|
|
|
user = relationship("User", uselist=False, primaryjoin="User.id==Follow.user_id", back_populates="following")
|
|
|
|
target = relationship("User", uselist=False, primaryjoin="User.id==Follow.target_id", back_populates="followers")
|
2022-02-26 13:31:49 +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-02-26 13:31:49 +00:00
|
|
|
def __repr__(self):
|
2022-11-29 21:02:38 +00:00
|
|
|
return f"<{self.__class__.__name__}(id={self.id})>"
|