2022-05-04 23:09:46 +00:00
|
|
|
from files.helpers.wrappers import *
|
|
|
|
from files.helpers.get import *
|
2022-07-04 02:19:43 +00:00
|
|
|
from files.helpers.alerts import *
|
2022-05-04 23:09:46 +00:00
|
|
|
from flask import g
|
|
|
|
from files.__main__ import app, limiter
|
|
|
|
from os import path
|
|
|
|
from files.helpers.sanitize import filter_emojis_only
|
|
|
|
|
|
|
|
@app.post("/report/post/<pid>")
|
|
|
|
@limiter.limit("1/second;30/minute;200/hour;1000/day")
|
|
|
|
@limiter.limit("1/second;30/minute;200/hour;1000/day", key_func=lambda:f'{request.host}-{session.get("lo_user")}')
|
|
|
|
@auth_required
|
|
|
|
def api_flag_post(pid, v):
|
|
|
|
|
|
|
|
post = get_post(pid)
|
|
|
|
|
|
|
|
reason = request.values.get("reason", "").strip()
|
|
|
|
|
|
|
|
if blackjack and any(i in reason.lower() for i in blackjack.split()):
|
|
|
|
v.shadowbanned = 'AutoJanny'
|
|
|
|
send_repeatable_notification(CARP_ID, f"reports on {post.permalink}")
|
|
|
|
|
|
|
|
reason = reason[:100]
|
|
|
|
|
|
|
|
if not reason.startswith('!'):
|
|
|
|
existing = g.db.query(Flag.post_id).filter_by(user_id=v.id, post_id=post.id).one_or_none()
|
|
|
|
if existing: return "", 409
|
|
|
|
|
|
|
|
reason = filter_emojis_only(reason)
|
|
|
|
|
|
|
|
if len(reason) > 350: return {"error": "Too long."}
|
|
|
|
|
|
|
|
if reason.startswith('!') and v.admin_level > 1:
|
|
|
|
post.flair = reason[1:]
|
|
|
|
g.db.add(post)
|
|
|
|
ma=ModAction(
|
|
|
|
kind="flair_post",
|
|
|
|
user_id=v.id,
|
|
|
|
target_submission_id=post.id,
|
|
|
|
_note=f'"{post.flair}"'
|
|
|
|
)
|
|
|
|
g.db.add(ma)
|
2022-07-04 02:19:43 +00:00
|
|
|
elif reason.startswith('/h/') and v.admin_level >= 2 or v.id == post.author_id:
|
|
|
|
|
|
|
|
sub_from = post.sub
|
|
|
|
sub_to = reason[3:].strip().lower()
|
|
|
|
sub_to = g.db.query(Sub).filter_by(name=sub_to).one_or_none()
|
|
|
|
sub_to = sub_to.name if sub_to else None
|
|
|
|
|
|
|
|
if sub_from == sub_to: abort(400)
|
|
|
|
post.sub = sub_to
|
|
|
|
g.db.add(post)
|
|
|
|
|
|
|
|
if v.admin_level and v.id != post.author_id:
|
2022-07-04 02:54:03 +00:00
|
|
|
sub_from_str = 'main feed' if sub_from is None else \
|
2022-07-04 02:19:43 +00:00
|
|
|
f'<a href="/h/{sub_from}">/h/{sub_from}</a>'
|
2022-07-04 02:54:03 +00:00
|
|
|
sub_to_str = 'main feed' if sub_to is None else \
|
2022-07-04 02:19:43 +00:00
|
|
|
f'<a href="/h/{sub_to}">/h/{sub_to}</a>'
|
|
|
|
ma = ModAction(
|
|
|
|
kind='move_hole',
|
|
|
|
user_id=v.id,
|
|
|
|
target_submission_id=post.id,
|
|
|
|
_note=f'{sub_from_str} → {sub_to_str}',
|
|
|
|
)
|
|
|
|
g.db.add(ma)
|
|
|
|
|
|
|
|
return {"message": f"Post moved to /h/{post.sub}"}
|
2022-05-04 23:09:46 +00:00
|
|
|
else:
|
|
|
|
flag = Flag(post_id=post.id, user_id=v.id, reason=reason)
|
|
|
|
g.db.add(flag)
|
|
|
|
|
|
|
|
|
|
|
|
return {"message": "Post reported!"}
|
|
|
|
|
|
|
|
|
|
|
|
@app.post("/report/comment/<cid>")
|
|
|
|
@limiter.limit("1/second;30/minute;200/hour;1000/day")
|
|
|
|
@limiter.limit("1/second;30/minute;200/hour;1000/day", key_func=lambda:f'{request.host}-{session.get("lo_user")}')
|
|
|
|
@auth_required
|
|
|
|
def api_flag_comment(cid, v):
|
|
|
|
|
|
|
|
comment = get_comment(cid)
|
|
|
|
|
|
|
|
existing = g.db.query(CommentFlag.comment_id).filter_by( user_id=v.id, comment_id=comment.id).one_or_none()
|
|
|
|
if existing: return "", 409
|
|
|
|
|
|
|
|
reason = request.values.get("reason", "").strip()
|
|
|
|
|
|
|
|
if blackjack and any(i in reason.lower() for i in blackjack.split()):
|
|
|
|
v.shadowbanned = 'AutoJanny'
|
|
|
|
send_repeatable_notification(CARP_ID, f"reports on {comment.permalink}")
|
|
|
|
|
|
|
|
reason = reason[:100]
|
|
|
|
|
|
|
|
reason = filter_emojis_only(reason)
|
|
|
|
|
|
|
|
if len(reason) > 350: return {"error": "Too long."}
|
|
|
|
|
|
|
|
flag = CommentFlag(comment_id=comment.id, user_id=v.id, reason=reason)
|
|
|
|
|
|
|
|
g.db.add(flag)
|
|
|
|
|
|
|
|
return {"message": "Comment reported!"}
|
|
|
|
|
|
|
|
|
|
|
|
@app.post('/del_report/post/<pid>/<uid>')
|
|
|
|
@limiter.limit("1/second;30/minute;200/hour;1000/day")
|
2022-07-07 03:45:33 +00:00
|
|
|
@admin_level_required(PERMS['FLAGS_REMOVE'])
|
2022-05-04 23:09:46 +00:00
|
|
|
def remove_report_post(v, pid, uid):
|
|
|
|
|
|
|
|
try:
|
|
|
|
pid = int(pid)
|
|
|
|
uid = int(uid)
|
|
|
|
except: abort(400)
|
|
|
|
|
2022-06-07 10:32:48 +00:00
|
|
|
report = g.db.query(Flag).filter_by(post_id=pid, user_id=uid).one_or_none()
|
2022-05-04 23:09:46 +00:00
|
|
|
|
2022-06-07 10:32:48 +00:00
|
|
|
if report:
|
|
|
|
g.db.delete(report)
|
2022-05-04 23:09:46 +00:00
|
|
|
|
2022-06-07 10:32:48 +00:00
|
|
|
ma=ModAction(
|
|
|
|
kind="delete_report",
|
|
|
|
user_id=v.id,
|
|
|
|
target_submission_id=pid
|
|
|
|
)
|
2022-05-04 23:09:46 +00:00
|
|
|
|
2022-06-07 10:32:48 +00:00
|
|
|
g.db.add(ma)
|
|
|
|
|
2022-05-04 23:09:46 +00:00
|
|
|
|
|
|
|
return {"message": "Report removed successfully!"}
|
|
|
|
|
|
|
|
|
|
|
|
@app.post('/del_report/comment/<cid>/<uid>')
|
|
|
|
@limiter.limit("1/second;30/minute;200/hour;1000/day")
|
2022-07-07 03:45:33 +00:00
|
|
|
@admin_level_required(PERMS['FLAGS_REMOVE'])
|
2022-05-04 23:09:46 +00:00
|
|
|
def remove_report_comment(v, cid, uid):
|
|
|
|
|
|
|
|
cid = int(cid)
|
|
|
|
uid = int(uid)
|
|
|
|
|
2022-06-07 10:32:48 +00:00
|
|
|
report = g.db.query(CommentFlag).filter_by(comment_id=cid, user_id=uid).one_or_none()
|
2022-05-04 23:09:46 +00:00
|
|
|
|
2022-06-07 10:32:48 +00:00
|
|
|
if report:
|
|
|
|
g.db.delete(report)
|
2022-05-04 23:09:46 +00:00
|
|
|
|
2022-06-07 10:32:48 +00:00
|
|
|
ma=ModAction(
|
|
|
|
kind="delete_report",
|
|
|
|
user_id=v.id,
|
|
|
|
target_comment_id=cid
|
|
|
|
)
|
2022-05-04 23:09:46 +00:00
|
|
|
|
2022-06-07 10:32:48 +00:00
|
|
|
g.db.add(ma)
|
2022-05-04 23:09:46 +00:00
|
|
|
|
|
|
|
|
2022-02-18 12:01:24 +00:00
|
|
|
return {"message": "Report removed successfully!"}
|