forked from EVOgeek/Vmeda.Online
477 lines
17 KiB
TypeScript
477 lines
17 KiB
TypeScript
|
// (C) Copyright 2015 Moodle Pty Ltd.
|
||
|
//
|
||
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
// you may not use this file except in compliance with the License.
|
||
|
// You may obtain a copy of the License at
|
||
|
//
|
||
|
// http://www.apache.org/licenses/LICENSE-2.0
|
||
|
//
|
||
|
// Unless required by applicable law or agreed to in writing, software
|
||
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
// See the License for the specific language governing permissions and
|
||
|
// limitations under the License.
|
||
|
|
||
|
import { Injectable } from '@angular/core';
|
||
|
|
||
|
import { CoreConstants } from '@/core/constants';
|
||
|
import { LangChangeEvent } from '@ngx-translate/core';
|
||
|
import { CoreAppProvider } from '@services/app';
|
||
|
import { CoreConfig } from '@services/config';
|
||
|
import { makeSingleton, Translate, Platform } from '@singletons/core.singletons';
|
||
|
|
||
|
import * as moment from 'moment';
|
||
|
|
||
|
/*
|
||
|
* Service to handle language features, like changing the current language.
|
||
|
*/
|
||
|
@Injectable()
|
||
|
export class CoreLangProvider {
|
||
|
|
||
|
protected fallbackLanguage = 'en'; // Always use English as fallback language since it contains all strings.
|
||
|
protected defaultLanguage = CoreConstants.CONFIG.default_lang || 'en'; // Lang to use if device lang not valid or is forced.
|
||
|
protected currentLanguage?: string; // Save current language in a variable to speed up the get function.
|
||
|
protected customStrings: CoreLanguageObject = {}; // Strings defined using the admin tool.
|
||
|
protected customStringsRaw?: string;
|
||
|
protected sitePluginsStrings: CoreLanguageObject = {}; // Strings defined by site plugins.
|
||
|
|
||
|
constructor() {
|
||
|
// Set fallback language and language to use until the app determines the right language to use.
|
||
|
Translate.instance.setDefaultLang(this.fallbackLanguage);
|
||
|
Translate.instance.use(this.defaultLanguage);
|
||
|
|
||
|
this.initLanguage();
|
||
|
|
||
|
Translate.instance.onLangChange.subscribe((event: LangChangeEvent) => {
|
||
|
document.documentElement.setAttribute('lang', event.lang);
|
||
|
|
||
|
let dir = Translate.instance.instant('core.thisdirection');
|
||
|
dir = dir.indexOf('rtl') != -1 ? 'rtl' : 'ltr';
|
||
|
document.documentElement.setAttribute('dir', dir);
|
||
|
});
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Init language.
|
||
|
*/
|
||
|
protected async initLanguage(): Promise<void> {
|
||
|
await Platform.instance.ready();
|
||
|
|
||
|
let language: string;
|
||
|
|
||
|
if (CoreAppProvider.isAutomated()) {
|
||
|
// Force current language to English when Behat is running.
|
||
|
language = 'en';
|
||
|
} else {
|
||
|
language = await this.getCurrentLanguage();
|
||
|
}
|
||
|
|
||
|
return this.changeCurrentLanguage(language);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Add a set of site plugins strings for a certain language.
|
||
|
*
|
||
|
* @param lang The language where to add the strings.
|
||
|
* @param strings Object with the strings to add.
|
||
|
* @param prefix A prefix to add to all keys.
|
||
|
*/
|
||
|
addSitePluginsStrings(lang: string, strings: string[], prefix?: string): void {
|
||
|
lang = lang.replace(/_/g, '-'); // Use the app format instead of Moodle format.
|
||
|
|
||
|
// Initialize structure if it doesn't exist.
|
||
|
if (!this.sitePluginsStrings[lang]) {
|
||
|
this.sitePluginsStrings[lang] = {};
|
||
|
}
|
||
|
|
||
|
for (const key in strings) {
|
||
|
const prefixedKey = prefix + key;
|
||
|
let value = strings[key];
|
||
|
|
||
|
if (this.customStrings[lang] && this.customStrings[lang][prefixedKey]) {
|
||
|
// This string is overridden by a custom string, ignore it.
|
||
|
continue;
|
||
|
}
|
||
|
|
||
|
// Replace the way to access subproperties.
|
||
|
value = value.replace(/\$a->/gm, '$a.');
|
||
|
// Add another curly bracket to string params ({$a} -> {{$a}}).
|
||
|
value = value.replace(/{([^ ]+)}/gm, '{{$1}}');
|
||
|
// Make sure we didn't add to many brackets in some case.
|
||
|
value = value.replace(/{{{([^ ]+)}}}/gm, '{{$1}}');
|
||
|
|
||
|
// Load the string.
|
||
|
this.loadString(this.sitePluginsStrings, lang, prefixedKey, value);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Capitalize a string (make the first letter uppercase).
|
||
|
* We cannot use a function from text utils because it would cause a circular dependency.
|
||
|
*
|
||
|
* @param value String to capitalize.
|
||
|
* @return Capitalized string.
|
||
|
*/
|
||
|
protected capitalize(value: string): string {
|
||
|
return value.charAt(0).toUpperCase() + value.slice(1);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Change current language.
|
||
|
*
|
||
|
* @param language New language to use.
|
||
|
* @return Promise resolved when the change is finished.
|
||
|
*/
|
||
|
async changeCurrentLanguage(language: string): Promise<void> {
|
||
|
const promises: Promise<unknown>[] = [];
|
||
|
|
||
|
// Change the language, resolving the promise when we receive the first value.
|
||
|
promises.push(new Promise((resolve, reject) => {
|
||
|
const subscription = Translate.instance.use(language).subscribe((data) => {
|
||
|
// It's a language override, load the original one first.
|
||
|
const fallbackLang = Translate.instance.instant('core.parentlanguage');
|
||
|
|
||
|
if (fallbackLang != '' && fallbackLang != 'core.parentlanguage' && fallbackLang != language) {
|
||
|
const fallbackSubs = Translate.instance.use(fallbackLang).subscribe((fallbackData) => {
|
||
|
data = Object.assign(fallbackData, data);
|
||
|
resolve(data);
|
||
|
|
||
|
// Data received, unsubscribe. Use a timeout because we can receive a value immediately.
|
||
|
setTimeout(() => {
|
||
|
fallbackSubs.unsubscribe();
|
||
|
});
|
||
|
}, () => {
|
||
|
// Resolve with the original language.
|
||
|
resolve(data);
|
||
|
|
||
|
// Error received, unsubscribe. Use a timeout because we can receive a value immediately.
|
||
|
setTimeout(() => {
|
||
|
fallbackSubs.unsubscribe();
|
||
|
});
|
||
|
});
|
||
|
} else {
|
||
|
resolve(data);
|
||
|
}
|
||
|
|
||
|
// Data received, unsubscribe. Use a timeout because we can receive a value immediately.
|
||
|
setTimeout(() => {
|
||
|
subscription.unsubscribe();
|
||
|
});
|
||
|
}, (error) => {
|
||
|
reject(error);
|
||
|
|
||
|
// Error received, unsubscribe. Use a timeout because we can receive a value immediately.
|
||
|
setTimeout(() => {
|
||
|
subscription.unsubscribe();
|
||
|
});
|
||
|
});
|
||
|
}));
|
||
|
|
||
|
// Change the config.
|
||
|
promises.push(CoreConfig.instance.set('current_language', language));
|
||
|
|
||
|
// Use british english when parent english is loaded.
|
||
|
moment.locale(language == 'en' ? 'en-gb' : language);
|
||
|
|
||
|
// @todo: Set data for ion-datetime.
|
||
|
|
||
|
this.currentLanguage = language;
|
||
|
|
||
|
try {
|
||
|
await Promise.all(promises);
|
||
|
} finally {
|
||
|
// Load the custom and site plugins strings for the language.
|
||
|
if (this.loadLangStrings(this.customStrings, language) || this.loadLangStrings(this.sitePluginsStrings, language)) {
|
||
|
// Some lang strings have changed, emit an event to update the pipes.
|
||
|
Translate.instance.onLangChange.emit({ lang: language, translations: Translate.instance.translations[language] });
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Clear current custom strings.
|
||
|
*/
|
||
|
clearCustomStrings(): void {
|
||
|
this.unloadStrings(this.customStrings);
|
||
|
this.customStrings = {};
|
||
|
this.customStringsRaw = '';
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Clear current site plugins strings.
|
||
|
*/
|
||
|
clearSitePluginsStrings(): void {
|
||
|
this.unloadStrings(this.sitePluginsStrings);
|
||
|
this.sitePluginsStrings = {};
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Get all current custom strings.
|
||
|
*
|
||
|
* @return Custom strings.
|
||
|
*/
|
||
|
getAllCustomStrings(): CoreLanguageObject {
|
||
|
return this.customStrings;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Get all current site plugins strings.
|
||
|
*
|
||
|
* @return Site plugins strings.
|
||
|
*/
|
||
|
getAllSitePluginsStrings(): CoreLanguageObject {
|
||
|
return this.sitePluginsStrings;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Get current language.
|
||
|
*
|
||
|
* @return Promise resolved with the current language.
|
||
|
*/
|
||
|
async getCurrentLanguage(): Promise<string> {
|
||
|
if (typeof this.currentLanguage != 'undefined') {
|
||
|
return this.currentLanguage;
|
||
|
}
|
||
|
|
||
|
this.currentLanguage = await this.detectLanguage();
|
||
|
|
||
|
return this.currentLanguage;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Get the current language from settings, or detect the browser one.
|
||
|
*
|
||
|
* @return Promise resolved with the selected language.
|
||
|
*/
|
||
|
protected async detectLanguage(): Promise<string> {
|
||
|
// Get current language from config (user might have changed it).
|
||
|
try {
|
||
|
return await CoreConfig.instance.get<string>('current_language');
|
||
|
} catch (e) {
|
||
|
// Try will return, ignore errors here to avoid nesting.
|
||
|
}
|
||
|
|
||
|
// User hasn't defined a language. If default language is forced, use it.
|
||
|
if (CoreConstants.CONFIG.default_lang && CoreConstants.CONFIG.forcedefaultlanguage) {
|
||
|
return CoreConstants.CONFIG.default_lang;
|
||
|
}
|
||
|
|
||
|
// No forced language, try to get current language from browser.
|
||
|
let preferredLanguage = navigator.language.toLowerCase();
|
||
|
if (preferredLanguage.indexOf('-') > -1) {
|
||
|
// Language code defined by locale has a dash, like en-US or es-ES. Check if it's supported.
|
||
|
if (CoreConstants.CONFIG.languages && typeof CoreConstants.CONFIG.languages[preferredLanguage] == 'undefined') {
|
||
|
// Code is NOT supported. Fallback to language without dash. E.g. 'en-US' would fallback to 'en'.
|
||
|
preferredLanguage = preferredLanguage.substr(0, preferredLanguage.indexOf('-'));
|
||
|
}
|
||
|
}
|
||
|
|
||
|
if (typeof CoreConstants.CONFIG.languages[preferredLanguage] == 'undefined') {
|
||
|
// Language not supported, use default language.
|
||
|
return this.defaultLanguage;
|
||
|
}
|
||
|
|
||
|
return preferredLanguage;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Get the default language.
|
||
|
*
|
||
|
* @return Default language.
|
||
|
*/
|
||
|
getDefaultLanguage(): string {
|
||
|
return this.defaultLanguage;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Get the fallback language.
|
||
|
*
|
||
|
* @return Fallback language.
|
||
|
*/
|
||
|
getFallbackLanguage(): string {
|
||
|
return this.fallbackLanguage;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Get the full list of translations for a certain language.
|
||
|
*
|
||
|
* @param lang The language to check.
|
||
|
* @return Promise resolved when done.
|
||
|
*/
|
||
|
getTranslationTable(lang: string): Promise<Record<string, unknown>> {
|
||
|
// Create a promise to convert the observable into a promise.
|
||
|
return new Promise((resolve, reject): void => {
|
||
|
const observer = Translate.instance.getTranslation(lang).subscribe((table) => {
|
||
|
resolve(table);
|
||
|
observer.unsubscribe();
|
||
|
}, (err) => {
|
||
|
reject(err);
|
||
|
observer.unsubscribe();
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Load certain custom strings.
|
||
|
*
|
||
|
* @param strings Custom strings to load (tool_mobile_customlangstrings).
|
||
|
*/
|
||
|
loadCustomStrings(strings: string): void {
|
||
|
if (strings == this.customStringsRaw) {
|
||
|
// Strings haven't changed, stop.
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
// Reset current values.
|
||
|
this.clearCustomStrings();
|
||
|
|
||
|
if (!strings) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
let currentLangChanged = false;
|
||
|
|
||
|
const list: string[] = strings.split(/(?:\r\n|\r|\n)/);
|
||
|
list.forEach((entry: string) => {
|
||
|
const values: string[] = entry.split('|');
|
||
|
|
||
|
if (values.length < 3) {
|
||
|
// Not enough data, ignore the entry.
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
const lang = values[2].replace(/_/g, '-'); // Use the app format instead of Moodle format.
|
||
|
|
||
|
if (lang == this.currentLanguage) {
|
||
|
currentLangChanged = true;
|
||
|
}
|
||
|
|
||
|
if (!this.customStrings[lang]) {
|
||
|
this.customStrings[lang] = {};
|
||
|
}
|
||
|
|
||
|
// Convert old keys format to new one.
|
||
|
const key = values[0].replace(/^mm\.core/, 'core').replace(/^mm\./, 'core.').replace(/^mma\./, 'addon.')
|
||
|
.replace(/^core\.sidemenu/, 'core.mainmenu').replace(/^addon\.grades/, 'core.grades')
|
||
|
.replace(/^addon\.participants/, 'core.user');
|
||
|
|
||
|
this.loadString(this.customStrings, lang, key, values[1]);
|
||
|
});
|
||
|
|
||
|
this.customStringsRaw = strings;
|
||
|
|
||
|
if (currentLangChanged) {
|
||
|
// Some lang strings have changed, emit an event to update the pipes.
|
||
|
Translate.instance.onLangChange.emit({
|
||
|
lang: this.currentLanguage!,
|
||
|
translations: Translate.instance.translations[this.currentLanguage!],
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Load custom strings for a certain language that weren't loaded because the language wasn't active.
|
||
|
*
|
||
|
* @param langObject The object with the strings to load.
|
||
|
* @param lang Language to load.
|
||
|
* @return Whether the translation table was modified.
|
||
|
*/
|
||
|
loadLangStrings(langObject: CoreLanguageObject, lang: string): boolean {
|
||
|
let langApplied = false;
|
||
|
|
||
|
if (langObject[lang]) {
|
||
|
for (const key in langObject[lang]) {
|
||
|
const entry = langObject[lang][key];
|
||
|
|
||
|
if (!entry.applied) {
|
||
|
// Store the original value of the string.
|
||
|
entry.original = Translate.instance.translations[lang][key];
|
||
|
|
||
|
// Store the string in the translations table.
|
||
|
Translate.instance.translations[lang][key] = entry.value;
|
||
|
|
||
|
entry.applied = true;
|
||
|
langApplied = true;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return langApplied;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Load a string in a certain lang object and in the translate table if the lang is loaded.
|
||
|
*
|
||
|
* @param langObject The object where to store the lang.
|
||
|
* @param lang Language code.
|
||
|
* @param key String key.
|
||
|
* @param value String value.
|
||
|
*/
|
||
|
loadString(langObject: CoreLanguageObject, lang: string, key: string, value: string): void {
|
||
|
lang = lang.replace(/_/g, '-'); // Use the app format instead of Moodle format.
|
||
|
|
||
|
if (Translate.instance.translations[lang]) {
|
||
|
// The language is loaded.
|
||
|
// Store the original value of the string.
|
||
|
langObject[lang][key] = {
|
||
|
original: Translate.instance.translations[lang][key],
|
||
|
value,
|
||
|
applied: true,
|
||
|
};
|
||
|
|
||
|
// Store the string in the translations table.
|
||
|
Translate.instance.translations[lang][key] = value;
|
||
|
} else {
|
||
|
// The language isn't loaded.
|
||
|
// Save it in our object but not in the translations table, it will be loaded when the lang is loaded.
|
||
|
langObject[lang][key] = {
|
||
|
value,
|
||
|
applied: false,
|
||
|
};
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Unload custom or site plugin strings, removing them from the translations table.
|
||
|
*
|
||
|
* @param strings Strings to unload.
|
||
|
*/
|
||
|
protected unloadStrings(strings: CoreLanguageObject): void {
|
||
|
// Iterate over all languages and strings.
|
||
|
for (const lang in strings) {
|
||
|
if (!Translate.instance.translations[lang]) {
|
||
|
// Language isn't loaded, nothing to unload.
|
||
|
continue;
|
||
|
}
|
||
|
|
||
|
const langStrings = strings[lang];
|
||
|
for (const key in langStrings) {
|
||
|
const entry = langStrings[key];
|
||
|
if (entry.original) {
|
||
|
// The string had a value, restore it.
|
||
|
Translate.instance.translations[lang][key] = entry.original;
|
||
|
} else {
|
||
|
// The string didn't exist, delete it.
|
||
|
delete Translate.instance.translations[lang][key];
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
export class CoreLang extends makeSingleton(CoreLangProvider) {}
|
||
|
|
||
|
/**
|
||
|
* Language object has two leves, first per language and second per string key.
|
||
|
*/
|
||
|
type CoreLanguageObject = {
|
||
|
[s: string]: { // Lang name.
|
||
|
[s: string]: { // String key.
|
||
|
value: string; // Value with replacings done.
|
||
|
original?: string; // Original value of the string.
|
||
|
applied?: boolean; // If the key is applied to the translations table or not.
|
||
|
};
|
||
|
};
|
||
|
};
|