From 4f283e0764c5a9017eaaece131f1f0518e71b7f8 Mon Sep 17 00:00:00 2001 From: Aevann1 Date: Sat, 19 Mar 2022 01:21:14 +0200 Subject: [PATCH] fds --- files/routes/posts.py | 19 ++++++++++--------- files/templates/comments.html | 2 +- files/templates/submission.html | 2 +- files/templates/submission_listing.html | 4 ++-- 4 files changed, 14 insertions(+), 13 deletions(-) diff --git a/files/routes/posts.py b/files/routes/posts.py index 8d8e9f867d..7f06077fce 100644 --- a/files/routes/posts.py +++ b/files/routes/posts.py @@ -440,17 +440,18 @@ def edit_post(pid, v): if len(body) > 20000: return {"error":"Character limit is 20000!"}, 403 - if v.longpost and (len(body) < 280 or ' [](' in body or body.startswith('[](')): - return {"error":"You have to type more than 280 characters!"}, 403 - elif v.bird and len(body) > 140: - return {"error":"You have to type less than 140 characters!"}, 403 + if v.id == p.author_id: + if v.longpost and (len(body) < 280 or ' [](' in body or body.startswith('[](')): + return {"error":"You have to type more than 280 characters!"}, 403 + elif v.bird and len(body) > 140: + return {"error":"You have to type less than 140 characters!"}, 403 if title != p.title: - if v.agendaposter and not v.marseyawarded: title = torture_ap(title, v.username) + if v.id == p.author_id and v.agendaposter and not v.marseyawarded: title = torture_ap(title, v.username) title_html = filter_emojis_only(title, edit=True) - if v.marseyawarded and not marseyaward_title_regex.fullmatch(title_html): + if v.id == p.author_id and v.marseyawarded and not marseyaward_title_regex.fullmatch(title_html): return {"error":"You can only type marseys!"}, 403 p.title = title[:500] @@ -476,7 +477,7 @@ def edit_post(pid, v): if body != p.body: body = image_regex.sub(r'![](\1)', body) - if v.agendaposter and not v.marseyawarded: body = torture_ap(body, v.username) + if v.id == p.author_id and v.agendaposter and not v.marseyawarded: body = torture_ap(body, v.username) if not p.options.count(): for i in poll_regex.finditer(body): @@ -504,7 +505,7 @@ def edit_post(pid, v): body_html = sanitize(body, edit=True) - if v.marseyawarded and marseyaward_body_regex.search(body_html): + if v.id == p.author_id and v.marseyawarded and marseyaward_body_regex.search(body_html): return {"error":"You can only type marseys!"}, 403 bans = filter_comment_html(body_html) @@ -522,7 +523,7 @@ def edit_post(pid, v): p.body_html = body_html - if v.agendaposter and not v.marseyawarded and AGENDAPOSTER_PHRASE not in f'{p.body}{p.title}'.lower(): + if v.id == p.author_id and v.agendaposter and not v.marseyawarded and AGENDAPOSTER_PHRASE not in f'{p.body}{p.title}'.lower(): p.is_banned = True p.ban_reason = "AutoJanny" diff --git a/files/templates/comments.html b/files/templates/comments.html index f9a7a1b265..f3ee86caf5 100644 --- a/files/templates/comments.html +++ b/files/templates/comments.html @@ -249,7 +249,7 @@
Reported by:

-