mirror of https://github.com/zulip/zulip.git
80 lines
1.7 KiB
Python
80 lines
1.7 KiB
Python
from functools import lru_cache
|
|
from io import TextIOWrapper
|
|
from typing import Dict
|
|
|
|
import pytz
|
|
|
|
|
|
@lru_cache(maxsize=None)
|
|
def get_canonical_timezone_map() -> Dict[str, str]:
|
|
canonical = {}
|
|
with TextIOWrapper(
|
|
pytz.open_resource("tzdata.zi") # type: ignore[attr-defined] # Unclear if this is part of the public pytz API
|
|
) as f:
|
|
for line in f:
|
|
if line.startswith("L "):
|
|
l, name, alias = line.split()
|
|
canonical[alias] = name
|
|
return canonical
|
|
|
|
|
|
def canonicalize_timezone(key: str) -> str:
|
|
return get_canonical_timezone_map().get(key, key)
|
|
|
|
|
|
# Note: some of these abbreviations are fundamentally ambiguous (see
|
|
# zerver/tests/test_timezone.py), so you should never rely on them as
|
|
# anything more than a heuristic.
|
|
common_timezones = {
|
|
"SST": -39600,
|
|
"HST": -36000,
|
|
"AKST": -32400,
|
|
"HDT": -32400,
|
|
"AKDT": -28800,
|
|
"PST": -28800,
|
|
"MST": -25200,
|
|
"PDT": -25200,
|
|
"CST": -21600,
|
|
"MDT": -21600,
|
|
"CDT": -18000,
|
|
"EST": -18000,
|
|
"AST": -14400,
|
|
"EDT": -14400,
|
|
"NST": -12600,
|
|
"ADT": -10800,
|
|
"NDT": -9000,
|
|
"GMT": 0,
|
|
"UTC": 0,
|
|
"WET": 0,
|
|
"BST": +3600,
|
|
"CET": +3600,
|
|
"MET": +3600,
|
|
"WAT": +3600,
|
|
"WEST": +3600,
|
|
"CAT": +7200,
|
|
"CEST": +7200,
|
|
"EET": +7200,
|
|
"MEST": +7200,
|
|
"SAST": +7200,
|
|
"EAT": +10800,
|
|
"EEST": +10800,
|
|
"IDT": +10800,
|
|
"MSK": +10800,
|
|
"PKT": +18000,
|
|
"IST": +19800,
|
|
"WIB": +25200,
|
|
"AWST": +28800,
|
|
"HKT": +28800,
|
|
"WITA": +28800,
|
|
"JST": +32400,
|
|
"KST": +32400,
|
|
"WIT": +32400,
|
|
"ACST": +34200,
|
|
"AEST": +36000,
|
|
"ChST": +36000,
|
|
"ACDT": +37800,
|
|
"AEDT": +39600,
|
|
"NZST": +43200,
|
|
"NZDT": +46800,
|
|
}
|