import time from sqlalchemy import Column, ForeignKey from sqlalchemy.orm import relationship from sqlalchemy.sql.sqltypes import * from files.classes import Base from files.helpers.lazy import lazy class SubmissionOption(Base): __tablename__ = "submission_options" id = Column(Integer, primary_key=True) parent_id = Column(Integer, ForeignKey("submissions.id")) body = Column(Text) body_html = Column(Text) exclusive = Column(Integer) created_utc = Column(Integer) votes = relationship("SubmissionOptionVote") post = relationship("Submission", back_populates="options") 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__}(id={self.id})>" @property @lazy def upvotes(self): return len(self.votes) @lazy def voted(self, v): if not v: return False return v.id in [x.user_id for x in self.votes] @property @lazy def parent(self): return self.post class SubmissionOptionVote(Base): __tablename__ = "submission_option_votes" option_id = Column(Integer, ForeignKey("submission_options.id"), primary_key=True) user_id = Column(Integer, ForeignKey("users.id"), primary_key=True) created_utc = Column(Integer) submission_id = Column(Integer, ForeignKey("submissions.id")) user = relationship("User") 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__}(option_id={self.option_id}, user_id={self.user_id})>" class CommentOption(Base): __tablename__ = "comment_options" id = Column(Integer, primary_key=True) parent_id = Column(Integer, ForeignKey("comments.id")) body = Column(Text) body_html = Column(Text) exclusive = Column(Integer) created_utc = Column(Integer) votes = relationship("CommentOptionVote") comment = relationship("Comment", back_populates="options") 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__}(id={self.id})>" @property @lazy def upvotes(self): return len(self.votes) @lazy def voted(self, v): if not v: return False return v.id in [x.user_id for x in self.votes] @property @lazy def parent(self): return self.comment class CommentOptionVote(Base): __tablename__ = "comment_option_votes" option_id = Column(Integer, ForeignKey("comment_options.id"), primary_key=True) user_id = Column(Integer, ForeignKey("users.id"), primary_key=True) created_utc = Column(Integer) comment_id = Column(Integer, ForeignKey("comments.id")) user = relationship("User") 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__}(option_id={self.option_id}, user_id={self.user_id})>"