You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
isso/isso/views/admin.py

29 lines
901 B

# -*- encoding: utf-8 -*-
from os.path import join, dirname
from werkzeug.wrappers import Response
from werkzeug.exceptions import abort
from werkzeug.utils import redirect
from itsdangerous import SignatureExpired, BadSignature
def index(app, environ, request):
if request.method == 'POST':
if request.form.get('password') == app.PASSPHRASE:
resp = redirect('/admin/', 301)
resp.set_cookie('admin', app.signer.dumps('*'), max_age=app.MAX_AGE)
return resp
else:
return abort(403)
else:
try:
app.unsign(request.cookies.get('admin', ''))
except (SignatureExpired, BadSignature):
return Response(app.render('login.j2'), content_type='text/html')
ctx = {'app': app, 'request': request}
return Response(app.render('admin.j2', app=app, request=request), content_type='text/html')