mirror of
https://github.com/taigaio/taiga-back
synced 2025-10-06 00:02:52 +02:00
64 lines
2.2 KiB
Python
64 lines
2.2 KiB
Python
# -*- coding: utf-8 -*-
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
#
|
|
# Copyright (c) 2021-present Kaleidos Ventures SL
|
|
#
|
|
# The code is partially taken (and modified) from djangorestframework-simplejwt v. 4.7.1
|
|
# (https://github.com/jazzband/djangorestframework-simplejwt/tree/5997c1aee8ad5182833d6b6759e44ff0a704edb4)
|
|
# that is licensed under the following terms:
|
|
#
|
|
# Copyright 2017 David Sanders
|
|
#
|
|
# Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
# this software and associated documentation files (the "Software"), to deal in
|
|
# the Software without restriction, including without limitation the rights to
|
|
# use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
# of the Software, and to permit persons to whom the Software is furnished to do
|
|
# so, subject to the following conditions:
|
|
#
|
|
# The above copyright notice and this permission notice shall be included in all
|
|
# copies or substantial portions of the Software.
|
|
#
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
# SOFTWARE.
|
|
|
|
from calendar import timegm
|
|
from datetime import datetime
|
|
|
|
from django.conf import settings
|
|
from django.utils.functional import lazy
|
|
from django.utils.timezone import is_naive, make_aware, utc
|
|
|
|
|
|
def make_utc(dt):
|
|
if settings.USE_TZ and is_naive(dt):
|
|
return make_aware(dt, timezone=utc)
|
|
|
|
return dt
|
|
|
|
|
|
def aware_utcnow():
|
|
return make_utc(datetime.utcnow())
|
|
|
|
|
|
def datetime_to_epoch(dt):
|
|
return timegm(dt.utctimetuple())
|
|
|
|
|
|
def datetime_from_epoch(ts):
|
|
return make_utc(datetime.utcfromtimestamp(ts))
|
|
|
|
|
|
def format_lazy(s, *args, **kwargs):
|
|
return s.format(*args, **kwargs)
|
|
|
|
|
|
format_lazy = lazy(format_lazy, str)
|