import functools
import random
import re
import signal
from os import path, listdir
from urllib.parse import parse_qs, urlparse, unquote, ParseResult, urlencode, urlunparse
import time
import requests
from sqlalchemy.sql import func
import bleach
from bleach.linkifier import LinkifyFilter
from bs4 import BeautifulSoup
from mistletoe import markdown
from files.classes.domains import BannedDomain
from files.classes.mod_logs import ModAction
from files.classes.notifications import Notification
from files.classes.group import Group
from files.classes.follows import Follow
from files.helpers.config.const import *
from files.helpers.const_stateful import *
from files.helpers.regex import *
from files.helpers.get import *
from files.helpers.marsify import *
from files.helpers.owoify import *
from files.helpers.sharpen import *
from files.helpers.queenify import *
from files.helpers.bleach_body import *
def create_comment_duplicated(text_html):
new_comment = Comment(author_id=AUTOJANNY_ID,
parent_post=None,
body_html=text_html,
distinguish_level=6,
is_bot=True)
g.db.add(new_comment)
g.db.flush()
new_comment.top_comment_id = new_comment.id
return new_comment.id
def send_repeatable_notification_duplicated(uid, text):
if uid in BOT_IDs: return
text_html = sanitize(text)
existing_comments = g.db.query(Comment.id).filter_by(author_id=AUTOJANNY_ID, parent_post=None, body_html=text_html, is_bot=True).order_by(Comment.id).all()
for c in existing_comments:
existing_notif = g.db.query(Notification.user_id).filter_by(user_id=uid, comment_id=c.id).one_or_none()
if not existing_notif:
notif = Notification(comment_id=c.id, user_id=uid)
g.db.add(notif)
return
cid = create_comment_duplicated(text_html)
notif = Notification(comment_id=cid, user_id=uid)
g.db.add(notif)
def execute_blackjack(v, target, body, kind):
if not blackjack or not body: return False
execute = False
for x in blackjack.split(','):
if all(i in body.lower() for i in x.split()):
execute = True
if not execute: return False
v.shadowbanned = AUTOJANNY_ID
ma = ModAction(
kind="shadowban",
user_id=AUTOJANNY_ID,
target_user_id=v.id,
_note=f'reason: "Blackjack: {kind}"'
)
g.db.add(ma)
v.shadowban_reason = f"Blackjack: {kind}"
g.db.add(v)
notified_ids = [x[0] for x in g.db.query(User.id).filter(User.admin_level >= PERMS['BLACKJACK_NOTIFICATIONS'])]
extra_info = kind
if target:
if kind == 'post':
extra_info = target.permalink
elif kind == 'report':
extra_info = f"reports on {target.permalink}"
elif kind in {'comment', 'message'}:
for id in notified_ids:
n = Notification(comment_id=target.id, user_id=id)
g.db.add(n)
extra_info = None
if extra_info:
for id in notified_ids:
send_repeatable_notification_duplicated(id, f"Blackjack by @{v.username}: {extra_info}")
return True
def find_all_emoji_endings(emoji):
endings = []
is_non_ending_found = False
while not is_non_ending_found:
if emoji.endswith('pat'):
if 'pat' in endings:
is_non_ending_found = True
continue
endings.append('pat')
emoji = emoji[:-3]
continue
if emoji.endswith('talking'):
if 'talking' in endings:
is_non_ending_found = True
continue
endings.append('talking')
emoji = emoji[:-7]
continue
if emoji.endswith('genocide'):
if 'genocide' in endings:
is_non_ending_found = True
continue
endings.append('genocide')
emoji = emoji[:-8]
continue
if emoji.endswith('love') and emoji not in {'marseycornlove', 'capylove'}:
if 'love' in endings:
is_non_ending_found = True
continue
endings.append('love')
emoji = emoji[:-4]
continue
if emoji.endswith('typing'):
if 'typing' in endings:
is_non_ending_found = True
continue
endings.append('typing')
emoji = emoji[:-6]
continue
is_non_ending_found = True
if emoji.endswith('random'):
kind = emoji.split('random')[0].title()
if kind == 'Donkeykong': kind = 'Donkey Kong'
elif kind == 'Marseyflag': kind = 'Marsey Flags'
elif kind == 'Marseyalphabet': kind = 'Marsey Alphabet'
if kind in EMOJI_KINDS:
emoji = g.db.query(Emoji.name).filter_by(kind=kind, nsfw=False).order_by(func.random()).first()[0]
return endings, emoji
def render_emoji(html, regexp, golden, emojis_used, b=False, is_title=False):
emojis = list(regexp.finditer(html))
captured = set()
for i in emojis:
if i.group(0) in captured: continue
captured.add(i.group(0))
emoji = i.group(1).lower()
attrs = ''
if b: attrs += ' b'
if is_title: emoji = emoji.replace('#','')
if golden and len(emojis) <= 20 and ('marsey' in emoji or emoji in MARSEYS_CONST2):
if random.random() < 0.005:
attrs += ' ' + random.choice(('g', 'glow', 'party'))
old = emoji
emoji = emoji.replace('!','').replace('#','')
emoji_partial_pat = ''
emoji_partial = ''
emoji_html = None
ending_modifiers, emoji = find_all_emoji_endings(emoji)
is_talking = 'talking' in ending_modifiers
is_patted = 'pat' in ending_modifiers
is_talking_first = ending_modifiers.index('pat') > ending_modifiers.index('talking') if is_talking and is_patted else False
is_loved = 'love' in ending_modifiers
is_genocided = 'genocide' in ending_modifiers
is_typing = 'typing' in ending_modifiers
is_user = emoji.startswith('@')
end_modifier_length = 3 if is_patted else 0
end_modifier_length = end_modifier_length + 7 if is_talking else end_modifier_length
hand_html = f'' if is_patted and emoji != 'marseyunpettable' else ''
talking_html = f'' if is_talking else ''
typing_html = f'' if is_typing else ''
loved_html = f''
genocide_attr = ' cide' if is_genocided else ''
modifier_html = ''
if is_talking and is_patted:
modifier_html = f'{talking_html}{hand_html}' if is_talking_first else f'{hand_html}{talking_html}'
elif is_patted:
modifier_html = hand_html
elif is_talking:
modifier_html = talking_html
if is_loved:
modifier_html = f'{modifier_html}{loved_html}'
if is_typing:
modifier_html = f'{modifier_html}{typing_html}'
if (is_patted and emoji != 'marseyunpettable') or is_talking or is_genocided or is_loved or is_typing:
if path.isfile(f"files/assets/images/emojis/{emoji}.webp"):
emoji_html = f'{modifier_html}{emoji_partial_pat.format(old, f"{SITE_FULL_IMAGES}/e/{emoji}.webp", attrs)}'
elif is_user:
if u := get_user(emoji[1:], graceful=True):
emoji_html = f'{modifier_html}{emoji_partial_pat.format(old, f"/pp/{u.id}", attrs)}'
elif path.isfile(f'files/assets/images/emojis/{emoji}.webp'):
emoji_html = emoji_partial.format(old, f'{SITE_FULL_IMAGES}/e/{emoji}.webp', attrs)
if emoji_html:
emojis_used.add(emoji)
html = re.sub(f'(?)', emoji_html, html)
return html
def with_sigalrm_timeout(timeout):
'Use SIGALRM to raise an exception if the function executes for longer than timeout seconds'
# while trying to test this using time.sleep I discovered that gunicorn does in fact do some
# async so if we timeout on that (or on a db op) then the process is crashed without returning
# a proper 500 error. Oh well.
def sig_handler(signum, frame):
print("Timeout!", flush=True)
raise Exception("Timeout")
def inner(func):
@functools.wraps(func)
def wrapped(*args, **kwargs):
signal.signal(signal.SIGALRM, sig_handler)
signal.alarm(timeout)
try:
return func(*args, **kwargs)
finally:
signal.alarm(0)
return wrapped
return inner
def remove_cuniform(sanitized):
if not sanitized: return ""
sanitized = sanitized.replace('\u200e','').replace('\u200b','').replace('\u202e','').replace("\ufeff", "").replace("\u033f","").replace("\u0589", ":")
sanitized = sanitized.replace("𒐪","").replace("𒐫","").replace("﷽","").replace("⸻","")
sanitized = sanitized.replace("\r", "")
sanitized = sanitized.replace("’", "'")
return sanitized.strip()
def get_youtube_id_and_t(url):
params = parse_qs(urlparse(url).query, keep_blank_values=True)
id = params.get('v')
if not id: return (None, None)
id = id[0]
t = None
split = id.split('?t=')
if len(split) == 2:
id = split[0]
t = split[1]
id = id.split('?')[0]
return (id, t)
def handle_youtube_links(url):
url = url.replace('&','&')
params = parse_qs(urlparse(url).query, keep_blank_values=True)
html = None
id, t = get_youtube_id_and_t(url)
if not id: return None
if yt_id_regex.fullmatch(id):
if not t:
t = params.get('t', params.get('start', [0]))[0]
if isinstance(t, str):
t = t.replace('s','').replace('S','')
split = t.split('m')
if len(split) == 2:
minutes = int(split[0])
if split[1]: seconds = int(split[1])
else: seconds = 0
t = minutes*60 + seconds
html = f'
g
' if obj and not obj.is_longpost: if author.owoify: sanitized = owoify(sanitized, author.chud_phrase) if author.marsify: sanitized = marsify(sanitized, author.chud_phrase) if obj and obj.sharpened: sanitized = sharpen(sanitized, author.chud_phrase) if '```' not in sanitized and '' not in sanitized: sanitized = linefeeds_regex.sub(r'\1\n\n\2', sanitized) sanitized = greentext_regex.sub(r'\1\>\2 ', sanitized) sanitized = image_sub_regex.sub(r'![](\1)', sanitized) sanitized = image_check_regex.sub(r'\1', sanitized) sanitized = link_fix_regex.sub(r'\1https://\2', sanitized) if FEATURES['MARKUP_COMMANDS']: sanitized = command_regex.sub(command_regex_matcher, sanitized) sanitized = numbered_list_regex.sub(r'\1\. ', sanitized) sanitized = strikethrough_regex.sub(r'\1\2', sanitized) sanitized = sanitized.replace('_', '▔') sanitized = markdown(sanitized) sanitized = sanitized.replace('▔', '_').replace('%E2%96%94', '_') if obj and obj.queened: sanitized = queenify_html(sanitized) sanitized = sanitized.replace('/\2', sanitized) sanitized = hole_mention_regex.sub(r'/\1', sanitized) names = {m.group(1) for m in mention_regex.finditer(sanitized)} if limit_pings and len(names) > limit_pings and v.admin_level < PERMS['POST_COMMENT_INFINITE_PINGS']: return error("Max ping limit is 5 for comments and 50 for posts!") users_list = get_users(names, graceful=True) users_dict = {} for u in users_list: users_dict[u.username.lower()] = u if u.original_username: users_dict[u.original_username.lower()] = u if u.extra_username: users_dict[u.extra_username.lower()] = u if u.prelock_username: users_dict[u.prelock_username.lower()] = u def replacer(m): u = users_dict.get(m.group(1).lower()) if not u or (v and u.id in v.all_twoway_blocks) or (v and u.has_muted(v)): return m.group(0) return f'@{u.username}' sanitized = mention_regex.sub(replacer, sanitized) if FEATURES['PING_GROUPS']: def group_replacer(m): name = m.group(1) if name.lower() == 'everyone': return f'!{name}' elif name.lower() == 'jannies': return f'!{name}' elif name.lower() == 'holejannies' and get_obj_hole(obj): return f'!{name}' elif name.lower() == 'commenters' and commenters_ping_post_id: return f'!{name}' elif name.lower() == 'followers': return f'!{name}' elif g.db.get(Group, name.lower()): return f'!{name}' else: return m.group(0) sanitized = group_mention_regex.sub(group_replacer, sanitized) soup = BeautifulSoup(sanitized, 'lxml') for tag in soup.find_all("img"): if tag.get("src") and not tag["src"].startswith('/pp/') and not (snappy and tag["src"].startswith(f'{SITE_FULL_IMAGES}/e/')): if not is_safe_url(tag["src"]): a = soup.new_tag("a", href=tag["src"], rel="nofollow noopener", target="_blank") a.string = tag["src"] tag.replace_with(a) continue del tag["g"] del tag["glow"] del tag["party"] tag["loading"] = "lazy" tag["data-src"] = tag["src"] tag["src"] = f"{SITE_FULL_IMAGES}/i/l.webp" tag['alt'] = tag["data-src"] tag['class'] = "img" if tag.parent.name != 'a': a = soup.new_tag("a", href=tag["data-src"]) if not is_site_url(a["href"]): a["rel"] = "nofollow noopener" a["target"] = "_blank" tag = tag.replace_with(a) a.append(tag) tag["data-src"] = tag["data-src"] tag["data-user-submitted"] = "" sanitized = str(soup).replace('','').replace('','').replace('/>','>') sanitized = spoiler_regex.sub(r'\1 ', sanitized) emojis_used = set() if not (author and author.hieroglyphs): emojis = list(emoji_regex.finditer(sanitized)) if len(emojis) > 20: golden = False captured = [] for i in emojis: if i.group(0) in captured: continue captured.append(i.group(0)) old = i.group(0) if 'marseylong1' in old or 'marseylong2' in old or 'marseylongcockandballs' in old or 'marseyllama1' in old or 'marseyllama2' in old: new = old.lower().replace(">", " class='mb-0'>") else: new = old.lower() new = render_emoji(new, emoji_regex2, golden, emojis_used, True) sanitized = sanitized.replace(old, new) emojis = list(emoji_regex2.finditer(sanitized)) if len(emojis) > 20: golden = False sanitized = render_emoji(sanitized, emoji_regex2, golden, emojis_used) sanitized = sanitized.replace('&','&') sanitized = video_sub_regex.sub(r'', sanitized) sanitized = audio_sub_regex.sub(r'', sanitized) if count_emojis: for emoji in g.db.query(Emoji).filter(Emoji.submitter_id==None, Emoji.name.in_(emojis_used)): emoji.count += 1 g.db.add(emoji) if FEATURES['NSFW_MARKING'] and obj: for emoji in emojis_used: if emoji in NSFW_EMOJIS: obj.nsfw = True break sanitized = sanitized.replace('', '') sanitized = bleach_body_html(sanitized) #doing this here cuz of the linkifyfilter right above it (therefore unifying all link processing logic) soup = BeautifulSoup(sanitized, 'lxml') has_transform = bool(soup.select('[style*=transform i]')) and not (v and v.id == SNAPPY_ID) links = soup.find_all("a") if v and v.admin_level >= PERMS["IGNORE_DOMAIN_BAN"]: banned_domains = [] else: banned_domains = [x.domain for x in g.db.query(BannedDomain.domain)] for link in links: #remove empty links if not link.contents or not str(link.contents[0]).strip(): link.extract() continue href = link.get("href") if not href: continue link["href"] = normalize_url(href) if link.string == href: link.string = link["href"] href = link["href"] def unlinkfy(): link.string = href del link["href"] #\ in href right after / makes most browsers ditch site hostname and allows for a host injection bypassing the check, see cool if "\\" in href: unlinkfy() continue #don't allow something like this https://rdrama.net/post/78376/reminder-of-the-fact-that-our/2150032#context domain = tldextract.extract(href).registered_domain if domain and not allowed_domain_regex.fullmatch(domain): unlinkfy() continue #check for banned domain combined = (domain + urlparse(href).path).lower() if any((combined.startswith(x) for x in banned_domains)): unlinkfy() continue #don't allow something like this [@Aevann2](https://iplogger.org/1fRKk7) if str(link.string).startswith('@') and not href.startswith('/'): unlinkfy() continue #don't allow something like this [!jannies](https://iplogger.org/1fRKk7) if str(link.string).startswith('!') and not href.startswith('/'): unlinkfy() continue #don't allow something like this [https://rԁrama.net/leaderboard](https://iplogger.org/1fRKk7) if not snappy: string_domain = tldextract.extract(str(link.string)).registered_domain if string_domain and link.string != href: link.string = href #insert target="_blank" and ref="nofollower noopener" for external link if not href.startswith('/') and not href.startswith(f'{SITE_FULL}/'): link["target"] = "_blank" link["rel"] = "nofollow noopener" if has_transform: del link["href"] sanitized = str(soup).replace('','').replace('','').replace('/>','>') captured = [] for i in youtube_regex.finditer(sanitized): if i.group(0) in captured: continue captured.append(i.group(0)) html = handle_youtube_links(i.group(1)) if html: if not chat: html = f'{html}
' sanitized = sanitized.replace(i.group(0), html) if '' not in sanitized and blackjack != "rules": sanitized = sanitized.replace('\n','') if showmore: # Insert a show more button if the text is too long or has too many paragraphs CHARLIMIT = 3000 pos = 0 for _ in range(20): pos = sanitized.find('', pos + 4) if pos < 0: break if (pos < 0 and len(sanitized) > CHARLIMIT) or pos > CHARLIMIT: pos = CHARLIMIT - 500 if pos >= 0: sanitized = (sanitized[:pos] + showmore_regex.sub(r'\1\2 ', sanitized[pos:], count=1)) allowed_count = 0 if chat else 5 if "style" in sanitized and "filter" in sanitized: if sanitized.count("blur(") + sanitized.count("drop-shadow(") > allowed_count: return error("Max 5 usages of 'blur' and 'drop-shadow'!") sanitized = bleach_body_html(sanitized, runtime=True) return sanitized.strip() def allowed_attributes_emojis(tag, name, value): if tag == 'img': if name == 'src': if '\\' in value: return False if value.startswith('/') : return True if value.startswith(f'{SITE_FULL_IMAGES}/') : return True if name == 'loading' and value == 'lazy': return True if name == 'data-bs-toggle' and value == 'tooltip': return True if name in {'g','glow','party'} and not value: return True if name in {'alt','title'}: return True if tag == 'span': if name == 'data-bs-toggle' and value == 'tooltip': return True if name == 'title': return True if name == 'alt': return True if name == 'cide' and not value: return True return False @with_sigalrm_timeout(2) def filter_emojis_only(title, golden=True, count_emojis=False, obj=None, author=None, link=False): title = title.replace("\n", "").replace("\r", "").replace("\t", "").replace('<','<').replace('>','>') title = remove_cuniform(title) if obj and not obj.is_longpost: if author.owoify: title = owoify(title, author.chud_phrase) if author.marsify: title = marsify(title, author.chud_phrase) if obj and obj.sharpened: title = sharpen(title, author.chud_phrase) emojis_used = set() title = render_emoji(title, emoji_regex2, golden, emojis_used, is_title=True) if count_emojis: for emoji in g.db.query(Emoji).filter(Emoji.submitter_id==None, Emoji.name.in_(emojis_used)): emoji.count += 1 g.db.add(emoji) if FEATURES['NSFW_MARKING'] and obj: for emoji in emojis_used: if emoji in NSFW_EMOJIS: obj.nsfw = True break title = strikethrough_regex.sub(r'\1\2', title) if link: title = bleach.Cleaner( tags=['img','del','span'], attributes=allowed_attributes_emojis, protocols=['http','https'], filters=[ partial( LinkifyFilter, skip_tags=["pre"], parse_email=False, url_re=sanitize_url_regex ) ] ).clean(title) else: title = bleach.clean( title, tags=['img','del','span'], attributes=allowed_attributes_emojis, protocols=['http','https'] ) title = title.replace('\n','') if len(title) > POST_TITLE_HTML_LENGTH_LIMIT: abort(400, "Rendered title is too long!") title = title.strip() return title def is_whitelisted(domain, k): if domain not in {'youtube.com','reddit.com','twitter.com','msn.com','wsj.com','tiktok.com','forbes.com','dailymail.co.uk','facebook.com','spotify.com','nytimes.com','businessinsider.com','instagram.com','yahoo.com','thedailybeast.com','nypost.com','newsweek.com','bloomberg.com','quora.com','nbcnews.com','reuters.com','tmz.com','cnbc.com','marketwatch.com','thetimes.co.uk','sfchronicle.com','washingtonpost.com','cbsnews.com','foxnews.com','bbc.com','bbc.co.uk','ifunny.co','independent.co.uk'}: return True if 'sort' in k.lower() or 'query' in k.lower(): return True if k in { 'q', #generic 'after','context','page','token','url', #reddit.com 'f', #twitter.com 'fbid','story_fbid','u', #facebook.com 'id', #facebook.com, #msn.com 'v','lb','list','time_continue', #youtube.com }: return True if k == 't' and domain != 'twitter.com': return True return False domain_replacements = { "https://music.youtube.com": "https://youtube.com", "https://www.youtube.com": "https://youtube.com", "https://m.youtube.com": "https://youtube.com", "https://mobile.twitter.com": "https://twitter.com", "https://x.com": "https://twitter.com", "https://www.twitter.com": "https://twitter.com", "https://fxtwitter.com": "https://twitter.com", "https://nitter.net/": "https://twitter.com/", "https://nitter.42l.fr/": "https://twitter.com/", "https://nitter.unixfox.eu/": "https://twitter.com/", "https://m.facebook.com": "https://facebook.com", "https://en.m.wikipedia.org": "https://en.wikipedia.org", "https://www.instagram.com": "https://instagram.com", "https://www.tiktok.com": "https://tiktok.com", "https://imgur.com/": "https://i.imgur.com/", 'https://www.google.com/amp/s/': 'https://', 'https://amp.': 'https://', 'https://cnn.com/cnn/': 'https://edition.cnn.com/', 'https://letmegooglethat.com/?q=': 'https://google.com/search?q=', 'https://lmgtfy.app/?q=': 'https://google.com/search?q=', DONATE_LINK: f'{SITE_FULL}/donate', } def normalize_url(url): url = reddit_domain_regex.sub(r'\1https://old.reddit.com/\5', url) for k, val in domain_replacements.items(): if url.startswith(k): url = url.replace(k, val) url = url.replace("/giphy.gif", "/giphy.webp") url = url.replace('/amp/', '/') if url.endswith('.amp'): url = url.split('.amp')[0] url = giphy_regex.sub(r'\1.webp', url) if not url.startswith('/') and not url.startswith('https://rdrama.net') and not url.startswith('https://watchpeopledie.tv'): try: parsed_url = urlparse(url) except: print(url, flush=True) abort(500) netloc = parsed_url.netloc path = parsed_url.path qd = parse_qs(parsed_url.query, keep_blank_values=True) filtered = {} if netloc == 'youtu.be' or (netloc == 'youtube.com' and any(path.startswith(x) for x in {'/shorts/', '/live/', '/v/'})): netloc = 'youtube.com' filtered['v'] = path.split('/')[-1] path = '/watch' domain = tldextract.extract(netloc).registered_domain filtered |= {k: val for k, val in qd.items() if not val[0] or is_whitelisted(domain, k)} if netloc == 'old.reddit.com' and reddit_comment_link_regex.fullmatch(url): filtered['context'] = 8 new_url = ParseResult(scheme="https", netloc=netloc, path=path, params=parsed_url.params, query=urlencode(filtered, doseq=True), fragment=parsed_url.fragment) url = urlunparse(new_url) domain = tldextract.extract(url).registered_domain url = imgur_regex.sub(r'\1_d.webp?maxwidth=9999&fidelity=grand', url) return url.rstrip('=') def normalize_url_gevent(url): req = requests.get(url, headers=HEADERS, timeout=2, proxies=proxies) return normalize_url(req.url) def validate_css(css): if '@import' in css: return False, "CSS @import statements are not allowed!" if '/*' in css: return False, "CSS comments are not allowed!" for i in css_url_regex.finditer(css): url = i.group(1) if not is_safe_url(url): domain = tldextract.extract(url).registered_domain return False, f"The domain '{domain}' is not allowed here!" return True, "" def torture_chud(string, username): if not string: return string for k, l in CHUD_REPLACEMENTS.items(): string = string.replace(k, l) string = torture_regex.sub(rf'\1@{username}\3', string) string = torture_regex2.sub(rf'\1@{username} is\3', string) string = torture_regex3.sub(rf"\1@{username}'s\3", string) return string def complies_with_chud(obj): #check for cases where u should leave if not obj.chudded: return True if obj.author.hieroglyphs: return True if isinstance(obj, Post): if obj.id in ADMIGGER_THREADS: return True if obj.hole == "chudrama": return True elif obj.parent_post: if obj.parent_post in ADMIGGER_THREADS: return True if obj.post.hole == "chudrama": return True #perserve old body_html to be used in checking for chud phrase old_body_html = obj.body_html #torture body_html if obj.body_html and '&&' not in obj.body_html and '
$$' not in obj.body_html and '
##' not in obj.body_html: soup = BeautifulSoup(obj.body_html, 'lxml') tags = soup.html.body.find_all(lambda tag: tag.name not in {'blockquote','codeblock','pre'} and tag.string, recursive=False) for tag in tags: tag.string.replace_with(torture_chud(tag.string, obj.author.username)) obj.body_html = str(soup).replace('
','').replace('','') #torture title_html and check for chud_phrase in plain title and leave if it's there if isinstance(obj, Post): obj.title_html = torture_chud(obj.title_html, obj.author.username) if not obj.author.chud or obj.author.chud_phrase in obj.title.lower(): return True #check for chud_phrase in body_html if old_body_html: excluded_tags = {'del','sub','sup','marquee','spoiler','lite-youtube','video','audio'} soup = BeautifulSoup(old_body_html, 'lxml') tags = soup.html.body.find_all(lambda tag: tag.name not in excluded_tags and not tag.attrs, recursive=False) for tag in tags: for text in tag.find_all(text=True, recursive=False): if not obj.author.chud or obj.author.chud_phrase in text.lower(): return True return False