2021-10-18 20:46:57 +00:00
|
|
|
import random
|
|
|
|
import time
|
|
|
|
from urllib.parse import 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, FetchedValue, ForeignKey
|
2023-07-07 23:12:59 +00:00
|
|
|
from sqlalchemy.orm import deferred, relationship
|
2022-11-15 09:19:08 +00:00
|
|
|
from sqlalchemy.sql.sqltypes import *
|
|
|
|
|
|
|
|
from files.classes import Base
|
2022-12-11 23:44:34 +00:00
|
|
|
from files.helpers.config.const import *
|
2023-09-29 00:26:19 +00:00
|
|
|
from files.helpers.config.awards import *
|
2023-09-22 17:01:30 +00:00
|
|
|
from files.helpers.slurs_and_profanities import *
|
2021-10-18 20:46:57 +00:00
|
|
|
from files.helpers.lazy import lazy
|
2022-11-15 09:19:08 +00:00
|
|
|
from files.helpers.regex import *
|
2022-10-15 18:11:43 +00:00
|
|
|
from files.helpers.sorting_and_time import make_age_string
|
2022-11-15 09:19:08 +00:00
|
|
|
|
2023-10-02 08:05:30 +00:00
|
|
|
from .comment import normalize_urls_runtime, add_options, get_award_classes
|
2022-11-15 09:19:08 +00:00
|
|
|
from .polls import *
|
2022-02-05 21:09:17 +00:00
|
|
|
from .sub import *
|
2022-06-26 05:51:02 +00:00
|
|
|
from .subscriptions import *
|
2023-04-27 18:50:16 +00:00
|
|
|
from .saves import SaveRelationship
|
2022-06-22 19:57:57 +00:00
|
|
|
|
2023-06-07 23:26:32 +00:00
|
|
|
class Post(Base):
|
|
|
|
__tablename__ = "posts"
|
2021-07-21 01:12:26 +00:00
|
|
|
|
2022-02-12 22:23:41 +00:00
|
|
|
id = Column(Integer, primary_key=True)
|
|
|
|
author_id = Column(Integer, ForeignKey("users.id"))
|
|
|
|
edited_utc = Column(Integer, default=0)
|
2022-09-19 20:40:33 +00:00
|
|
|
created_utc = Column(Integer)
|
2021-10-06 22:38:15 +00:00
|
|
|
thumburl = Column(String)
|
2023-03-11 06:29:52 +00:00
|
|
|
posterurl = Column(String)
|
2021-07-21 01:12:26 +00:00
|
|
|
is_banned = 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)
|
2022-02-15 22:54:17 +00:00
|
|
|
ghost = Column(Boolean, default=False)
|
2021-07-21 01:12:26 +00:00
|
|
|
views = Column(Integer, default=0)
|
|
|
|
deleted_utc = Column(Integer, default=0)
|
|
|
|
distinguish_level = Column(Integer, default=0)
|
2021-10-06 22:38:15 +00:00
|
|
|
stickied = Column(String)
|
2021-12-26 01:03:21 +00:00
|
|
|
stickied_utc = Column(Integer)
|
2022-07-01 23:11:48 +00:00
|
|
|
hole_pinned = Column(String)
|
2022-02-13 02:45:09 +00:00
|
|
|
sub = Column(String, ForeignKey("subs.name"))
|
2021-07-21 01:12:26 +00:00
|
|
|
is_pinned = Column(Boolean, default=False)
|
|
|
|
private = Column(Boolean, default=False)
|
2021-08-22 11:29:00 +00:00
|
|
|
comment_count = Column(Integer, default=0)
|
2022-02-13 02:45:09 +00:00
|
|
|
is_approved = Column(Integer, ForeignKey("users.id"))
|
2021-07-21 01:12:26 +00:00
|
|
|
over_18 = Column(Boolean, default=False)
|
|
|
|
is_bot = Column(Boolean, default=False)
|
|
|
|
upvotes = Column(Integer, default=1)
|
|
|
|
downvotes = Column(Integer, default=0)
|
2021-11-30 14:18:16 +00:00
|
|
|
realupvotes = Column(Integer, default=1)
|
2023-08-23 21:57:39 +00:00
|
|
|
app_id = Column(Integer, ForeignKey("oauth_apps.id"))
|
2021-10-06 22:38:15 +00:00
|
|
|
title = Column(String)
|
|
|
|
title_html = Column(String)
|
|
|
|
url = Column(String)
|
2021-11-06 17:30:39 +00:00
|
|
|
body = Column(String)
|
|
|
|
body_html = Column(String)
|
2021-12-05 20:22:57 +00:00
|
|
|
flair = Column(String)
|
2021-10-06 22:38:15 +00:00
|
|
|
ban_reason = Column(String)
|
2023-02-18 16:33:19 +00:00
|
|
|
embed = Column(String)
|
2022-02-27 22:49:34 +00:00
|
|
|
new = Column(Boolean)
|
2022-09-10 07:00:45 +00:00
|
|
|
notify = Column(Boolean)
|
2023-06-23 13:14:23 +00:00
|
|
|
chudded = Column(Boolean, default=False)
|
2023-08-14 11:00:29 +00:00
|
|
|
rainbowed = Column(Boolean, default=False)
|
2023-10-04 15:42:03 +00:00
|
|
|
golden = Column(Boolean, default=False)
|
2023-08-14 11:00:29 +00:00
|
|
|
queened = Column(Boolean, default=False)
|
|
|
|
sharpened = Column(Boolean, default=False)
|
2023-08-13 16:02:55 +00:00
|
|
|
ping_cost = Column(Integer, default=0)
|
2023-07-25 22:37:54 +00:00
|
|
|
bump_utc = Column(Integer)
|
2021-07-21 01:12:26 +00:00
|
|
|
|
2023-06-07 23:26:32 +00:00
|
|
|
author = relationship("User", primaryjoin="Post.author_id==User.id")
|
2022-07-02 06:48:04 +00:00
|
|
|
oauth_app = relationship("OauthApp")
|
2023-06-07 23:26:32 +00:00
|
|
|
approved_by = relationship("User", uselist=False, primaryjoin="Post.is_approved==User.id")
|
2022-07-02 06:48:04 +00:00
|
|
|
awards = relationship("AwardRelationship", order_by="AwardRelationship.awarded_utc.desc()", back_populates="post")
|
2023-06-23 16:49:23 +00:00
|
|
|
reports = relationship("Report", order_by="Report.created_utc")
|
2023-06-23 13:46:42 +00:00
|
|
|
comments = relationship("Comment", primaryjoin="Comment.parent_post==Post.id", back_populates="post")
|
2023-06-07 23:26:32 +00:00
|
|
|
subr = relationship("Sub", primaryjoin="foreign(Post.sub)==remote(Sub.name)")
|
|
|
|
options = relationship("PostOption", order_by="PostOption.id")
|
2021-07-21 01:12:26 +00:00
|
|
|
|
2022-09-19 20:40:33 +00:00
|
|
|
def __init__(self, *args, **kwargs):
|
2023-07-25 22:37:54 +00:00
|
|
|
if "created_utc" not in kwargs:
|
|
|
|
kwargs["created_utc"] = int(time.time())
|
2023-07-27 14:54:12 +00:00
|
|
|
kwargs["bump_utc"] = kwargs["created_utc"]
|
2022-09-19 20:40:33 +00:00
|
|
|
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-08-06 12:22:29 +00:00
|
|
|
|
2022-01-06 20:30:08 +00:00
|
|
|
@property
|
2021-12-27 02:09:06 +00:00
|
|
|
@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
|
|
|
|
2021-10-05 23:11:17 +00:00
|
|
|
@property
|
|
|
|
@lazy
|
|
|
|
def created_datetime(self):
|
2022-11-29 20:29:27 +00:00
|
|
|
return time.strftime("%d/%B/%Y %H:%M:%S UTC", time.gmtime(self.created_utc))
|
2021-10-05 23:11:17 +00:00
|
|
|
|
2021-09-19 18:22:57 +00:00
|
|
|
@property
|
|
|
|
@lazy
|
|
|
|
def age_string(self):
|
2022-10-15 18:11:43 +00:00
|
|
|
return make_age_string(self.created_utc)
|
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-21 01:12:26 +00:00
|
|
|
@property
|
|
|
|
@lazy
|
|
|
|
def fullname(self):
|
2022-11-17 21:02:08 +00:00
|
|
|
return f"p_{self.id}"
|
2022-02-16 04:33:13 +00:00
|
|
|
|
2023-03-24 12:29:19 +00:00
|
|
|
@property
|
|
|
|
@lazy
|
|
|
|
def id_last_num(self):
|
|
|
|
return str(self.id)[-1]
|
|
|
|
|
2022-02-16 04:33:13 +00:00
|
|
|
@property
|
|
|
|
@lazy
|
2022-02-24 13:20:48 +00:00
|
|
|
def shortlink(self):
|
2022-02-17 07:12:38 +00:00
|
|
|
link = f"/post/{self.id}"
|
2022-03-09 02:04:37 +00:00
|
|
|
if self.sub: link = f"/h/{self.sub}{link}"
|
2022-02-16 04:33:13 +00:00
|
|
|
|
2023-08-29 03:07:57 +00:00
|
|
|
if self.sub and self.sub in {'chudrama', 'countryclub', 'highrollerclub'}:
|
2023-01-01 05:33:09 +00:00
|
|
|
output = '-'
|
|
|
|
else:
|
2023-03-12 10:19:10 +00:00
|
|
|
title = self.plaintitle(None).lower()
|
|
|
|
output = title_regex.sub('', title)
|
2023-01-01 03:50:29 +00:00
|
|
|
output = output.split()[:6]
|
|
|
|
output = '-'.join(output)
|
2023-01-01 05:33:09 +00:00
|
|
|
if not output: output = '-'
|
2021-07-21 01:12:26 +00:00
|
|
|
|
2022-02-04 18:35:39 +00:00
|
|
|
return f"{link}/{output}"
|
2022-02-04 03:06:49 +00:00
|
|
|
|
|
|
|
@property
|
|
|
|
@lazy
|
|
|
|
def permalink(self):
|
2022-10-27 17:53:08 +00:00
|
|
|
return SITE_FULL + self.shortlink
|
2021-07-21 01:12:26 +00:00
|
|
|
|
|
|
|
@property
|
|
|
|
@lazy
|
|
|
|
def domain(self):
|
2022-08-23 18:05:11 +00:00
|
|
|
if not self.url: return ''
|
2022-01-19 09:21:20 +00:00
|
|
|
if self.url.startswith('/'): return SITE
|
2022-02-25 18:16:11 +00:00
|
|
|
domain = urlparse(self.url).netloc
|
2021-07-27 21:58:35 +00:00
|
|
|
if domain.startswith("www."): domain = domain.split("www.")[1]
|
2021-07-21 01:12:26 +00:00
|
|
|
return domain.replace("old.reddit.com", "reddit.com")
|
|
|
|
|
2022-01-21 20:56:56 +00:00
|
|
|
@property
|
|
|
|
@lazy
|
|
|
|
def author_name(self):
|
2023-03-04 15:44:59 +00:00
|
|
|
if self.ghost and not (g.v and self.id == g.v.id): return '👻'
|
2022-10-06 23:31:09 +00:00
|
|
|
return self.author.user_name
|
2022-01-21 20:56:56 +00:00
|
|
|
|
2021-12-28 14:52:57 +00:00
|
|
|
@property
|
|
|
|
@lazy
|
|
|
|
def is_youtube(self):
|
2023-02-18 16:33:19 +00:00
|
|
|
return self.domain == "youtube.com" and self.embed and self.embed.startswith('<lite-youtube')
|
2021-07-21 01:12:26 +00:00
|
|
|
|
|
|
|
@property
|
2021-08-01 04:27:10 +00:00
|
|
|
@lazy
|
2021-07-21 01:12:26 +00:00
|
|
|
def thumb_url(self):
|
2023-03-19 16:28:19 +00:00
|
|
|
if self.over_18:
|
2023-06-29 20:14:30 +00:00
|
|
|
return f"{SITE_FULL_IMAGES}/i/nsfw.webp?x=6"
|
2023-03-19 16:28:19 +00:00
|
|
|
elif not self.url:
|
2023-06-29 20:14:30 +00:00
|
|
|
return f"{SITE_FULL_IMAGES}/i/{SITE_NAME}/default_text.webp?x=6"
|
2023-03-08 06:49:18 +00:00
|
|
|
elif self.thumburl:
|
|
|
|
if self.thumburl.startswith('/'): return SITE_FULL + self.thumburl
|
|
|
|
return self.thumburl
|
2023-03-19 16:28:19 +00:00
|
|
|
elif self.is_youtube or self.is_video:
|
2023-06-29 20:14:30 +00:00
|
|
|
return f"{SITE_FULL_IMAGES}/i/default_thumb_video.webp?x=6"
|
2023-03-19 16:28:19 +00:00
|
|
|
elif self.is_audio:
|
2023-06-29 20:14:30 +00:00
|
|
|
return f"{SITE_FULL_IMAGES}/i/default_thumb_audio.webp?x=6"
|
2023-03-21 15:39:26 +00:00
|
|
|
elif self.domain == SITE:
|
2023-06-29 20:14:30 +00:00
|
|
|
return f"{SITE_FULL_IMAGES}/i/{SITE_NAME}/site_preview.webp?x=6"
|
2023-03-19 16:28:19 +00:00
|
|
|
else:
|
2023-06-29 20:14:30 +00:00
|
|
|
return f"{SITE_FULL_IMAGES}/i/default_thumb_link.webp?x=6"
|
2021-07-21 01:12:26 +00:00
|
|
|
|
2023-03-11 06:29:52 +00:00
|
|
|
@property
|
|
|
|
@lazy
|
|
|
|
def poster_url(self):
|
|
|
|
if self.posterurl: return self.posterurl
|
|
|
|
if self.thumburl: return self.thumburl
|
|
|
|
return None
|
|
|
|
|
2023-06-08 00:49:37 +00:00
|
|
|
@property
|
2021-09-19 20:06:52 +00:00
|
|
|
@lazy
|
2023-06-08 00:49:37 +00:00
|
|
|
def json(self):
|
2022-07-11 13:14:34 +00:00
|
|
|
if self.is_banned:
|
|
|
|
return {'is_banned': True,
|
|
|
|
'deleted_utc': self.deleted_utc,
|
|
|
|
'ban_reason': self.ban_reason,
|
|
|
|
'id': self.id,
|
|
|
|
'title': self.title,
|
|
|
|
'permalink': self.permalink,
|
|
|
|
}
|
2023-01-01 11:36:20 +00:00
|
|
|
|
2022-07-11 13:14:34 +00:00
|
|
|
if self.deleted_utc:
|
|
|
|
return {'is_banned': bool(self.is_banned),
|
|
|
|
'deleted_utc': True,
|
|
|
|
'id': self.id,
|
|
|
|
'title': self.title,
|
|
|
|
'permalink': self.permalink,
|
|
|
|
}
|
|
|
|
|
2023-06-23 16:49:23 +00:00
|
|
|
reports = {}
|
|
|
|
for r in self.reports:
|
|
|
|
reports[r.user.username] = r.reason
|
2021-07-28 03:55:47 +00:00
|
|
|
|
2023-07-08 13:33:12 +00:00
|
|
|
data = {
|
|
|
|
'author_id': '👻' if self.ghost else self.author_id,
|
|
|
|
'author_name': self.author_name,
|
2021-07-21 01:12:26 +00:00
|
|
|
'permalink': self.permalink,
|
2022-04-06 21:01:32 +00:00
|
|
|
'shortlink': self.shortlink,
|
2021-07-21 01:12:26 +00:00
|
|
|
'is_banned': bool(self.is_banned),
|
2021-07-25 21:59:20 +00:00
|
|
|
'deleted_utc': self.deleted_utc,
|
2021-07-21 01:12:26 +00:00
|
|
|
'created_utc': self.created_utc,
|
2021-07-29 05:31:57 +00:00
|
|
|
'id': self.id,
|
2021-07-21 01:12:26 +00:00
|
|
|
'title': self.title,
|
|
|
|
'is_nsfw': self.over_18,
|
|
|
|
'is_bot': self.is_bot,
|
2022-01-28 21:42:09 +00:00
|
|
|
'thumb_url': self.thumb_url,
|
2021-07-21 01:12:26 +00:00
|
|
|
'domain': self.domain,
|
2023-03-12 10:18:48 +00:00
|
|
|
'sub': self.sub,
|
2022-01-28 21:42:09 +00:00
|
|
|
'url': self.realurl(None),
|
2021-07-21 01:12:26 +00:00
|
|
|
'body': self.body,
|
|
|
|
'body_html': self.body_html,
|
|
|
|
'edited_utc': self.edited_utc or 0,
|
|
|
|
'comment_count': self.comment_count,
|
2021-09-18 19:45:17 +00:00
|
|
|
'score': self.score,
|
|
|
|
'upvotes': self.upvotes,
|
|
|
|
'downvotes': self.downvotes,
|
2021-07-28 02:27:01 +00:00
|
|
|
'stickied': self.stickied,
|
2021-10-16 19:29:36 +00:00
|
|
|
'private' : self.private,
|
2021-07-28 03:29:06 +00:00
|
|
|
'distinguish_level': self.distinguish_level,
|
2021-08-08 22:24:22 +00:00
|
|
|
'voted': self.voted if hasattr(self, 'voted') else 0,
|
2023-06-23 16:49:23 +00:00
|
|
|
'reports': reports,
|
2021-07-21 01:12:26 +00:00
|
|
|
}
|
2021-07-28 03:55:47 +00:00
|
|
|
|
2021-07-21 01:12:26 +00:00
|
|
|
if "replies" in self.__dict__:
|
2023-07-08 13:33:12 +00:00
|
|
|
data["replies"] = [x.json for x in self.replies]
|
2021-07-21 01:12:26 +00:00
|
|
|
|
|
|
|
return data
|
|
|
|
|
2022-06-23 16:36:39 +00:00
|
|
|
@lazy
|
2022-06-27 02:14:53 +00:00
|
|
|
def award_count(self, kind, v):
|
2023-09-28 23:58:09 +00:00
|
|
|
if v and v.poor and kind not in FISTMAS_AWARDS + HOMOWEEN_AWARDS:
|
2023-06-27 12:01:40 +00:00
|
|
|
return 0
|
2023-03-04 17:59:34 +00:00
|
|
|
|
2023-08-12 16:56:33 +00:00
|
|
|
if self.distinguish_level and SITE_NAME == 'WPD':
|
|
|
|
return 0
|
|
|
|
|
2023-03-04 17:59:34 +00:00
|
|
|
num = len([x for x in self.awards if x.kind == kind])
|
2023-09-28 23:58:09 +00:00
|
|
|
if num > 4 and kind not in {"shit", "fireflies", "gingerbread", "pumpkin"}:
|
2023-08-09 21:38:35 +00:00
|
|
|
return 4
|
2023-03-04 17:59:34 +00:00
|
|
|
return num
|
2021-07-27 23:16:41 +00:00
|
|
|
|
2023-10-04 13:05:43 +00:00
|
|
|
@lazy
|
2023-10-04 13:36:26 +00:00
|
|
|
def emoji_award_emojis(self, v, OVER_18_EMOJIS):
|
2023-10-04 13:45:13 +00:00
|
|
|
if g.show_over_18:
|
2023-10-04 13:58:16 +00:00
|
|
|
return [x.note for x in self.awards if x.kind == "emoji"][:4]
|
|
|
|
return [x.note for x in self.awards if x.kind == "emoji" and x.note not in OVER_18_EMOJIS][:4]
|
2023-10-04 13:05:43 +00:00
|
|
|
|
2021-09-19 20:06:52 +00:00
|
|
|
@lazy
|
2021-07-21 01:12:26 +00:00
|
|
|
def realurl(self, v):
|
2022-06-23 15:47:57 +00:00
|
|
|
url = self.url
|
|
|
|
|
|
|
|
if not url: return ''
|
|
|
|
|
|
|
|
url = normalize_urls_runtime(url, v)
|
|
|
|
|
2023-03-06 00:02:40 +00:00
|
|
|
if url.startswith('/'): return SITE_FULL + url
|
|
|
|
|
2022-06-23 15:47:57 +00:00
|
|
|
return url
|
2023-01-01 11:36:20 +00:00
|
|
|
|
2022-08-26 21:53:17 +00:00
|
|
|
@lazy
|
|
|
|
def total_bet_voted(self, v):
|
|
|
|
if "closed" in self.body.lower(): return True
|
|
|
|
if v:
|
|
|
|
for o in self.options:
|
2022-09-08 18:25:45 +00:00
|
|
|
if o.exclusive == 3: return True
|
2022-08-26 21:53:17 +00:00
|
|
|
if o.exclusive == 2 and o.voted(v): return True
|
|
|
|
return False
|
2022-06-23 15:47:57 +00:00
|
|
|
|
2022-11-11 19:02:57 +00:00
|
|
|
@lazy
|
|
|
|
def total_poll_voted(self, v):
|
|
|
|
if v:
|
2023-09-18 16:48:16 +00:00
|
|
|
if v.id == self.author_id:
|
|
|
|
return True
|
2022-11-11 19:02:57 +00:00
|
|
|
for o in self.options:
|
|
|
|
if o.voted(v): return True
|
|
|
|
return False
|
|
|
|
|
2022-06-23 16:36:39 +00:00
|
|
|
@lazy
|
2023-07-22 17:30:55 +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-08-21 11:06:28 +00:00
|
|
|
|
2022-01-23 16:54:57 +00:00
|
|
|
body = self.body_html or ""
|
2022-01-06 01:25:04 +00:00
|
|
|
|
2023-03-12 17:36:35 +00:00
|
|
|
body = add_options(self, body, v)
|
2022-07-02 06:48:04 +00:00
|
|
|
|
2023-03-24 16:38:18 +00:00
|
|
|
if self.sub != 'chudrama':
|
2023-09-22 17:01:30 +00:00
|
|
|
body = censor_slurs_profanities(body, v)
|
2023-03-24 16:38:18 +00:00
|
|
|
|
2023-03-02 01:15:04 +00:00
|
|
|
body = normalize_urls_runtime(body, v)
|
|
|
|
|
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
|
|
|
|
2022-01-06 01:25:04 +00:00
|
|
|
body = self.body
|
2022-01-06 01:24:03 +00:00
|
|
|
if not body: return ""
|
|
|
|
|
2023-03-24 16:38:18 +00:00
|
|
|
if self.sub != 'chudrama':
|
2023-09-26 15:37:07 +00:00
|
|
|
body = censor_slurs_profanities(body, v, True)
|
2022-12-11 18:52:15 +00:00
|
|
|
|
2022-06-23 15:47:57 +00:00
|
|
|
body = normalize_urls_runtime(body, v)
|
2022-11-27 01:31:46 +00:00
|
|
|
|
2021-10-02 20:58:14 +00:00
|
|
|
return body
|
|
|
|
|
2021-09-19 20:06:52 +00:00
|
|
|
@lazy
|
2021-07-21 01:12:26 +00:00
|
|
|
def realtitle(self, v):
|
2022-12-04 18:39:06 +00:00
|
|
|
title = self.title_html
|
2023-05-05 21:45:25 +00:00
|
|
|
|
2023-03-24 16:38:18 +00:00
|
|
|
if self.sub != 'chudrama':
|
2023-09-22 17:01:30 +00:00
|
|
|
title = censor_slurs_profanities(title, v)
|
2021-08-21 11:06:28 +00:00
|
|
|
|
2021-07-21 01:12:26 +00:00
|
|
|
return title
|
|
|
|
|
2021-10-02 20:58:14 +00:00
|
|
|
@lazy
|
|
|
|
def plaintitle(self, v):
|
2022-12-04 18:39:06 +00:00
|
|
|
title = self.title
|
2021-10-02 20:58:14 +00:00
|
|
|
|
2023-03-24 16:38:18 +00:00
|
|
|
if self.sub != 'chudrama':
|
2023-09-26 15:37:07 +00:00
|
|
|
title = censor_slurs_profanities(title, v, True)
|
2021-10-02 20:58:14 +00:00
|
|
|
|
|
|
|
return title
|
|
|
|
|
2021-12-18 03:13:46 +00:00
|
|
|
@property
|
|
|
|
@lazy
|
|
|
|
def is_video(self):
|
2023-05-15 09:27:24 +00:00
|
|
|
return self.url and any((str(self.url).lower().split('?')[0].endswith(f'.{x}') for x in VIDEO_FORMATS)) and is_safe_url(self.url)
|
2021-12-18 03:13:46 +00:00
|
|
|
|
2022-05-24 16:28:12 +00:00
|
|
|
@property
|
|
|
|
@lazy
|
|
|
|
def is_audio(self):
|
2023-05-15 09:27:24 +00:00
|
|
|
return self.url and any((str(self.url).lower().split('?')[0].endswith(f'.{x}') for x in AUDIO_FORMATS)) and is_safe_url(self.url)
|
2022-05-24 16:28:12 +00:00
|
|
|
|
2021-07-21 01:12:26 +00:00
|
|
|
@property
|
2021-09-19 18:25:40 +00:00
|
|
|
@lazy
|
2021-07-21 01:12:26 +00:00
|
|
|
def is_image(self):
|
2023-05-15 09:27:24 +00:00
|
|
|
return self.url and any((str(self.url).lower().split('?')[0].endswith(f'.{x}') for x in IMAGE_FORMATS)) and is_safe_url(self.url)
|
2021-07-31 13:41:00 +00:00
|
|
|
|
2021-07-27 00:16:30 +00:00
|
|
|
@lazy
|
2023-06-23 16:49:23 +00:00
|
|
|
def filtered_reports(self, v):
|
|
|
|
return [r for r in self.reports if not r.user.shadowbanned or (v and v.id == r.user_id) or (v and v.admin_level)]
|
2022-07-11 18:13:00 +00:00
|
|
|
|
|
|
|
@lazy
|
2023-06-23 16:49:23 +00:00
|
|
|
def active_reports(self, v):
|
|
|
|
return len(self.filtered_reports(v))
|
2023-04-27 18:37:08 +00:00
|
|
|
|
|
|
|
@property
|
|
|
|
@lazy
|
|
|
|
def num_subscribers(self):
|
2023-06-07 23:26:32 +00:00
|
|
|
return g.db.query(Subscription).filter_by(post_id=self.id).count()
|
2023-04-27 18:50:16 +00:00
|
|
|
|
|
|
|
@property
|
|
|
|
@lazy
|
|
|
|
def num_savers(self):
|
2023-06-07 23:26:32 +00:00
|
|
|
return g.db.query(SaveRelationship).filter_by(post_id=self.id).count()
|
2023-10-02 08:05:30 +00:00
|
|
|
|
|
|
|
@lazy
|
2023-10-03 06:19:46 +00:00
|
|
|
def award_classes(self, v, title=False):
|
2023-10-02 08:05:30 +00:00
|
|
|
return get_award_classes(self, v, title)
|