2023-05-05 13:42:20 +00:00
|
|
|
from datetime import datetime
|
|
|
|
|
2023-05-10 12:07:07 +00:00
|
|
|
from flask_login import current_user
|
|
|
|
|
2023-04-21 12:58:47 +00:00
|
|
|
from app import db
|
|
|
|
from app.models.utils import BaseModel
|
|
|
|
|
|
|
|
|
|
|
|
class Interpretation(BaseModel):
|
|
|
|
__tablename__ = "interpretations"
|
|
|
|
|
2023-04-27 13:17:25 +00:00
|
|
|
label = db.Column(db.String(256), unique=False, nullable=False)
|
2023-04-21 14:01:07 +00:00
|
|
|
text = db.Column(db.Text, unique=False, nullable=False)
|
2023-04-21 12:58:47 +00:00
|
|
|
marked = db.Column(db.Boolean, default=False)
|
2023-05-05 13:42:20 +00:00
|
|
|
created_at = db.Column(db.DateTime, default=datetime.now)
|
2023-04-21 12:58:47 +00:00
|
|
|
|
|
|
|
# Foreign keys
|
|
|
|
user_id = db.Column(db.ForeignKey("users.id"))
|
|
|
|
section_id = db.Column(db.ForeignKey("sections.id"))
|
|
|
|
|
|
|
|
# Relationships
|
|
|
|
user = db.relationship("User")
|
|
|
|
section = db.relationship("Section")
|
|
|
|
comments = db.relationship("Comment", viewonly=True)
|
|
|
|
votes = db.relationship("InterpretationVote", viewonly=True)
|
|
|
|
tags = db.relationship(
|
|
|
|
"Tag",
|
|
|
|
secondary="interpretation_tags",
|
|
|
|
back_populates="interpretations",
|
|
|
|
)
|
|
|
|
|
2023-05-09 14:56:29 +00:00
|
|
|
@property
|
|
|
|
def vote_count(self):
|
|
|
|
count = 0
|
|
|
|
|
|
|
|
for vote in self.votes:
|
|
|
|
if vote.positive:
|
|
|
|
count += 1
|
|
|
|
else:
|
|
|
|
count -= 1
|
|
|
|
|
|
|
|
return count
|
|
|
|
|
2023-05-10 12:07:07 +00:00
|
|
|
@property
|
|
|
|
def current_user_vote(self):
|
|
|
|
for vote in self.votes:
|
|
|
|
if vote.user_id == current_user.id:
|
|
|
|
return vote.positive
|
|
|
|
return None
|
|
|
|
|
2023-05-09 09:52:37 +00:00
|
|
|
@property
|
|
|
|
def active_comments(self):
|
|
|
|
return [comment for comment in self.comments if not comment.is_deleted]
|
|
|
|
|
2023-04-21 12:58:47 +00:00
|
|
|
def __repr__(self):
|
|
|
|
return f"<{self.id}: {self.label}>"
|