Celery 3.1, librarian update
[wolnelektury.git] / wolnelektury / utils.py
1 # -*- coding: utf-8 -*-
2 # This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
3 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
4 #
5 import pytz
6 from django.utils import timezone
7 from django.conf import settings
8 from pipeline.storage import GZIPMixin
9 from pipeline.storage import PipelineCachedStorage
10
11 tz = pytz.timezone(settings.TIME_ZONE)
12
13 def localtime_to_utc(localtime):
14     return timezone.utc.normalize(
15         tz.localize(localtime)
16     )
17
18 def utc_for_js(dt):
19     return dt.strftime('%Y/%m/%d %H:%M:%S UTC')
20
21 class GzipPipelineCachedStorage(GZIPMixin, PipelineCachedStorage):
22     pass