forked from MarseyWorld/MarseyWorld
sneed
parent
9d780a6aa8
commit
1568ec0162
|
@ -34,7 +34,7 @@ WORDLE_COLOR_MAPPINGS = {-1: "🟥", 0: "🟨", 1: "🟩"}
|
|||
@app.get("/logged_out/post/<pid>/<anything>/<cid>")
|
||||
@app.get("/logged_out/h/<sub>/comment/<cid>")
|
||||
@app.get("/logged_out/h/<sub>/post/<pid>/<anything>/<cid>")
|
||||
@auth_desired
|
||||
@auth_required
|
||||
def post_pid_comment_cid(cid, pid=None, anything=None, v=None, sub=None):
|
||||
|
||||
if not v and not request.path.startswith('/logged_out'): return redirect(f"/logged_out{request.full_path}#context")
|
||||
|
|
|
@ -19,7 +19,7 @@ def error_401(e):
|
|||
path = request.path
|
||||
qs = urlencode(dict(request.values))
|
||||
argval = quote(f"{path}?{qs}", safe='')
|
||||
return redirect(f"/login?redirect={argval}")
|
||||
return redirect(f"/signup?redirect={argval}")
|
||||
|
||||
@app.errorhandler(406)
|
||||
def error_406(e):
|
||||
|
|
|
@ -16,7 +16,7 @@ from files.helpers.awards import award_timers
|
|||
@app.get("/logged_out/h/<sub>")
|
||||
@app.get("/logged_out/s/<sub>")
|
||||
@limiter.limit("3/second;30/minute;5000/hour;10000/day")
|
||||
@auth_desired
|
||||
@auth_required
|
||||
def front_all(v, sub=None, subdomain=None):
|
||||
|
||||
if not v and not request.path.startswith('/logged_out'):
|
||||
|
|
|
@ -103,7 +103,7 @@ def submit_get(v, sub=None):
|
|||
@app.get("/logged_out/post/<pid>/<anything>")
|
||||
@app.get("/logged_out/h/<sub>/post/<pid>")
|
||||
@app.get("/logged_out/h/<sub>/post/<pid>/<anything>")
|
||||
@auth_desired
|
||||
@auth_required
|
||||
def post_id(pid, anything=None, v=None, sub=None):
|
||||
|
||||
if not v and not request.path.startswith('/logged_out'): return redirect(f"/logged_out{request.full_path}")
|
||||
|
@ -233,7 +233,7 @@ def post_id(pid, anything=None, v=None, sub=None):
|
|||
|
||||
@app.get("/viewmore/<pid>/<sort>/<offset>")
|
||||
@limiter.limit("1/second;30/minute;200/hour;1000/day")
|
||||
@auth_desired
|
||||
@auth_required
|
||||
def viewmore(v, pid, sort, offset):
|
||||
try: pid = int(pid)
|
||||
except: abort(400)
|
||||
|
@ -324,7 +324,7 @@ def viewmore(v, pid, sort, offset):
|
|||
|
||||
@app.get("/morecomments/<cid>")
|
||||
@limiter.limit("1/second;30/minute;200/hour;1000/day")
|
||||
@auth_desired
|
||||
@auth_required
|
||||
def morecomments(v, cid):
|
||||
try: cid = int(cid)
|
||||
except: abort(400)
|
||||
|
|
|
@ -437,7 +437,7 @@ def sub_sidebar(v, sub):
|
|||
return redirect(f'/h/{sub.name}/settings')
|
||||
|
||||
@app.get("/holes")
|
||||
@auth_desired
|
||||
@auth_required
|
||||
def subs(v):
|
||||
subs = g.db.query(Sub, func.count(Submission.sub)).outerjoin(Submission, Sub.name == Submission.sub).group_by(Sub.name).order_by(func.count(Submission.sub).desc()).all()
|
||||
return render_template('sub/subs.html', v=v, subs=subs)
|
||||
|
|
|
@ -904,7 +904,7 @@ def visitors(v):
|
|||
@app.get("/@<username>")
|
||||
@app.get("/@<username>.json")
|
||||
@app.get("/logged_out/@<username>")
|
||||
@auth_desired
|
||||
@auth_required
|
||||
def u_username(username, v=None):
|
||||
|
||||
if not v and not request.path.startswith('/logged_out'):
|
||||
|
@ -1016,7 +1016,7 @@ def u_username(username, v=None):
|
|||
@app.get("/@<username>/comments")
|
||||
@app.get("/@<username>/comments.json")
|
||||
@app.get("/logged_out/@<username>/comments")
|
||||
@auth_desired
|
||||
@auth_required
|
||||
def u_username_comments(username, v=None):
|
||||
|
||||
if not v and not request.path.startswith('/logged_out'):
|
||||
|
|
Loading…
Reference in New Issue