rDrama/files/routes/votes.py

259 lines
8.0 KiB
Python
Raw Normal View History

2021-10-15 14:08:27 +00:00
from files.helpers.wrappers import *
from files.helpers.get import *
2021-12-11 02:32:58 +00:00
from files.helpers.const import AUTOBETTER_ID
2021-10-15 14:08:27 +00:00
from files.classes import *
from flask import *
2021-10-20 23:17:53 +00:00
from files.__main__ import app, limiter, cache
2021-10-15 14:08:27 +00:00
from sqlalchemy.orm import joinedload
2021-11-30 14:31:26 +00:00
from os import environ
2021-10-15 14:08:27 +00:00
2021-11-30 14:31:26 +00:00
defaultcolor = environ.get("DEFAULT_COLOR").strip()
2021-11-30 14:18:16 +00:00
2021-10-15 14:08:27 +00:00
@app.get("/votes")
2021-11-27 19:41:37 +00:00
@limiter.limit("5/second;60/minute;200/hour")
2021-10-15 14:08:27 +00:00
@auth_desired
def admin_vote_info_get(v):
2021-12-20 00:27:25 +00:00
if not v or v.oldsite: template = ''
2021-12-19 13:01:28 +00:00
else: template = 'CHRISTMAS/'
2021-10-15 14:08:27 +00:00
link = request.values.get("link")
2021-12-19 13:01:28 +00:00
if not link: return render_template(f"{template}votes.html", v=v)
2021-10-15 14:08:27 +00:00
try:
if "t2_" in link: thing = get_post(int(link.split("t2_")[1]), v=v)
elif "t3_" in link: thing = get_comment(int(link.split("t3_")[1]), v=v)
else: abort(400)
except: abort(400)
if isinstance(thing, Submission):
2022-01-06 16:46:09 +00:00
if thing.author.shadowbanned and not (v and v.admin_level):
thing_id = g.db.query(Submission.id).filter_by(upvotes=thing.upvotes, downvotes=thing.downvotes).first()[0]
else: thing_id = thing.id
2021-10-15 14:08:27 +00:00
ups = g.db.query(Vote
).options(joinedload(Vote.user)
2022-01-06 16:46:09 +00:00
).filter_by(submission_id=thing_id, vote_type=1
2021-10-15 14:08:27 +00:00
).order_by(Vote.id).all()
downs = g.db.query(Vote
).options(joinedload(Vote.user)
2022-01-06 16:46:09 +00:00
).filter_by(submission_id=thing_id, vote_type=-1
2021-10-15 14:08:27 +00:00
).order_by(Vote.id).all()
elif isinstance(thing, Comment):
2022-01-06 16:46:09 +00:00
if thing.author.shadowbanned and not (v and v.admin_level):
thing_id = g.db.query(Comment.id).filter_by(upvotes=thing.upvotes, downvotes=thing.downvotes).first()[0]
else: thing_id = thing.id
2021-10-15 14:08:27 +00:00
ups = g.db.query(CommentVote
).options(joinedload(CommentVote.user)
2022-01-06 16:46:09 +00:00
).filter_by(comment_id=thing_id, vote_type=1
2021-10-15 14:08:27 +00:00
).order_by(CommentVote.id).all()
downs = g.db.query(CommentVote
).options(joinedload(CommentVote.user)
2022-01-06 16:46:09 +00:00
).filter_by(comment_id=thing_id, vote_type=-1
2021-10-15 14:08:27 +00:00
).order_by(CommentVote.id).all()
else: abort(400)
2021-12-20 00:27:25 +00:00
if not v or v.oldsite: template = ''
2021-12-19 13:01:28 +00:00
else: template = 'CHRISTMAS/'
2022-01-06 16:46:09 +00:00
2021-12-19 13:01:28 +00:00
return render_template(f"{template}votes.html",
2021-10-15 14:08:27 +00:00
v=v,
thing=thing,
ups=ups,
downs=downs,)
@app.post("/vote/post/<post_id>/<new>")
2021-12-01 18:48:04 +00:00
@limiter.limit("5/second;60/minute;600/hour")
2021-10-15 14:08:27 +00:00
@auth_required
def api_vote_post(post_id, new, v):
2022-01-06 16:46:09 +00:00
if new == "-1" and environ.get('DISABLE_DOWNVOTES') == '1': return {"error": "forbidden."}, 403
2021-11-16 01:49:49 +00:00
2021-10-15 14:08:27 +00:00
if new not in ["-1", "0", "1"]: abort(400)
2021-10-26 21:10:31 +00:00
if request.headers.get("Authorization"): abort(403)
2021-10-15 14:08:27 +00:00
new = int(new)
post = get_post(post_id)
2022-01-02 00:06:46 +00:00
existing = g.db.query(Vote).filter_by(user_id=v.id, submission_id=post.id).one_or_none()
2021-10-15 14:08:27 +00:00
if existing and existing.vote_type == new: return "", 204
if existing:
if existing.vote_type == 0 and new != 0:
2021-12-27 01:08:06 +00:00
post.author.coins += 1
2021-10-15 14:08:27 +00:00
post.author.truecoins += 1
g.db.add(post.author)
existing.vote_type = new
g.db.add(existing)
elif existing.vote_type != 0 and new == 0:
2021-12-27 01:08:06 +00:00
post.author.coins -= 1
2021-10-15 14:08:27 +00:00
post.author.truecoins -= 1
g.db.add(post.author)
g.db.delete(existing)
else:
existing.vote_type = new
g.db.add(existing)
elif new != 0:
2021-12-27 01:08:06 +00:00
post.author.coins += 1
2021-10-15 14:08:27 +00:00
post.author.truecoins += 1
g.db.add(post.author)
2021-12-10 17:31:32 +00:00
real = (bool(v.profileurl) or bool(v.customtitle) or v.namecolor != defaultcolor) and not v.agendaposter and not v.shadowbanned
2021-10-15 14:08:27 +00:00
vote = Vote(user_id=v.id,
vote_type=new,
submission_id=post_id,
2021-11-30 14:18:16 +00:00
app_id=v.client.application.id if v.client else None,
real = real
2021-10-15 14:08:27 +00:00
)
g.db.add(vote)
2021-10-21 20:50:00 +00:00
2021-12-01 01:10:36 +00:00
try:
g.db.flush()
post.upvotes = g.db.query(Vote.id).filter_by(submission_id=post.id, vote_type=1).count()
post.downvotes = g.db.query(Vote.id).filter_by(submission_id=post.id, vote_type=-1).count()
2021-12-26 01:03:21 +00:00
post.realupvotes = g.db.query(Vote.id).filter_by(submission_id=post.id, vote_type=1, real=True).count() - g.db.query(Vote.id).filter_by(submission_id=post.id, vote_type=1, real=False).count() + g.db.query(Vote.id).filter_by(submission_id=post.id, vote_type=-1).count()
2021-12-31 23:45:27 +00:00
if post.author.progressivestack: post.realupvotes *= 2
2021-12-01 01:10:36 +00:00
g.db.add(post)
g.db.commit()
except: g.db.rollback()
2021-10-15 14:08:27 +00:00
return "", 204
@app.post("/vote/comment/<comment_id>/<new>")
2021-12-01 18:48:04 +00:00
@limiter.limit("5/second;60/minute;600/hour")
2021-10-15 14:08:27 +00:00
@auth_required
def api_vote_comment(comment_id, new, v):
2022-01-06 16:46:09 +00:00
if new == "-1" and environ.get('DISABLE_DOWNVOTES') == '1': return {"error": "forbidden."}, 403
2021-11-16 01:49:49 +00:00
2021-10-15 14:08:27 +00:00
if new not in ["-1", "0", "1"]: abort(400)
2021-10-26 21:10:31 +00:00
if request.headers.get("Authorization"): abort(403)
2021-10-15 14:08:27 +00:00
new = int(new)
try: comment_id = int(comment_id)
except:
try: comment_id = int(comment_id, 36)
except: abort(404)
comment = get_comment(comment_id)
2021-12-23 15:37:12 +00:00
if comment.author_id == AUTOBETTER_ID: return {"error": "forbidden."}, 403
2022-01-02 00:06:46 +00:00
existing = g.db.query(CommentVote).filter_by(user_id=v.id, comment_id=comment.id).one_or_none()
2021-10-15 14:08:27 +00:00
if existing and existing.vote_type == new: return "", 204
if existing:
if existing.vote_type == 0 and new != 0:
2021-12-27 01:08:06 +00:00
comment.author.coins += 1
2021-10-15 14:08:27 +00:00
comment.author.truecoins += 1
g.db.add(comment.author)
existing.vote_type = new
g.db.add(existing)
elif existing.vote_type != 0 and new == 0:
2021-12-27 01:08:06 +00:00
comment.author.coins -= 1
2021-10-15 14:08:27 +00:00
comment.author.truecoins -= 1
g.db.add(comment.author)
g.db.delete(existing)
else:
existing.vote_type = new
g.db.add(existing)
elif new != 0:
2021-12-27 01:08:06 +00:00
comment.author.coins += 1
2021-10-15 14:08:27 +00:00
comment.author.truecoins += 1
g.db.add(comment.author)
2021-12-03 19:05:54 +00:00
real = (bool(v.profileurl) or bool(v.customtitle) or v.namecolor != defaultcolor) and not v.agendaposter and not v.shadowbanned
2021-10-15 14:08:27 +00:00
vote = CommentVote(user_id=v.id,
vote_type=new,
comment_id=comment_id,
2021-11-30 14:18:16 +00:00
app_id=v.client.application.id if v.client else None,
real=real
2021-10-15 14:08:27 +00:00
)
g.db.add(vote)
2021-12-01 01:10:36 +00:00
try:
g.db.flush()
comment.upvotes = g.db.query(CommentVote.id).filter_by(comment_id=comment.id, vote_type=1).count()
comment.downvotes = g.db.query(CommentVote.id).filter_by(comment_id=comment.id, vote_type=-1).count()
2021-12-26 01:03:21 +00:00
comment.realupvotes = g.db.query(CommentVote.id).filter_by(comment_id=comment.id, vote_type=1, real=True).count() - g.db.query(CommentVote.id).filter_by(comment_id=comment.id, vote_type=1, real=False).count() + g.db.query(CommentVote.id).filter_by(comment_id=comment.id, vote_type=-1).count()
2021-12-31 23:45:27 +00:00
if comment.author.progressivestack: comment.realupvotes *= 2
2021-12-01 01:10:36 +00:00
g.db.add(comment)
g.db.commit()
except: g.db.rollback()
2021-10-15 14:08:27 +00:00
return "", 204
@app.post("/vote/poll/<comment_id>")
@auth_required
def api_vote_poll(comment_id, v):
vote = request.values.get("vote")
if vote == "true": new = 1
elif vote == "false": new = 0
else: abort(400)
comment_id = int(comment_id)
comment = get_comment(comment_id)
2022-01-02 00:06:46 +00:00
existing = g.db.query(CommentVote).filter_by(user_id=v.id, comment_id=comment.id).one_or_none()
2021-10-15 14:08:27 +00:00
if existing and existing.vote_type == new: return "", 204
if existing:
if new == 1:
existing.vote_type = new
g.db.add(existing)
else: g.db.delete(existing)
elif new == 1:
2021-11-30 14:23:34 +00:00
vote = CommentVote(user_id=v.id, vote_type=new, comment_id=comment.id)
2021-10-15 14:08:27 +00:00
g.db.add(vote)
try:
g.db.flush()
2021-11-06 15:52:48 +00:00
comment.upvotes = g.db.query(CommentVote.id).filter_by(comment_id=comment.id, vote_type=1).count()
2021-10-15 14:08:27 +00:00
g.db.add(comment)
g.db.commit()
except: g.db.rollback()
2021-12-11 02:27:46 +00:00
return "", 204
@app.post("/bet/<comment_id>")
@limiter.limit("1/second")
@auth_required
def bet(comment_id, v):
if v.coins < 200: return {"error": "You don't have 200 coins!"}
vote = request.values.get("vote")
comment_id = int(comment_id)
comment = get_comment(comment_id)
2022-01-02 00:06:46 +00:00
existing = g.db.query(CommentVote).filter_by(user_id=v.id, comment_id=comment.id).one_or_none()
2021-12-11 02:27:46 +00:00
if existing: return "", 204
vote = CommentVote(user_id=v.id, vote_type=1, comment_id=comment.id)
g.db.add(vote)
2021-12-11 02:32:21 +00:00
2021-12-11 02:27:46 +00:00
comment.upvotes += 1
g.db.add(comment)
2021-12-11 02:32:21 +00:00
v.coins -= 200
g.db.add(v)
2022-01-02 00:06:46 +00:00
autobetter = g.db.query(User).filter_by(id=AUTOBETTER_ID).one_or_none()
2021-12-11 02:32:21 +00:00
autobetter.coins += 200
g.db.add(autobetter)
2021-12-11 02:27:46 +00:00
g.db.commit()
2021-08-19 05:14:52 +00:00
return "", 204