2022-05-04 23:09:46 +00:00
|
|
|
from files.helpers.wrappers import *
|
|
|
|
from files.helpers.get import *
|
|
|
|
from files.helpers.discord import *
|
2022-07-08 16:21:13 +00:00
|
|
|
from files.helpers.const import *
|
2022-07-09 10:32:49 +00:00
|
|
|
from files.helpers.sorting_and_time import *
|
2022-05-04 23:09:46 +00:00
|
|
|
from files.__main__ import app, cache, limiter
|
|
|
|
from files.classes.submission import Submission
|
2022-06-10 09:47:41 +00:00
|
|
|
from files.helpers.awards import award_timers
|
2022-05-04 23:09:46 +00:00
|
|
|
|
|
|
|
@app.get("/")
|
|
|
|
@app.get("/catalog")
|
|
|
|
@app.get("/h/<sub>")
|
|
|
|
@app.get("/s/<sub>")
|
2022-05-06 04:55:15 +00:00
|
|
|
@app.get("/logged_out")
|
|
|
|
@app.get("/logged_out/catalog")
|
|
|
|
@app.get("/logged_out/h/<sub>")
|
|
|
|
@app.get("/logged_out/s/<sub>")
|
2022-05-04 23:09:46 +00:00
|
|
|
@limiter.limit("3/second;30/minute;5000/hour;10000/day")
|
2022-08-05 20:40:48 +00:00
|
|
|
@auth_desired_with_logingate
|
2022-05-04 23:09:46 +00:00
|
|
|
def front_all(v, sub=None, subdomain=None):
|
2022-05-06 04:55:15 +00:00
|
|
|
|
2022-05-25 23:43:42 +00:00
|
|
|
if not v and not request.path.startswith('/logged_out'):
|
2022-08-01 18:03:29 +00:00
|
|
|
return redirect(f"/logged_out{request.full_path}")
|
2022-07-23 07:07:57 +00:00
|
|
|
|
2022-07-23 07:17:38 +00:00
|
|
|
if v and request.path.startswith('/logged_out'):
|
2022-08-05 22:39:38 +00:00
|
|
|
redir = request.full_path.replace('/logged_out','')
|
|
|
|
if not redir.startswith('/'): redir = f'/{redir}'
|
|
|
|
return redirect(redir)
|
2022-05-06 04:55:15 +00:00
|
|
|
|
2022-08-19 21:31:26 +00:00
|
|
|
if sub:
|
|
|
|
sub = sub.strip().lower()
|
2022-08-19 22:45:21 +00:00
|
|
|
if sub == 'chudrama' and not (v and v.truecoins >= 5000): abort(403)
|
2022-08-19 21:31:26 +00:00
|
|
|
sub = g.db.query(Sub).filter_by(name=sub).one_or_none()
|
2022-05-04 23:09:46 +00:00
|
|
|
|
|
|
|
if (request.path.startswith('/h/') or request.path.startswith('/s/')) and not sub: abort(404)
|
|
|
|
|
|
|
|
try: page = max(int(request.values.get("page", 1)), 1)
|
|
|
|
except: abort(400)
|
|
|
|
|
|
|
|
if v:
|
|
|
|
defaultsorting = v.defaultsorting
|
|
|
|
if sub or SITE_NAME != 'rDrama': defaulttime = 'all'
|
|
|
|
else: defaulttime = v.defaulttime
|
|
|
|
else:
|
|
|
|
defaultsorting = "hot"
|
|
|
|
if sub or SITE_NAME != 'rDrama': defaulttime = 'all'
|
2022-07-08 16:21:13 +00:00
|
|
|
else: defaulttime = DEFAULT_TIME_FILTER
|
2022-05-04 23:09:46 +00:00
|
|
|
|
|
|
|
sort=request.values.get("sort", defaultsorting)
|
|
|
|
t=request.values.get('t', defaulttime)
|
|
|
|
ccmode=request.values.get('ccmode', "false").lower()
|
|
|
|
|
|
|
|
try: gt=int(request.values.get("after", 0))
|
|
|
|
except: gt=0
|
|
|
|
|
|
|
|
try: lt=int(request.values.get("before", 0))
|
|
|
|
except: lt=0
|
|
|
|
|
2022-07-13 19:32:28 +00:00
|
|
|
if sort == 'hot': default = True
|
|
|
|
else: default = False
|
|
|
|
|
|
|
|
pins = session.get(sort, default)
|
2022-07-13 17:31:35 +00:00
|
|
|
|
2022-05-04 23:09:46 +00:00
|
|
|
ids, next_exists = frontlist(sort=sort,
|
|
|
|
page=page,
|
|
|
|
t=t,
|
|
|
|
v=v,
|
|
|
|
ccmode=ccmode,
|
|
|
|
filter_words=v.filter_words if v else [],
|
|
|
|
gt=gt,
|
|
|
|
lt=lt,
|
|
|
|
sub=sub,
|
2022-07-13 17:31:35 +00:00
|
|
|
site=SITE,
|
|
|
|
pins=pins
|
2022-05-04 23:09:46 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
posts = get_posts(ids, v=v)
|
|
|
|
|
|
|
|
if v:
|
|
|
|
if v.hidevotedon: posts = [x for x in posts if not hasattr(x, 'voted') or not x.voted]
|
2022-06-10 09:47:41 +00:00
|
|
|
award_timers(v)
|
2022-05-04 23:09:46 +00:00
|
|
|
|
|
|
|
if request.headers.get("Authorization"): return {"data": [x.json for x in posts], "next_exists": next_exists}
|
2022-07-13 17:31:35 +00:00
|
|
|
return render_template("home.html", v=v, listing=posts, next_exists=next_exists, sort=sort, t=t, page=page, ccmode=ccmode, sub=sub, home=True, pins=pins)
|
2022-05-04 23:09:46 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@cache.memoize(timeout=86400)
|
2022-07-13 17:31:35 +00:00
|
|
|
def frontlist(v=None, sort="hot", page=1, t="all", ids_only=True, ccmode="false", filter_words='', gt=0, lt=0, sub=None, site=None, pins=True):
|
2022-05-04 23:09:46 +00:00
|
|
|
|
|
|
|
posts = g.db.query(Submission)
|
|
|
|
|
|
|
|
if v and v.hidevotedon:
|
|
|
|
voted = [x[0] for x in g.db.query(Vote.submission_id).filter_by(user_id=v.id).all()]
|
|
|
|
posts = posts.filter(Submission.id.notin_(voted))
|
|
|
|
|
|
|
|
if sub: posts = posts.filter_by(sub=sub.name)
|
|
|
|
elif v: posts = posts.filter(or_(Submission.sub == None, Submission.sub.notin_(v.all_blocks)))
|
|
|
|
|
|
|
|
if gt: posts = posts.filter(Submission.created_utc > gt)
|
|
|
|
if lt: posts = posts.filter(Submission.created_utc < lt)
|
|
|
|
|
|
|
|
if not gt and not lt:
|
2022-07-09 10:32:49 +00:00
|
|
|
posts = apply_time_filter(t, posts, Submission)
|
2022-05-04 23:09:46 +00:00
|
|
|
|
2022-07-20 01:50:08 +00:00
|
|
|
if (ccmode == "true") and FEATURES['COUNTRY_CLUB']:
|
2022-05-04 23:09:46 +00:00
|
|
|
posts = posts.filter(Submission.club == True)
|
|
|
|
|
|
|
|
posts = posts.filter_by(is_banned=False, private=False, deleted_utc = 0)
|
|
|
|
|
2022-07-13 17:31:35 +00:00
|
|
|
if pins and ccmode == "false" and not gt and not lt:
|
2022-07-13 21:20:56 +00:00
|
|
|
if sub: posts = posts.filter_by(hole_pinned=None)
|
|
|
|
else: posts = posts.filter_by(stickied=None)
|
2022-05-04 23:09:46 +00:00
|
|
|
|
2022-05-24 20:43:49 +00:00
|
|
|
if v:
|
2022-05-04 23:09:46 +00:00
|
|
|
posts = posts.filter(Submission.author_id.notin_(v.userblocks))
|
|
|
|
|
|
|
|
if v and filter_words:
|
|
|
|
for word in filter_words:
|
|
|
|
word = word.replace('\\', '').replace('_', '\_').replace('%', '\%').strip()
|
|
|
|
posts=posts.filter(not_(Submission.title.ilike(f'%{word}%')))
|
|
|
|
|
|
|
|
if not (v and v.shadowbanned):
|
2022-07-03 06:12:53 +00:00
|
|
|
posts = posts.join(Submission.author).filter(User.shadowbanned == None)
|
2022-05-04 23:09:46 +00:00
|
|
|
|
2022-07-13 17:32:31 +00:00
|
|
|
if sort == 'hot':
|
2022-05-04 23:09:46 +00:00
|
|
|
ti = int(time.time()) + 3600
|
2022-08-15 14:16:35 +00:00
|
|
|
if SITE_NAME == 'rDrama':
|
2022-08-25 22:23:53 +00:00
|
|
|
posts = posts.order_by(-1000000*(Submission.realupvotes + 1 + Submission.comment_count/5 + func.least(50, (func.length(Submission.body_html)-func.length(func.replace(Submission.body_html,'<a href="https://','')))/5))/(func.power(((ti - Submission.created_utc)/1000), 1.23)), Submission.created_utc.desc())
|
2022-08-15 14:16:35 +00:00
|
|
|
else:
|
|
|
|
posts = posts.order_by(-1000000*(Submission.upvotes - Submission.downvotes + 1)/(func.power(((ti - Submission.created_utc)/1000), 1.23)), Submission.created_utc.desc())
|
2022-05-04 23:09:46 +00:00
|
|
|
elif sort == "bump":
|
|
|
|
posts = posts.filter(Submission.comment_count > 1).order_by(Submission.bump_utc.desc(), Submission.created_utc.desc())
|
2022-06-22 19:57:57 +00:00
|
|
|
else:
|
|
|
|
posts = sort_posts(sort, posts)
|
2022-05-04 23:09:46 +00:00
|
|
|
|
|
|
|
if v: size = v.frontsize or 0
|
|
|
|
else: size = 25
|
|
|
|
|
2022-08-25 22:23:53 +00:00
|
|
|
if False:
|
|
|
|
posts = posts.offset(size * (page - 1)).limit(100).all()
|
|
|
|
social_found = False
|
|
|
|
music_found = False
|
|
|
|
for post in posts:
|
|
|
|
if post.sub == 'social':
|
|
|
|
if social_found: posts.remove(post)
|
|
|
|
else: social_found = True
|
|
|
|
elif post.sub == 'music':
|
|
|
|
if music_found: posts.remove(post)
|
|
|
|
else: music_found = True
|
|
|
|
else:
|
|
|
|
posts = posts.offset(size * (page - 1)).limit(size+1).all()
|
2022-05-04 23:09:46 +00:00
|
|
|
|
|
|
|
next_exists = (len(posts) > size)
|
|
|
|
|
|
|
|
posts = posts[:size]
|
|
|
|
|
2022-07-13 17:31:35 +00:00
|
|
|
if pins and page == 1 and ccmode == "false" and not gt and not lt:
|
2022-07-01 23:11:48 +00:00
|
|
|
if sub:
|
|
|
|
pins = g.db.query(Submission).filter(Submission.sub == sub.name, Submission.hole_pinned != None)
|
2022-07-01 23:18:41 +00:00
|
|
|
else:
|
2022-07-01 23:11:48 +00:00
|
|
|
pins = g.db.query(Submission).filter(Submission.stickied != None, Submission.is_banned == False)
|
2022-07-01 23:18:41 +00:00
|
|
|
|
|
|
|
if v:
|
|
|
|
pins = pins.filter(or_(Submission.sub == None, Submission.sub.notin_(v.all_blocks)))
|
|
|
|
for pin in pins:
|
|
|
|
if pin.stickied_utc and int(time.time()) > pin.stickied_utc:
|
|
|
|
pin.stickied = None
|
|
|
|
pin.stickied_utc = None
|
|
|
|
g.db.add(pin)
|
|
|
|
|
|
|
|
|
|
|
|
if v: pins = pins.filter(Submission.author_id.notin_(v.userblocks))
|
2022-05-04 23:09:46 +00:00
|
|
|
|
2022-07-01 23:11:48 +00:00
|
|
|
pins = pins.order_by(Submission.created_utc.desc()).all()
|
2022-05-04 23:09:46 +00:00
|
|
|
|
|
|
|
posts = pins + posts
|
|
|
|
|
|
|
|
if ids_only: posts = [x.id for x in posts]
|
|
|
|
|
|
|
|
|
|
|
|
return posts, next_exists
|
|
|
|
|
|
|
|
|
|
|
|
@app.get("/random_post")
|
|
|
|
@auth_required
|
|
|
|
def random_post(v):
|
|
|
|
|
|
|
|
p = g.db.query(Submission.id).filter(Submission.deleted_utc == 0, Submission.is_banned == False, Submission.private == False).order_by(func.random()).first()
|
|
|
|
|
|
|
|
if p: p = p[0]
|
|
|
|
else: abort(404)
|
|
|
|
|
|
|
|
return redirect(f"/post/{p}")
|
|
|
|
|
|
|
|
|
|
|
|
@app.get("/random_user")
|
|
|
|
@auth_required
|
|
|
|
def random_user(v):
|
|
|
|
|
|
|
|
u = g.db.query(User.username).filter(User.song != None).order_by(func.random()).first()
|
|
|
|
|
|
|
|
if u: u = u[0]
|
2022-07-09 08:35:47 +00:00
|
|
|
else: return "No users have set a profile anthem so far!"
|
2022-05-04 23:09:46 +00:00
|
|
|
|
|
|
|
return redirect(f"/@{u}")
|
|
|
|
|
|
|
|
|
|
|
|
@app.get("/comments")
|
|
|
|
@auth_required
|
|
|
|
def all_comments(v):
|
|
|
|
|
|
|
|
|
|
|
|
try: page = max(int(request.values.get("page", 1)), 1)
|
|
|
|
except: page = 1
|
|
|
|
|
|
|
|
sort=request.values.get("sort", "new")
|
2022-07-08 16:21:13 +00:00
|
|
|
t=request.values.get("t", DEFAULT_TIME_FILTER)
|
2022-05-04 23:09:46 +00:00
|
|
|
|
|
|
|
try: gt=int(request.values.get("after", 0))
|
|
|
|
except: gt=0
|
|
|
|
|
|
|
|
try: lt=int(request.values.get("before", 0))
|
|
|
|
except: lt=0
|
|
|
|
|
|
|
|
idlist = comment_idlist(v=v,
|
|
|
|
page=page,
|
|
|
|
sort=sort,
|
|
|
|
t=t,
|
|
|
|
gt=gt,
|
|
|
|
lt=lt,
|
|
|
|
site=SITE
|
|
|
|
)
|
|
|
|
|
|
|
|
comments = get_comments(idlist, v=v)
|
|
|
|
|
|
|
|
next_exists = len(idlist) > 25
|
|
|
|
|
|
|
|
idlist = idlist[:25]
|
|
|
|
|
|
|
|
if request.headers.get("Authorization"): return {"data": [x.json for x in comments]}
|
|
|
|
return render_template("home_comments.html", v=v, sort=sort, t=t, page=page, comments=comments, standalone=True, next_exists=next_exists)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@cache.memoize(timeout=86400)
|
|
|
|
def comment_idlist(page=1, v=None, nsfw=False, sort="new", t="all", gt=0, lt=0, site=None):
|
|
|
|
|
2022-07-02 06:48:04 +00:00
|
|
|
comments = g.db.query(Comment.id).filter(Comment.parent_submission != None, Comment.author_id.notin_(v.userblocks))
|
2022-05-04 23:09:46 +00:00
|
|
|
|
|
|
|
if v.admin_level < 2:
|
|
|
|
private = [x[0] for x in g.db.query(Submission.id).filter(Submission.private == True).all()]
|
|
|
|
|
2022-05-24 20:43:49 +00:00
|
|
|
comments = comments.filter(Comment.is_banned==False, Comment.deleted_utc == 0, Comment.parent_submission.notin_(private))
|
2022-05-04 23:09:46 +00:00
|
|
|
|
|
|
|
|
|
|
|
if not v.paid_dues:
|
|
|
|
club = [x[0] for x in g.db.query(Submission.id).filter(Submission.club == True).all()]
|
|
|
|
comments = comments.filter(Comment.parent_submission.notin_(club))
|
|
|
|
|
|
|
|
|
|
|
|
if gt: comments = comments.filter(Comment.created_utc > gt)
|
|
|
|
if lt: comments = comments.filter(Comment.created_utc < lt)
|
|
|
|
|
|
|
|
if not gt and not lt:
|
2022-07-09 10:32:49 +00:00
|
|
|
comments = apply_time_filter(t, comments, Comment)
|
2022-05-04 23:09:46 +00:00
|
|
|
|
2022-06-22 19:50:20 +00:00
|
|
|
comments = sort_comments(sort, comments)
|
2022-05-04 23:09:46 +00:00
|
|
|
|
|
|
|
comments = comments.offset(25 * (page - 1)).limit(26).all()
|
2022-07-13 15:20:10 +00:00
|
|
|
return [x[0] for x in comments]
|