forked from canonical/ubuntu.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdecorators.py
103 lines (80 loc) · 3.38 KB
/
decorators.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
# Core packages
import os
import functools
from distutils.util import strtobool
# Third party packages
import flask
from webapp.login import user_info
def login_required(func):
"""
Decorator that checks if a user is logged in, and redirects
to login page if not.
"""
@functools.wraps(func)
def is_user_logged_in(*args, **kwargs):
if not user_info(flask.session):
return flask.redirect("/login?next=" + flask.request.path)
return func(*args, **kwargs)
return is_user_logged_in
def advantage_checks(check_list=None):
if check_list is None:
check_list = []
def advantage_checks_decorator(func):
@functools.wraps(func)
def check_advantage(*args, **kwargs):
if "is_maintenance":
if strtobool(os.getenv("STORE_MAINTENANCE", "false")):
return flask.render_template("advantage/maintenance.html")
is_test_backend = flask.request.args.get("test_backend", False)
stripe_publishable_key = os.getenv(
"STRIPE_LIVE_PUBLISHABLE_KEY",
"pk_live_68aXqowUeX574aGsVck8eiIE",
)
api_url = flask.current_app.config["CONTRACTS_LIVE_API_URL"]
if is_test_backend:
stripe_publishable_key = os.getenv(
"STRIPE_TEST_PUBLISHABLE_KEY",
"pk_test_yndN9H0GcJffPe0W58Nm64cM00riYG4N46",
)
api_url = flask.current_app.config["CONTRACTS_TEST_API_URL"]
user_token = flask.session.get("authentication_token")
guest_token = flask.session.get("guest_authentication_token")
kwargs["test_backend"] = is_test_backend
kwargs["api_url"] = api_url
kwargs["stripe_publishable_key"] = stripe_publishable_key
kwargs["token"] = user_token or guest_token
kwargs["token_type"] = "Macaroon" if user_token else "Bearer"
if "view_need_user" in check_list and not user_info(flask.session):
if flask.request.path != "/advantage":
go_to = (
"/advantage?test_backend=true"
if is_test_backend
else "/advantage"
)
return flask.redirect(go_to)
return flask.render_template(
"advantage/index-no-login.html",
is_test_backend=is_test_backend,
)
if "view_need_guest" in check_list and user_info(flask.session):
go_to = (
"/advantage?test_backend=true"
if is_test_backend
else "/advantage"
)
return flask.redirect(go_to)
if "need_user" in check_list:
if not user_info(flask.session):
return (
flask.jsonify({"error": "authentication required"}),
401,
)
if "need_user_or_guest" in check_list:
if not user_info(flask.session) and not guest_token:
return (
flask.jsonify({"error": "authentication required"}),
401,
)
return func(*args, **kwargs)
return check_advantage
return advantage_checks_decorator