2013-09-25 20:34:01 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
2016-09-04 14:15:46 +03:00
|
|
|
* @copyright 2016 Roeland Jago Douma <roeland@famdouma.nl>
|
2016-10-07 22:53:01 +03:00
|
|
|
* @copyright 2016 Lukas Reschke <lukas@statuscode.ch>
|
2016-07-21 18:07:57 +03:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Bart Visscher <bartv@thisnet.nl>
|
2016-07-21 18:07:57 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-07-21 19:13:36 +03:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2016-01-12 17:02:16 +03:00
|
|
|
* @author Robin McCorkell <robin@mccorkell.me.uk>
|
2016-09-04 14:15:46 +03:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2015-03-26 13:44:34 +03:00
|
|
|
*
|
|
|
|
* @license AGPL-3.0
|
|
|
|
*
|
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2013-09-25 20:34:01 +04:00
|
|
|
*
|
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2013-09-25 20:34:01 +04:00
|
|
|
namespace OC\L10N;
|
|
|
|
|
2016-01-15 13:09:37 +03:00
|
|
|
use OCP\IConfig;
|
|
|
|
use OCP\IRequest;
|
2016-01-27 17:54:57 +03:00
|
|
|
use OCP\IUserSession;
|
2015-08-27 14:14:50 +03:00
|
|
|
use OCP\L10N\IFactory;
|
|
|
|
|
2013-09-25 20:34:01 +04:00
|
|
|
/**
|
2015-08-27 14:14:50 +03:00
|
|
|
* A factory that generates language instances
|
2013-09-25 20:34:01 +04:00
|
|
|
*/
|
2015-08-27 14:14:50 +03:00
|
|
|
class Factory implements IFactory {
|
2016-01-15 13:09:37 +03:00
|
|
|
|
|
|
|
/** @var string */
|
|
|
|
protected $requestLanguage = '';
|
|
|
|
|
2013-09-25 20:34:01 +04:00
|
|
|
/**
|
|
|
|
* cached instances
|
2016-01-15 12:04:41 +03:00
|
|
|
* @var array Structure: Lang => App => \OCP\IL10N
|
2013-09-25 20:34:01 +04:00
|
|
|
*/
|
2016-01-15 12:04:41 +03:00
|
|
|
protected $instances = [];
|
|
|
|
|
2016-01-15 12:27:09 +03:00
|
|
|
/**
|
|
|
|
* @var array Structure: App => string[]
|
|
|
|
*/
|
2016-01-15 12:04:41 +03:00
|
|
|
protected $availableLanguages = [];
|
2013-09-25 20:34:01 +04:00
|
|
|
|
2016-01-15 14:37:34 +03:00
|
|
|
/**
|
|
|
|
* @var array Structure: string => callable
|
|
|
|
*/
|
|
|
|
protected $pluralFunctions = [];
|
|
|
|
|
2016-01-15 13:09:37 +03:00
|
|
|
/** @var IConfig */
|
|
|
|
protected $config;
|
|
|
|
|
|
|
|
/** @var IRequest */
|
|
|
|
protected $request;
|
|
|
|
|
2016-01-27 17:54:57 +03:00
|
|
|
/** @var IUserSession */
|
|
|
|
protected $userSession;
|
|
|
|
|
2016-03-18 15:59:44 +03:00
|
|
|
/** @var string */
|
|
|
|
protected $serverRoot;
|
|
|
|
|
2016-01-15 13:09:37 +03:00
|
|
|
/**
|
|
|
|
* @param IConfig $config
|
|
|
|
* @param IRequest $request
|
2016-01-27 17:54:57 +03:00
|
|
|
* @param IUserSession $userSession
|
2016-03-18 15:59:44 +03:00
|
|
|
* @param string $serverRoot
|
2016-01-15 13:09:37 +03:00
|
|
|
*/
|
2016-01-27 17:54:57 +03:00
|
|
|
public function __construct(IConfig $config,
|
|
|
|
IRequest $request,
|
2016-03-18 15:59:44 +03:00
|
|
|
IUserSession $userSession,
|
|
|
|
$serverRoot) {
|
2016-01-15 13:09:37 +03:00
|
|
|
$this->config = $config;
|
|
|
|
$this->request = $request;
|
2016-01-27 17:54:57 +03:00
|
|
|
$this->userSession = $userSession;
|
2016-03-18 15:59:44 +03:00
|
|
|
$this->serverRoot = $serverRoot;
|
2016-01-15 13:09:37 +03:00
|
|
|
}
|
|
|
|
|
2013-09-25 20:34:01 +04:00
|
|
|
/**
|
2015-08-27 14:14:50 +03:00
|
|
|
* Get a language instance
|
2014-08-31 12:05:59 +04:00
|
|
|
*
|
2014-05-12 00:51:30 +04:00
|
|
|
* @param string $app
|
|
|
|
* @param string|null $lang
|
2015-08-27 14:14:50 +03:00
|
|
|
* @return \OCP\IL10N
|
2013-09-25 20:34:01 +04:00
|
|
|
*/
|
2014-08-31 12:05:59 +04:00
|
|
|
public function get($app, $lang = null) {
|
2016-01-15 13:25:35 +03:00
|
|
|
$app = \OC_App::cleanAppId($app);
|
|
|
|
if ($lang !== null) {
|
|
|
|
$lang = str_replace(array('\0', '/', '\\', '..'), '', (string) $lang);
|
|
|
|
}
|
2017-06-21 12:22:05 +03:00
|
|
|
|
|
|
|
$forceLang = $this->config->getSystemValue('force_language', false);
|
|
|
|
if (is_string($forceLang)) {
|
|
|
|
$lang = $forceLang;
|
|
|
|
}
|
|
|
|
|
2016-03-23 17:34:25 +03:00
|
|
|
if ($lang === null || !$this->languageExists($app, $lang)) {
|
2016-01-15 13:25:35 +03:00
|
|
|
$lang = $this->findLanguage($app);
|
2015-08-27 14:14:50 +03:00
|
|
|
}
|
|
|
|
|
2016-03-23 17:34:25 +03:00
|
|
|
if (!isset($this->instances[$lang][$app])) {
|
|
|
|
$this->instances[$lang][$app] = new L10N(
|
2016-01-15 15:30:13 +03:00
|
|
|
$this, $app, $lang,
|
|
|
|
$this->getL10nFilesForApp($app, $lang)
|
|
|
|
);
|
2013-09-25 20:34:01 +04:00
|
|
|
}
|
2015-08-27 14:14:50 +03:00
|
|
|
|
2016-03-23 17:34:25 +03:00
|
|
|
return $this->instances[$lang][$app];
|
2013-09-25 20:34:01 +04:00
|
|
|
}
|
|
|
|
|
2016-01-15 13:09:37 +03:00
|
|
|
/**
|
|
|
|
* Find the best language
|
|
|
|
*
|
|
|
|
* @param string|null $app App id or null for core
|
|
|
|
* @return string language If nothing works it returns 'en'
|
|
|
|
*/
|
|
|
|
public function findLanguage($app = null) {
|
|
|
|
if ($this->requestLanguage !== '' && $this->languageExists($app, $this->requestLanguage)) {
|
|
|
|
return $this->requestLanguage;
|
|
|
|
}
|
|
|
|
|
2016-01-27 17:54:57 +03:00
|
|
|
/**
|
2017-06-21 12:22:05 +03:00
|
|
|
* At this point Nextcloud might not yet be installed and thus the lookup
|
2016-01-27 17:54:57 +03:00
|
|
|
* in the preferences table might fail. For this reason we need to check
|
|
|
|
* whether the instance has already been installed
|
|
|
|
*
|
|
|
|
* @link https://github.com/owncloud/core/issues/21955
|
|
|
|
*/
|
|
|
|
if($this->config->getSystemValue('installed', false)) {
|
|
|
|
$userId = !is_null($this->userSession->getUser()) ? $this->userSession->getUser()->getUID() : null;
|
|
|
|
if(!is_null($userId)) {
|
|
|
|
$userLang = $this->config->getUserValue($userId, 'core', 'lang', null);
|
|
|
|
} else {
|
|
|
|
$userLang = null;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$userId = null;
|
|
|
|
$userLang = null;
|
|
|
|
}
|
2016-01-15 13:09:37 +03:00
|
|
|
|
2016-01-18 11:53:25 +03:00
|
|
|
if ($userLang) {
|
|
|
|
$this->requestLanguage = $userLang;
|
|
|
|
if ($this->languageExists($app, $userLang)) {
|
|
|
|
return $userLang;
|
2016-01-15 13:09:37 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-04 14:15:46 +03:00
|
|
|
try {
|
|
|
|
// Try to get the language from the Request
|
|
|
|
$lang = $this->getLanguageFromRequest($app);
|
|
|
|
if ($userId !== null && $app === null && !$userLang) {
|
|
|
|
$this->config->setUserValue($userId, 'core', 'lang', $lang);
|
|
|
|
}
|
|
|
|
return $lang;
|
|
|
|
} catch (LanguageNotFoundException $e) {
|
|
|
|
// Finding language from request failed fall back to default language
|
|
|
|
$defaultLanguage = $this->config->getSystemValue('default_language', false);
|
|
|
|
if ($defaultLanguage !== false && $this->languageExists($app, $defaultLanguage)) {
|
|
|
|
return $defaultLanguage;
|
|
|
|
}
|
2016-01-15 13:09:37 +03:00
|
|
|
}
|
|
|
|
|
2016-09-04 14:15:46 +03:00
|
|
|
// We could not find any language so fall back to english
|
|
|
|
return 'en';
|
2016-01-15 13:09:37 +03:00
|
|
|
}
|
|
|
|
|
2016-01-15 12:04:41 +03:00
|
|
|
/**
|
|
|
|
* Find all available languages for an app
|
|
|
|
*
|
|
|
|
* @param string|null $app App id or null for core
|
|
|
|
* @return array an array of available languages
|
|
|
|
*/
|
|
|
|
public function findAvailableLanguages($app = null) {
|
|
|
|
$key = $app;
|
|
|
|
if ($key === null) {
|
|
|
|
$key = 'null';
|
|
|
|
}
|
|
|
|
|
|
|
|
// also works with null as key
|
|
|
|
if (!empty($this->availableLanguages[$key])) {
|
|
|
|
return $this->availableLanguages[$key];
|
|
|
|
}
|
|
|
|
|
|
|
|
$available = ['en']; //english is always available
|
|
|
|
$dir = $this->findL10nDir($app);
|
|
|
|
if (is_dir($dir)) {
|
|
|
|
$files = scandir($dir);
|
|
|
|
if ($files !== false) {
|
|
|
|
foreach ($files as $file) {
|
|
|
|
if (substr($file, -5) === '.json' && substr($file, 0, 4) !== 'l10n') {
|
|
|
|
$available[] = substr($file, 0, -5);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-17 18:15:37 +03:00
|
|
|
// merge with translations from theme
|
|
|
|
$theme = $this->config->getSystemValue('theme');
|
|
|
|
if (!empty($theme)) {
|
2016-03-18 15:59:44 +03:00
|
|
|
$themeDir = $this->serverRoot . '/themes/' . $theme . substr($dir, strlen($this->serverRoot));
|
2016-03-17 18:15:37 +03:00
|
|
|
|
|
|
|
if (is_dir($themeDir)) {
|
|
|
|
$files = scandir($themeDir);
|
|
|
|
if ($files !== false) {
|
|
|
|
foreach ($files as $file) {
|
|
|
|
if (substr($file, -5) === '.json' && substr($file, 0, 4) !== 'l10n') {
|
|
|
|
$available[] = substr($file, 0, -5);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-15 12:04:41 +03:00
|
|
|
$this->availableLanguages[$key] = $available;
|
|
|
|
return $available;
|
|
|
|
}
|
|
|
|
|
2016-01-15 12:27:09 +03:00
|
|
|
/**
|
|
|
|
* @param string|null $app App id or null for core
|
|
|
|
* @param string $lang
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function languageExists($app, $lang) {
|
|
|
|
if ($lang === 'en') {//english is always available
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
$languages = $this->findAvailableLanguages($app);
|
2016-01-15 18:24:31 +03:00
|
|
|
return array_search($lang, $languages) !== false;
|
2016-01-15 12:27:09 +03:00
|
|
|
}
|
|
|
|
|
2016-01-15 13:09:37 +03:00
|
|
|
/**
|
2016-09-04 14:15:46 +03:00
|
|
|
* @param string|null $app
|
2016-01-15 13:09:37 +03:00
|
|
|
* @return string
|
2016-09-04 14:15:46 +03:00
|
|
|
* @throws LanguageNotFoundException
|
2016-01-15 13:09:37 +03:00
|
|
|
*/
|
2016-09-04 14:15:46 +03:00
|
|
|
private function getLanguageFromRequest($app) {
|
2016-01-15 13:09:37 +03:00
|
|
|
$header = $this->request->getHeader('ACCEPT_LANGUAGE');
|
|
|
|
if ($header) {
|
|
|
|
$available = $this->findAvailableLanguages($app);
|
|
|
|
|
|
|
|
// E.g. make sure that 'de' is before 'de_DE'.
|
|
|
|
sort($available);
|
|
|
|
|
|
|
|
$preferences = preg_split('/,\s*/', strtolower($header));
|
|
|
|
foreach ($preferences as $preference) {
|
|
|
|
list($preferred_language) = explode(';', $preference);
|
|
|
|
$preferred_language = str_replace('-', '_', $preferred_language);
|
|
|
|
|
|
|
|
foreach ($available as $available_language) {
|
|
|
|
if ($preferred_language === strtolower($available_language)) {
|
|
|
|
return $available_language;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Fallback from de_De to de
|
|
|
|
foreach ($available as $available_language) {
|
|
|
|
if (substr($preferred_language, 0, 2) === $available_language) {
|
|
|
|
return $available_language;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-04 14:15:46 +03:00
|
|
|
throw new LanguageNotFoundException();
|
|
|
|
}
|
|
|
|
|
2016-10-07 22:53:01 +03:00
|
|
|
/**
|
|
|
|
* Checks if $sub is a subdirectory of $parent
|
|
|
|
*
|
|
|
|
* @param string $sub
|
|
|
|
* @param string $parent
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
private function isSubDirectory($sub, $parent) {
|
|
|
|
// Check whether $sub contains no ".."
|
|
|
|
if(strpos($sub, '..') !== false) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check whether $sub is a subdirectory of $parent
|
|
|
|
if (strpos($sub, $parent) === 0) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-01-15 14:37:34 +03:00
|
|
|
/**
|
|
|
|
* Get a list of language files that should be loaded
|
|
|
|
*
|
|
|
|
* @param string $app
|
|
|
|
* @param string $lang
|
|
|
|
* @return string[]
|
|
|
|
*/
|
|
|
|
// FIXME This method is only public, until OC_L10N does not need it anymore,
|
|
|
|
// FIXME This is also the reason, why it is not in the public interface
|
|
|
|
public function getL10nFilesForApp($app, $lang) {
|
|
|
|
$languageFiles = [];
|
|
|
|
|
|
|
|
$i18nDir = $this->findL10nDir($app);
|
|
|
|
$transFile = strip_tags($i18nDir) . strip_tags($lang) . '.json';
|
|
|
|
|
2016-10-07 22:53:01 +03:00
|
|
|
if (($this->isSubDirectory($transFile, $this->serverRoot . '/core/l10n/')
|
|
|
|
|| $this->isSubDirectory($transFile, $this->serverRoot . '/lib/l10n/')
|
|
|
|
|| $this->isSubDirectory($transFile, $this->serverRoot . '/settings/l10n/')
|
|
|
|
|| $this->isSubDirectory($transFile, \OC_App::getAppPath($app) . '/l10n/')
|
2016-01-15 14:37:34 +03:00
|
|
|
)
|
|
|
|
&& file_exists($transFile)) {
|
|
|
|
// load the translations file
|
|
|
|
$languageFiles[] = $transFile;
|
2016-03-17 18:15:37 +03:00
|
|
|
}
|
2016-01-15 14:37:34 +03:00
|
|
|
|
2016-03-17 18:15:37 +03:00
|
|
|
// merge with translations from theme
|
|
|
|
$theme = $this->config->getSystemValue('theme');
|
|
|
|
if (!empty($theme)) {
|
2016-03-18 15:59:44 +03:00
|
|
|
$transFile = $this->serverRoot . '/themes/' . $theme . substr($transFile, strlen($this->serverRoot));
|
2016-03-17 18:15:37 +03:00
|
|
|
if (file_exists($transFile)) {
|
|
|
|
$languageFiles[] = $transFile;
|
2016-01-15 14:37:34 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $languageFiles;
|
|
|
|
}
|
|
|
|
|
2016-01-15 12:04:41 +03:00
|
|
|
/**
|
|
|
|
* find the l10n directory
|
|
|
|
*
|
|
|
|
* @param string $app App id or empty string for core
|
|
|
|
* @return string directory
|
|
|
|
*/
|
2016-01-15 14:37:34 +03:00
|
|
|
protected function findL10nDir($app = null) {
|
2016-01-15 18:24:31 +03:00
|
|
|
if (in_array($app, ['core', 'lib', 'settings'])) {
|
2016-03-18 15:59:44 +03:00
|
|
|
if (file_exists($this->serverRoot . '/' . $app . '/l10n/')) {
|
|
|
|
return $this->serverRoot . '/' . $app . '/l10n/';
|
2016-01-15 12:04:41 +03:00
|
|
|
}
|
2016-01-15 18:24:31 +03:00
|
|
|
} else if ($app && \OC_App::getAppPath($app) !== false) {
|
|
|
|
// Check if the app is in the app folder
|
|
|
|
return \OC_App::getAppPath($app) . '/l10n/';
|
2016-01-15 12:04:41 +03:00
|
|
|
}
|
2016-03-18 15:59:44 +03:00
|
|
|
return $this->serverRoot . '/core/l10n/';
|
2016-01-15 12:04:41 +03:00
|
|
|
}
|
2016-01-15 14:37:34 +03:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a function from the plural string
|
|
|
|
*
|
|
|
|
* Parts of the code is copied from Habari:
|
|
|
|
* https://github.com/habari/system/blob/master/classes/locale.php
|
|
|
|
* @param string $string
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function createPluralFunction($string) {
|
|
|
|
if (isset($this->pluralFunctions[$string])) {
|
|
|
|
return $this->pluralFunctions[$string];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (preg_match( '/^\s*nplurals\s*=\s*(\d+)\s*;\s*plural=(.*)$/u', $string, $matches)) {
|
|
|
|
// sanitize
|
|
|
|
$nplurals = preg_replace( '/[^0-9]/', '', $matches[1] );
|
|
|
|
$plural = preg_replace( '#[^n0-9:\(\)\?\|\&=!<>+*/\%-]#', '', $matches[2] );
|
|
|
|
|
|
|
|
$body = str_replace(
|
|
|
|
array( 'plural', 'n', '$n$plurals', ),
|
|
|
|
array( '$plural', '$n', '$nplurals', ),
|
|
|
|
'nplurals='. $nplurals . '; plural=' . $plural
|
|
|
|
);
|
|
|
|
|
|
|
|
// add parents
|
|
|
|
// important since PHP's ternary evaluates from left to right
|
|
|
|
$body .= ';';
|
|
|
|
$res = '';
|
|
|
|
$p = 0;
|
|
|
|
for($i = 0; $i < strlen($body); $i++) {
|
|
|
|
$ch = $body[$i];
|
|
|
|
switch ( $ch ) {
|
|
|
|
case '?':
|
|
|
|
$res .= ' ? (';
|
|
|
|
$p++;
|
|
|
|
break;
|
|
|
|
case ':':
|
|
|
|
$res .= ') : (';
|
|
|
|
break;
|
|
|
|
case ';':
|
|
|
|
$res .= str_repeat( ')', $p ) . ';';
|
|
|
|
$p = 0;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
$res .= $ch;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$body = $res . 'return ($plural>=$nplurals?$nplurals-1:$plural);';
|
|
|
|
$function = create_function('$n', $body);
|
|
|
|
$this->pluralFunctions[$string] = $function;
|
|
|
|
return $function;
|
|
|
|
} else {
|
|
|
|
// default: one plural form for all cases but n==1 (english)
|
|
|
|
$function = create_function(
|
|
|
|
'$n',
|
|
|
|
'$nplurals=2;$plural=($n==1?0:1);return ($plural>=$nplurals?$nplurals-1:$plural);'
|
|
|
|
);
|
|
|
|
$this->pluralFunctions[$string] = $function;
|
|
|
|
return $function;
|
|
|
|
}
|
|
|
|
}
|
2013-09-25 20:34:01 +04:00
|
|
|
}
|