Created
May 19, 2019 10:01
-
-
Save reinefjord/0e940bd3b07404199942c1fec038898f to your computer and use it in GitHub Desktop.
Functions for saving user browsing history and getting a url for the previous page visited in flask. Lots of edge cases left.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@app.after_request | |
def save_response(r): | |
if flask.request.method == 'POST': | |
return r | |
if flask.request.endpoint == 'static': | |
return r | |
history = flask.session.get('history', []) | |
if history: | |
if (history[-1][0] == flask.request.endpoint and | |
history[-1][1] == flask.request.view_args): | |
return r | |
history.append([ | |
flask.request.endpoint, | |
flask.request.view_args, | |
r.status_code | |
]) | |
flask.session['history'] = history[-5:] | |
return r | |
def url_back(fallback, *args, **kwargs): | |
for step in flask.session.get('history', [])[::-1]: | |
if (step[0] == flask.request.endpoint and | |
step[1] == flask.request.view_args): | |
continue | |
if 200 <= step[2] < 300: | |
return flask.url_for(step[0], **step[1]) | |
return flask.url_for(fallback, *args, **kwargs) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment