2022-11-15 09:19:08 +00:00
|
|
|
import os
|
|
|
|
from collections import Counter
|
|
|
|
from json import loads
|
|
|
|
from shutil import copyfile
|
|
|
|
|
|
|
|
import gevent
|
|
|
|
|
|
|
|
from files.classes import *
|
|
|
|
from files.helpers.actions import *
|
2022-05-04 23:09:46 +00:00
|
|
|
from files.helpers.alerts import *
|
2022-11-15 09:19:08 +00:00
|
|
|
from files.helpers.cloudflare import purge_files_in_cache
|
2022-12-11 23:44:34 +00:00
|
|
|
from files.helpers.config.const import *
|
2022-11-15 09:19:08 +00:00
|
|
|
from files.helpers.get import *
|
|
|
|
from files.helpers.marsify import marsify
|
|
|
|
from files.helpers.media import *
|
|
|
|
from files.helpers.owoify import owoify
|
2023-06-26 14:38:48 +00:00
|
|
|
from files.helpers.sharpen import sharpen
|
2022-06-24 14:30:59 +00:00
|
|
|
from files.helpers.regex import *
|
2022-05-04 23:09:46 +00:00
|
|
|
from files.helpers.slots import *
|
|
|
|
from files.helpers.treasure import *
|
|
|
|
from files.routes.front import comment_idlist
|
2022-11-15 09:19:08 +00:00
|
|
|
from files.routes.routehelpers import execute_shadowban_viewers_and_voters
|
|
|
|
from files.routes.wrappers import *
|
2023-08-16 22:13:08 +00:00
|
|
|
from files.routes.static import badge_list
|
2022-11-15 09:19:08 +00:00
|
|
|
from files.__main__ import app, cache, limiter
|
2022-05-04 23:09:46 +00:00
|
|
|
|
2023-07-25 21:26:34 +00:00
|
|
|
def _mark_comment_as_read(cid, vid):
|
|
|
|
db = db_session()
|
|
|
|
|
2023-07-26 12:31:44 +00:00
|
|
|
notif = db.query(Notification).options(load_only(Notification.read)).filter_by(comment_id=cid, user_id=vid, read=False).one_or_none()
|
2023-08-01 07:38:58 +00:00
|
|
|
|
2023-07-26 12:31:44 +00:00
|
|
|
if notif and not notif.read:
|
2023-07-25 21:26:34 +00:00
|
|
|
notif.read = True
|
|
|
|
db.add(notif)
|
2023-07-26 12:31:44 +00:00
|
|
|
db.commit()
|
2023-07-25 21:26:34 +00:00
|
|
|
|
|
|
|
db.close()
|
|
|
|
stdout.flush()
|
|
|
|
|
2022-12-29 10:39:10 +00:00
|
|
|
@app.get("/comment/<int:cid>")
|
|
|
|
@app.get("/post/<int:pid>/<anything>/<int:cid>")
|
|
|
|
@app.get("/h/<sub>/comment/<int:cid>")
|
|
|
|
@app.get("/h/<sub>/post/<int:pid>/<anything>/<int:cid>")
|
2023-07-13 13:50:46 +00:00
|
|
|
@limiter.limit(DEFAULT_RATELIMIT, deduct_when=lambda response: response.status_code < 400)
|
2022-08-05 20:40:48 +00:00
|
|
|
@auth_desired_with_logingate
|
2023-07-08 13:32:14 +00:00
|
|
|
def post_pid_comment_cid(cid, v, pid=None, anything=None, sub=None):
|
2022-12-29 10:39:10 +00:00
|
|
|
|
2022-05-04 23:09:46 +00:00
|
|
|
comment = get_comment(cid, v=v)
|
2022-12-05 14:38:24 +00:00
|
|
|
|
2023-08-14 19:57:51 +00:00
|
|
|
if not User.can_see(v, comment): abort(403)
|
|
|
|
|
2023-06-23 13:46:42 +00:00
|
|
|
if comment.parent_post:
|
|
|
|
post = comment.parent_post
|
2023-08-14 19:57:24 +00:00
|
|
|
elif comment.wall_user_id:
|
|
|
|
return redirect(f"/id/{comment.wall_user_id}/wall/comment/{comment.id}")
|
2023-01-01 15:44:37 +00:00
|
|
|
else:
|
2023-08-23 10:42:25 +00:00
|
|
|
return redirect(f"/notification/{comment.id}")
|
2023-01-01 11:36:20 +00:00
|
|
|
|
2023-08-14 19:57:24 +00:00
|
|
|
if v and request.values.get("read"):
|
2023-08-20 16:24:26 +00:00
|
|
|
gevent.spawn(_mark_comment_as_read, comment.id, v.id)
|
2023-08-14 19:57:24 +00:00
|
|
|
|
2023-01-23 02:14:56 +00:00
|
|
|
post = get_post(post, v=v)
|
2023-02-22 17:27:33 +00:00
|
|
|
|
2023-07-27 00:15:50 +00:00
|
|
|
if not (v and v.client) and post.over_18 and not (v and v.over_18) and not session.get('over_18_cookies', 0) >= int(time.time()):
|
|
|
|
return render_template("errors/nsfw.html", v=v), 403
|
2022-05-04 23:09:46 +00:00
|
|
|
|
2022-12-18 14:48:48 +00:00
|
|
|
try: context = min(int(request.values.get("context", 8)), 8)
|
|
|
|
except: context = 8
|
2022-05-04 23:09:46 +00:00
|
|
|
comment_info = comment
|
|
|
|
c = comment
|
|
|
|
|
2022-12-10 17:06:28 +00:00
|
|
|
if post.new: defaultsortingcomments = 'new'
|
|
|
|
elif v: defaultsortingcomments = v.defaultsortingcomments
|
2022-10-11 16:41:09 +00:00
|
|
|
else: defaultsortingcomments = "hot"
|
2023-08-23 21:57:39 +00:00
|
|
|
sort = request.values.get("sort", defaultsortingcomments)
|
2022-05-04 23:09:46 +00:00
|
|
|
|
2023-08-12 19:32:30 +00:00
|
|
|
while context and c.level > 1:
|
|
|
|
parent = c.parent_comment
|
|
|
|
replies = parent.replies(sort)
|
|
|
|
replies.remove(c)
|
|
|
|
parent.replies2 = [c] + replies
|
|
|
|
c = parent
|
|
|
|
context -= 1
|
|
|
|
top_comment = c
|
|
|
|
|
2022-05-04 23:09:46 +00:00
|
|
|
if v:
|
2022-10-29 00:13:37 +00:00
|
|
|
# this is required because otherwise the vote and block
|
|
|
|
# props won't save properly unless you put them in a list
|
2023-02-27 16:16:12 +00:00
|
|
|
output = get_comments_v_properties(v, None, Comment.top_comment_id == c.top_comment_id)[1]
|
2022-05-04 23:09:46 +00:00
|
|
|
post.replies=[top_comment]
|
2022-11-15 09:19:08 +00:00
|
|
|
|
|
|
|
execute_shadowban_viewers_and_voters(v, post)
|
|
|
|
execute_shadowban_viewers_and_voters(v, comment)
|
2023-01-01 11:36:20 +00:00
|
|
|
|
2023-07-07 18:53:14 +00:00
|
|
|
if v and v.client: return comment.json
|
2023-01-01 11:36:20 +00:00
|
|
|
else:
|
2023-06-07 23:26:32 +00:00
|
|
|
if post.is_banned and not (v and (v.admin_level >= PERMS['POST_COMMENT_MODERATION'] or post.author_id == v.id)): template = "post_banned.html"
|
|
|
|
else: template = "post.html"
|
2022-05-04 23:09:46 +00:00
|
|
|
return render_template(template, v=v, p=post, sort=sort, comment_info=comment_info, render_replies=True, sub=post.subr)
|
|
|
|
|
|
|
|
@app.post("/comment")
|
2023-02-27 05:33:45 +00:00
|
|
|
@limiter.limit('1/second', scope=rpath)
|
2023-04-02 06:52:26 +00:00
|
|
|
@limiter.limit('1/second', scope=rpath, key_func=get_ID)
|
2023-07-13 13:50:46 +00:00
|
|
|
@limiter.limit("20/minute;200/hour;1000/day", deduct_when=lambda response: response.status_code < 400)
|
|
|
|
@limiter.limit("20/minute;200/hour;1000/day", deduct_when=lambda response: response.status_code < 400, key_func=get_ID)
|
2023-07-22 14:40:23 +00:00
|
|
|
@is_not_banned
|
2023-07-30 00:42:06 +00:00
|
|
|
def comment(v):
|
2022-05-04 23:09:46 +00:00
|
|
|
parent_fullname = request.values.get("parent_fullname").strip()
|
2022-10-30 20:08:20 +00:00
|
|
|
if len(parent_fullname) < 3: abort(400)
|
|
|
|
id = parent_fullname[2:]
|
|
|
|
parent_comment_id = None
|
|
|
|
rts = False
|
2022-11-25 20:36:29 +00:00
|
|
|
|
2022-12-09 03:35:28 +00:00
|
|
|
post_target = None
|
|
|
|
parent = None
|
|
|
|
|
2023-05-12 16:54:19 +00:00
|
|
|
notify_op = True
|
|
|
|
|
2022-12-09 03:35:28 +00:00
|
|
|
if parent_fullname.startswith("u_"):
|
|
|
|
parent = get_account(id, v=v)
|
|
|
|
post_target = parent
|
2022-12-19 16:19:33 +00:00
|
|
|
ghost = False
|
2022-12-09 03:35:28 +00:00
|
|
|
elif parent_fullname.startswith("p_"):
|
2022-10-30 20:08:20 +00:00
|
|
|
parent = get_post(id, v=v)
|
2022-12-09 03:35:28 +00:00
|
|
|
post_target = parent
|
2023-03-05 16:44:14 +00:00
|
|
|
if parent.id in ADMIGGER_THREADS and v.admin_level < PERMS['USE_ADMIGGER_THREADS']:
|
|
|
|
abort(403, "You can't post top-level comments in this thread!")
|
|
|
|
|
2023-05-12 16:54:19 +00:00
|
|
|
if SITE == 'rdrama.net' and parent.id == 33652:
|
|
|
|
notify_op = False
|
|
|
|
|
2022-12-19 16:19:33 +00:00
|
|
|
ghost = parent.ghost
|
2022-10-30 20:08:20 +00:00
|
|
|
elif parent_fullname.startswith("c_"):
|
|
|
|
parent = get_comment(id, v=v)
|
2023-06-23 13:46:42 +00:00
|
|
|
post_target = get_post(parent.parent_post, v=v, graceful=True) or get_account(parent.wall_user_id, v=v, include_blocks=True)
|
2022-10-30 20:08:20 +00:00
|
|
|
parent_comment_id = parent.id
|
|
|
|
if parent.author_id == v.id: rts = True
|
2023-06-07 23:26:32 +00:00
|
|
|
if not v.can_post_in_ghost_threads and isinstance(post_target, Post) and post_target.ghost:
|
2022-12-09 03:35:28 +00:00
|
|
|
abort(403, f"You need {TRUESCORE_GHOST_MINIMUM} truescore to post in ghost threads")
|
2022-12-19 16:19:33 +00:00
|
|
|
ghost = parent.ghost
|
2022-12-09 03:35:28 +00:00
|
|
|
else: abort(404)
|
2022-05-04 23:09:46 +00:00
|
|
|
|
2023-06-07 23:26:32 +00:00
|
|
|
level = 1 if isinstance(parent, (Post, User)) else int(parent.level) + 1
|
2022-12-09 03:35:28 +00:00
|
|
|
parent_user = parent if isinstance(parent, User) else parent.author
|
2023-06-23 13:46:42 +00:00
|
|
|
posting_to_post = isinstance(post_target, Post)
|
2022-08-21 15:24:16 +00:00
|
|
|
|
2023-05-05 21:45:25 +00:00
|
|
|
|
2023-03-04 21:50:19 +00:00
|
|
|
|
2023-08-16 23:23:13 +00:00
|
|
|
if posting_to_post and not User.can_see(v, parent):
|
|
|
|
abort(403)
|
|
|
|
|
2022-12-27 03:52:41 +00:00
|
|
|
if not isinstance(parent, User) and parent.deleted_utc != 0:
|
2023-06-07 23:26:32 +00:00
|
|
|
if isinstance(parent, Post):
|
2023-02-18 18:10:44 +00:00
|
|
|
abort(403, "You can't reply to deleted posts!")
|
2022-12-27 03:52:41 +00:00
|
|
|
else:
|
2023-02-18 18:10:44 +00:00
|
|
|
abort(403, "You can't reply to deleted comments!")
|
2022-12-09 03:35:28 +00:00
|
|
|
|
2023-06-23 13:46:42 +00:00
|
|
|
if posting_to_post:
|
2022-12-09 03:35:28 +00:00
|
|
|
sub = post_target.sub
|
2023-08-08 17:01:58 +00:00
|
|
|
if sub and v.exiler_username(sub): abort(403, f"You're exiled from /h/{sub}")
|
2023-06-26 15:05:27 +00:00
|
|
|
if sub in {'furry','vampire','racist','femboy','edgy'} and not v.client and not v.house.lower().startswith(sub):
|
2022-12-09 03:35:28 +00:00
|
|
|
abort(403, f"You need to be a member of House {sub.capitalize()} to comment in /h/{sub}")
|
2022-05-04 23:09:46 +00:00
|
|
|
|
2022-10-11 13:01:39 +00:00
|
|
|
if level > COMMENT_MAX_DEPTH: abort(400, f"Max comment level is {COMMENT_MAX_DEPTH}")
|
2022-06-29 01:13:11 +00:00
|
|
|
|
2023-07-29 19:13:37 +00:00
|
|
|
body = request.values.get("body", "")
|
2023-07-29 19:17:50 +00:00
|
|
|
body = body[:COMMENT_BODY_LENGTH_LIMIT].strip()
|
2022-05-04 23:09:46 +00:00
|
|
|
|
2023-06-23 13:46:42 +00:00
|
|
|
if not posting_to_post or post_target.id not in ADMIGGER_THREADS:
|
2022-05-04 23:09:46 +00:00
|
|
|
if v.longpost and (len(body) < 280 or ' [](' in body or body.startswith('[](')):
|
2022-10-11 13:01:39 +00:00
|
|
|
abort(403, "You have to type more than 280 characters!")
|
2022-05-04 23:09:46 +00:00
|
|
|
elif v.bird and len(body) > 140:
|
2022-10-11 13:01:39 +00:00
|
|
|
abort(403, "You have to type less than 140 characters!")
|
2022-05-04 23:09:46 +00:00
|
|
|
|
2023-09-01 07:51:20 +00:00
|
|
|
if not body and not request.files.get('file'):
|
|
|
|
abort(400, "You need to actually write something!")
|
|
|
|
|
|
|
|
if parent_user.has_blocked(v):
|
|
|
|
notify_op = False
|
2022-11-07 05:24:09 +00:00
|
|
|
|
2022-11-15 09:19:08 +00:00
|
|
|
if request.files.get("file") and not g.is_tor:
|
2023-02-27 16:05:28 +00:00
|
|
|
files = request.files.getlist('file')[:20]
|
2023-02-22 17:27:33 +00:00
|
|
|
|
2023-01-25 15:13:24 +00:00
|
|
|
if files:
|
|
|
|
media_ratelimit(v)
|
|
|
|
|
2022-05-04 23:09:46 +00:00
|
|
|
for file in files:
|
2023-02-27 15:02:35 +00:00
|
|
|
if f'[{file.filename}]' not in body:
|
2023-07-22 16:29:19 +00:00
|
|
|
continue
|
2023-02-27 15:02:35 +00:00
|
|
|
|
2022-05-04 23:09:46 +00:00
|
|
|
if file.content_type.startswith('image/'):
|
|
|
|
oldname = f'/images/{time.time()}'.replace('.','') + '.webp'
|
|
|
|
file.save(oldname)
|
2022-11-15 09:19:08 +00:00
|
|
|
image = process_image(oldname, v)
|
2022-10-11 13:01:39 +00:00
|
|
|
if image == "": abort(400, "Image upload failed")
|
2023-06-23 13:46:42 +00:00
|
|
|
if posting_to_post and v.admin_level >= PERMS['USE_ADMIGGER_THREADS']:
|
2022-10-12 10:04:34 +00:00
|
|
|
def process_sidebar_or_banner(type, resize=0):
|
|
|
|
li = sorted(os.listdir(f'files/assets/images/{SITE_NAME}/{type}'),
|
2022-05-08 05:01:49 +00:00
|
|
|
key=lambda e: int(e.split('.webp')[0]))[-1]
|
|
|
|
num = int(li.split('.webp')[0]) + 1
|
2022-10-12 10:04:34 +00:00
|
|
|
filename = f'files/assets/images/{SITE_NAME}/{type}/{num}.webp'
|
2022-05-04 23:09:46 +00:00
|
|
|
copyfile(oldname, filename)
|
2022-11-15 09:19:08 +00:00
|
|
|
process_image(filename, v, resize=resize)
|
2022-10-12 10:04:34 +00:00
|
|
|
|
2022-12-09 03:35:28 +00:00
|
|
|
if post_target.id == SIDEBAR_THREAD:
|
2022-10-12 10:04:34 +00:00
|
|
|
process_sidebar_or_banner('sidebar', 400)
|
2022-12-09 03:35:28 +00:00
|
|
|
elif post_target.id == BANNER_THREAD:
|
2022-12-21 12:42:41 +00:00
|
|
|
banner_width = 1200
|
2022-10-12 10:04:34 +00:00
|
|
|
process_sidebar_or_banner('banners', banner_width)
|
2022-12-09 03:35:28 +00:00
|
|
|
elif post_target.id == BADGE_THREAD:
|
2022-05-04 23:09:46 +00:00
|
|
|
try:
|
2023-03-01 20:57:18 +00:00
|
|
|
json_body = '{' + body.split('{')[1].split('}')[0] + '}'
|
|
|
|
badge_def = loads(json_body)
|
2022-05-04 23:09:46 +00:00
|
|
|
name = badge_def["name"]
|
|
|
|
|
2022-12-30 16:28:24 +00:00
|
|
|
if len(name) > 50:
|
|
|
|
abort(400, "Badge name is too long!")
|
|
|
|
|
|
|
|
if not badge_name_regex.fullmatch(name):
|
|
|
|
abort(400, "Invalid badge name!")
|
|
|
|
|
2023-03-16 06:27:58 +00:00
|
|
|
existing = g.db.query(BadgeDef).filter_by(name=name).one_or_none()
|
2022-10-12 10:04:34 +00:00
|
|
|
if existing: abort(409, "A badge with this name already exists!")
|
2022-05-04 23:09:46 +00:00
|
|
|
|
|
|
|
badge = BadgeDef(name=name, description=badge_def["description"])
|
2023-03-16 06:27:58 +00:00
|
|
|
g.db.add(badge)
|
|
|
|
g.db.flush()
|
2023-07-27 20:11:17 +00:00
|
|
|
filename = f'files/assets/images/{SITE_NAME}/badges/{badge.id}.webp'
|
2022-05-04 23:09:46 +00:00
|
|
|
copyfile(oldname, filename)
|
2023-05-12 16:15:14 +00:00
|
|
|
process_image(filename, v, resize=300, trim=True)
|
2023-07-27 23:07:18 +00:00
|
|
|
purge_files_in_cache(f"{SITE_FULL_IMAGES}/i/{SITE_NAME}/badges/{badge.id}.webp")
|
2023-08-16 22:13:08 +00:00
|
|
|
cache.delete_memoized(badge_list)
|
2022-05-04 23:09:46 +00:00
|
|
|
except Exception as e:
|
2022-10-11 13:01:39 +00:00
|
|
|
abort(400, str(e))
|
2023-03-17 17:40:55 +00:00
|
|
|
body = body.replace(f'[{file.filename}]', f' {image} ', 1)
|
2022-05-04 23:09:46 +00:00
|
|
|
elif file.content_type.startswith('video/'):
|
2023-03-17 17:40:55 +00:00
|
|
|
body = body.replace(f'[{file.filename}]', f' {process_video(file, v)} ', 1)
|
2022-05-22 22:15:29 +00:00
|
|
|
elif file.content_type.startswith('audio/'):
|
2023-03-17 17:40:55 +00:00
|
|
|
body = body.replace(f'[{file.filename}]', f' {SITE_FULL}{process_audio(file, v)} ', 1)
|
2022-06-18 15:53:34 +00:00
|
|
|
else:
|
2022-06-19 16:56:45 +00:00
|
|
|
abort(415)
|
2022-05-04 23:09:46 +00:00
|
|
|
|
2023-07-30 06:16:01 +00:00
|
|
|
body = body.replace('\n ', '\n').replace('\r', '')
|
2023-07-30 06:20:02 +00:00
|
|
|
body = body[:COMMENT_BODY_LENGTH_LIMIT].strip()
|
2023-07-30 06:16:01 +00:00
|
|
|
|
|
|
|
if v.admin_level >= PERMS['USE_ADMIGGER_THREADS'] and posting_to_post and post_target.id == SNAPPY_THREAD and level == 1:
|
|
|
|
with open(f"snappy_{SITE_NAME}.txt", "r+", encoding="utf-8") as f:
|
|
|
|
body_for_checking = '\n{[para]}\n' + body + '\n{[para]}\n'
|
|
|
|
if body_for_checking in f.read():
|
|
|
|
abort(400, "Snappy quote already exists!")
|
2023-08-04 12:42:17 +00:00
|
|
|
f.write('\n{[para]}\n' + body)
|
2022-05-22 10:23:02 +00:00
|
|
|
|
2022-08-27 03:22:57 +00:00
|
|
|
body_for_sanitize = body
|
2022-12-09 03:35:28 +00:00
|
|
|
if v.owoify: body_for_sanitize = owoify(body_for_sanitize)
|
2023-08-12 18:38:41 +00:00
|
|
|
if v.marsify and not v.chud: body_for_sanitize = marsify(body_for_sanitize)
|
2023-06-26 14:38:48 +00:00
|
|
|
if v.sharpen: body_for_sanitize = sharpen(body_for_sanitize)
|
2022-08-27 03:22:57 +00:00
|
|
|
|
2023-06-30 19:33:18 +00:00
|
|
|
body_html = sanitize(body_for_sanitize, limit_pings=5, showmore=(not v.marseyawarded), count_emojis=not v.marsify)
|
2022-05-04 23:09:46 +00:00
|
|
|
|
2023-06-23 11:07:47 +00:00
|
|
|
if post_target.id not in ADMIGGER_THREADS and not (v.chud and v.chud_phrase in body.lower()):
|
2023-03-16 06:27:58 +00:00
|
|
|
existing = g.db.query(Comment.id).filter(
|
2022-12-05 01:04:44 +00:00
|
|
|
Comment.author_id == v.id,
|
|
|
|
Comment.deleted_utc == 0,
|
|
|
|
Comment.parent_comment_id == parent_comment_id,
|
2023-06-23 13:46:42 +00:00
|
|
|
Comment.parent_post == post_target.id if posting_to_post else None,
|
|
|
|
Comment.wall_user_id == post_target.id if not posting_to_post else None,
|
2022-12-05 01:04:44 +00:00
|
|
|
Comment.body_html == body_html
|
|
|
|
).first()
|
2023-02-07 02:34:11 +00:00
|
|
|
if existing: abort(409, f"You already made that comment: /comment/{existing.id}#context")
|
2022-05-04 23:09:46 +00:00
|
|
|
|
2022-10-12 05:11:20 +00:00
|
|
|
execute_antispam_comment_check(body, v)
|
2022-11-14 03:48:52 +00:00
|
|
|
execute_antispam_duplicate_comment_check(v, body_html)
|
2022-05-04 23:09:46 +00:00
|
|
|
|
2023-07-28 23:00:50 +00:00
|
|
|
if v.marseyawarded and marseyaward_body_regex.search(body_html) and not (posting_to_post and post_target.id in ADMIGGER_THREADS):
|
2022-12-09 03:35:28 +00:00
|
|
|
abort(403, "You can only type marseys!")
|
|
|
|
|
2023-04-29 13:33:29 +00:00
|
|
|
if len(body_html) > COMMENT_BODY_HTML_LENGTH_LIMIT:
|
|
|
|
abort(400, "Comment too long!")
|
2022-08-15 18:11:41 +00:00
|
|
|
|
2023-07-07 23:18:03 +00:00
|
|
|
is_bot = v.client is not None and v.id not in BOT_SYMBOL_HIDDEN
|
2022-12-09 03:35:28 +00:00
|
|
|
|
2023-06-23 13:46:42 +00:00
|
|
|
chudded = v.chud and not (posting_to_post and post_target.sub == 'chudrama')
|
2023-06-23 13:14:23 +00:00
|
|
|
|
2022-05-04 23:09:46 +00:00
|
|
|
c = Comment(author_id=v.id,
|
2023-06-23 13:46:42 +00:00
|
|
|
parent_post=post_target.id if posting_to_post else None,
|
|
|
|
wall_user_id=post_target.id if not posting_to_post else None,
|
2022-05-04 23:09:46 +00:00
|
|
|
parent_comment_id=parent_comment_id,
|
|
|
|
level=level,
|
2023-06-23 13:46:42 +00:00
|
|
|
over_18=post_target.over_18 if posting_to_post else False,
|
2022-05-04 23:09:46 +00:00
|
|
|
is_bot=is_bot,
|
|
|
|
app_id=v.client.application.id if v.client else None,
|
|
|
|
body_html=body_html,
|
2022-10-09 12:54:46 +00:00
|
|
|
body=body,
|
2022-12-19 16:19:33 +00:00
|
|
|
ghost=ghost,
|
2023-06-23 13:14:23 +00:00
|
|
|
chudded=chudded,
|
2023-08-14 11:00:29 +00:00
|
|
|
rainbowed=bool(v.rainbow),
|
|
|
|
queened=bool(v.queen),
|
|
|
|
sharpened=bool(v.sharpen),
|
|
|
|
)
|
2022-05-04 23:09:46 +00:00
|
|
|
|
|
|
|
c.upvotes = 1
|
2023-03-16 06:27:58 +00:00
|
|
|
g.db.add(c)
|
|
|
|
g.db.flush()
|
2022-05-04 23:09:46 +00:00
|
|
|
|
2023-02-28 22:09:16 +00:00
|
|
|
process_poll_options(v, c)
|
|
|
|
|
2022-10-21 00:28:05 +00:00
|
|
|
execute_blackjack(v, c, c.body, "comment")
|
2022-11-30 17:37:35 +00:00
|
|
|
execute_under_siege(v, c, c.body, "comment")
|
2022-09-27 02:44:06 +00:00
|
|
|
|
2022-05-04 23:09:46 +00:00
|
|
|
if c.level == 1: c.top_comment_id = c.id
|
|
|
|
else: c.top_comment_id = parent.top_comment_id
|
|
|
|
|
2023-03-23 12:50:01 +00:00
|
|
|
if not complies_with_chud(c):
|
2022-07-13 19:21:13 +00:00
|
|
|
c.is_banned = True
|
|
|
|
c.ban_reason = "AutoJanny"
|
2023-03-16 06:27:58 +00:00
|
|
|
g.db.add(c)
|
2022-05-04 23:09:46 +00:00
|
|
|
|
2023-06-23 11:07:47 +00:00
|
|
|
body = CHUD_MSG.format(username=v.username, type='comment', CHUD_PHRASE=v.chud_phrase)
|
2023-03-25 16:46:50 +00:00
|
|
|
body_jannied_html = sanitize(body)
|
2022-05-04 23:09:46 +00:00
|
|
|
|
2022-07-13 19:21:13 +00:00
|
|
|
c_jannied = Comment(author_id=AUTOJANNY_ID,
|
2023-06-23 13:46:42 +00:00
|
|
|
parent_post=post_target.id if posting_to_post else None,
|
|
|
|
wall_user_id=post_target.id if not posting_to_post else None,
|
2022-07-13 19:21:13 +00:00
|
|
|
distinguish_level=6,
|
|
|
|
parent_comment_id=c.id,
|
|
|
|
level=level+1,
|
|
|
|
is_bot=True,
|
|
|
|
body=body,
|
|
|
|
body_html=body_jannied_html,
|
|
|
|
top_comment_id=c.top_comment_id,
|
|
|
|
ghost=c.ghost
|
|
|
|
)
|
2022-05-04 23:09:46 +00:00
|
|
|
|
2023-03-16 06:27:58 +00:00
|
|
|
g.db.add(c_jannied)
|
|
|
|
g.db.flush()
|
2022-05-04 23:09:46 +00:00
|
|
|
|
2023-06-23 13:46:42 +00:00
|
|
|
if posting_to_post:
|
2023-02-18 21:59:17 +00:00
|
|
|
post_target.comment_count += 1
|
2023-03-16 06:27:58 +00:00
|
|
|
g.db.add(post_target)
|
2023-02-18 21:59:17 +00:00
|
|
|
|
2022-07-13 19:21:13 +00:00
|
|
|
n = Notification(comment_id=c_jannied.id, user_id=v.id)
|
2023-03-16 06:27:58 +00:00
|
|
|
g.db.add(n)
|
2022-05-04 23:09:46 +00:00
|
|
|
|
2023-06-23 17:47:08 +00:00
|
|
|
autojanny = g.db.get(User, AUTOJANNY_ID)
|
|
|
|
autojanny.comment_count += 1
|
|
|
|
g.db.add(autojanny)
|
|
|
|
|
2022-12-09 03:35:28 +00:00
|
|
|
execute_longpostbot(c, level, body, body_html, post_target, v)
|
|
|
|
execute_zozbot(c, level, post_target, v)
|
2022-07-13 19:17:17 +00:00
|
|
|
|
2022-07-13 19:21:13 +00:00
|
|
|
if not v.shadowbanned:
|
2023-06-24 20:31:12 +00:00
|
|
|
notify_users = NOTIFY_USERS(body, v, ghost=c.ghost, log_cost=c)
|
2022-06-27 19:13:19 +00:00
|
|
|
|
2023-03-02 00:32:51 +00:00
|
|
|
if notify_users == 'everyone':
|
|
|
|
alert_everyone(c.id)
|
|
|
|
else:
|
|
|
|
push_notif(notify_users, f'New mention of you by @{c.author_name}', c.body, c)
|
2023-02-24 02:50:46 +00:00
|
|
|
|
2023-06-23 13:46:42 +00:00
|
|
|
if c.level == 1 and posting_to_post:
|
2023-08-11 13:15:34 +00:00
|
|
|
subscriber_ids = [x[0] for x in g.db.query(Subscription.user_id).filter(Subscription.post_id == post_target.id, Subscription.user_id != v.id)]
|
2023-02-24 02:50:46 +00:00
|
|
|
|
2023-03-02 00:32:51 +00:00
|
|
|
notify_users.update(subscriber_ids)
|
2022-05-04 23:09:46 +00:00
|
|
|
|
2023-03-02 00:32:51 +00:00
|
|
|
push_notif(subscriber_ids, f'New comment in subscribed thread by @{c.author_name}', c.body, c)
|
2023-01-01 11:36:20 +00:00
|
|
|
|
2023-05-12 16:54:19 +00:00
|
|
|
if parent_user.id != v.id and notify_op:
|
2023-03-02 00:32:51 +00:00
|
|
|
notify_users.add(parent_user.id)
|
2022-07-13 19:17:17 +00:00
|
|
|
|
2023-05-12 22:29:34 +00:00
|
|
|
for x in notify_users-BOT_IDs:
|
2023-03-02 00:32:51 +00:00
|
|
|
n = Notification(comment_id=c.id, user_id=x)
|
2023-03-16 06:27:58 +00:00
|
|
|
g.db.add(n)
|
2022-05-04 23:09:46 +00:00
|
|
|
|
2023-09-01 07:51:20 +00:00
|
|
|
if parent_user.id != v.id and notify_op:
|
2023-03-02 00:32:51 +00:00
|
|
|
if isinstance(parent, User):
|
|
|
|
title = f"New comment on your wall by @{c.author_name}"
|
|
|
|
else:
|
|
|
|
title = f'New reply by @{c.author_name}'
|
2022-06-27 19:02:24 +00:00
|
|
|
|
2023-03-02 00:32:51 +00:00
|
|
|
if len(c.body) > PUSH_NOTIF_LIMIT: notifbody = c.body[:PUSH_NOTIF_LIMIT] + '...'
|
|
|
|
else: notifbody = c.body
|
2022-06-27 19:02:24 +00:00
|
|
|
|
2023-03-02 00:32:51 +00:00
|
|
|
push_notif({parent_user.id}, title, notifbody, c)
|
2022-05-04 23:09:46 +00:00
|
|
|
|
|
|
|
vote = CommentVote(user_id=v.id,
|
|
|
|
comment_id=c.id,
|
|
|
|
vote_type=1,
|
2023-03-12 09:40:30 +00:00
|
|
|
coins=0
|
2022-05-04 23:09:46 +00:00
|
|
|
)
|
2023-03-16 06:27:58 +00:00
|
|
|
g.db.add(vote)
|
2022-05-04 23:09:46 +00:00
|
|
|
cache.delete_memoized(comment_idlist)
|
|
|
|
|
2023-08-01 22:03:41 +00:00
|
|
|
if not (c.parent_post in ADMIGGER_THREADS and c.level == 1):
|
|
|
|
v.comment_count += 1
|
|
|
|
g.db.add(v)
|
2022-05-04 23:09:46 +00:00
|
|
|
|
|
|
|
c.voted = 1
|
|
|
|
|
2022-12-09 05:55:18 +00:00
|
|
|
check_for_treasure(c, body)
|
|
|
|
check_slots_command(c, v, v)
|
|
|
|
|
2023-07-23 14:41:39 +00:00
|
|
|
# Increment post count if not self-reply and not a spammy comment game
|
2022-12-09 05:55:18 +00:00
|
|
|
# Essentially a measure to make comment counts reflect "real" content
|
2023-06-23 13:46:42 +00:00
|
|
|
if (posting_to_post and not rts and not c.slots_result):
|
2022-12-09 05:55:18 +00:00
|
|
|
post_target.comment_count += 1
|
2023-07-25 22:37:54 +00:00
|
|
|
post_target.bump_utc = c.created_utc
|
2023-03-16 06:27:58 +00:00
|
|
|
g.db.add(post_target)
|
2022-10-30 00:36:23 +00:00
|
|
|
|
2022-11-26 05:52:37 +00:00
|
|
|
if c.level > 5:
|
2023-03-16 06:27:58 +00:00
|
|
|
n = g.db.query(Notification).filter_by(
|
2022-11-26 05:52:37 +00:00
|
|
|
comment_id=c.parent_comment.parent_comment.parent_comment.parent_comment_id,
|
|
|
|
user_id=c.parent_comment.author_id,
|
|
|
|
).one_or_none()
|
2023-03-16 06:27:58 +00:00
|
|
|
if n: g.db.delete(n)
|
2022-11-26 05:52:37 +00:00
|
|
|
|
2023-08-21 15:51:37 +00:00
|
|
|
g.db.flush()
|
|
|
|
|
2023-06-27 20:08:52 +00:00
|
|
|
if c.parent_post:
|
|
|
|
for sort in COMMENT_SORTS:
|
|
|
|
cache.delete(f'post_{c.parent_post}_{sort}')
|
2023-05-04 19:55:08 +00:00
|
|
|
|
2023-06-08 00:49:37 +00:00
|
|
|
if v.client: return c.json
|
2022-09-10 00:47:48 +00:00
|
|
|
return {"comment": render_template("comments.html", v=v, comments=[c])}
|
2022-05-04 23:09:46 +00:00
|
|
|
|
2022-12-29 10:39:10 +00:00
|
|
|
@app.post("/delete/comment/<int:cid>")
|
2023-02-27 05:33:45 +00:00
|
|
|
@limiter.limit('1/second', scope=rpath)
|
2023-04-02 06:52:26 +00:00
|
|
|
@limiter.limit('1/second', scope=rpath, key_func=get_ID)
|
2023-07-13 13:50:46 +00:00
|
|
|
@limiter.limit(DEFAULT_RATELIMIT, deduct_when=lambda response: response.status_code < 400)
|
|
|
|
@limiter.limit(DEFAULT_RATELIMIT, deduct_when=lambda response: response.status_code < 400, key_func=get_ID)
|
2022-05-04 23:09:46 +00:00
|
|
|
@auth_required
|
|
|
|
def delete_comment(cid, v):
|
2022-12-12 20:45:11 +00:00
|
|
|
if v.id == 253: abort(403)
|
2022-05-04 23:09:46 +00:00
|
|
|
c = get_comment(cid, v=v)
|
|
|
|
if not c.deleted_utc:
|
|
|
|
if c.author_id != v.id: abort(403)
|
|
|
|
c.deleted_utc = int(time.time())
|
2023-03-16 06:27:58 +00:00
|
|
|
g.db.add(c)
|
2022-05-04 23:09:46 +00:00
|
|
|
|
2023-08-01 22:03:41 +00:00
|
|
|
if not (c.parent_post in ADMIGGER_THREADS and c.level == 1):
|
|
|
|
v.comment_count -= 1
|
|
|
|
g.db.add(v)
|
|
|
|
|
|
|
|
cache.delete_memoized(comment_idlist)
|
2023-08-15 22:02:02 +00:00
|
|
|
|
|
|
|
if c.parent_post:
|
|
|
|
for sort in COMMENT_SORTS:
|
|
|
|
cache.delete(f'post_{c.parent_post}_{sort}')
|
|
|
|
|
2022-05-04 23:09:46 +00:00
|
|
|
return {"message": "Comment deleted!"}
|
|
|
|
|
2022-12-29 10:39:10 +00:00
|
|
|
@app.post("/undelete/comment/<int:cid>")
|
2023-02-27 05:33:45 +00:00
|
|
|
@limiter.limit('1/second', scope=rpath)
|
2023-04-02 06:52:26 +00:00
|
|
|
@limiter.limit('1/second', scope=rpath, key_func=get_ID)
|
2023-07-13 13:50:46 +00:00
|
|
|
@limiter.limit(DEFAULT_RATELIMIT, deduct_when=lambda response: response.status_code < 400)
|
|
|
|
@limiter.limit(DEFAULT_RATELIMIT, deduct_when=lambda response: response.status_code < 400, key_func=get_ID)
|
2022-05-04 23:09:46 +00:00
|
|
|
@auth_required
|
|
|
|
def undelete_comment(cid, v):
|
|
|
|
c = get_comment(cid, v=v)
|
|
|
|
if c.deleted_utc:
|
|
|
|
if c.author_id != v.id: abort(403)
|
|
|
|
c.deleted_utc = 0
|
2023-03-16 06:27:58 +00:00
|
|
|
g.db.add(c)
|
2023-08-01 22:03:41 +00:00
|
|
|
|
|
|
|
if not (c.parent_post in ADMIGGER_THREADS and c.level == 1):
|
|
|
|
v.comment_count += 1
|
|
|
|
g.db.add(v)
|
|
|
|
|
2022-05-04 23:09:46 +00:00
|
|
|
cache.delete_memoized(comment_idlist)
|
2023-08-15 22:02:02 +00:00
|
|
|
|
|
|
|
if c.parent_post:
|
|
|
|
for sort in COMMENT_SORTS:
|
|
|
|
cache.delete(f'post_{c.parent_post}_{sort}')
|
|
|
|
|
2022-05-04 23:09:46 +00:00
|
|
|
return {"message": "Comment undeleted!"}
|
|
|
|
|
2022-12-29 10:39:10 +00:00
|
|
|
@app.post("/pin_comment/<int:cid>")
|
2022-10-11 07:29:24 +00:00
|
|
|
@feature_required('PINS')
|
2023-02-27 05:33:45 +00:00
|
|
|
@limiter.limit('1/second', scope=rpath)
|
2023-04-02 06:52:26 +00:00
|
|
|
@limiter.limit('1/second', scope=rpath, key_func=get_ID)
|
2023-07-13 13:50:46 +00:00
|
|
|
@limiter.limit(DEFAULT_RATELIMIT, deduct_when=lambda response: response.status_code < 400)
|
|
|
|
@limiter.limit(DEFAULT_RATELIMIT, deduct_when=lambda response: response.status_code < 400, key_func=get_ID)
|
2022-11-14 15:11:05 +00:00
|
|
|
@auth_required
|
2022-05-04 23:09:46 +00:00
|
|
|
def pin_comment(cid, v):
|
2023-01-01 11:36:20 +00:00
|
|
|
|
2022-05-04 23:09:46 +00:00
|
|
|
comment = get_comment(cid, v=v)
|
2023-01-01 11:36:20 +00:00
|
|
|
|
2022-05-26 23:08:23 +00:00
|
|
|
if not comment.stickied:
|
2022-05-04 23:09:46 +00:00
|
|
|
if v.id != comment.post.author_id: abort(403)
|
2023-01-01 11:36:20 +00:00
|
|
|
|
2022-05-26 23:08:23 +00:00
|
|
|
if comment.post.ghost: comment.stickied = "(OP)"
|
|
|
|
else: comment.stickied = v.username + " (OP)"
|
2022-05-04 23:09:46 +00:00
|
|
|
|
2023-03-16 06:27:58 +00:00
|
|
|
g.db.add(comment)
|
2022-05-04 23:09:46 +00:00
|
|
|
|
|
|
|
if v.id != comment.author_id:
|
2022-11-25 21:50:21 +00:00
|
|
|
if comment.post.ghost: message = f"OP has pinned your [comment]({comment.shortlink})"
|
|
|
|
else: message = f"@{v.username} (OP) has pinned your [comment]({comment.shortlink})"
|
2022-05-04 23:09:46 +00:00
|
|
|
send_repeatable_notification(comment.author_id, message)
|
|
|
|
|
|
|
|
return {"message": "Comment pinned!"}
|
2023-01-01 11:36:20 +00:00
|
|
|
|
2022-05-04 23:09:46 +00:00
|
|
|
|
2022-12-29 10:39:10 +00:00
|
|
|
@app.post("/unpin_comment/<int:cid>")
|
2023-02-27 05:33:45 +00:00
|
|
|
@limiter.limit('1/second', scope=rpath)
|
2023-04-02 06:52:26 +00:00
|
|
|
@limiter.limit('1/second', scope=rpath, key_func=get_ID)
|
2023-07-13 13:50:46 +00:00
|
|
|
@limiter.limit(DEFAULT_RATELIMIT, deduct_when=lambda response: response.status_code < 400)
|
|
|
|
@limiter.limit(DEFAULT_RATELIMIT, deduct_when=lambda response: response.status_code < 400, key_func=get_ID)
|
2022-05-04 23:09:46 +00:00
|
|
|
@auth_required
|
|
|
|
def unpin_comment(cid, v):
|
2023-01-01 11:36:20 +00:00
|
|
|
|
2022-05-04 23:09:46 +00:00
|
|
|
comment = get_comment(cid, v=v)
|
2023-01-01 11:36:20 +00:00
|
|
|
|
2022-05-26 23:08:23 +00:00
|
|
|
if comment.stickied:
|
2022-05-04 23:09:46 +00:00
|
|
|
if v.id != comment.post.author_id: abort(403)
|
|
|
|
|
2023-01-01 11:36:20 +00:00
|
|
|
if not comment.stickied.endswith(" (OP)"):
|
2022-10-12 15:55:42 +00:00
|
|
|
abort(403, "You can only unpin comments you have pinned!")
|
2022-05-04 23:09:46 +00:00
|
|
|
|
2022-05-26 23:08:23 +00:00
|
|
|
comment.stickied = None
|
2023-03-16 06:27:58 +00:00
|
|
|
g.db.add(comment)
|
2022-05-04 23:09:46 +00:00
|
|
|
|
|
|
|
if v.id != comment.author_id:
|
2022-11-25 21:50:21 +00:00
|
|
|
message = f"@{v.username} (OP) has unpinned your [comment]({comment.shortlink})"
|
2022-05-04 23:09:46 +00:00
|
|
|
send_repeatable_notification(comment.author_id, message)
|
|
|
|
return {"message": "Comment unpinned!"}
|
|
|
|
|
|
|
|
|
2022-12-29 10:39:10 +00:00
|
|
|
@app.post("/save_comment/<int:cid>")
|
2023-02-27 05:33:45 +00:00
|
|
|
@limiter.limit('1/second', scope=rpath)
|
2023-04-02 06:52:26 +00:00
|
|
|
@limiter.limit('1/second', scope=rpath, key_func=get_ID)
|
2023-07-13 13:50:46 +00:00
|
|
|
@limiter.limit(DEFAULT_RATELIMIT, deduct_when=lambda response: response.status_code < 400)
|
|
|
|
@limiter.limit(DEFAULT_RATELIMIT, deduct_when=lambda response: response.status_code < 400, key_func=get_ID)
|
2022-05-04 23:09:46 +00:00
|
|
|
@auth_required
|
|
|
|
def save_comment(cid, v):
|
|
|
|
|
2023-08-23 21:57:39 +00:00
|
|
|
comment = get_comment(cid)
|
2022-05-04 23:09:46 +00:00
|
|
|
|
2023-08-23 21:57:39 +00:00
|
|
|
save = g.db.query(CommentSaveRelationship).filter_by(user_id=v.id, comment_id=comment.id).one_or_none()
|
2022-05-04 23:09:46 +00:00
|
|
|
|
|
|
|
if not save:
|
|
|
|
new_save=CommentSaveRelationship(user_id=v.id, comment_id=comment.id)
|
2023-03-16 06:27:58 +00:00
|
|
|
g.db.add(new_save)
|
2022-05-04 23:09:46 +00:00
|
|
|
|
|
|
|
|
|
|
|
return {"message": "Comment saved!"}
|
|
|
|
|
2022-12-29 10:39:10 +00:00
|
|
|
@app.post("/unsave_comment/<int:cid>")
|
2023-02-27 05:33:45 +00:00
|
|
|
@limiter.limit('1/second', scope=rpath)
|
2023-04-02 06:52:26 +00:00
|
|
|
@limiter.limit('1/second', scope=rpath, key_func=get_ID)
|
2023-07-13 13:50:46 +00:00
|
|
|
@limiter.limit(DEFAULT_RATELIMIT, deduct_when=lambda response: response.status_code < 400)
|
|
|
|
@limiter.limit(DEFAULT_RATELIMIT, deduct_when=lambda response: response.status_code < 400, key_func=get_ID)
|
2022-05-04 23:09:46 +00:00
|
|
|
@auth_required
|
|
|
|
def unsave_comment(cid, v):
|
|
|
|
|
2023-08-23 21:57:39 +00:00
|
|
|
comment = get_comment(cid)
|
2022-05-04 23:09:46 +00:00
|
|
|
|
2023-08-23 21:57:39 +00:00
|
|
|
save = g.db.query(CommentSaveRelationship).filter_by(user_id=v.id, comment_id=comment.id).one_or_none()
|
2022-05-04 23:09:46 +00:00
|
|
|
|
|
|
|
if save:
|
2023-03-16 06:27:58 +00:00
|
|
|
g.db.delete(save)
|
2022-05-04 23:09:46 +00:00
|
|
|
|
|
|
|
return {"message": "Comment unsaved!"}
|
|
|
|
|
|
|
|
|
|
|
|
def diff_words(answer, guess):
|
|
|
|
"""
|
|
|
|
Return a list of numbers corresponding to the char's relevance.
|
|
|
|
-1 means char is not in solution or the character appears too many times in the guess
|
|
|
|
0 means char is in solution but in the wrong spot
|
|
|
|
1 means char is in the correct spot
|
|
|
|
"""
|
|
|
|
diffs = [
|
|
|
|
1 if cs == cg else -1 for cs, cg in zip(answer, guess)
|
|
|
|
]
|
|
|
|
char_freq = Counter(
|
|
|
|
c_guess for c_guess, diff, in zip(answer, diffs) if diff == -1
|
|
|
|
)
|
|
|
|
for i, cg in enumerate(guess):
|
|
|
|
if diffs[i] == -1 and cg in char_freq and char_freq[cg] > 0:
|
|
|
|
char_freq[cg] -= 1
|
|
|
|
diffs[i] = 0
|
|
|
|
return diffs
|
|
|
|
|
|
|
|
|
2022-12-29 10:39:10 +00:00
|
|
|
@app.post("/toggle_comment_nsfw/<int:cid>")
|
2023-02-01 18:52:34 +00:00
|
|
|
@feature_required('NSFW_MARKING')
|
2023-02-27 05:33:45 +00:00
|
|
|
@limiter.limit('1/second', scope=rpath)
|
2023-04-02 06:52:26 +00:00
|
|
|
@limiter.limit('1/second', scope=rpath, key_func=get_ID)
|
2023-07-13 13:50:46 +00:00
|
|
|
@limiter.limit(DEFAULT_RATELIMIT, deduct_when=lambda response: response.status_code < 400)
|
|
|
|
@limiter.limit(DEFAULT_RATELIMIT, deduct_when=lambda response: response.status_code < 400, key_func=get_ID)
|
2022-10-05 23:24:54 +00:00
|
|
|
@auth_required
|
|
|
|
def toggle_comment_nsfw(cid, v):
|
|
|
|
comment = get_comment(cid)
|
|
|
|
|
2023-08-31 10:46:07 +00:00
|
|
|
if comment.author_id != v.id and v.admin_level < PERMS['POST_COMMENT_MODERATION'] and not (comment.post.sub and v.mods(comment.post.sub)):
|
2022-10-05 23:24:54 +00:00
|
|
|
abort(403)
|
2023-01-01 11:36:20 +00:00
|
|
|
|
2023-06-29 19:51:32 +00:00
|
|
|
if comment.over_18 and v.is_permabanned:
|
2022-10-05 23:24:54 +00:00
|
|
|
abort(403)
|
|
|
|
|
|
|
|
comment.over_18 = not comment.over_18
|
2023-03-16 06:27:58 +00:00
|
|
|
g.db.add(comment)
|
2022-10-05 23:24:54 +00:00
|
|
|
|
|
|
|
if comment.author_id != v.id:
|
2022-10-06 00:57:08 +00:00
|
|
|
if v.admin_level >= PERMS['POST_COMMENT_MODERATION']:
|
2022-10-05 23:24:54 +00:00
|
|
|
ma = ModAction(
|
|
|
|
kind = "set_nsfw_comment" if comment.over_18 else "unset_nsfw_comment",
|
|
|
|
user_id = v.id,
|
|
|
|
target_comment_id = comment.id,
|
|
|
|
)
|
2023-03-16 06:27:58 +00:00
|
|
|
g.db.add(ma)
|
2022-10-05 23:24:54 +00:00
|
|
|
else:
|
|
|
|
ma = SubAction(
|
|
|
|
sub = comment.post.sub,
|
|
|
|
kind = "set_nsfw_comment" if comment.over_18 else "unset_nsfw_comment",
|
|
|
|
user_id = v.id,
|
|
|
|
target_comment_id = comment.id,
|
|
|
|
)
|
2023-03-16 06:27:58 +00:00
|
|
|
g.db.add(ma)
|
2022-10-05 23:24:54 +00:00
|
|
|
|
|
|
|
if comment.over_18: return {"message": "Comment has been marked as +18!"}
|
|
|
|
else: return {"message": "Comment has been unmarked as +18!"}
|
2023-02-28 22:22:59 +00:00
|
|
|
|
|
|
|
@app.post("/edit_comment/<int:cid>")
|
|
|
|
@limiter.limit('1/second', scope=rpath)
|
2023-04-02 06:52:26 +00:00
|
|
|
@limiter.limit('1/second', scope=rpath, key_func=get_ID)
|
2023-07-13 13:50:46 +00:00
|
|
|
@limiter.limit("10/minute;100/hour;200/day", deduct_when=lambda response: response.status_code < 400)
|
|
|
|
@limiter.limit("10/minute;100/hour;200/day", deduct_when=lambda response: response.status_code < 400, key_func=get_ID)
|
2023-02-28 22:22:59 +00:00
|
|
|
@is_not_permabanned
|
|
|
|
def edit_comment(cid, v):
|
|
|
|
c = get_comment(cid, v=v)
|
|
|
|
|
2023-03-06 20:22:15 +00:00
|
|
|
if time.time() - c.created_utc > 7*24*60*60 and not (c.post and c.post.private) \
|
2023-07-07 21:28:08 +00:00
|
|
|
and v.admin_level < PERMS["IGNORE_1WEEk_EDITING_LIMIT"] and v.id not in EXEMPT_FROM_1WEEK_EDITING_LIMIT:
|
2023-02-28 22:22:59 +00:00
|
|
|
abort(403, "You can't edit comments older than 1 week!")
|
|
|
|
|
2023-08-15 20:22:46 +00:00
|
|
|
if c.author_id != v.id and v.admin_level < PERMS['POST_COMMENT_EDITING']:
|
|
|
|
abort(403)
|
|
|
|
|
2023-06-23 13:46:42 +00:00
|
|
|
if not c.parent_post and not c.wall_user_id:
|
2023-02-28 22:22:59 +00:00
|
|
|
abort(403)
|
|
|
|
|
2023-07-29 19:13:37 +00:00
|
|
|
body = request.values.get("body", "")
|
2023-07-29 19:17:50 +00:00
|
|
|
body = body[:COMMENT_BODY_LENGTH_LIMIT].strip()
|
2023-02-28 22:22:59 +00:00
|
|
|
|
|
|
|
if len(body) < 1 and not (request.files.get("file") and not g.is_tor):
|
|
|
|
abort(400, "You have to actually type something!")
|
|
|
|
|
|
|
|
if body != c.body or request.files.get("file") and not g.is_tor:
|
2023-08-15 20:34:06 +00:00
|
|
|
|
|
|
|
if v.id == c.author_id:
|
|
|
|
if v.longpost and (len(body) < 280 or ' [](' in body or body.startswith('[](')):
|
|
|
|
abort(403, "You have to type more than 280 characters!")
|
|
|
|
elif v.bird and len(body) > 140:
|
|
|
|
abort(403, "You have to type less than 140 characters!")
|
2023-02-28 22:22:59 +00:00
|
|
|
|
|
|
|
execute_antispam_comment_check(body, v)
|
|
|
|
|
|
|
|
body = process_files(request.files, v, body)
|
2023-07-30 06:20:02 +00:00
|
|
|
body = body[:COMMENT_BODY_LENGTH_LIMIT].strip() # process_files potentially adds characters to the post
|
2023-02-28 22:22:59 +00:00
|
|
|
|
|
|
|
body_for_sanitize = body
|
2023-08-15 20:34:06 +00:00
|
|
|
|
|
|
|
if v.id == c.author_id:
|
|
|
|
if v.owoify:
|
|
|
|
body_for_sanitize = owoify(body_for_sanitize)
|
|
|
|
if v.marsify and not v.chud:
|
|
|
|
body_for_sanitize = marsify(body_for_sanitize)
|
|
|
|
|
2023-08-14 11:00:29 +00:00
|
|
|
if c.sharpened:
|
2023-06-26 14:38:48 +00:00
|
|
|
body_for_sanitize = sharpen(body_for_sanitize)
|
2023-02-28 22:22:59 +00:00
|
|
|
|
2023-06-30 19:33:18 +00:00
|
|
|
body_html = sanitize(body_for_sanitize, golden=False, limit_pings=5, showmore=(not v.marseyawarded))
|
2023-02-28 22:22:59 +00:00
|
|
|
|
|
|
|
if len(body_html) > COMMENT_BODY_HTML_LENGTH_LIMIT: abort(400)
|
|
|
|
|
2023-08-15 20:34:06 +00:00
|
|
|
if v.id == c.author_id and v.marseyawarded and marseyaward_body_regex.search(body_html):
|
2023-02-28 22:22:59 +00:00
|
|
|
abort(403, "You can only type marseys!")
|
|
|
|
|
2023-07-16 11:56:24 +00:00
|
|
|
oldtext = c.body
|
|
|
|
|
2023-02-28 22:22:59 +00:00
|
|
|
c.body = body
|
|
|
|
|
|
|
|
c.body_html = body_html
|
|
|
|
|
|
|
|
execute_blackjack(v, c, c.body, "comment")
|
|
|
|
|
2023-03-23 12:50:01 +00:00
|
|
|
if not complies_with_chud(c):
|
2023-06-23 11:07:47 +00:00
|
|
|
abort(403, f'You have to include "{v.chud_phrase}" in your comment!')
|
2023-02-28 22:22:59 +00:00
|
|
|
|
2023-06-29 19:22:12 +00:00
|
|
|
process_poll_options(v, c)
|
2023-02-28 22:22:59 +00:00
|
|
|
|
2023-08-15 20:34:06 +00:00
|
|
|
if v.id == c.author_id:
|
|
|
|
if int(time.time()) - c.created_utc > 60 * 3:
|
|
|
|
c.edited_utc = int(time.time())
|
|
|
|
else:
|
|
|
|
ma=ModAction(
|
|
|
|
kind="edit_comment",
|
|
|
|
user_id=v.id,
|
|
|
|
target_comment_id=c.id
|
|
|
|
)
|
|
|
|
g.db.add(ma)
|
2023-02-28 22:22:59 +00:00
|
|
|
|
2023-03-16 06:27:58 +00:00
|
|
|
g.db.add(c)
|
2023-02-28 22:22:59 +00:00
|
|
|
|
2023-07-16 11:56:24 +00:00
|
|
|
notify_users = NOTIFY_USERS(body, v, oldtext=oldtext, ghost=c.ghost, log_cost=c)
|
2023-06-29 19:22:12 +00:00
|
|
|
|
|
|
|
if notify_users == 'everyone':
|
|
|
|
alert_everyone(c.id)
|
|
|
|
else:
|
|
|
|
for x in notify_users-BOT_IDs:
|
|
|
|
notif = g.db.query(Notification).filter_by(comment_id=c.id, user_id=x).one_or_none()
|
|
|
|
if not notif:
|
|
|
|
n = Notification(comment_id=c.id, user_id=x)
|
|
|
|
g.db.add(n)
|
2023-08-20 02:36:43 +00:00
|
|
|
push_notif({x}, f'New mention of you by @{c.author_name}', c.body, c)
|
2023-06-29 19:22:12 +00:00
|
|
|
|
2023-02-28 22:22:59 +00:00
|
|
|
|
2023-03-16 06:27:58 +00:00
|
|
|
g.db.flush()
|
2023-08-14 07:04:48 +00:00
|
|
|
return {
|
|
|
|
"body": c.body,
|
|
|
|
"comment": c.realbody(v),
|
|
|
|
"ping_cost": c.ping_cost,
|
|
|
|
"edited_string": c.edited_string,
|
|
|
|
}
|