318 lines
12 KiB
PHP
318 lines
12 KiB
PHP
<?php
|
||
|
||
/**
|
||
* This file is part of Zwii.
|
||
* For full copyright and license information, please see the LICENSE
|
||
* file that was distributed with this source code.
|
||
*
|
||
* @author Rémi Jean <remi.jean@outlook.com>
|
||
* @copyright Copyright (C) 2008-2018, Rémi Jean
|
||
* @author Frédéric Tempez <frederic.tempez@outlook.com>
|
||
* @copyright Copyright (C) 2018-2022, Frédéric Tempez
|
||
* @license GNU General Public License, version 3
|
||
* @link http://zwiicms.fr/
|
||
*/
|
||
|
||
class translate extends common {
|
||
|
||
public static $actions = [
|
||
/*'config' => self::GROUP_MODERATOR,*/
|
||
'index' => self::GROUP_ADMIN,
|
||
'copy' => self::GROUP_ADMIN,
|
||
'i18n' => self::GROUP_VISITOR
|
||
];
|
||
|
||
public static $translateOptions = [];
|
||
// Page pour la configuration dans la langue
|
||
public static $pagesList = [];
|
||
public static $orphansList = [];
|
||
// Liste des langues installées
|
||
public static $languagesInstalled = [];
|
||
// Liste des langues cibles
|
||
public static $languagesTarget = [];
|
||
// Fichiers des langues de l'interface
|
||
public static $i18nFiles = [];
|
||
// Activation du bouton de copie
|
||
public static $siteTranslate = true;
|
||
|
||
public static $languagesContent = [
|
||
'az_AZ' => 'Azərbaycan dili',
|
||
'bg_BG' => 'български език',
|
||
'ca' => 'Català, valencià',
|
||
'cs' => 'čeština, český jazyk',
|
||
'da' => 'Dansk',
|
||
'de' => 'Deutsch',
|
||
'el_GR' => 'ελληνικά',
|
||
'en_EN' => 'English',
|
||
'es' => 'Español',
|
||
'fa' => 'فارسی',
|
||
'fr_FR' => 'Français',
|
||
'he_IL' => 'Hebrew (Israel)',
|
||
'hr' => 'Hrvatski jezik',
|
||
'hu_HU' => 'Magyar',
|
||
'id' => 'Bahasa Indonesia',
|
||
'it' => 'Italiano',
|
||
'ja' => '日本',
|
||
'lt' => 'Lietuvių kalba',
|
||
'mn_MN' => 'монгол',
|
||
'nb_NO' => 'Norsk bokmål',
|
||
'nn_NO' => 'Norsk nynorsk',
|
||
'nl' => 'Nederlands, Vlaams',
|
||
'pl' => 'Język polski, polszczyzna',
|
||
'pt_BR' => 'Português(Brazil)',
|
||
'pt_PT' => 'Português',
|
||
'ro' => 'Română',
|
||
'ru' => 'Pусский язык',
|
||
'sk' => 'Slovenčina',
|
||
'sl' => 'Slovenski jezik',
|
||
'sv_SE' => 'Svenska',
|
||
'th_TH' => 'ไทย',
|
||
'tr_TR' => 'Türkçe',
|
||
'uk_UA' => 'Yкраїнська мова',
|
||
'vi' => 'Tiếng Việt',
|
||
'zh_CN' => '中文 (Zhōngwén), 汉语, 漢語',
|
||
|
||
// source: http://en.wikipedia.org/wiki/List_of_ISO_639-1_codes
|
||
];
|
||
|
||
/**
|
||
* Configuration avancée des langues
|
||
*/
|
||
public function copy() {
|
||
|
||
// Soumission du formulaire
|
||
if ($this->isPost()) {
|
||
// Initialisation
|
||
$success = false;
|
||
$copyFrom = $this->getInput('translateFormCopySource');
|
||
$toCreate = $this->getInput('translateFormCopyTarget');
|
||
if ($copyFrom !== $toCreate) {
|
||
// Création du dossier
|
||
if (is_dir(self::DATA_DIR . $toCreate) === false ) { // Si le dossier est déjà créé
|
||
$success = mkdir (self::DATA_DIR . $toCreate, 0755);
|
||
$success = mkdir (self::DATA_DIR . $toCreate.'/content', 0755);
|
||
} else {
|
||
$success = true;
|
||
}
|
||
// Copier les données par défaut avec gestion des erreurs
|
||
$success = (copy (self::DATA_DIR . $copyFrom . '/locale.json', self::DATA_DIR . $toCreate . '/locale.json') === true && $success === true) ? true : false;
|
||
$success = (copy (self::DATA_DIR . $copyFrom . '/module.json', self::DATA_DIR . $toCreate . '/module.json') === true && $success === true) ? true : false;
|
||
$success = (copy (self::DATA_DIR . $copyFrom . '/page.json', self::DATA_DIR . $toCreate . '/page.json') === true && $success === true) ? true : false;
|
||
$success = ($this->copyDir (self::DATA_DIR . $copyFrom . '/content', self::DATA_DIR . $toCreate . '/content') === true && $success === true) ? true : false;
|
||
// Enregistrer la langue
|
||
if ($success) {
|
||
$this->setData(['config', 'i18n', $toCreate, 'site' ]);
|
||
$notification = 'Données ' . self::$i18nList[$copyFrom] . ' copiées vers ' . self::$i18nList[$toCreate];
|
||
} else {
|
||
$notification = "Quelque chose n\'a pas fonctionné, vérifiez les permissions.";
|
||
}
|
||
} else {
|
||
$success = false;
|
||
$notification = 'Les langues doivent être différentes.';
|
||
}
|
||
// Valeurs en sortie
|
||
$this->addOutput([
|
||
'notification' => $notification,
|
||
'title' => 'Utilitaire de copie',
|
||
'view' => 'index',
|
||
'state' => $success
|
||
]);
|
||
}
|
||
// Tableau des langues installées
|
||
foreach (self::$i18nList as $key => $value) {
|
||
if ($this->getData(['config','i18n', $key]) === 'site') {
|
||
self::$languagesTarget[$key] = $value;
|
||
}
|
||
}
|
||
// Langues cibles fr en plus
|
||
self::$languagesInstalled = array_merge(['fr' => 'Français (fr)'],self::$languagesTarget);
|
||
|
||
// Valeurs en sortie
|
||
$this->addOutput([
|
||
'title' => 'Utilitaire de copie',
|
||
'view' => 'copy'
|
||
]);
|
||
}
|
||
|
||
/**
|
||
* Configuration
|
||
*/
|
||
public function index() {
|
||
|
||
// Soumission du formulaire
|
||
if($this->isPost()) {
|
||
// Edition des langues
|
||
foreach (self::$i18nList as $keyi18n => $value) {
|
||
if ($keyi18n === 'fr') continue;
|
||
|
||
// Effacement d'une langue installée
|
||
if ( is_dir( self::DATA_DIR . $keyi18n ) === true
|
||
AND $this->getInput('translate' . strtoupper($keyi18n)) === 'delete')
|
||
{
|
||
$this->removeDir( self::DATA_DIR . $keyi18n);
|
||
// Au cas ou la langue est sélectionnée
|
||
helper::deleteCookie('ZWII_I18N_SITE');
|
||
}
|
||
|
||
// Active le script si une langue est en trad auto
|
||
if ($script === false
|
||
AND $this->getInput('translate'. strtoupper($keyi18n)) === 'script') {
|
||
$script = true;
|
||
}
|
||
}
|
||
|
||
// Enregistrement des données
|
||
$this->setData(['config','i18n', [
|
||
'fr' => $this->getInput('translateFR'),
|
||
'de' => $this->getInput('translateDE'),
|
||
'en' => $this->getInput('translateEN'),
|
||
'es' => $this->getInput('translateES'),
|
||
'it' => $this->getInput('translateIT'),
|
||
'nl' => $this->getInput('translateNL'),
|
||
'pt' => $this->getInput('translatePT')
|
||
|
||
]]);
|
||
|
||
// Coonfiguration dans des langues spécifiques
|
||
// Eviter déconnexion automatique après son activation
|
||
if ( $this->getData(['config','connect', 'autoDisconnect']) === false
|
||
AND $this->getInput('configAutoDisconnect',helper::FILTER_BOOLEAN) === true ) {
|
||
$this->setData(['user',$this->getuser('id'),'accessCsrf',$_SESSION['csrf']]);
|
||
}
|
||
// Répercuter la suppression de la page dans la configuration du footer
|
||
if ( $this->getData(['theme','footer','displaySearch']) === true
|
||
AND $this->getInput('configSearchPageId') === 'none'
|
||
){
|
||
$this->setData(['theme', 'footer', 'displaySearch', false]);
|
||
}
|
||
if ( $this->getData(['theme','footer','displayLegal']) === true
|
||
AND $this->getInput('configLegalPageId') === 'none'
|
||
){
|
||
$this->setData(['theme', 'footer', 'displayLegal', false]);
|
||
}
|
||
|
||
// Sauvegarder les locales
|
||
$this->setData([
|
||
'locale',
|
||
[
|
||
'homePageId' => $this->getInput('localeHomePageId', helper::FILTER_ID, true),
|
||
'page404' => $this->getInput('localePage404'),
|
||
'page403' => $this->getInput('localePage403'),
|
||
'page302' => $this->getInput('localePage302'),
|
||
'legalPageId' => $this->getInput('localeLegalPageId'),
|
||
'searchPageId' => $this->getInput('localeSearchPageId'),
|
||
'searchPageLabel' => empty($this->getInput('localeSearchPageLabel', helper::FILTER_STRING_SHORT)) ? 'Rechercher' : $this->getInput('localeSearchPageLabel', helper::FILTER_STRING_SHORT),
|
||
'legalPageLabel' => empty($this->getInput('localeLegalPageLabel', helper::FILTER_STRING_SHORT)) ? 'Mentions légales' : $this->getInput('localeLegalPageLabel', helper::FILTER_STRING_SHORT),
|
||
'sitemapPageLabel' => empty($this->getInput('localeSitemapPageLabel', helper::FILTER_STRING_SHORT)) ? 'Plan du site' : $this->getInput('localeSitemapPageLabel', helper::FILTER_STRING_SHORT),
|
||
'metaDescription' => $this->getInput('localeMetaDescription', helper::FILTER_STRING_LONG, true),
|
||
'title' => $this->getInput('localeTitle', helper::FILTER_STRING_SHORT, true),
|
||
'cookies' => [
|
||
// Les champs sont obligatoires si l'option consentement des cookies est active
|
||
'mainLabel' => $this->getInput('localeCookiesZwiiText', helper::FILTER_STRING_LONG, $this->getInput('configCookieConsent', helper::FILTER_BOOLEAN)),
|
||
'titleLabel' => $this->getInput('localeCookiesTitleText', helper::FILTER_STRING_SHORT, $this->getInput('configCookieConsent', helper::FILTER_BOOLEAN)),
|
||
'linkLegalLabel' => $this->getInput('localeCookiesLinkMlText', helper::FILTER_STRING_SHORT, $this->getInput('configCookieConsent', helper::FILTER_BOOLEAN)),
|
||
'cookiesFooterText' => $this->getInput('localeCookiesFooterText', helper::FILTER_STRING_SHORT, $this->getInput('configCookieConsent', helper::FILTER_BOOLEAN)),
|
||
'buttonValidLabel' =>$this->getInput('localeCookiesButtonText', helper::FILTER_STRING_SHORT, $this->getInput('configCookieConsent', helper::FILTER_BOOLEAN))
|
||
]
|
||
]
|
||
]);
|
||
// Sauvegarder les langues de contenu
|
||
$this->setData(['config', 'i18n', [
|
||
'default' => $this->getInput('translateI18n'),
|
||
'fr' => $this->getInput('translateFR'),
|
||
'de' => $this->getInput('translateDE'),
|
||
'en' => $this->getInput('translateEN'),
|
||
'es' => $this->getInput('translateES'),
|
||
'it' => $this->getInput('translateIT'),
|
||
'nl' => $this->getInput('translateNL'),
|
||
'pt' => $this->getInput('translatePT')
|
||
]]);
|
||
|
||
// Valeurs en sortie
|
||
$this->addOutput([
|
||
'redirect' => helper::baseUrl() . $this->getUrl(),
|
||
'notification' => 'Modifications enregistrées',
|
||
'state' => true
|
||
]);
|
||
}
|
||
|
||
// Préparation de l'affichage du formulaire
|
||
|
||
// Liste des langues disponibles
|
||
if (is_dir(self::I18N_DIR)) {
|
||
$dir = getcwd();
|
||
chdir(self::I18N_DIR);
|
||
$files = glob('*.json');
|
||
// Ajouter une clé au tableau avec le code de langue
|
||
foreach( $files as $file) {
|
||
// La langue est-elle référencée ?
|
||
if (array_key_exists(basename($file, '.json'), self::$languagesContent)) {
|
||
self::$i18nFiles[basename($file, '.json')] = self::$languagesContent[basename($file, '.json')];
|
||
}
|
||
}
|
||
chdir($dir);
|
||
}
|
||
|
||
// Modification des options de suppression de la langue installée.
|
||
foreach (self::$i18nList as $key => $value) {
|
||
if ($this->getData(['config','i18n',$key]) === 'site') {
|
||
self::$translateOptions [$key] = [
|
||
'none' => 'Drapeau masqué',
|
||
'site' => 'Traduction rédigée',
|
||
'delete' => 'Supprimer la traduction'
|
||
];
|
||
self::$siteTranslate = $key !== 'fr' ? false : true;
|
||
} else {
|
||
self::$translateOptions [$key] = [
|
||
'none' => 'Drapeau masqué',
|
||
'site' => 'Traduction rédigée'
|
||
];
|
||
}
|
||
}
|
||
// Générer la list des pages disponibles
|
||
self::$pagesList = $this->getData(['page']);
|
||
foreach(self::$pagesList as $page => $pageId) {
|
||
if ($this->getData(['page',$page,'block']) === 'bar' ||
|
||
$this->getData(['page',$page,'disable']) === true) {
|
||
unset(self::$pagesList[$page]);
|
||
}
|
||
}
|
||
|
||
self::$orphansList = $this->getData(['page']);
|
||
foreach(self::$orphansList as $page => $pageId) {
|
||
if ($this->getData(['page',$page,'block']) === 'bar' ||
|
||
$this->getData(['page',$page,'disable']) === true ||
|
||
$this->getdata(['page',$page, 'position']) !== 0) {
|
||
unset(self::$orphansList[$page]);
|
||
}
|
||
}
|
||
// Valeurs en sortie
|
||
$this->addOutput([
|
||
'title' => 'Multilangues',
|
||
'view' => 'index'
|
||
]);
|
||
}
|
||
|
||
|
||
/*
|
||
* Traitement du changement de langue
|
||
* Fonction utilisée par le noyau
|
||
*/
|
||
public function i18n() {
|
||
|
||
// Activation du drapeau
|
||
if ( $this->getInput('ZWII_I18N_' . strtoupper($this->getUrl(3))) !== $this->getUrl(2) ) {
|
||
// Nettoyer et stocker le choix de l'utilisateur
|
||
helper::deleteCookie('ZWII_I18N_SITE');
|
||
// Sélectionner
|
||
setcookie('ZWII_I18N_' . strtoupper($this->getUrl(3)) , $this->getUrl(2), time() + 3600, helper::baseUrl(false, false) , '', helper::isHttps(), true);
|
||
// Désactivation du drapeau, langue FR par défaut
|
||
} else {
|
||
setcookie('ZWII_I18N_SITE' , 'fr', time() + 3600, helper::baseUrl(false, false) , '', helper::isHttps(), true);
|
||
}
|
||
// Valeurs en sortie
|
||
$this->addOutput([
|
||
'redirect' => helper::baseUrl() . $this->getData(['locale', $this->getUrl(2), 'homePageId' ])
|
||
]);
|
||
}
|
||
} |