rDrama/files/routes/votes.py

203 lines
6.0 KiB
Python
Raw Normal View History

2022-10-04 15:24:58 +00:00
from files.classes import *
from files.helpers.config.const import *
[DO NOT MERGE] import detanglation (#442) * move Base definition to files.classes.__init__.py * fix ImportError * move userpage listing to users.py * don't import the app from classes * consts: set default values to avoid crashes consts: warn if the secret key is the default config value * card view: sneed (user db schema) * cloudflare: use DEFAULT_CONFIG_VALUE * const: set default values * decouple media.py from __main__ * pass database to avoid imports * import cleanup and import request not in const, but in the requests mega import * move asset_submissions site check to __init__ * asset submissions feature flag * flag * g.is_tor * don't import request where it's not needed * i think this is fine * mail: move to own routes and helper * wrappers * required wrappers move * unfuck wrappers a bit * move snappy quotes and marseys to stateful consts * marsify * :pepodrool: * fix missing import * import cache * ...and settings.py * and static.py * static needs cache * route * lmao all of the jinja shit was in feeds.py amazing * classes should only import what they need from flask * import Response * hdjbjdhbhjf * ... * dfdfdfdf * make get a non-required import * isort imports (mostly) * but actually * configs * reload config on import * fgfgfgfg * config * config * initialize snappy and test * cookie of doom debug * edfjnkf * xikscdfd * debug config * set session cookie domain, i think this fixes the can't login bug * sdfbgnhvfdsghbnjfbdvvfghnn * hrsfxgf * dump the entire config on a request * kyskyskyskyskyskyskyskyskys * duifhdskfjdfd * dfdfdfdfdfdfdfdfdfdfdfdf * dfdfdfdf * imoprt all of the consts beacuse fuck it * 😭 * dfdfdfdfdfdfsdasdf * print the entire session * rffdfdfjkfksj * fgbhffh * not the secret keys * minor bug fixes * be helpful in the warning * gfgfgfg * move warning lower * isort main imports (i hope this doesn't fuck something up) * test * session cookie domain redux * dfdfdfd * try only importing Flask * formkeys fix * y * :pepodrool: * route helper * remove before flight * dfdfdfdfdf * isort classes * isort helpers * move check_for_alts to routehelpers and also sort imports and get rid of unused ones * that previous commit but actkally * readd the cache in a dozen places they were implicitly imported * use g.is_tor instead of request.headers. bla bla bla * upgrade streamers to their own route file * get rid of unused imports in __main__ * fgfgf * don't pull in the entire ORM where we don't need it * features * explicit imports for the get helper * explicit imports for the get helper redux * testing allroutes * remove unused import * decouple flask from classes * syntax fix also remember these have side fx for some reason (why?) * move side effects out of the class * posts * testing on devrama * settings * reloading * settingssdsdsds * streamer features * site settings * testing settings on devrama * import * fix modlog * remove debug stuff * revert commit 67275b21ab6e2f2520819e84d10bfc1c746a15b6 * archiveorg to _archiveorg * skhudkfkjfd * fix cron for PCM * fix bugs that snekky wants me to * Fix call to realbody passing db, standardize kwarg * test * import check_for_alts from the right place * cloudflare * testing on devrama * fix cron i think * shadow properly * tasks * Remove print which will surely be annoying in prod. * v and create new session * use files.classes * make errors import little and fix rare 500 in /allow_nsfw * Revert "use files.classes" This reverts commit 98c10b876cf86ce058b7fb955cf1ec0bfb9996c6. * pass v to media functions rather than using g * fix * dfdfdfdfd * cleanup, py type checking is dumb so don't use it where it causes issues * Fix some merge bugs, add DEFAULT_RATELIMIT to main. * Fix imports on sqlalchemy expressions. * `from random import random` is an error. * Fix replies db param. * errors: fix missing import * fix rare 500: only send to GIFT_NOTIF_ID if it exists, and send them the right text * Fix signup formkey. * fix 2 500s * propagate db to submissions * fix replies * dfdfdfdf * Fix verifiedcolor. * is_manual * can't use getters outside of an app context * don't attempt to do gumroad on sites where it's not enabled * don't attempt to do gumraod on sites's where it's unnecessary * Revert "don't attempt to do gumroad on sites where it's not enabled" This reverts commit 6f8a6331878655492dfaf1907b27f8be513c14d3. * fix 500 * validate media type Co-authored-by: TLSM <duolsm@outlook.com>
2022-11-15 09:19:08 +00:00
from files.helpers.get import *
from files.routes.wrappers import *
from files.__main__ import app, limiter
from files.routes.routehelpers import get_alt_graph
2022-10-04 15:24:58 +00:00
2023-01-23 12:40:44 +00:00
from math import floor
2022-10-04 15:24:58 +00:00
@app.get("/votes/<link>")
@limiter.limit(DEFAULT_RATELIMIT)
2023-01-21 04:39:46 +00:00
@limiter.limit(DEFAULT_RATELIMIT, key_func=get_ID)
@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)
2023-01-22 08:04:49 +00:00
if thing.ghost and v.admin_level < PERMS['SEE_GHOST_VOTES']:
abort(403)
2022-10-04 15:24:58 +00:00
2022-12-22 22:43:03 +00:00
if thing.author.shadowbanned and not (v and v.admin_level >= PERMS['USER_SHADOWBAN']):
abort(500)
2022-10-04 15:24:58 +00:00
if isinstance(thing, Submission):
2023-03-16 06:27:58 +00:00
query = g.db.query(Vote).join(Vote.user).filter(
Vote.submission_id == thing.id,
).order_by(Vote.created_utc)
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):
2023-03-16 06:27:58 +00:00
query = g.db.query(CommentVote).join(CommentVote.user).filter(
CommentVote.comment_id == thing.id,
).order_by(CommentVote.created_utc)
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-10-11 18:18:49 +00:00
def vote_post_comment(target_id, new, v, cls, vote_cls):
if new == "-1" and DISABLE_DOWNVOTES: abort(403)
if new not in {"-1", "0", "1"}: abort(400)
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
if not User.can_see(v, target): abort(403)
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
alt = False
if target.author.id in [x.id for x in get_alt_graph(v.id)]:
2022-11-15 14:55:21 +00:00
coin_delta = -1
alt = True
2022-11-15 14:55:21 +00:00
2022-10-04 15:24:58 +00:00
coin_mult = 1
2023-03-16 06:27:58 +00:00
existing = g.db.query(vote_cls).filter_by(user_id=v.id)
2022-10-11 18:18:49 +00:00
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()
2023-01-01 11:36:20 +00:00
2023-02-08 03:36:24 +00:00
if SITE_NAME == 'WPD':
coin_mult *= 2
2023-02-22 17:27:33 +00:00
if IS_FISTMAS():
2023-02-08 03:36:24 +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:
target.author.pay_account('coins', coin_value)
2022-11-15 14:45:18 +00:00
target.author.truescore += coin_delta
2023-03-16 06:27:58 +00:00
g.db.add(target.author)
2022-10-04 15:24:58 +00:00
existing.vote_type = new
existing.coins = coin_value
2023-03-16 06:27:58 +00:00
g.db.add(existing)
2022-10-04 15:24:58 +00:00
elif existing.vote_type != 0 and new == 0:
target.author.charge_account('coins', existing.coins,
should_check_balance=False)
2022-11-15 14:45:18 +00:00
target.author.truescore -= coin_delta
2023-03-16 06:27:58 +00:00
g.db.add(target.author)
g.db.delete(existing)
2022-10-04 15:24:58 +00:00
else:
existing.vote_type = new
2023-03-16 06:27:58 +00:00
g.db.add(existing)
2022-10-04 15:24:58 +00:00
elif new != 0:
target.author.pay_account('coins', coin_value)
2022-11-15 14:45:18 +00:00
target.author.truescore += coin_delta
2023-03-16 06:27:58 +00:00
g.db.add(target.author)
2022-10-04 15:24:58 +00:00
2022-12-22 22:36:50 +00:00
real = new == -1 or (not alt and 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,
real=real,
coins=coin_value
2022-10-11 18:18:49 +00:00
)
2023-01-01 11:36:20 +00:00
elif vote_cls == CommentVote:
2022-10-11 18:18:49 +00:00
vote = CommentVote(user_id=v.id,
vote_type=new,
comment_id=target_id,
app_id=v.client.application.id if v.client else None,
real=real,
coins=coin_value
2022-10-11 18:18:49 +00:00
)
2023-03-16 06:27: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):
2023-03-16 06:27:58 +00:00
votes = g.db.query(vote_cls)
2022-10-11 18:18:49 +00:00
if real_instead_of_dir:
votes = votes.filter(vote_cls.real == True)
2022-10-12 05:27:27 +00:00
else:
votes = votes.filter(vote_cls.vote_type == dir)
2022-10-12 05:27:27 +00:00
if vote_cls == Vote:
votes = votes.filter(vote_cls.submission_id == target.id)
2022-10-11 18:18:49 +00:00
elif vote_cls == CommentVote:
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-25 00:54:53 +00:00
if SITE_NAME == 'rDrama':
target.realupvotes = get_vote_count(0, True) # first arg is ignored here
2023-01-24 10:05:16 +00:00
else:
target.realupvotes = target.upvotes - target.downvotes
mul = 1
if target.is_approved == PROGSTACK_ID:
mul = PROGSTACK_MUL
elif cls == Submission and (any(i in target.title.lower() for i in ENCOURAGED) or any(i in target.url.lower() for i in ENCOURAGED2)):
mul = PROGSTACK_MUL
2023-03-31 20:13:41 +00:00
elif target.author.progressivestack or (target.author.admin_level and target.author.id not in {AEVANN_ID, CARP_ID, 8494}):
2023-01-25 10:57:50 +00:00
mul = 2
2023-03-31 20:13:41 +00:00
elif SITE == 'rdrama.net' and cls == Submission:
if (target.domain.endswith('.win') or 'forum' in target.domain or 'chan' in target.domain
2023-01-25 10:57:50 +00:00
or (target.domain in BOOSTED_SITES and not target.url.startswith('/'))
or target.sub in BOOSTED_HOLES):
2023-01-24 10:05:16 +00:00
mul = 2
2023-03-31 20:13:41 +00:00
if target.body_html and target.sub != 'mnn' and target.author.id != 8768:
2023-01-25 10:57:50 +00:00
x = target.body_html.count('" target="_blank" rel="nofollow noopener">')
x += target.body_html.count('<a href="/images/')
target.realupvotes += min(x*2, 20)
2023-03-31 20:13:41 +00:00
mul += min(x/10, 1)
2023-01-24 10:05:16 +00:00
target.realupvotes = floor(target.realupvotes * mul)
2023-03-16 06:27:58 +00:00
g.db.add(target)
2022-10-04 15:24:58 +00:00
return "", 204
@app.post("/vote/post/<int:post_id>/<new>")
2023-02-27 05:33:45 +00:00
@limiter.limit('1/second', scope=rpath)
2023-02-26 01:42:39 +00:00
@limiter.limit("60/minute;1000/hour;2000/day")
@limiter.limit("60/minute;1000/hour;2000/day", key_func=get_ID)
2022-10-11 18:18:49 +00:00
@is_not_permabanned
def vote_post(post_id, new, v):
return vote_post_comment(post_id, new, v, Submission, Vote)
@app.post("/vote/comment/<int:comment_id>/<new>")
2023-02-27 05:33:45 +00:00
@limiter.limit('1/second', scope=rpath)
2023-02-26 01:42:39 +00:00
@limiter.limit("60/minute;1000/hour;2000/day")
@limiter.limit("60/minute;1000/hour;2000/day", key_func=get_ID)
2022-10-04 15:24:58 +00:00
@is_not_permabanned
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)