2022-10-04 15:24:58 +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 *
|
|
|
|
from files.__main__ import app, limiter
|
|
|
|
|
2022-10-04 15:24:58 +00:00
|
|
|
|
|
|
|
@app.get("/votes/<link>")
|
2022-12-11 19:32:30 +00:00
|
|
|
@auth_required
|
2022-10-04 15:24:58 +00:00
|
|
|
def vote_info_get(v, link):
|
|
|
|
try:
|
|
|
|
if "p_" in link: thing = get_post(int(link.split("p_")[1]), v=v)
|
|
|
|
elif "c_" in link: thing = get_comment(int(link.split("c_")[1]), v=v)
|
|
|
|
else: abort(400)
|
|
|
|
except: abort(400)
|
|
|
|
|
|
|
|
if thing.ghost and v.id != AEVANN_ID: abort(403)
|
|
|
|
|
|
|
|
if isinstance(thing, Submission):
|
2022-12-01 15:04:08 +00:00
|
|
|
if (thing.author.shadowbanned
|
|
|
|
and not (v and v.admin_level >= PERMS['USER_SHADOWBAN'])):
|
|
|
|
thing_id = g.db.query(Submission.id) \
|
2022-12-20 21:30:31 +00:00
|
|
|
.filter(
|
|
|
|
Submission.upvotes == thing.upvotes,
|
|
|
|
Submission.downvotes == thing.downvotes,
|
|
|
|
Submission.created_utc >= thing.created_utc,
|
|
|
|
) \
|
2022-12-01 15:04:08 +00:00
|
|
|
.order_by(Submission.id).first()[0]
|
2022-10-04 15:24:58 +00:00
|
|
|
else: thing_id = thing.id
|
|
|
|
|
2022-12-01 15:04:08 +00:00
|
|
|
query = g.db.query(Vote).join(Vote.user).filter(
|
|
|
|
Vote.submission_id == thing_id,
|
|
|
|
).order_by(Vote.created_utc)
|
|
|
|
|
|
|
|
if not v.can_see_shadowbanned:
|
|
|
|
query = query.filter(User.shadowbanned == None)
|
|
|
|
|
|
|
|
ups = query.filter(Vote.vote_type == 1).all()
|
|
|
|
downs = query.filter(Vote.vote_type == -1).all()
|
2022-10-04 15:24:58 +00:00
|
|
|
|
|
|
|
elif isinstance(thing, Comment):
|
2022-12-01 15:04:08 +00:00
|
|
|
if (thing.author.shadowbanned
|
|
|
|
and not (v and v.admin_level >= PERMS['USER_SHADOWBAN'])):
|
|
|
|
thing_id = g.db.query(Comment.id) \
|
2022-12-20 21:30:31 +00:00
|
|
|
.filter(
|
|
|
|
Comment.upvotes == thing.upvotes,
|
|
|
|
Comment.downvotes == thing.downvotes,
|
|
|
|
Comment.created_utc >= thing.created_utc,
|
|
|
|
) \
|
2022-12-01 15:04:08 +00:00
|
|
|
.order_by(Comment.id).first()[0]
|
2022-10-04 15:24:58 +00:00
|
|
|
else: thing_id = thing.id
|
|
|
|
|
2022-12-01 15:04:08 +00:00
|
|
|
query = g.db.query(CommentVote).join(CommentVote.user).filter(
|
|
|
|
CommentVote.comment_id == thing_id,
|
|
|
|
).order_by(CommentVote.created_utc)
|
|
|
|
|
|
|
|
if not v.can_see_shadowbanned:
|
|
|
|
query = query.filter(User.shadowbanned == None)
|
|
|
|
|
|
|
|
ups = query.filter(CommentVote.vote_type == 1).all()
|
|
|
|
downs = query.filter(CommentVote.vote_type == -1).all()
|
2022-10-04 15:24:58 +00:00
|
|
|
|
|
|
|
else: abort(400)
|
|
|
|
|
|
|
|
return render_template("votes.html",
|
|
|
|
v=v,
|
|
|
|
thing=thing,
|
|
|
|
ups=ups,
|
|
|
|
downs=downs)
|
|
|
|
|
2022-12-01 15:04:08 +00:00
|
|
|
|
2022-10-11 18:18:49 +00:00
|
|
|
def vote_post_comment(target_id, new, v, cls, vote_cls):
|
2022-10-11 13:01:39 +00:00
|
|
|
if new == "-1" and DISABLE_DOWNVOTES: abort(403)
|
2022-11-26 04:52:47 +00:00
|
|
|
if new not in {"-1", "0", "1"}: abort(400)
|
2022-11-07 00:49:50 +00:00
|
|
|
if v.client and v.id not in PRIVILEGED_USER_BOTS: abort(403)
|
2022-10-04 15:24:58 +00:00
|
|
|
new = int(new)
|
2022-10-11 18:18:49 +00:00
|
|
|
target = None
|
|
|
|
if cls == Submission:
|
|
|
|
target = get_post(target_id)
|
|
|
|
elif cls == Comment:
|
|
|
|
target = get_comment(target_id)
|
2022-12-03 01:49:07 +00:00
|
|
|
if not target.parent_submission and not target.wall_user_id: abort(404)
|
2022-10-11 18:18:49 +00:00
|
|
|
else:
|
|
|
|
abort(404)
|
2022-10-04 15:24:58 +00:00
|
|
|
|
2022-11-17 21:02:08 +00:00
|
|
|
if not User.can_see(v, target): abort(404)
|
2022-11-12 13:55:16 +00:00
|
|
|
|
2022-10-04 15:24:58 +00:00
|
|
|
coin_delta = 1
|
2022-10-11 18:18:49 +00:00
|
|
|
if v.id == target.author.id:
|
2022-10-04 15:24:58 +00:00
|
|
|
coin_delta = 0
|
|
|
|
|
2022-11-27 23:16:33 +00:00
|
|
|
alt = False
|
2022-11-15 14:55:21 +00:00
|
|
|
if target.author.id in v.alt_ids or v.id in target.author.alt_ids:
|
|
|
|
coin_delta = -1
|
2022-11-27 23:16:33 +00:00
|
|
|
alt = True
|
2022-11-15 14:55:21 +00:00
|
|
|
|
2022-10-04 15:24:58 +00:00
|
|
|
coin_mult = 1
|
|
|
|
|
|
|
|
g.db.flush()
|
2022-10-11 18:18:49 +00:00
|
|
|
existing = g.db.query(vote_cls).filter_by(user_id=v.id)
|
|
|
|
if vote_cls == Vote:
|
|
|
|
existing = existing.filter_by(submission_id=target.id)
|
|
|
|
elif vote_cls == CommentVote:
|
|
|
|
existing = existing.filter_by(comment_id=target.id)
|
|
|
|
else:
|
|
|
|
abort(400)
|
2022-10-11 18:29:14 +00:00
|
|
|
existing = existing.one_or_none()
|
2022-10-11 18:18:49 +00:00
|
|
|
|
2022-12-19 19:09:51 +00:00
|
|
|
if HOLIDAY_EVENT:
|
2022-10-23 22:23:51 +00:00
|
|
|
coin_mult = 2
|
|
|
|
coin_value = coin_delta * coin_mult
|
2022-10-04 15:24:58 +00:00
|
|
|
|
|
|
|
if existing and existing.vote_type == new: return "", 204
|
|
|
|
if existing:
|
|
|
|
if existing.vote_type == 0 and new != 0:
|
2022-11-20 10:50:02 +00:00
|
|
|
target.author.pay_account('coins', coin_value)
|
2022-11-15 14:45:18 +00:00
|
|
|
target.author.truescore += coin_delta
|
|
|
|
g.db.add(target.author)
|
2022-10-04 15:24:58 +00:00
|
|
|
existing.vote_type = new
|
2022-10-23 22:23:51 +00:00
|
|
|
existing.coins = coin_value
|
2022-10-04 15:24:58 +00:00
|
|
|
g.db.add(existing)
|
|
|
|
elif existing.vote_type != 0 and new == 0:
|
2022-12-01 15:04:08 +00:00
|
|
|
target.author.charge_account('coins', existing.coins,
|
|
|
|
should_check_balance=False)
|
2022-11-15 14:45:18 +00:00
|
|
|
target.author.truescore -= coin_delta
|
|
|
|
g.db.add(target.author)
|
2022-10-04 15:24:58 +00:00
|
|
|
g.db.delete(existing)
|
|
|
|
else:
|
|
|
|
existing.vote_type = new
|
|
|
|
g.db.add(existing)
|
|
|
|
elif new != 0:
|
2022-11-20 10:50:02 +00:00
|
|
|
target.author.pay_account('coins', coin_value)
|
2022-11-15 14:45:18 +00:00
|
|
|
target.author.truescore += coin_delta
|
2022-10-11 18:18:49 +00:00
|
|
|
g.db.add(target.author)
|
2022-10-04 15:24:58 +00:00
|
|
|
|
2022-11-27 23:16:33 +00:00
|
|
|
real = alt or new != 1 or v.is_votes_real
|
2022-10-11 18:18:49 +00:00
|
|
|
vote = None
|
|
|
|
if vote_cls == Vote:
|
|
|
|
vote = Vote(user_id=v.id,
|
|
|
|
vote_type=new,
|
|
|
|
submission_id=target_id,
|
|
|
|
app_id=v.client.application.id if v.client else None,
|
2022-10-23 22:23:51 +00:00
|
|
|
real=real,
|
|
|
|
coins=coin_value
|
2022-10-11 18:18:49 +00:00
|
|
|
)
|
|
|
|
elif vote_cls == CommentVote:
|
|
|
|
vote = CommentVote(user_id=v.id,
|
|
|
|
vote_type=new,
|
|
|
|
comment_id=target_id,
|
|
|
|
app_id=v.client.application.id if v.client else None,
|
2022-10-23 22:23:51 +00:00
|
|
|
real=real,
|
|
|
|
coins=coin_value
|
2022-10-11 18:18:49 +00:00
|
|
|
)
|
2022-10-04 15:24:58 +00:00
|
|
|
g.db.add(vote)
|
|
|
|
g.db.flush()
|
2022-10-11 18:18:49 +00:00
|
|
|
|
|
|
|
# this is hacky but it works, we should probably do better later
|
|
|
|
def get_vote_count(dir, real_instead_of_dir):
|
2022-12-01 15:04:08 +00:00
|
|
|
votes = g.db.query(vote_cls).join(vote_cls.user) \
|
|
|
|
.filter(User.shadowbanned == None)
|
2022-10-11 18:18:49 +00:00
|
|
|
if real_instead_of_dir:
|
2022-12-01 15:04:08 +00:00
|
|
|
votes = votes.filter(vote_cls.real == True)
|
2022-10-12 05:27:27 +00:00
|
|
|
else:
|
2022-12-01 15:04:08 +00:00
|
|
|
votes = votes.filter(vote_cls.vote_type == dir)
|
2022-10-12 05:27:27 +00:00
|
|
|
|
|
|
|
if vote_cls == Vote:
|
2022-12-01 15:04:08 +00:00
|
|
|
votes = votes.filter(vote_cls.submission_id == target.id)
|
2022-10-11 18:18:49 +00:00
|
|
|
elif vote_cls == CommentVote:
|
2022-12-01 15:04:08 +00:00
|
|
|
votes = votes.filter(vote_cls.comment_id == target.id)
|
2022-10-11 18:18:49 +00:00
|
|
|
else:
|
|
|
|
return 0
|
|
|
|
return votes.count()
|
|
|
|
|
|
|
|
target.upvotes = get_vote_count(1, False)
|
|
|
|
target.downvotes = get_vote_count(-1, False)
|
2022-11-07 00:47:12 +00:00
|
|
|
|
2022-12-16 20:40:16 +00:00
|
|
|
if SITE == 'rdrama.net':
|
2022-11-07 01:35:46 +00:00
|
|
|
target.realupvotes = get_vote_count(0, True) # first arg is ignored here
|
2022-11-07 00:46:48 +00:00
|
|
|
|
2022-11-09 19:02:17 +00:00
|
|
|
mul = 1
|
2022-12-22 14:08:18 +00:00
|
|
|
if target.author.progressivestack or (target.author.admin_level and target.author.id != CARP_ID):
|
2022-11-09 19:02:17 +00:00
|
|
|
mul = 2
|
2022-12-03 18:57:44 +00:00
|
|
|
if cls == Submission:
|
2022-12-09 17:11:53 +00:00
|
|
|
if (target.domain.endswith('.win') or 'forum' in target.domain
|
2022-12-01 15:04:08 +00:00
|
|
|
or (target.domain in BOOSTED_SITES and not target.url.startswith('/'))
|
|
|
|
or target.sub in BOOSTED_HOLES):
|
2022-11-09 19:02:17 +00:00
|
|
|
mul = 2
|
2022-12-01 15:04:08 +00:00
|
|
|
elif (not target.sub
|
|
|
|
and target.body_html
|
|
|
|
and target.author.id not in {8768,3402,5214,12719}):
|
2022-11-21 17:37:38 +00:00
|
|
|
x = target.body_html.count('" target="_blank" rel="nofollow noopener">')
|
2022-11-12 12:10:32 +00:00
|
|
|
x += target.body_html.count('<a href="/images/')
|
2022-11-20 17:21:19 +00:00
|
|
|
target.realupvotes += min(x*2, 20)
|
|
|
|
mul = 1 + x/10
|
2022-11-09 19:02:17 +00:00
|
|
|
|
2022-11-09 23:31:29 +00:00
|
|
|
mul = min(mul, 2)
|
2022-11-09 19:02:17 +00:00
|
|
|
target.realupvotes *= mul
|
2022-11-07 00:46:48 +00:00
|
|
|
|
2022-10-11 18:18:49 +00:00
|
|
|
g.db.add(target)
|
2022-10-04 15:24:58 +00:00
|
|
|
return "", 204
|
|
|
|
|
2022-12-01 15:04:08 +00:00
|
|
|
|
2022-10-11 18:18:49 +00:00
|
|
|
@app.post("/vote/post/<post_id>/<new>")
|
|
|
|
@limiter.limit("5/second;60/minute;1000/hour;2000/day")
|
|
|
|
@is_not_permabanned
|
2022-11-22 22:23:04 +00:00
|
|
|
@ratelimit_user("5/second;60/minute;1000/hour;2000/day")
|
|
|
|
@limiter.limit("1/second", key_func=lambda:f'{g.v.id}-{request.full_path}')
|
2022-10-11 18:18:49 +00:00
|
|
|
def vote_post(post_id, new, v):
|
|
|
|
return vote_post_comment(post_id, new, v, Submission, Vote)
|
|
|
|
|
2022-10-04 15:24:58 +00:00
|
|
|
@app.post("/vote/comment/<comment_id>/<new>")
|
|
|
|
@limiter.limit("5/second;60/minute;1000/hour;2000/day")
|
|
|
|
@is_not_permabanned
|
2022-11-22 22:23:04 +00:00
|
|
|
@ratelimit_user("5/second;60/minute;1000/hour;2000/day")
|
|
|
|
@limiter.limit("1/second", key_func=lambda:f'{g.v.id}-{request.full_path}')
|
2022-10-04 15:24:58 +00:00
|
|
|
def vote_comment(comment_id, new, v):
|
2022-10-11 18:18:49 +00:00
|
|
|
return vote_post_comment(comment_id, new, v, Comment, CommentVote)
|