rDrama/files/classes/comment.py

564 lines
17 KiB
Python
Raw Normal View History

2021-10-18 20:46:57 +00:00
import time
[DO NOT MERGE] import detanglation (#442) * move Base definition to files.classes.__init__.py * fix ImportError * move userpage listing to users.py * don't import the app from classes * consts: set default values to avoid crashes consts: warn if the secret key is the default config value * card view: sneed (user db schema) * cloudflare: use DEFAULT_CONFIG_VALUE * const: set default values * decouple media.py from __main__ * pass database to avoid imports * import cleanup and import request not in const, but in the requests mega import * move asset_submissions site check to __init__ * asset submissions feature flag * flag * g.is_tor * don't import request where it's not needed * i think this is fine * mail: move to own routes and helper * wrappers * required wrappers move * unfuck wrappers a bit * move snappy quotes and marseys to stateful consts * marsify * :pepodrool: * fix missing import * import cache * ...and settings.py * and static.py * static needs cache * route * lmao all of the jinja shit was in feeds.py amazing * classes should only import what they need from flask * import Response * hdjbjdhbhjf * ... * dfdfdfdf * make get a non-required import * isort imports (mostly) * but actually * configs * reload config on import * fgfgfgfg * config * config * initialize snappy and test * cookie of doom debug * edfjnkf * xikscdfd * debug config * set session cookie domain, i think this fixes the can't login bug * sdfbgnhvfdsghbnjfbdvvfghnn * hrsfxgf * dump the entire config on a request * kyskyskyskyskyskyskyskyskys * duifhdskfjdfd * dfdfdfdfdfdfdfdfdfdfdfdf * dfdfdfdf * imoprt all of the consts beacuse fuck it * 😭 * dfdfdfdfdfdfsdasdf * print the entire session * rffdfdfjkfksj * fgbhffh * not the secret keys * minor bug fixes * be helpful in the warning * gfgfgfg * move warning lower * isort main imports (i hope this doesn't fuck something up) * test * session cookie domain redux * dfdfdfd * try only importing Flask * formkeys fix * y * :pepodrool: * route helper * remove before flight * dfdfdfdfdf * isort classes * isort helpers * move check_for_alts to routehelpers and also sort imports and get rid of unused ones * that previous commit but actkally * readd the cache in a dozen places they were implicitly imported * use g.is_tor instead of request.headers. bla bla bla * upgrade streamers to their own route file * get rid of unused imports in __main__ * fgfgf * don't pull in the entire ORM where we don't need it * features * explicit imports for the get helper * explicit imports for the get helper redux * testing allroutes * remove unused import * decouple flask from classes * syntax fix also remember these have side fx for some reason (why?) * move side effects out of the class * posts * testing on devrama * settings * reloading * settingssdsdsds * streamer features * site settings * testing settings on devrama * import * fix modlog * remove debug stuff * revert commit 67275b21ab6e2f2520819e84d10bfc1c746a15b6 * archiveorg to _archiveorg * skhudkfkjfd * fix cron for PCM * fix bugs that snekky wants me to * Fix call to realbody passing db, standardize kwarg * test * import check_for_alts from the right place * cloudflare * testing on devrama * fix cron i think * shadow properly * tasks * Remove print which will surely be annoying in prod. * v and create new session * use files.classes * make errors import little and fix rare 500 in /allow_nsfw * Revert "use files.classes" This reverts commit 98c10b876cf86ce058b7fb955cf1ec0bfb9996c6. * pass v to media functions rather than using g * fix * dfdfdfdfd * cleanup, py type checking is dumb so don't use it where it causes issues * Fix some merge bugs, add DEFAULT_RATELIMIT to main. * Fix imports on sqlalchemy expressions. * `from random import random` is an error. * Fix replies db param. * errors: fix missing import * fix rare 500: only send to GIFT_NOTIF_ID if it exists, and send them the right text * Fix signup formkey. * fix 2 500s * propagate db to submissions * fix replies * dfdfdfdf * Fix verifiedcolor. * is_manual * can't use getters outside of an app context * don't attempt to do gumroad on sites where it's not enabled * don't attempt to do gumraod on sites's where it's unnecessary * Revert "don't attempt to do gumroad on sites where it's not enabled" This reverts commit 6f8a6331878655492dfaf1907b27f8be513c14d3. * fix 500 * validate media type Co-authored-by: TLSM <duolsm@outlook.com>
2022-11-15 09:19:08 +00:00
from math import floor
from urllib.parse import parse_qs, urlencode, urlparse, urlunparse, ParseResult
2023-01-02 04:23:44 +00:00
from flask import g
[DO NOT MERGE] import detanglation (#442) * move Base definition to files.classes.__init__.py * fix ImportError * move userpage listing to users.py * don't import the app from classes * consts: set default values to avoid crashes consts: warn if the secret key is the default config value * card view: sneed (user db schema) * cloudflare: use DEFAULT_CONFIG_VALUE * const: set default values * decouple media.py from __main__ * pass database to avoid imports * import cleanup and import request not in const, but in the requests mega import * move asset_submissions site check to __init__ * asset submissions feature flag * flag * g.is_tor * don't import request where it's not needed * i think this is fine * mail: move to own routes and helper * wrappers * required wrappers move * unfuck wrappers a bit * move snappy quotes and marseys to stateful consts * marsify * :pepodrool: * fix missing import * import cache * ...and settings.py * and static.py * static needs cache * route * lmao all of the jinja shit was in feeds.py amazing * classes should only import what they need from flask * import Response * hdjbjdhbhjf * ... * dfdfdfdf * make get a non-required import * isort imports (mostly) * but actually * configs * reload config on import * fgfgfgfg * config * config * initialize snappy and test * cookie of doom debug * edfjnkf * xikscdfd * debug config * set session cookie domain, i think this fixes the can't login bug * sdfbgnhvfdsghbnjfbdvvfghnn * hrsfxgf * dump the entire config on a request * kyskyskyskyskyskyskyskyskys * duifhdskfjdfd * dfdfdfdfdfdfdfdfdfdfdfdf * dfdfdfdf * imoprt all of the consts beacuse fuck it * 😭 * dfdfdfdfdfdfsdasdf * print the entire session * rffdfdfjkfksj * fgbhffh * not the secret keys * minor bug fixes * be helpful in the warning * gfgfgfg * move warning lower * isort main imports (i hope this doesn't fuck something up) * test * session cookie domain redux * dfdfdfd * try only importing Flask * formkeys fix * y * :pepodrool: * route helper * remove before flight * dfdfdfdfdf * isort classes * isort helpers * move check_for_alts to routehelpers and also sort imports and get rid of unused ones * that previous commit but actkally * readd the cache in a dozen places they were implicitly imported * use g.is_tor instead of request.headers. bla bla bla * upgrade streamers to their own route file * get rid of unused imports in __main__ * fgfgf * don't pull in the entire ORM where we don't need it * features * explicit imports for the get helper * explicit imports for the get helper redux * testing allroutes * remove unused import * decouple flask from classes * syntax fix also remember these have side fx for some reason (why?) * move side effects out of the class * posts * testing on devrama * settings * reloading * settingssdsdsds * streamer features * site settings * testing settings on devrama * import * fix modlog * remove debug stuff * revert commit 67275b21ab6e2f2520819e84d10bfc1c746a15b6 * archiveorg to _archiveorg * skhudkfkjfd * fix cron for PCM * fix bugs that snekky wants me to * Fix call to realbody passing db, standardize kwarg * test * import check_for_alts from the right place * cloudflare * testing on devrama * fix cron i think * shadow properly * tasks * Remove print which will surely be annoying in prod. * v and create new session * use files.classes * make errors import little and fix rare 500 in /allow_nsfw * Revert "use files.classes" This reverts commit 98c10b876cf86ce058b7fb955cf1ec0bfb9996c6. * pass v to media functions rather than using g * fix * dfdfdfdfd * cleanup, py type checking is dumb so don't use it where it causes issues * Fix some merge bugs, add DEFAULT_RATELIMIT to main. * Fix imports on sqlalchemy expressions. * `from random import random` is an error. * Fix replies db param. * errors: fix missing import * fix rare 500: only send to GIFT_NOTIF_ID if it exists, and send them the right text * Fix signup formkey. * fix 2 500s * propagate db to submissions * fix replies * dfdfdfdf * Fix verifiedcolor. * is_manual * can't use getters outside of an app context * don't attempt to do gumroad on sites where it's not enabled * don't attempt to do gumraod on sites's where it's unnecessary * Revert "don't attempt to do gumroad on sites where it's not enabled" This reverts commit 6f8a6331878655492dfaf1907b27f8be513c14d3. * fix 500 * validate media type Co-authored-by: TLSM <duolsm@outlook.com>
2022-11-15 09:19:08 +00:00
from sqlalchemy import Column, ForeignKey
2024-03-08 08:10:23 +00:00
from sqlalchemy.dialects.postgresql import TSVECTOR
from sqlalchemy.orm import relationship
[DO NOT MERGE] import detanglation (#442) * move Base definition to files.classes.__init__.py * fix ImportError * move userpage listing to users.py * don't import the app from classes * consts: set default values to avoid crashes consts: warn if the secret key is the default config value * card view: sneed (user db schema) * cloudflare: use DEFAULT_CONFIG_VALUE * const: set default values * decouple media.py from __main__ * pass database to avoid imports * import cleanup and import request not in const, but in the requests mega import * move asset_submissions site check to __init__ * asset submissions feature flag * flag * g.is_tor * don't import request where it's not needed * i think this is fine * mail: move to own routes and helper * wrappers * required wrappers move * unfuck wrappers a bit * move snappy quotes and marseys to stateful consts * marsify * :pepodrool: * fix missing import * import cache * ...and settings.py * and static.py * static needs cache * route * lmao all of the jinja shit was in feeds.py amazing * classes should only import what they need from flask * import Response * hdjbjdhbhjf * ... * dfdfdfdf * make get a non-required import * isort imports (mostly) * but actually * configs * reload config on import * fgfgfgfg * config * config * initialize snappy and test * cookie of doom debug * edfjnkf * xikscdfd * debug config * set session cookie domain, i think this fixes the can't login bug * sdfbgnhvfdsghbnjfbdvvfghnn * hrsfxgf * dump the entire config on a request * kyskyskyskyskyskyskyskyskys * duifhdskfjdfd * dfdfdfdfdfdfdfdfdfdfdfdf * dfdfdfdf * imoprt all of the consts beacuse fuck it * 😭 * dfdfdfdfdfdfsdasdf * print the entire session * rffdfdfjkfksj * fgbhffh * not the secret keys * minor bug fixes * be helpful in the warning * gfgfgfg * move warning lower * isort main imports (i hope this doesn't fuck something up) * test * session cookie domain redux * dfdfdfd * try only importing Flask * formkeys fix * y * :pepodrool: * route helper * remove before flight * dfdfdfdfdf * isort classes * isort helpers * move check_for_alts to routehelpers and also sort imports and get rid of unused ones * that previous commit but actkally * readd the cache in a dozen places they were implicitly imported * use g.is_tor instead of request.headers. bla bla bla * upgrade streamers to their own route file * get rid of unused imports in __main__ * fgfgf * don't pull in the entire ORM where we don't need it * features * explicit imports for the get helper * explicit imports for the get helper redux * testing allroutes * remove unused import * decouple flask from classes * syntax fix also remember these have side fx for some reason (why?) * move side effects out of the class * posts * testing on devrama * settings * reloading * settingssdsdsds * streamer features * site settings * testing settings on devrama * import * fix modlog * remove debug stuff * revert commit 67275b21ab6e2f2520819e84d10bfc1c746a15b6 * archiveorg to _archiveorg * skhudkfkjfd * fix cron for PCM * fix bugs that snekky wants me to * Fix call to realbody passing db, standardize kwarg * test * import check_for_alts from the right place * cloudflare * testing on devrama * fix cron i think * shadow properly * tasks * Remove print which will surely be annoying in prod. * v and create new session * use files.classes * make errors import little and fix rare 500 in /allow_nsfw * Revert "use files.classes" This reverts commit 98c10b876cf86ce058b7fb955cf1ec0bfb9996c6. * pass v to media functions rather than using g * fix * dfdfdfdfd * cleanup, py type checking is dumb so don't use it where it causes issues * Fix some merge bugs, add DEFAULT_RATELIMIT to main. * Fix imports on sqlalchemy expressions. * `from random import random` is an error. * Fix replies db param. * errors: fix missing import * fix rare 500: only send to GIFT_NOTIF_ID if it exists, and send them the right text * Fix signup formkey. * fix 2 500s * propagate db to submissions * fix replies * dfdfdfdf * Fix verifiedcolor. * is_manual * can't use getters outside of an app context * don't attempt to do gumroad on sites where it's not enabled * don't attempt to do gumraod on sites's where it's unnecessary * Revert "don't attempt to do gumroad on sites where it's not enabled" This reverts commit 6f8a6331878655492dfaf1907b27f8be513c14d3. * fix 500 * validate media type Co-authored-by: TLSM <duolsm@outlook.com>
2022-11-15 09:19:08 +00:00
from sqlalchemy.schema import FetchedValue
from sqlalchemy.sql.sqltypes import *
from files.classes import Base
from files.helpers.config.const import *
2023-10-05 10:00:05 +00:00
from files.helpers.config.awards import *
from files.helpers.slurs_and_profanities import *
2021-08-04 15:35:10 +00:00
from files.helpers.lazy import lazy
[DO NOT MERGE] import detanglation (#442) * move Base definition to files.classes.__init__.py * fix ImportError * move userpage listing to users.py * don't import the app from classes * consts: set default values to avoid crashes consts: warn if the secret key is the default config value * card view: sneed (user db schema) * cloudflare: use DEFAULT_CONFIG_VALUE * const: set default values * decouple media.py from __main__ * pass database to avoid imports * import cleanup and import request not in const, but in the requests mega import * move asset_submissions site check to __init__ * asset submissions feature flag * flag * g.is_tor * don't import request where it's not needed * i think this is fine * mail: move to own routes and helper * wrappers * required wrappers move * unfuck wrappers a bit * move snappy quotes and marseys to stateful consts * marsify * :pepodrool: * fix missing import * import cache * ...and settings.py * and static.py * static needs cache * route * lmao all of the jinja shit was in feeds.py amazing * classes should only import what they need from flask * import Response * hdjbjdhbhjf * ... * dfdfdfdf * make get a non-required import * isort imports (mostly) * but actually * configs * reload config on import * fgfgfgfg * config * config * initialize snappy and test * cookie of doom debug * edfjnkf * xikscdfd * debug config * set session cookie domain, i think this fixes the can't login bug * sdfbgnhvfdsghbnjfbdvvfghnn * hrsfxgf * dump the entire config on a request * kyskyskyskyskyskyskyskyskys * duifhdskfjdfd * dfdfdfdfdfdfdfdfdfdfdfdf * dfdfdfdf * imoprt all of the consts beacuse fuck it * 😭 * dfdfdfdfdfdfsdasdf * print the entire session * rffdfdfjkfksj * fgbhffh * not the secret keys * minor bug fixes * be helpful in the warning * gfgfgfg * move warning lower * isort main imports (i hope this doesn't fuck something up) * test * session cookie domain redux * dfdfdfd * try only importing Flask * formkeys fix * y * :pepodrool: * route helper * remove before flight * dfdfdfdfdf * isort classes * isort helpers * move check_for_alts to routehelpers and also sort imports and get rid of unused ones * that previous commit but actkally * readd the cache in a dozen places they were implicitly imported * use g.is_tor instead of request.headers. bla bla bla * upgrade streamers to their own route file * get rid of unused imports in __main__ * fgfgf * don't pull in the entire ORM where we don't need it * features * explicit imports for the get helper * explicit imports for the get helper redux * testing allroutes * remove unused import * decouple flask from classes * syntax fix also remember these have side fx for some reason (why?) * move side effects out of the class * posts * testing on devrama * settings * reloading * settingssdsdsds * streamer features * site settings * testing settings on devrama * import * fix modlog * remove debug stuff * revert commit 67275b21ab6e2f2520819e84d10bfc1c746a15b6 * archiveorg to _archiveorg * skhudkfkjfd * fix cron for PCM * fix bugs that snekky wants me to * Fix call to realbody passing db, standardize kwarg * test * import check_for_alts from the right place * cloudflare * testing on devrama * fix cron i think * shadow properly * tasks * Remove print which will surely be annoying in prod. * v and create new session * use files.classes * make errors import little and fix rare 500 in /allow_nsfw * Revert "use files.classes" This reverts commit 98c10b876cf86ce058b7fb955cf1ec0bfb9996c6. * pass v to media functions rather than using g * fix * dfdfdfdfd * cleanup, py type checking is dumb so don't use it where it causes issues * Fix some merge bugs, add DEFAULT_RATELIMIT to main. * Fix imports on sqlalchemy expressions. * `from random import random` is an error. * Fix replies db param. * errors: fix missing import * fix rare 500: only send to GIFT_NOTIF_ID if it exists, and send them the right text * Fix signup formkey. * fix 2 500s * propagate db to submissions * fix replies * dfdfdfdf * Fix verifiedcolor. * is_manual * can't use getters outside of an app context * don't attempt to do gumroad on sites where it's not enabled * don't attempt to do gumraod on sites's where it's unnecessary * Revert "don't attempt to do gumroad on sites where it's not enabled" This reverts commit 6f8a6331878655492dfaf1907b27f8be513c14d3. * fix 500 * validate media type Co-authored-by: TLSM <duolsm@outlook.com>
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 *
2024-02-12 07:14:19 +00:00
from files.helpers.bleach_body import *
2021-09-12 06:12:44 +00:00
from .saves import CommentSaveRelationship
2022-06-22 19:50:20 +00:00
2023-12-25 01:18:48 +00:00
def get_emoji_awards_emojis(obj, v, kind, NSFW_EMOJIS):
if g.show_nsfw:
emojis = [x.note for x in obj.awards if x.kind == kind]
else:
2023-12-25 01:18:48 +00:00
emojis = [x.note for x in obj.awards if x.kind == kind and x.note not in NSFW_EMOJIS]
return reversed(emojis[:20])
2023-10-02 08:05:30 +00:00
def get_award_classes(obj, v, title=False):
classes = []
2024-02-28 22:48:31 +00:00
if obj.chudded:
classes.append("text-uppercase")
if not title: classes.append(f"chud-img chud-{obj.id_last_num}")
if not (v and v.poor):
2024-03-15 17:12:50 +00:00
if not obj.is_longpost and obj.author.bite:
2024-02-29 16:58:36 +00:00
classes.append('author-bitten')
if obj.award_count('glowie', v):
classes.append("glow")
2023-10-06 17:39:27 +00:00
if obj.award_count('gold', v):
classes.append("gold-text")
if obj.rainbowed:
classes.append("rainbow-text")
if obj.queened:
classes.append("queen")
if obj.sharpened:
classes.append(f"sharpen")
if not title: classes.append(f"chud-img sharpen-{obj.id_last_num}")
2023-10-02 08:05:30 +00:00
2024-02-28 22:48:31 +00:00
if IS_HOMOWEEN():
if obj.award_count('ectoplasm', v):
classes.append("ectoplasm")
if obj.award_count('candycorn', v):
classes.append("candycorn")
if obj.award_count('stab', v) and isinstance(obj, Comment):
classes.append("blood")
if IS_FISTMAS():
if obj.award_count('candycane', v):
classes.append("candycane")
2023-12-18 18:29:45 +00:00
2023-10-02 08:05:30 +00:00
return ' '.join(classes)
def controversial_link_matcher(match):
url = match.group(0)
parsed_url = urlparse(url)
netloc = parsed_url.netloc
path = parsed_url.path
qd = parse_qs(parsed_url.query, keep_blank_values=True)
if 'sort' not in qd:
qd['sort'] = ['controversial']
new_url = ParseResult(scheme="https",
netloc=netloc,
path=path,
params=parsed_url.params,
query=urlencode(qd, doseq=True),
fragment=parsed_url.fragment)
return urlunparse(new_url)
def normalize_urls_runtime(body, v):
if v and v.reddit != 'old.reddit.com':
body = reddit_to_vreddit_regex.sub(rf'\1https://{v.reddit}/\2/', body)
if v and v.twitter != 'twitter.com':
body = twitter_domain_regex.sub(rf'\1https://{v.twitter}/', body)
2024-02-08 00:36:54 +00:00
2023-10-12 14:20:28 +00:00
if v and v.imgsed:
body = instagram_to_imgsed_regex.sub(r'\1https://imgsed.com/', body)
if not v or v.controversial:
body = controversial_regex.sub(controversial_link_matcher, body)
return body
2023-03-12 17:36:35 +00:00
def add_options(self, body, v):
if 'details>' in body or 'summary>' in body:
2023-08-15 16:40:19 +00:00
return body
2023-03-12 17:36:35 +00:00
if isinstance(self, Comment):
kind = 'comment'
else:
kind = 'post'
if self.options:
curr = [x for x in self.options if x.exclusive and x.voted(v)]
if curr: curr = f" value=option-{kind}-" + str(curr[0].id)
2023-03-12 17:36:35 +00:00
else: curr = ''
body += f'<input class="d-none" id="current-option-{kind}-{self.id}"{curr}>'
2023-03-12 17:36:35 +00:00
winner = [x for x in self.options if x.exclusive == 3]
for o in self.options:
option_body = ''
if o.exclusive > 1:
2023-08-03 06:50:22 +00:00
option_body += f'''<div class="custom-control mt-2"><input name="option-{self.id}" autocomplete="off" class="custom-control-input bet" type="radio" id="{o.id}" data-nonce="{g.nonce}" data-onclick="option_vote_2(this,'{o.id}','{kind}')"'''
2023-03-12 17:36:35 +00:00
if o.voted(v): option_body += " checked "
if not (v and v.coins + v.marseybux >= POLL_BET_COINS) or self.total_bet_voted(v):
option_body += " disabled "
2023-03-12 17:36:35 +00:00
option_body += f'''><label class="custom-control-label" for="{o.id}">{o.body_html}<span class="presult-{self.id}'''
option_body += f'"> - <a href="/votes/{kind}/option/{o.id}"><span id="option-{o.id}">{o.upvotes}</span> bets</a>'
if not self.total_bet_voted(v):
option_body += f'''<span class="cost"> (cost of entry: {POLL_BET_COINS} coins or marseybux)</span>'''
option_body += "</label>"
if o.exclusive == 3:
option_body += " - <b>WINNER!</b>"
if not winner and v and v.admin_level >= PERMS['POST_BETS_DISTRIBUTE']:
option_body += f'''<button class="btn btn-primary distribute" data-areyousure="postToastReload(this,'/distribute/{kind}/{o.id}')" data-nonce="{g.nonce}" data-onclick="areyousure(this)">Declare winner</button>'''
option_body += "</div>"
else:
input_type = 'radio' if o.exclusive else 'checkbox'
option_body += f'<div class="custom-control mt-2"><input type="{input_type}" class="custom-control-input" id="option-{kind}-{o.id}" name="option-{self.id}"'
2023-03-12 17:36:35 +00:00
if o.voted(v): option_body += " checked"
2023-07-27 00:37:13 +00:00
disabled = False
2023-03-12 17:36:35 +00:00
if v:
2023-03-12 18:02:50 +00:00
if kind == 'post':
2023-10-07 17:55:50 +00:00
hole = self.hole
elif self.parent_post:
2023-10-07 17:55:50 +00:00
hole = self.post.hole
else:
2023-10-07 17:55:50 +00:00
hole = None
2023-08-01 07:38:58 +00:00
2023-10-07 17:55:50 +00:00
if hole in {'furry','vampire','racist','femboy','edgy'} and not v.house.lower().startswith(hole):
2023-07-27 00:18:14 +00:00
disabled = True
option_body += ' disabled '
2023-08-03 06:50:22 +00:00
option_body += f''' data-nonce="{g.nonce}" data-onclick="option_vote_{o.exclusive}('{o.id}', '{self.id}', '{kind}')"'''
2023-03-12 17:36:35 +00:00
else:
2023-08-03 06:50:22 +00:00
option_body += f''' data-nonce="{g.nonce}" data-onclick="option_vote_no_v()"'''
2023-03-12 17:36:35 +00:00
option_body += f'''><label class="custom-control-label" for="option-{kind}-{o.id}">{o.body_html}<span class="presult-{self.id}'''
2023-07-27 00:18:14 +00:00
if not disabled and not self.total_poll_voted(v):
option_body += ' d-none'
2024-02-12 07:14:19 +00:00
option_body += f'"> - <a href="/votes/{kind}/option/{o.id}"><score id="score-option-{kind}-{o.id}">{o.upvotes}</score> votes</a></label></div>'''
2023-03-12 17:36:35 +00:00
if o.exclusive > 1: s = '##'
elif o.exclusive: s = '&amp;&amp;'
else: s = '$$'
2023-06-24 18:54:36 +00:00
if f'{s}{o.body_html}{s}' in body:
body = body.replace(f'{s}{o.body_html}{s}', option_body, 1)
elif not o.created_utc or o.created_utc < 1677622270:
2023-03-12 17:36:35 +00:00
body += option_body
return body
2023-05-05 21:45:25 +00:00
2023-03-12 17:36:35 +00:00
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_post = Column(Integer, ForeignKey("posts.id"))
2022-12-03 01:49:07 +00:00
wall_user_id = Column(Integer, ForeignKey("users.id"))
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)
distinguished = Column(Boolean, default=False)
2021-07-21 01:12:26 +00:00
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
is_bot = Column(Boolean, default=False)
2024-02-18 15:29:53 +00:00
pinned = Column(String)
pinned_utc = Column(Integer)
num_of_pinned_children = Column(Integer, default=0)
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)
2024-04-03 20:32:36 +00:00
body = Column(String, default='')
2021-11-06 17:30:39 +00:00
body_html = Column(String)
body_ts = Column(TSVECTOR(), server_default=FetchedValue())
2021-10-06 22:38:15 +00:00
ban_reason = Column(String)
treasure_amount = Column(String)
2022-10-30 00:36:23 +00:00
slots_result = Column(String)
ping_cost = Column(Integer, default=0)
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"))
2023-06-23 13:14:23 +00:00
chudded = Column(Boolean, default=False)
rainbowed = Column(Boolean, default=False)
queened = Column(Boolean, default=False)
sharpened = Column(Boolean, default=False)
2021-07-21 01:12:26 +00:00
2024-02-12 18:35:15 +00:00
if FEATURES['NSFW_MARKING']:
nsfw = Column(Boolean, default=False)
else:
nsfw = False
oauth_app = relationship("OauthApp")
2023-06-07 23:26:32 +00:00
post = relationship("Post", back_populates="comments")
2021-09-22 15:01:18 +00:00
author = relationship("User", primaryjoin="User.id==Comment.author_id")
senttouser = relationship("User", primaryjoin="User.id==Comment.sentto")
2024-03-08 08:10:23 +00:00
parent_comment = relationship("Comment", remote_side=[id])
awards = relationship("AwardRelationship", order_by="AwardRelationship.awarded_utc.desc()", back_populates="comment")
2023-06-23 16:49:23 +00:00
reports = relationship("CommentReport", order_by="CommentReport.created_utc")
options = relationship("CommentOption", order_by="CommentOption.id")
casino_game = relationship("CasinoGame")
2022-12-03 01:49:07 +00:00
wall_user = relationship("User", primaryjoin="User.id==Comment.wall_user_id")
2024-03-07 22:52:55 +00:00
edits = relationship("CommentEdit", order_by="CommentEdit.id.desc()")
2022-06-29 07:22:18 +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):
return f"<{self.__class__.__name__}(id={self.id})>"
2021-07-21 01:12:26 +00:00
2023-03-05 22:50:06 +00:00
@property
2022-01-11 04:30:08 +00:00
@lazy
2023-03-05 22:50:06 +00:00
def top_comment(self):
2023-03-16 06:27:58 +00:00
return g.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
return make_age_string(timestamp)
2021-09-19 18:22:57 +00:00
@property
@lazy
def edited_string(self):
if not self.edited_utc: return None
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
2023-03-24 12:29:19 +00:00
@property
@lazy
def id_last_num(self):
return str(self.id)[-1]
@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_post: return f"p_{self.parent_post}"
2021-07-30 05:23:17 +00:00
2022-06-22 19:50:20 +00:00
@lazy
2023-07-08 13:32:14 +00:00
def replies(self, sort):
if self.replies2 != None:
return self.replies2
2022-10-12 07:03:28 +00:00
2024-02-18 15:29:53 +00:00
replies = g.db.query(Comment).filter_by(parent_comment_id=self.id).order_by(Comment.pinned, Comment.num_of_pinned_children.desc())
if not self.parent_post: sort='old'
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):
if self.wall_user_id:
return f"/@{self.wall_user.username}/wall/comment/{self.id}#context"
2024-02-11 16:45:00 +00:00
if self.parent_post:
return f"{self.post.shortlink}/{self.id}#context"
2024-02-18 15:57:25 +00:00
return f"/notification/{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):
return f"{SITE_FULL}{self.shortlink}"
2022-01-28 21:44:32 +00:00
2024-02-19 23:56:03 +00:00
@property
@lazy
2024-02-20 00:00:21 +00:00
def textlink(self):
2024-03-02 17:02:05 +00:00
return f'<a href="{self.shortlink}">this comment</a>'
2024-02-19 23:56:03 +00:00
@property
@lazy
def log_link(self):
return f"{SITE_FULL}/transfers/{self.id}"
2022-01-17 21:26:03 +00:00
@property
@lazy
def more_comments(self):
if self.wall_user_id:
return f"/@{self.wall_user.username}/wall/comment/{self.id}?context=0#context"
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-10-26 23:21:55 +00:00
if self.ghost and not (hasattr(g, 'v') and g.v and self.id == g.v.id): return '👻'
return self.author.switched.user_name
2021-07-21 01:12:26 +00:00
@property
@lazy
def author_name_punish_modal(self):
if self.ghost and not (hasattr(g, 'v') and g.v and self.id == g.v.id): return '👻'
return self.author.username
2022-06-23 16:36:39 +00:00
@lazy
2022-06-27 02:14:53 +00:00
def award_count(self, kind, v):
if v and v.poor:
return 0
2023-08-23 05:59:25 +00:00
return len([x for x in self.awards if x.kind == kind])
2021-07-21 01:12:26 +00:00
@property
@lazy
def json(self):
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:
2023-06-23 16:49:23 +00:00
reports = {}
for r in self.reports:
reports[r.user.username] = r.reason
2022-09-04 23:15:37 +00:00
data = {
'id': self.id,
'level': self.level,
'author_id': '👻' if self.ghost else self.author_id,
'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,
2023-10-05 10:19:50 +00:00
'is_nsfw': self.nsfw,
'permalink': f'/comment/{self.id}#context',
2024-02-18 15:29:53 +00:00
'pinned': self.pinned,
'distinguished': self.distinguished,
'post_id': self.post.id if self.post else 0,
'score': self.score,
'upvotes': self.upvotes,
'downvotes': self.downvotes,
'is_bot': self.is_bot,
2023-06-23 16:49:23 +00:00
'reports': reports,
'replies': [x.id for x in self.replies(sort="old")]
}
if self.level >= 2: data['parent_comment_id'] = self.parent_comment_id
2021-07-21 01:12:26 +00:00
return data
2023-03-12 17:36:35 +00:00
@lazy
def total_bet_voted(self, v):
if "closed" in self.body.lower(): return True
if v:
for o in self.options:
if o.exclusive == 3: return True
if o.exclusive == 2 and o.voted(v): return True
return False
2022-11-11 19:02:57 +00:00
@lazy
def total_poll_voted(self, v):
if v:
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
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
2023-03-12 17:36:35 +00:00
body = add_options(self, body, v)
2022-01-22 16:22:31 +00:00
if body:
2023-10-07 17:55:50 +00:00
if not (self.parent_post and self.post.hole == 'chudrama'):
body = censor_slurs_profanities(body, v)
2023-05-05 21:45:25 +00:00
body = normalize_urls_runtime(body, v)
2024-02-24 23:06:31 +00:00
if self.created_utc > 1706137534:
body = bleach_body_html(body, runtime=True) #to stop slur filters and poll options being used as a vector for html/js injection
2024-02-12 07:14:19 +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):
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 ""
2023-10-07 17:55:50 +00:00
if not (self.parent_post and self.post.hole == 'chudrama'):
body = censor_slurs_profanities(body, v, True)
return body
2021-10-02 20:58:14 +00:00
2021-09-19 20:06:52 +00:00
@lazy
2024-02-18 15:55:56 +00:00
def collapse_for_user(self, v, focused_comment, 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
if path.endswith('/comments'): return False
2021-07-21 01:12:26 +00:00
2024-02-18 15:55:56 +00:00
if focused_comment: return False
2023-10-05 10:19:50 +00:00
if self.nsfw and not (any(path.startswith(x) for x in ('/post/','/comment/','/h/')) and self.post.nsfw) and not g.show_nsfw:
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
2023-03-06 17:19:49 +00:00
if self.author.shadowbanned: return True
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
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))
2022-07-11 18:13:00 +00:00
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':
2024-04-16 21:28:27 +00:00
body += f"<strong class='ml-2'>Pushed. Refunded {commas(wager)} {currency_kind}.</strong>"
2022-10-30 00:40:35 +00:00
elif blackjack_status == 'bust':
2024-04-16 21:28:27 +00:00
body += f"<strong class='ml-2'>Bust. Lost {commas(wager)} {currency_kind}.</strong>"
2022-10-30 00:40:35 +00:00
elif blackjack_status == 'lost':
2024-04-16 21:28:27 +00:00
body += f"<strong class='ml-2'>Lost {commas(wager)} {currency_kind}.</strong>"
2022-10-30 00:40:35 +00:00
elif blackjack_status == 'won':
2024-04-16 21:28:27 +00:00
body += f"<strong class='ml-2'>Won {commas(wager)} {currency_kind}.</strong>"
2022-10-30 00:40:35 +00:00
elif blackjack_status == 'blackjack':
2024-04-16 21:28:27 +00:00
body += f"<strong class='ml-2'>Blackjack! Won {commas(floor(wager * 3/2))} {currency_kind}.</strong>"
2022-10-30 00:40:35 +00:00
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
@property
@lazy
def num_savers(self):
return g.db.query(CommentSaveRelationship).filter_by(comment_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):
2023-10-02 08:05:30 +00:00
return get_award_classes(self, v)
@lazy
2023-12-25 01:18:48 +00:00
def emoji_awards_emojis(self, v, kind, NSFW_EMOJIS):
return get_emoji_awards_emojis(self, v, kind, NSFW_EMOJIS)
@property
@lazy
2024-02-06 19:39:52 +00:00
def is_longpost(self):
2024-03-15 20:07:11 +00:00
return self.body and len(self.body) >= 2000
def pin_parents(self):
c = self
while c.level > 2:
c = c.parent_comment
c.num_of_pinned_children += 1
g.db.add(c)
def unpin_parents(self):
c = self
while c.level > 2:
c = c.parent_comment
c.num_of_pinned_children -= 1
if c.num_of_pinned_children < 0:
c.num_of_pinned_children = 0
g.db.add(c)