2021-10-18 20:46:57 +00:00
|
|
|
import time
|
2022-11-15 09:19:08 +00:00
|
|
|
from math import floor
|
|
|
|
from random import randint
|
|
|
|
from urllib.parse import parse_qs, urlencode, urlparse
|
2023-01-02 04:23:44 +00:00
|
|
|
from flask import g
|
2022-11-15 09:19:08 +00:00
|
|
|
|
|
|
|
from sqlalchemy import Column, ForeignKey
|
2022-10-02 08:55:39 +00:00
|
|
|
from sqlalchemy.dialects.postgresql import TSVECTOR
|
2022-11-15 09:19:08 +00:00
|
|
|
from sqlalchemy.orm import relationship, scoped_session
|
|
|
|
from sqlalchemy.schema import FetchedValue
|
|
|
|
from sqlalchemy.sql.sqltypes import *
|
|
|
|
|
|
|
|
from files.classes import Base
|
2022-12-11 23:44:34 +00:00
|
|
|
from files.helpers.config.const import *
|
2021-08-04 15:35:10 +00:00
|
|
|
from files.helpers.lazy import lazy
|
2022-11-15 09:19:08 +00:00
|
|
|
from files.helpers.regex import *
|
2022-10-12 08:05:26 +00:00
|
|
|
from files.helpers.sorting_and_time import *
|
2021-09-12 06:12:44 +00:00
|
|
|
|
2022-06-22 19:50:20 +00:00
|
|
|
|
2022-06-23 15:47:57 +00:00
|
|
|
def normalize_urls_runtime(body, v):
|
2022-08-18 21:58:02 +00:00
|
|
|
if not v: return body
|
|
|
|
if v.reddit != 'old.reddit.com':
|
2022-08-13 08:26:33 +00:00
|
|
|
body = reddit_to_vreddit_regex.sub(rf'\1https://{v.reddit}/\2/', body)
|
2022-08-18 21:58:02 +00:00
|
|
|
if v.nitter:
|
2022-09-29 05:36:10 +00:00
|
|
|
body = body.replace('https://twitter.com/', 'https://nitter.lacontrevoie.fr/')
|
|
|
|
body = body.replace('https://nitter.lacontrevoie.fr/i/', 'https://twitter.com/i/')
|
2022-08-18 21:58:02 +00:00
|
|
|
if v.imginn:
|
2023-01-23 06:28:54 +00:00
|
|
|
body = body.replace('https://instagram.com/p/', 'https://imginn.com/p/')
|
2022-06-23 15:47:57 +00:00
|
|
|
return body
|
|
|
|
|
2021-09-19 18:22:57 +00:00
|
|
|
class Comment(Base):
|
2021-07-21 01:12:26 +00:00
|
|
|
__tablename__ = "comments"
|
|
|
|
|
|
|
|
id = Column(Integer, primary_key=True)
|
|
|
|
author_id = Column(Integer, ForeignKey("users.id"))
|
|
|
|
parent_submission = Column(Integer, ForeignKey("submissions.id"))
|
2022-12-03 01:49:07 +00:00
|
|
|
wall_user_id = Column(Integer, ForeignKey("users.id"))
|
2022-09-19 20:40:33 +00:00
|
|
|
created_utc = Column(Integer)
|
2021-07-21 01:12:26 +00:00
|
|
|
edited_utc = Column(Integer, default=0)
|
|
|
|
is_banned = Column(Boolean, default=False)
|
2022-02-15 22:54:17 +00:00
|
|
|
ghost = Column(Boolean, default=False)
|
2022-06-25 00:11:00 +00:00
|
|
|
bannedfor = Column(String)
|
2022-11-05 02:12:17 +00:00
|
|
|
chuddedfor = Column(String)
|
2021-07-21 01:12:26 +00:00
|
|
|
distinguish_level = Column(Integer, default=0)
|
|
|
|
deleted_utc = Column(Integer, default=0)
|
2022-02-13 11:02:44 +00:00
|
|
|
is_approved = Column(Integer, ForeignKey("users.id"))
|
2022-04-04 01:41:20 +00:00
|
|
|
level = Column(Integer, default=1)
|
2021-07-21 01:12:26 +00:00
|
|
|
parent_comment_id = Column(Integer, ForeignKey("comments.id"))
|
2021-12-05 02:21:38 +00:00
|
|
|
top_comment_id = Column(Integer)
|
2021-07-21 01:12:26 +00:00
|
|
|
over_18 = Column(Boolean, default=False)
|
|
|
|
is_bot = Column(Boolean, default=False)
|
2022-05-26 23:08:23 +00:00
|
|
|
stickied = Column(String)
|
|
|
|
stickied_utc = Column(Integer)
|
2022-11-26 04:01:20 +00:00
|
|
|
stickied_child_id = Column(Integer)
|
2022-02-12 23:10:29 +00:00
|
|
|
sentto = Column(Integer, ForeignKey("users.id"))
|
2021-07-25 23:49:53 +00:00
|
|
|
app_id = Column(Integer, ForeignKey("oauth_apps.id"))
|
2021-10-29 16:22:51 +00:00
|
|
|
upvotes = Column(Integer, default=1)
|
2021-09-24 02:21:41 +00:00
|
|
|
downvotes = Column(Integer, default=0)
|
2021-11-30 14:18:16 +00:00
|
|
|
realupvotes = Column(Integer, default=1)
|
2021-11-06 17:30:39 +00:00
|
|
|
body = Column(String)
|
|
|
|
body_html = Column(String)
|
2022-10-02 09:11:26 +00:00
|
|
|
body_ts = Column(TSVECTOR(), server_default=FetchedValue())
|
2021-10-06 22:38:15 +00:00
|
|
|
ban_reason = Column(String)
|
2022-02-14 01:39:48 +00:00
|
|
|
wordle_result = Column(String)
|
2022-01-29 04:48:30 +00:00
|
|
|
treasure_amount = Column(String)
|
2022-10-30 00:36:23 +00:00
|
|
|
slots_result = Column(String)
|
2022-10-30 00:40:35 +00:00
|
|
|
blackjack_result = Column(String)
|
2022-10-30 00:36:23 +00:00
|
|
|
casino_game_id = Column(Integer, ForeignKey("casino_games.id"))
|
2021-07-21 01:12:26 +00:00
|
|
|
|
2022-07-02 06:48:04 +00:00
|
|
|
oauth_app = relationship("OauthApp")
|
|
|
|
post = relationship("Submission", back_populates="comments")
|
2021-09-22 15:01:18 +00:00
|
|
|
author = relationship("User", primaryjoin="User.id==Comment.author_id")
|
2022-07-02 06:48:04 +00:00
|
|
|
senttouser = relationship("User", primaryjoin="User.id==Comment.sentto")
|
2022-10-12 07:03:28 +00:00
|
|
|
parent_comment = relationship("Comment", remote_side=[id])
|
2022-07-02 06:48:04 +00:00
|
|
|
awards = relationship("AwardRelationship", order_by="AwardRelationship.awarded_utc.desc()", back_populates="comment")
|
|
|
|
flags = relationship("CommentFlag", order_by="CommentFlag.created_utc")
|
|
|
|
options = relationship("CommentOption", order_by="CommentOption.id")
|
2022-12-14 19:30:05 +00:00
|
|
|
casino_game = relationship("CasinoGame")
|
2022-12-03 01:49:07 +00:00
|
|
|
wall_user = relationship("User", primaryjoin="User.id==Comment.wall_user_id")
|
2022-06-29 07:22:18 +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)
|
|
|
|
|
2021-07-21 01:12:26 +00:00
|
|
|
def __repr__(self):
|
2022-11-29 21:02:38 +00:00
|
|
|
return f"<{self.__class__.__name__}(id={self.id})>"
|
2021-07-21 01:12:26 +00:00
|
|
|
|
2022-01-11 04:30:08 +00:00
|
|
|
@lazy
|
2022-11-15 09:19:08 +00:00
|
|
|
def top_comment(self, db:scoped_session):
|
|
|
|
return db.get(Comment, self.top_comment_id)
|
2022-02-07 11:39:26 +00:00
|
|
|
|
2021-12-27 02:09:06 +00:00
|
|
|
@property
|
|
|
|
@lazy
|
|
|
|
def controversial(self):
|
|
|
|
if self.downvotes > 5 and 0.25 < self.upvotes / self.downvotes < 4: return True
|
|
|
|
return False
|
|
|
|
|
2021-09-19 18:22:57 +00:00
|
|
|
@property
|
|
|
|
@lazy
|
|
|
|
def age_string(self):
|
2022-03-04 23:49:38 +00:00
|
|
|
notif_utc = self.__dict__.get("notif_utc")
|
2022-03-04 17:33:58 +00:00
|
|
|
|
|
|
|
if notif_utc: timestamp = notif_utc
|
2022-03-04 16:53:28 +00:00
|
|
|
elif self.created_utc: timestamp = self.created_utc
|
2022-03-02 00:05:30 +00:00
|
|
|
else: return None
|
2022-10-15 18:11:43 +00:00
|
|
|
return make_age_string(timestamp)
|
2021-09-19 18:22:57 +00:00
|
|
|
|
|
|
|
@property
|
|
|
|
@lazy
|
|
|
|
def edited_string(self):
|
2022-10-15 18:11:43 +00:00
|
|
|
return make_age_string(self.edited_utc)
|
2021-09-19 18:22:57 +00:00
|
|
|
|
2022-02-05 17:51:42 +00:00
|
|
|
@property
|
|
|
|
@lazy
|
|
|
|
def score(self):
|
|
|
|
return self.upvotes - self.downvotes
|
2021-09-23 19:22:18 +00:00
|
|
|
|
2021-07-25 23:23:21 +00:00
|
|
|
@property
|
|
|
|
@lazy
|
|
|
|
def fullname(self):
|
2022-09-05 22:52:22 +00:00
|
|
|
return f"c_{self.id}"
|
2021-07-25 23:23:21 +00:00
|
|
|
|
2021-07-21 01:12:26 +00:00
|
|
|
@lazy
|
2022-11-15 09:19:08 +00:00
|
|
|
def parent(self, db:scoped_session):
|
2021-07-27 00:05:58 +00:00
|
|
|
if not self.parent_submission: return None
|
|
|
|
if self.level == 1: return self.post
|
2022-11-15 09:19:08 +00:00
|
|
|
else: return db.get(Comment, self.parent_comment_id)
|
2021-07-21 01:12:26 +00:00
|
|
|
|
2022-06-24 19:26:18 +00:00
|
|
|
@property
|
2021-07-30 05:23:17 +00:00
|
|
|
@lazy
|
|
|
|
def parent_fullname(self):
|
2022-09-05 22:52:22 +00:00
|
|
|
if self.parent_comment_id: return f"c_{self.parent_comment_id}"
|
|
|
|
elif self.parent_submission: return f"p_{self.parent_submission}"
|
2021-07-30 05:23:17 +00:00
|
|
|
|
2022-06-22 19:50:20 +00:00
|
|
|
@lazy
|
2022-11-15 09:19:08 +00:00
|
|
|
def replies(self, sort, v, db:scoped_session):
|
2022-07-02 10:44:05 +00:00
|
|
|
if self.replies2 != None:
|
|
|
|
return self.replies2
|
2022-10-12 07:03:28 +00:00
|
|
|
|
2022-11-26 04:01:20 +00:00
|
|
|
replies = db.query(Comment).filter_by(parent_comment_id=self.id).order_by(Comment.stickied, Comment.stickied_child_id)
|
2022-10-12 07:03:28 +00:00
|
|
|
if not self.parent_submission: sort='old'
|
2023-02-27 15:38:12 +00:00
|
|
|
return sort_objects(sort, replies, Comment).all()
|
2022-05-25 17:01:29 +00:00
|
|
|
|
2022-02-04 05:42:24 +00:00
|
|
|
|
2021-07-21 01:12:26 +00:00
|
|
|
@property
|
|
|
|
def replies2(self):
|
2022-03-04 23:49:38 +00:00
|
|
|
return self.__dict__.get("replies2")
|
2021-07-21 01:12:26 +00:00
|
|
|
|
|
|
|
@replies2.setter
|
|
|
|
def replies2(self, value):
|
|
|
|
self.__dict__["replies2"] = value
|
|
|
|
|
2021-09-12 06:12:44 +00:00
|
|
|
@property
|
|
|
|
@lazy
|
|
|
|
def shortlink(self):
|
2022-12-05 03:01:50 +00:00
|
|
|
if self.wall_user_id:
|
2022-12-24 19:19:47 +00:00
|
|
|
return f"/@{self.wall_user.username}/wall/comment/{self.id}#context"
|
|
|
|
return f"{self.post.shortlink}/{self.id}#context"
|
2021-09-12 06:12:44 +00:00
|
|
|
|
2022-01-28 21:44:32 +00:00
|
|
|
@property
|
|
|
|
@lazy
|
2022-02-24 13:20:48 +00:00
|
|
|
def permalink(self):
|
2022-10-27 17:53:08 +00:00
|
|
|
return f"{SITE_FULL}{self.shortlink}"
|
2022-01-28 21:44:32 +00:00
|
|
|
|
2022-07-13 15:20:10 +00:00
|
|
|
@property
|
|
|
|
@lazy
|
|
|
|
def log_link(self):
|
2022-10-27 17:53:08 +00:00
|
|
|
return f"{SITE_FULL}/transfers/{self.id}"
|
2022-07-13 15:20:10 +00:00
|
|
|
|
2022-01-17 21:26:03 +00:00
|
|
|
@property
|
|
|
|
@lazy
|
2022-12-29 14:20:27 +00:00
|
|
|
def more_comments(self):
|
2023-02-18 22:58:17 +00:00
|
|
|
if self.wall_user_id:
|
|
|
|
return f"/@{self.wall_user.username}/wall/comment/{self.id}?context=0#context"
|
2022-12-24 19:19:47 +00:00
|
|
|
return f"{self.post.permalink}/{self.id}?context=0#context"
|
2022-01-17 21:26:03 +00:00
|
|
|
|
2021-07-21 01:12:26 +00:00
|
|
|
@property
|
|
|
|
@lazy
|
2022-02-17 07:12:38 +00:00
|
|
|
def author_name(self):
|
2023-03-01 19:28:10 +00:00
|
|
|
if self.ghost and self.id != g.v.id: return '👻'
|
2022-10-06 23:31:09 +00:00
|
|
|
return self.author.user_name
|
2021-07-21 01:12:26 +00:00
|
|
|
|
2022-06-23 16:36:39 +00:00
|
|
|
@lazy
|
2022-06-27 02:14:53 +00:00
|
|
|
def award_count(self, kind, v):
|
2022-08-27 02:57:19 +00:00
|
|
|
if v and v.poor and kind.islower(): return 0
|
2021-08-23 11:05:56 +00:00
|
|
|
return len([x for x in self.awards if x.kind == kind])
|
2021-07-21 01:12:26 +00:00
|
|
|
|
2022-11-15 09:19:08 +00:00
|
|
|
def json(self, db:scoped_session):
|
2021-07-21 01:12:26 +00:00
|
|
|
if self.is_banned:
|
2022-09-04 23:15:37 +00:00
|
|
|
data = {'is_banned': True,
|
2022-11-14 04:03:51 +00:00
|
|
|
'ban_reason': self.ban_reason,
|
2021-07-30 05:31:38 +00:00
|
|
|
'id': self.id,
|
2021-12-14 18:35:56 +00:00
|
|
|
'post': self.post.id if self.post else 0,
|
2021-07-21 01:12:26 +00:00
|
|
|
'level': self.level,
|
2021-07-25 23:23:21 +00:00
|
|
|
'parent': self.parent_fullname
|
2021-07-21 01:12:26 +00:00
|
|
|
}
|
2022-01-12 01:19:13 +00:00
|
|
|
elif self.deleted_utc:
|
2022-09-04 23:15:37 +00:00
|
|
|
data = {'deleted_utc': self.deleted_utc,
|
2021-07-30 05:31:38 +00:00
|
|
|
'id': self.id,
|
2021-12-14 18:35:56 +00:00
|
|
|
'post': self.post.id if self.post else 0,
|
2021-07-21 01:12:26 +00:00
|
|
|
'level': self.level,
|
2021-07-25 23:23:21 +00:00
|
|
|
'parent': self.parent_fullname
|
2021-07-21 01:12:26 +00:00
|
|
|
}
|
|
|
|
else:
|
2022-07-11 13:14:34 +00:00
|
|
|
flags = {}
|
|
|
|
for f in self.flags: flags[f.user.username] = f.reason
|
|
|
|
|
2022-09-04 23:15:37 +00:00
|
|
|
data = {
|
2022-07-11 13:14:34 +00:00
|
|
|
'id': self.id,
|
|
|
|
'level': self.level,
|
|
|
|
'author_name': self.author_name,
|
|
|
|
'body': self.body,
|
|
|
|
'body_html': self.body_html,
|
|
|
|
'is_bot': self.is_bot,
|
|
|
|
'created_utc': self.created_utc,
|
|
|
|
'edited_utc': self.edited_utc or 0,
|
|
|
|
'is_banned': bool(self.is_banned),
|
|
|
|
'deleted_utc': self.deleted_utc,
|
|
|
|
'is_nsfw': self.over_18,
|
2023-02-07 02:34:11 +00:00
|
|
|
'permalink': f'/comment/{self.id}#context',
|
2022-07-11 13:14:34 +00:00
|
|
|
'stickied': self.stickied,
|
|
|
|
'distinguish_level': self.distinguish_level,
|
|
|
|
'post_id': self.post.id if self.post else 0,
|
|
|
|
'score': self.score,
|
|
|
|
'upvotes': self.upvotes,
|
|
|
|
'downvotes': self.downvotes,
|
|
|
|
'is_bot': self.is_bot,
|
|
|
|
'flags': flags,
|
2022-07-11 17:33:26 +00:00
|
|
|
'author': '👻' if self.ghost else self.author.json,
|
2022-12-20 21:12:12 +00:00
|
|
|
# 'replies': [x.json(db=db) for x in self.replies(sort="old", v=None, db=db)] # WORKER TIMEOUTS ON BUGTHREAD
|
2022-07-11 13:14:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if self.level >= 2: data['parent_comment_id'] = self.parent_comment_id
|
2021-07-21 01:12:26 +00:00
|
|
|
|
|
|
|
return data
|
|
|
|
|
2022-11-11 19:02:57 +00:00
|
|
|
@lazy
|
|
|
|
def total_poll_voted(self, v):
|
|
|
|
if v:
|
|
|
|
for o in self.options:
|
|
|
|
if o.voted(v): return True
|
|
|
|
return False
|
|
|
|
|
2022-06-23 16:36:39 +00:00
|
|
|
@lazy
|
2021-07-21 01:12:26 +00:00
|
|
|
def realbody(self, v):
|
2022-10-07 02:04:27 +00:00
|
|
|
if self.deleted_utc != 0 and not (v and (v.admin_level >= PERMS['POST_COMMENT_MODERATION'] or v.id == self.author.id)): return "[Deleted by user]"
|
2022-10-13 14:26:35 +00:00
|
|
|
if self.is_banned and not (v and v.admin_level >= PERMS['POST_COMMENT_MODERATION']) and not (v and v.id == self.author.id): return ""
|
2021-09-24 03:00:54 +00:00
|
|
|
|
2022-02-08 20:05:06 +00:00
|
|
|
body = self.body_html or ""
|
2021-08-21 11:06:28 +00:00
|
|
|
|
2022-07-02 06:48:04 +00:00
|
|
|
if self.options:
|
|
|
|
curr = [x for x in self.options if x.exclusive and x.voted(v)]
|
2022-09-05 23:33:58 +00:00
|
|
|
if curr: curr = " value=comment-" + str(curr[0].id)
|
2022-05-04 03:33:00 +00:00
|
|
|
else: curr = ''
|
2022-09-05 23:33:58 +00:00
|
|
|
body += f'<input class="d-none" id="current-comment-{self.id}"{curr}>'
|
2022-02-07 11:39:26 +00:00
|
|
|
|
2022-09-05 22:56:21 +00:00
|
|
|
for o in self.options:
|
2022-09-05 23:33:58 +00:00
|
|
|
input_type = 'radio' if o.exclusive else 'checkbox'
|
2023-02-28 22:09:16 +00:00
|
|
|
option_body = f'<div class="custom-control"><input type="{input_type}" class="custom-control-input" id="comment-{o.id}" name="option-{self.id}"'
|
|
|
|
if o.voted(v): option_body += " checked"
|
2022-09-05 23:33:58 +00:00
|
|
|
|
2022-09-05 22:55:01 +00:00
|
|
|
if v:
|
2023-02-28 16:53:51 +00:00
|
|
|
if self.parent_submission:
|
|
|
|
sub = self.post.sub
|
2023-02-28 22:09:16 +00:00
|
|
|
if sub in {'furry','vampire','racist','femboy'} and not v.house.lower().startswith(sub): option_body += ' disabled '
|
|
|
|
option_body += f''' data-nonce="{g.nonce}" data-onclick="poll_vote_{o.exclusive}('{o.id}', '{self.id}', 'comment')"'''
|
2022-09-05 23:33:58 +00:00
|
|
|
else:
|
2023-02-28 22:09:16 +00:00
|
|
|
option_body += f''' data-nonce="{g.nonce}" data-onclick="poll_vote_no_v()"'''
|
2022-09-05 23:33:58 +00:00
|
|
|
|
2023-02-28 22:09:16 +00:00
|
|
|
option_body += f'''><label class="custom-control-label" for="comment-{o.id}">{o.body_html}<span class="presult-{self.id}'''
|
|
|
|
if not self.total_poll_voted(v): option_body += ' d-none'
|
|
|
|
option_body += f'"> - <a href="/votes/comment/option/{o.id}"><span id="score-comment-{o.id}">{o.upvotes}</span> votes</a></label></div>'''
|
|
|
|
|
|
|
|
if o.exclusive > 1: s = '!!'
|
|
|
|
elif o.exclusive: s = '&&'
|
|
|
|
else: s = '$$'
|
|
|
|
|
2023-02-28 22:56:46 +00:00
|
|
|
if f'{s}{o.body_html}{s}' in body:
|
2023-02-28 23:46:11 +00:00
|
|
|
body = body.replace(f'{s}{o.body_html}{s}', option_body, 1)
|
2023-02-28 22:42:58 +00:00
|
|
|
elif not o.created_utc or o.created_utc < 1677622270:
|
2023-02-28 22:09:16 +00:00
|
|
|
body += option_body
|
2022-01-22 16:22:31 +00:00
|
|
|
|
2023-03-02 01:15:04 +00:00
|
|
|
if body:
|
|
|
|
body = censor_slurs(body, v)
|
|
|
|
body = normalize_urls_runtime(body, v)
|
|
|
|
if not v or v.controversial:
|
|
|
|
captured = []
|
|
|
|
for i in controversial_regex.finditer(body):
|
|
|
|
if i.group(1) in captured: continue
|
|
|
|
captured.append(i.group(1))
|
|
|
|
|
|
|
|
url = i.group(1)
|
|
|
|
p = urlparse(url).query
|
|
|
|
p = parse_qs(p, keep_blank_values=True)
|
|
|
|
|
|
|
|
if 'sort' not in p: p['sort'] = ['controversial']
|
|
|
|
|
|
|
|
url_noquery = url.split('?')[0]
|
|
|
|
body = body.replace(f'"{url}"', f'"{url_noquery}?{urlencode(p, True)}"')
|
|
|
|
body = body.replace(f'>{url}<', f'>{url_noquery}?{urlencode(p, True)}<')
|
|
|
|
|
2022-09-19 17:51:40 +00:00
|
|
|
if not self.ghost and self.author.show_sig(v):
|
2022-11-27 18:15:33 +00:00
|
|
|
body += f'<section id="signature-{self.author.id}" class="user-signature"><hr>{self.author.sig_html}</section>'
|
2022-01-22 16:22:31 +00:00
|
|
|
|
2021-07-21 01:12:26 +00:00
|
|
|
return body
|
|
|
|
|
2022-06-23 16:36:39 +00:00
|
|
|
@lazy
|
2021-10-02 20:58:14 +00:00
|
|
|
def plainbody(self, v):
|
2022-10-06 00:57:08 +00:00
|
|
|
if self.deleted_utc != 0 and not (v and (v.admin_level >= PERMS['POST_COMMENT_MODERATION'] or v.id == self.author.id)): return "[Deleted by user]"
|
2022-10-13 14:26:35 +00:00
|
|
|
if self.is_banned and not (v and v.admin_level >= PERMS['POST_COMMENT_MODERATION']) and not (v and v.id == self.author.id): return ""
|
2021-10-02 20:58:14 +00:00
|
|
|
|
|
|
|
body = self.body
|
|
|
|
|
|
|
|
if not body: return ""
|
|
|
|
|
2022-12-11 18:52:15 +00:00
|
|
|
body = censor_slurs(body, v).replace('<img loading="lazy" data-bs-toggle="tooltip" alt=":marseytrain:" title=":marseytrain:" src="/e/marseytrain.webp">', ':marseytrain:') \
|
|
|
|
.replace('<img loading="lazy" data-bs-toggle="tooltip" alt=":marseysleep:" title=":marseysleep:" src="/e/marseysleep.webp">', ':marseysleep:')
|
2022-10-06 22:34:25 +00:00
|
|
|
|
|
|
|
return body
|
2021-10-02 20:58:14 +00:00
|
|
|
|
2021-09-19 20:06:52 +00:00
|
|
|
@lazy
|
2022-01-31 04:17:27 +00:00
|
|
|
def collapse_for_user(self, v, path):
|
2022-01-31 04:22:14 +00:00
|
|
|
if v and self.author_id == v.id: return False
|
2022-01-31 04:20:59 +00:00
|
|
|
|
2022-01-31 04:17:27 +00:00
|
|
|
if path == '/admin/removed/comments': return False
|
2021-07-21 01:12:26 +00:00
|
|
|
|
2023-02-18 21:03:23 +00:00
|
|
|
if comment_link_regex.search(path): return False
|
2022-06-22 16:25:11 +00:00
|
|
|
|
2021-11-03 14:03:26 +00:00
|
|
|
if self.over_18 and not (v and v.over_18) and not (self.post and self.post.over_18): return True
|
2021-07-21 01:12:26 +00:00
|
|
|
|
2021-11-12 14:06:22 +00:00
|
|
|
if self.is_banned: return True
|
2022-01-31 22:13:16 +00:00
|
|
|
|
2022-11-14 02:12:08 +00:00
|
|
|
if self.author.shadowbanned and not (v and v.shadowbanned): return True
|
2022-11-13 22:13:14 +00:00
|
|
|
|
2022-09-04 20:53:34 +00:00
|
|
|
if (self.wordle_result) and (not self.body or len(self.body_html) <= 100) and 9 > self.level > 1: return True
|
2023-01-01 11:36:20 +00:00
|
|
|
|
2022-01-31 22:13:16 +00:00
|
|
|
if v and v.filter_words and self.body and any(x in self.body for x in v.filter_words): return True
|
2023-01-01 11:36:20 +00:00
|
|
|
|
2021-07-21 01:12:26 +00:00
|
|
|
return False
|
|
|
|
|
|
|
|
@property
|
|
|
|
@lazy
|
2021-07-31 13:55:49 +00:00
|
|
|
def is_op(self): return self.author_id==self.post.author_id
|
2023-01-01 11:36:20 +00:00
|
|
|
|
2021-07-27 00:16:30 +00:00
|
|
|
@lazy
|
2022-07-11 18:13:00 +00:00
|
|
|
def filtered_flags(self, v):
|
|
|
|
return [f for f in self.flags if (v and v.shadowbanned) or not f.user.shadowbanned]
|
|
|
|
|
|
|
|
@lazy
|
|
|
|
def active_flags(self, v):
|
|
|
|
return len(self.filtered_flags(v))
|
|
|
|
|
2022-03-06 03:25:23 +00:00
|
|
|
@lazy
|
|
|
|
def wordle_html(self, v):
|
|
|
|
if not self.wordle_result: return ''
|
|
|
|
|
|
|
|
split_wordle_result = self.wordle_result.split('_')
|
|
|
|
wordle_guesses = split_wordle_result[0]
|
|
|
|
wordle_status = split_wordle_result[1]
|
|
|
|
wordle_answer = split_wordle_result[2]
|
|
|
|
|
|
|
|
body = f"<span id='wordle-{self.id}' class='ml-2'><small>{wordle_guesses}</small>"
|
|
|
|
|
|
|
|
if wordle_status == 'active' and v and v.id == self.author_id:
|
2023-03-01 19:40:25 +00:00
|
|
|
body += f'''<input autocomplete="off" type="text" class="form-control" maxsize="4" style="width:200px;display:initial" placeholder="5-letter guess"><button class="action-{self.id} btn btn-success small text-uppercase px-2 mb-2" data-cid="{self.id}" data-nonce="{g.nonce}" data-onclick="wordle(this)">Guess</button>'''
|
2022-03-06 03:25:23 +00:00
|
|
|
elif wordle_status == 'won':
|
|
|
|
body += "<strong class='ml-2'>Correct!</strong>"
|
|
|
|
elif wordle_status == 'lost':
|
|
|
|
body += f"<strong class='ml-2'>Lost. The answer was: {wordle_answer}</strong>"
|
2023-01-01 11:36:20 +00:00
|
|
|
|
2022-03-06 03:25:23 +00:00
|
|
|
body += '</span>'
|
2022-09-29 05:43:29 +00:00
|
|
|
return body
|
2022-10-30 00:40:35 +00:00
|
|
|
|
|
|
|
@property
|
|
|
|
@lazy
|
|
|
|
def blackjack_html(self):
|
|
|
|
if not self.blackjack_result: return ''
|
|
|
|
|
|
|
|
split_result = self.blackjack_result.split('_')
|
|
|
|
blackjack_status = split_result[3]
|
|
|
|
player_hand = split_result[0].replace('X', '10')
|
|
|
|
dealer_hand = split_result[1].split('/')[0] if blackjack_status == 'active' else split_result[1]
|
|
|
|
dealer_hand = dealer_hand.replace('X', '10')
|
|
|
|
wager = int(split_result[4])
|
|
|
|
try: kind = split_result[5]
|
|
|
|
except: kind = "coins"
|
|
|
|
currency_kind = "Coins" if kind == "coins" else "Marseybux"
|
|
|
|
|
|
|
|
try: is_insured = split_result[6]
|
|
|
|
except: is_insured = "0"
|
|
|
|
|
|
|
|
body = f"<span id='blackjack-{self.id}' class='ml-2'><em>{player_hand} vs. {dealer_hand}</em>"
|
|
|
|
|
|
|
|
if blackjack_status == 'push':
|
|
|
|
body += f"<strong class='ml-2'>Pushed. Refunded {wager} {currency_kind}.</strong>"
|
|
|
|
elif blackjack_status == 'bust':
|
|
|
|
body += f"<strong class='ml-2'>Bust. Lost {wager} {currency_kind}.</strong>"
|
|
|
|
elif blackjack_status == 'lost':
|
|
|
|
body += f"<strong class='ml-2'>Lost {wager} {currency_kind}.</strong>"
|
|
|
|
elif blackjack_status == 'won':
|
|
|
|
body += f"<strong class='ml-2'>Won {wager} {currency_kind}.</strong>"
|
|
|
|
elif blackjack_status == 'blackjack':
|
|
|
|
body += f"<strong class='ml-2'>Blackjack! Won {floor(wager * 3/2)} {currency_kind}.</strong>"
|
|
|
|
|
|
|
|
if is_insured == "1":
|
2023-02-24 02:54:31 +00:00
|
|
|
body += " <em class='text-success'>Insured.</em>"
|
2022-10-30 00:40:35 +00:00
|
|
|
|
|
|
|
body += '</span>'
|
|
|
|
return body
|