64 lines
1.9 KiB
Python
64 lines
1.9 KiB
Python
from flask import g
|
|
|
|
from files.__main__ import app, limiter
|
|
from files.classes.visstate import StateReport
|
|
from files.helpers.get import *
|
|
from files.helpers.sanitize import filter_emojis_only
|
|
from files.helpers.wrappers import *
|
|
|
|
|
|
@app.post("/report/post/<pid>")
|
|
@limiter.limit("1/second;30/minute;200/hour;1000/day")
|
|
@auth_required
|
|
def api_flag_post(pid, v):
|
|
post = get_post(pid)
|
|
reason = request.values.get("reason", "").strip()[:100]
|
|
reason = filter_emojis_only(reason)
|
|
|
|
if reason.startswith('!') and v.admin_level >= 2:
|
|
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)
|
|
else:
|
|
flag = Flag(post_id=post.id, user_id=v.id, reason=reason)
|
|
g.db.add(flag)
|
|
|
|
# We only want to notify if the user is not permabanned
|
|
if not v.is_suspended_permanently:
|
|
g.db.query(Submission) \
|
|
.where(Submission.id == post.id, Submission.state_report != StateReport.IGNORED) \
|
|
.update({Submission.state_report: StateReport.REPORTED})
|
|
|
|
g.db.commit()
|
|
|
|
return {"message": "Post reported!"}
|
|
|
|
|
|
@app.post("/report/comment/<cid>")
|
|
@limiter.limit("1/second;30/minute;200/hour;1000/day")
|
|
@auth_required
|
|
def api_flag_comment(cid, v):
|
|
comment = get_comment(cid)
|
|
reason = request.values.get("reason", "").strip()[:100]
|
|
reason = filter_emojis_only(reason)
|
|
|
|
flag = CommentFlag(comment_id=comment.id, user_id=v.id, reason=reason)
|
|
g.db.add(flag)
|
|
|
|
# We only want to notify if the user is not permabanned
|
|
# this should probably be a "reportbanned" flag that's applied manually that also clears their reports, but that's a lot more work
|
|
if not v.is_suspended_permanently and not v.shadowbanned:
|
|
g.db.query(Comment) \
|
|
.where(Comment.id == comment.id, Comment.state_report != StateReport.IGNORED) \
|
|
.update({Comment.state_report: StateReport.REPORTED})
|
|
|
|
|
|
g.db.commit()
|
|
|
|
return {"message": "Comment reported!"}
|