summaryrefslogtreecommitdiff
path: root/openstack_auth/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'openstack_auth/utils.py')
-rw-r--r--openstack_auth/utils.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/openstack_auth/utils.py b/openstack_auth/utils.py
index d861010..358f772 100644
--- a/openstack_auth/utils.py
+++ b/openstack_auth/utils.py
@@ -183,6 +183,15 @@ def is_websso_enabled():
return websso_enabled and keystonev3_plus
+def build_absolute_uri(request, relative_url):
+ """Ensure absolute_uri are relative to WEBROOT."""
+ webroot = getattr(settings, 'WEBROOT', '')
+ if webroot.endswith("/") and relative_url.startswith("/"):
+ webroot = webroot[:-1]
+
+ return request.build_absolute_uri(webroot + relative_url)
+
+
def has_in_url_path(url, sub):
"""Test if the `sub` string is in the `url` path."""
scheme, netloc, path, query, fragment = urlparse.urlsplit(url)