2022-07-02 06:48:04 +00:00
|
|
|
from files.classes import *
|
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.routes.wrappers import *
|
2022-07-02 06:48:04 +00:00
|
|
|
from files.__main__ import app
|
|
|
|
|
|
|
|
|
2022-12-29 10:39:10 +00:00
|
|
|
@app.post("/vote/post/option/<int:option_id>")
|
2022-07-02 06:48:04 +00:00
|
|
|
@is_not_permabanned
|
2022-08-11 04:05:23 +00:00
|
|
|
def vote_option(option_id, v):
|
2022-10-16 09:51:42 +00:00
|
|
|
try:
|
|
|
|
option_id = int(option_id)
|
|
|
|
except:
|
|
|
|
abort(404)
|
2022-07-02 06:48:04 +00:00
|
|
|
option = g.db.get(SubmissionOption, option_id)
|
|
|
|
if not option: abort(404)
|
2022-09-05 22:30:44 +00:00
|
|
|
sub = option.post.sub
|
|
|
|
|
2022-12-23 22:22:41 +00:00
|
|
|
if sub in {'furry','vampire','racist','femboy'} and not v.house.lower().startswith(sub):
|
2022-10-11 13:01:39 +00:00
|
|
|
abort(403, f"You need to be a member of House {sub.capitalize()} to vote on polls in /h/{sub}")
|
2022-09-05 22:30:44 +00:00
|
|
|
|
2022-08-26 21:53:17 +00:00
|
|
|
if option.exclusive == 2:
|
2022-11-21 00:55:34 +00:00
|
|
|
if option.post.total_bet_voted(v):
|
2022-11-20 16:11:24 +00:00
|
|
|
abort(403, "You can't bet on a closed poll!")
|
2022-11-01 05:25:19 +00:00
|
|
|
if not v.charge_account('coins', POLL_BET_COINS):
|
|
|
|
abort(400, f"You don't have {POLL_BET_COINS} coins!")
|
2022-08-26 21:53:17 +00:00
|
|
|
g.db.add(v)
|
|
|
|
autojanny = get_account(AUTOJANNY_ID)
|
2022-11-20 10:50:02 +00:00
|
|
|
autojanny.pay_account('coins', POLL_BET_COINS)
|
2022-08-26 21:53:17 +00:00
|
|
|
g.db.add(autojanny)
|
|
|
|
|
2022-07-02 06:48:04 +00:00
|
|
|
if option.exclusive:
|
|
|
|
vote = g.db.query(SubmissionOptionVote).join(SubmissionOption).filter(
|
|
|
|
SubmissionOptionVote.user_id==v.id,
|
|
|
|
SubmissionOptionVote.submission_id==option.submission_id,
|
2022-08-26 21:53:17 +00:00
|
|
|
SubmissionOption.exclusive==option.exclusive).one_or_none()
|
2022-07-02 06:48:04 +00:00
|
|
|
if vote:
|
2022-10-11 13:01:39 +00:00
|
|
|
if option.exclusive == 2: abort(400, "You already voted on this bet!")
|
2022-07-02 06:48:04 +00:00
|
|
|
g.db.delete(vote)
|
|
|
|
|
|
|
|
existing = g.db.query(SubmissionOptionVote).filter_by(option_id=option_id, user_id=v.id).one_or_none()
|
|
|
|
if not existing:
|
|
|
|
vote = SubmissionOptionVote(
|
|
|
|
option_id=option_id,
|
|
|
|
user_id=v.id,
|
|
|
|
submission_id=option.submission_id,
|
|
|
|
)
|
|
|
|
g.db.add(vote)
|
2022-08-26 21:53:17 +00:00
|
|
|
elif existing and not option.exclusive:
|
2022-07-02 06:48:04 +00:00
|
|
|
g.db.delete(existing)
|
|
|
|
|
2022-11-21 01:13:31 +00:00
|
|
|
return {"message": "Bet successful!"}
|
2022-07-02 06:48:04 +00:00
|
|
|
|
2022-12-29 10:39:10 +00:00
|
|
|
@app.get("/votes/post/option/<int:option_id>")
|
2022-07-02 06:48:04 +00:00
|
|
|
@auth_required
|
|
|
|
def option_votes(option_id, v):
|
2022-10-16 09:51:42 +00:00
|
|
|
try:
|
|
|
|
option_id = int(option_id)
|
|
|
|
except:
|
|
|
|
abort(404)
|
2022-07-02 06:48:04 +00:00
|
|
|
option = g.db.get(SubmissionOption, option_id)
|
|
|
|
if not option: abort(404)
|
2022-07-14 23:21:52 +00:00
|
|
|
if option.post.ghost: abort(403)
|
2022-07-14 14:47:03 +00:00
|
|
|
ups = g.db.query(SubmissionOptionVote).filter_by(option_id=option_id).order_by(SubmissionOptionVote.created_utc).all()
|
2022-07-02 06:48:04 +00:00
|
|
|
|
2022-12-14 17:28:31 +00:00
|
|
|
user_ids = [x[0] for x in g.db.query(SubmissionOptionVote.user_id).filter_by(option_id=option_id).all()]
|
|
|
|
total_ts = g.db.query(func.sum(User.truescore)).filter(User.id.in_(user_ids)).scalar()
|
|
|
|
total_ts = format(total_ts, ",") if total_ts else '0'
|
|
|
|
|
|
|
|
if v.admin_level >= 3:
|
|
|
|
total_patrons = g.db.query(User).filter(User.id.in_(user_ids), User.patron > 0).count()
|
|
|
|
else:
|
|
|
|
total_patrons = None
|
|
|
|
|
2022-07-02 06:48:04 +00:00
|
|
|
return render_template("poll_votes.html",
|
2022-09-04 23:15:37 +00:00
|
|
|
v=v,
|
|
|
|
thing=option,
|
2022-12-14 17:28:31 +00:00
|
|
|
ups=ups,
|
|
|
|
total_ts=total_ts,
|
|
|
|
total_patrons=total_patrons,
|
|
|
|
)
|
2022-07-02 06:48:04 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2022-12-29 10:39:10 +00:00
|
|
|
@app.post("/vote/comment/option/<int:option_id>")
|
2022-07-02 06:48:04 +00:00
|
|
|
@is_not_permabanned
|
2022-08-11 04:05:23 +00:00
|
|
|
def vote_option_comment(option_id, v):
|
2022-10-16 09:51:42 +00:00
|
|
|
try:
|
|
|
|
option_id = int(option_id)
|
|
|
|
except:
|
|
|
|
abort(404)
|
2022-07-02 06:48:04 +00:00
|
|
|
option = g.db.get(CommentOption, option_id)
|
|
|
|
if not option: abort(404)
|
2022-09-05 22:30:44 +00:00
|
|
|
sub = option.comment.post.sub
|
2022-12-23 22:22:41 +00:00
|
|
|
if sub in {'furry','vampire','racist','femboy'} and not v.house.lower().startswith(sub):
|
2022-10-11 13:01:39 +00:00
|
|
|
abort(403, f"You need to be a member of House {sub.capitalize()} to vote on polls in /h/{sub}")
|
2022-09-05 22:30:44 +00:00
|
|
|
|
2022-07-02 06:48:04 +00:00
|
|
|
if option.exclusive:
|
|
|
|
vote = g.db.query(CommentOptionVote).join(CommentOption).filter(
|
|
|
|
CommentOptionVote.user_id==v.id,
|
|
|
|
CommentOptionVote.comment_id==option.comment_id,
|
2022-08-26 21:53:17 +00:00
|
|
|
CommentOption.exclusive==1).one_or_none()
|
2022-07-02 06:48:04 +00:00
|
|
|
if vote:
|
|
|
|
g.db.delete(vote)
|
|
|
|
|
|
|
|
existing = g.db.query(CommentOptionVote).filter_by(option_id=option_id, user_id=v.id).one_or_none()
|
|
|
|
if not existing:
|
|
|
|
vote = CommentOptionVote(
|
|
|
|
option_id=option_id,
|
|
|
|
user_id=v.id,
|
|
|
|
comment_id=option.comment_id,
|
|
|
|
)
|
|
|
|
g.db.add(vote)
|
|
|
|
elif existing:
|
|
|
|
g.db.delete(existing)
|
|
|
|
|
|
|
|
return "", 204
|
|
|
|
|
2022-12-29 10:39:10 +00:00
|
|
|
@app.get("/votes/comment/option/<int:option_id>")
|
2022-07-02 06:48:04 +00:00
|
|
|
@auth_required
|
|
|
|
def option_votes_comment(option_id, v):
|
2022-10-16 09:51:42 +00:00
|
|
|
try:
|
|
|
|
option_id = int(option_id)
|
|
|
|
except:
|
|
|
|
abort(404)
|
2022-07-02 06:48:04 +00:00
|
|
|
option = g.db.get(CommentOption, option_id)
|
|
|
|
|
|
|
|
if not option: abort(404)
|
|
|
|
|
2022-07-14 23:21:52 +00:00
|
|
|
if option.comment.ghost: abort(403)
|
|
|
|
|
2022-07-14 14:47:03 +00:00
|
|
|
ups = g.db.query(CommentOptionVote).filter_by(option_id=option_id).order_by(CommentOptionVote.created_utc).all()
|
2022-07-02 06:48:04 +00:00
|
|
|
|
2022-12-14 17:28:31 +00:00
|
|
|
user_ids = [x[0] for x in g.db.query(CommentOptionVote.user_id).filter_by(option_id=option_id).all()]
|
|
|
|
total_ts = g.db.query(func.sum(User.truescore)).filter(User.id.in_(user_ids)).scalar()
|
|
|
|
total_ts = format(total_ts, ",") if total_ts else '0'
|
|
|
|
|
|
|
|
if v.admin_level >= 3:
|
|
|
|
total_patrons = g.db.query(User).filter(User.id.in_(user_ids), User.patron > 0).count()
|
|
|
|
else:
|
|
|
|
total_patrons = None
|
|
|
|
|
2022-07-02 06:48:04 +00:00
|
|
|
return render_template("poll_votes.html",
|
2022-09-04 23:15:37 +00:00
|
|
|
v=v,
|
|
|
|
thing=option,
|
2022-12-14 17:28:31 +00:00
|
|
|
ups=ups,
|
|
|
|
total_ts=total_ts,
|
|
|
|
total_patrons=total_patrons,
|
|
|
|
)
|