summaryrefslogtreecommitdiffstats
path: root/tools/pharos-dashboard/account/middleware.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/pharos-dashboard/account/middleware.py')
-rw-r--r--tools/pharos-dashboard/account/middleware.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/tools/pharos-dashboard/account/middleware.py b/tools/pharos-dashboard/account/middleware.py
new file mode 100644
index 00000000..f5170baa
--- /dev/null
+++ b/tools/pharos-dashboard/account/middleware.py
@@ -0,0 +1,15 @@
+from django.core.exceptions import ObjectDoesNotExist
+from django.utils import timezone
+from django.utils.deprecation import MiddlewareMixin
+
+
+class TimezoneMiddleware(MiddlewareMixin):
+ """
+ Activate the timezone from request.user.userprofile if user is authenticated,
+ deactivate the timezone otherwise and use default (UTC)
+ """
+ def process_request(self, request):
+ if request.user.is_authenticated:
+ timezone.activate(request.user.userprofile.timezone)
+ else:
+ timezone.deactivate()