2016-06-23 11:32:45 +02:00
|
|
|
|
|
|
|
import os
|
|
|
|
import re
|
|
|
|
import ujson
|
2016-07-30 05:03:57 +02:00
|
|
|
|
2017-10-23 07:31:04 +02:00
|
|
|
from subprocess import check_output, CalledProcessError
|
2016-12-08 05:06:51 +01:00
|
|
|
from typing import Any, Dict, List, Text
|
2016-06-23 11:32:45 +02:00
|
|
|
|
|
|
|
from django.core.management.commands import compilemessages
|
|
|
|
from django.conf import settings
|
2017-10-20 07:48:47 +02:00
|
|
|
from django.conf.locale import LANG_INFO
|
|
|
|
from django.utils.translation.trans_real import to_language
|
2016-06-23 11:32:45 +02:00
|
|
|
|
2016-07-26 14:34:18 +02:00
|
|
|
import polib
|
2016-06-23 11:32:45 +02:00
|
|
|
|
2017-09-13 07:04:22 +02:00
|
|
|
from zerver.lib.i18n import with_language
|
|
|
|
|
2016-06-23 11:32:45 +02:00
|
|
|
class Command(compilemessages.Command):
|
|
|
|
|
2017-10-26 11:35:57 +02:00
|
|
|
def handle(self, *args: Any, **options: Any) -> None:
|
2017-02-04 02:06:58 +01:00
|
|
|
if settings.PRODUCTION:
|
|
|
|
# HACK: When using upgrade-zulip-from-git, we're in a
|
|
|
|
# production environment where STATIC_ROOT will include
|
|
|
|
# past versions; this ensures we only process the current
|
|
|
|
# version
|
|
|
|
settings.STATIC_ROOT = os.path.join(settings.DEPLOY_ROOT, "static")
|
|
|
|
settings.LOCALE_PATHS = (os.path.join(settings.DEPLOY_ROOT, 'static/locale'),)
|
2017-10-27 08:28:23 +02:00
|
|
|
super().handle(*args, **options)
|
2016-06-23 11:32:45 +02:00
|
|
|
self.extract_language_options()
|
2017-09-13 07:04:22 +02:00
|
|
|
self.create_language_name_map()
|
|
|
|
|
2017-10-26 11:35:57 +02:00
|
|
|
def create_language_name_map(self) -> None:
|
2017-09-13 07:04:22 +02:00
|
|
|
join = os.path.join
|
|
|
|
static_root = settings.STATIC_ROOT
|
|
|
|
path = join(static_root, 'locale', 'language_options.json')
|
|
|
|
output_path = join(static_root, 'locale', 'language_name_map.json')
|
|
|
|
|
|
|
|
with open(path, 'r') as reader:
|
|
|
|
languages = ujson.load(reader)
|
|
|
|
lang_list = []
|
|
|
|
for lang_info in languages['languages']:
|
2017-10-20 08:12:30 +02:00
|
|
|
lang_info['name'] = lang_info['name_local']
|
|
|
|
del lang_info['name_local']
|
2017-09-13 07:04:22 +02:00
|
|
|
lang_list.append(lang_info)
|
|
|
|
|
|
|
|
lang_list.sort(key=lambda lang: lang['name'])
|
|
|
|
|
|
|
|
with open(output_path, 'w') as output_file:
|
|
|
|
ujson.dump({'name_map': lang_list}, output_file, indent=4)
|
2016-06-23 11:32:45 +02:00
|
|
|
|
2017-10-26 11:35:57 +02:00
|
|
|
def get_po_filename(self, locale_path: Text, locale: Text) -> Text:
|
2016-07-26 14:34:18 +02:00
|
|
|
po_template = '{}/{}/LC_MESSAGES/django.po'
|
|
|
|
return po_template.format(locale_path, locale)
|
|
|
|
|
2017-10-26 11:35:57 +02:00
|
|
|
def get_json_filename(self, locale_path: Text, locale: Text) -> Text:
|
2016-07-30 05:03:57 +02:00
|
|
|
return "{}/{}/translations.json".format(locale_path, locale)
|
2016-07-26 14:34:18 +02:00
|
|
|
|
2017-10-26 11:35:57 +02:00
|
|
|
def get_name_from_po_file(self, po_filename: Text, locale: Text) -> Text:
|
2017-10-20 07:48:47 +02:00
|
|
|
lang_name_re = re.compile('"Language-Team: (.*?) \(')
|
|
|
|
with open(po_filename, 'r') as reader:
|
|
|
|
result = lang_name_re.search(reader.read())
|
|
|
|
if result:
|
|
|
|
try:
|
|
|
|
return result.group(1)
|
|
|
|
except Exception:
|
|
|
|
print("Problem in parsing {}".format(po_filename))
|
|
|
|
raise
|
|
|
|
else:
|
|
|
|
raise Exception("Unknown language %s" % (locale,))
|
|
|
|
|
2017-10-26 11:35:57 +02:00
|
|
|
def get_locales(self) -> List[Text]:
|
2017-10-23 07:31:04 +02:00
|
|
|
tracked_files = check_output(['git', 'ls-files', 'static/locale'])
|
|
|
|
tracked_files = tracked_files.decode().split()
|
|
|
|
regex = re.compile('static/locale/(\w+)/LC_MESSAGES/django.po')
|
|
|
|
locales = ['en']
|
|
|
|
for tracked_file in tracked_files:
|
|
|
|
matched = regex.search(tracked_file)
|
|
|
|
if matched:
|
|
|
|
locales.append(matched.group(1))
|
|
|
|
|
|
|
|
return locales
|
|
|
|
|
2017-10-26 11:35:57 +02:00
|
|
|
def extract_language_options(self) -> None:
|
2017-11-02 09:22:26 +01:00
|
|
|
locale_path = "{}/locale".format(settings.STATIC_ROOT)
|
|
|
|
output_path = "{}/language_options.json".format(locale_path)
|
2016-06-23 11:32:45 +02:00
|
|
|
|
2016-08-02 14:25:32 +02:00
|
|
|
data = {'languages': []} # type: Dict[str, List[Dict[str, Any]]]
|
2016-06-23 11:32:45 +02:00
|
|
|
|
2017-10-23 07:31:04 +02:00
|
|
|
try:
|
|
|
|
locales = self.get_locales()
|
|
|
|
except CalledProcessError:
|
|
|
|
# In case we are not under a Git repo, fallback to getting the
|
|
|
|
# locales using listdir().
|
|
|
|
locales = os.listdir(locale_path)
|
2017-11-02 09:22:26 +01:00
|
|
|
locales.append('en')
|
2017-10-23 07:31:04 +02:00
|
|
|
locales = list(set(locales))
|
2016-07-05 09:25:23 +02:00
|
|
|
|
|
|
|
for locale in locales:
|
2017-10-20 07:48:47 +02:00
|
|
|
if locale == 'en':
|
2016-07-26 14:34:18 +02:00
|
|
|
data['languages'].append({
|
2017-10-20 07:48:47 +02:00
|
|
|
'name': 'English',
|
|
|
|
'name_local': 'English',
|
|
|
|
'code': 'en',
|
2017-10-20 08:16:18 +02:00
|
|
|
'locale': 'en',
|
2016-07-26 14:34:18 +02:00
|
|
|
})
|
2016-06-23 11:32:45 +02:00
|
|
|
continue
|
2017-02-03 23:26:10 +01:00
|
|
|
|
2017-10-20 07:48:47 +02:00
|
|
|
lc_messages_path = os.path.join(locale_path, locale, 'LC_MESSAGES')
|
|
|
|
if not os.path.exists(lc_messages_path):
|
|
|
|
# Not a locale.
|
|
|
|
continue
|
2016-06-23 11:32:45 +02:00
|
|
|
|
2017-10-20 07:48:47 +02:00
|
|
|
info = {} # type: Dict[str, Any]
|
|
|
|
code = to_language(locale)
|
2016-07-26 14:34:18 +02:00
|
|
|
percentage = self.get_translation_percentage(locale_path, locale)
|
2017-10-20 07:48:47 +02:00
|
|
|
try:
|
|
|
|
name = LANG_INFO[code]['name']
|
|
|
|
name_local = LANG_INFO[code]['name_local']
|
|
|
|
except KeyError:
|
|
|
|
# Fallback to getting the name from PO file.
|
|
|
|
filename = self.get_po_filename(locale_path, locale)
|
|
|
|
name = self.get_name_from_po_file(filename, locale)
|
|
|
|
name_local = with_language(name, code)
|
2016-07-26 14:34:18 +02:00
|
|
|
|
2016-06-23 11:32:45 +02:00
|
|
|
info['name'] = name
|
2017-10-20 07:48:47 +02:00
|
|
|
info['name_local'] = name_local
|
2017-10-20 08:16:18 +02:00
|
|
|
info['code'] = code
|
|
|
|
info['locale'] = locale
|
2016-07-26 14:34:18 +02:00
|
|
|
info['percent_translated'] = percentage
|
2017-10-20 07:48:47 +02:00
|
|
|
data['languages'].append(info)
|
2016-06-23 11:32:45 +02:00
|
|
|
|
|
|
|
with open(output_path, 'w') as writer:
|
2016-07-14 12:00:26 +02:00
|
|
|
ujson.dump(data, writer, indent=2)
|
2016-07-26 14:34:18 +02:00
|
|
|
|
2017-10-26 11:35:57 +02:00
|
|
|
def get_translation_percentage(self, locale_path: Text, locale: Text) -> int:
|
2016-07-30 05:03:57 +02:00
|
|
|
|
2016-07-26 14:34:18 +02:00
|
|
|
# backend stats
|
|
|
|
po = polib.pofile(self.get_po_filename(locale_path, locale))
|
|
|
|
not_translated = len(po.untranslated_entries())
|
|
|
|
total = len(po.translated_entries()) + not_translated
|
|
|
|
|
|
|
|
# frontend stats
|
|
|
|
with open(self.get_json_filename(locale_path, locale)) as reader:
|
|
|
|
for key, value in ujson.load(reader).items():
|
|
|
|
total += 1
|
2017-10-04 10:09:24 +02:00
|
|
|
if value == '':
|
2016-07-26 14:34:18 +02:00
|
|
|
not_translated += 1
|
|
|
|
|
2016-08-02 14:25:32 +02:00
|
|
|
return (total - not_translated) * 100 // total
|