mirror of
https://github.com/zulip/zulip.git
synced 2025-11-03 21:43:21 +00:00
This commit adds get_browser_language_code function which returns None if there is no Accept-language header in the request or Accept-languge header contains only unsupported languages or all languages (meaning header having value of '*'). Otherwise it returns the language with highest weight/quality-value.
85 lines
2.9 KiB
Python
85 lines
2.9 KiB
Python
# See https://zulip.readthedocs.io/en/latest/translating/internationalization.html
|
|
|
|
import logging
|
|
import os
|
|
from functools import lru_cache
|
|
from typing import Any, Dict, List, Optional
|
|
|
|
import orjson
|
|
from django.conf import settings
|
|
from django.http import HttpRequest
|
|
from django.utils import translation
|
|
from django.utils.translation.trans_real import parse_accept_lang_header
|
|
|
|
from zerver.lib.request import RequestNotes
|
|
|
|
|
|
@lru_cache(None)
|
|
def get_language_list() -> List[Dict[str, Any]]:
|
|
path = os.path.join(settings.DEPLOY_ROOT, "locale", "language_name_map.json")
|
|
with open(path, "rb") as reader:
|
|
languages = orjson.loads(reader.read())
|
|
return languages["name_map"]
|
|
|
|
|
|
def get_language_name(code: str) -> str:
|
|
for lang in get_language_list():
|
|
if code in (lang["code"], lang["locale"]):
|
|
return lang["name"]
|
|
# Log problem, but still return a name
|
|
logging.error("Unknown language code '%s'", code)
|
|
return "Unknown"
|
|
|
|
|
|
def get_available_language_codes() -> List[str]:
|
|
language_list = get_language_list()
|
|
codes = [language["code"] for language in language_list]
|
|
return codes
|
|
|
|
|
|
def get_language_translation_data(language: str) -> Dict[str, str]:
|
|
if language == "en":
|
|
return {}
|
|
locale = translation.to_locale(language)
|
|
path = os.path.join(settings.DEPLOY_ROOT, "locale", locale, "translations.json")
|
|
try:
|
|
with open(path, "rb") as reader:
|
|
return orjson.loads(reader.read())
|
|
except FileNotFoundError:
|
|
print(f"Translation for {language} not found at {path}")
|
|
return {}
|
|
|
|
|
|
def get_and_set_request_language(
|
|
request: HttpRequest, user_configured_language: str, testing_url_language: Optional[str] = None
|
|
) -> str:
|
|
# We pick a language for the user as follows:
|
|
# * First priority is the language in the URL, for debugging.
|
|
# * If not in the URL, we use the language from the user's settings.
|
|
request_language = testing_url_language
|
|
if request_language is None:
|
|
request_language = user_configured_language
|
|
translation.activate(request_language)
|
|
|
|
# We also want to save the language to the user's cookies, so that
|
|
# something reasonable will happen in logged-in portico pages.
|
|
# We accomplish that by setting a flag on the request which signals
|
|
# to LocaleMiddleware to set the cookie on the response.
|
|
RequestNotes.get_notes(request).set_language = translation.get_language()
|
|
|
|
return request_language
|
|
|
|
|
|
def get_browser_language_code(request: HttpRequest) -> Optional[str]:
|
|
accept_lang_header = request.META.get("HTTP_ACCEPT_LANGUAGE")
|
|
if accept_lang_header is None:
|
|
return None
|
|
|
|
available_language_codes = get_available_language_codes()
|
|
for accept_lang, priority in parse_accept_lang_header(request.META.get("HTTP_ACCEPT_LANGUAGE")):
|
|
if accept_lang == "*":
|
|
return None
|
|
if accept_lang in available_language_codes:
|
|
return accept_lang
|
|
return None
|