forkbb/app/Core/Lang.php
2018-01-01 22:19:38 +07:00

267 lines
7.4 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
namespace ForkBB\Core;
use ForkBB\Core\Container;
use RuntimeException;
class Lang
{
/**
* Контейнер
* @var Container
*/
protected $c;
/**
* Массив переводов
* @var array
*/
protected $tr = [];
/**
* Загруженные переводы
* @var array
*/
protected $loaded = [];
/**
* Конструктор
*
* @param Container $container
*/
public function __construct(Container $container)
{
$this->c = $container;
}
/**
* Ищет сообщение в загруженных переводах
*
* @param string $message
* @param string $lang
*
* @return string|array
*/
public function get($message, $lang = null)
{
if ($lang && isset($this->tr[$lang][$message])) {
return $this->tr[$lang][$message];
}
foreach ($this->tr as $lang) {
if (isset($lang[$message])) {
return $lang[$message];
}
}
return $message;
}
/**
* Загрузка языкового файла
*
* @param string $name
* @param string $lang
* @param string $path
*/
public function load($name, $lang = null, $path = null)
{
if ($lang) {
if (isset($this->loaded[$name][$lang])) {
return;
}
} elseif (isset($this->loaded[$name])) {
return;
}
$lang = $lang ?: $this->c->user->language;
$path = $path ?: $this->c->DIR_LANG;
do {
$flag = true;
$fullPath = $path . '/'. $lang . '/' . $name . '.po';
if (file_exists($fullPath)) {
$file = file_get_contents($fullPath);
if (isset($this->tr[$lang])) {
$this->tr[$lang] += $this->arrayFromStr($file);
} else {
$this->tr[$lang] = $this->arrayFromStr($file);
}
$flag = false;
} elseif ($lang === 'English') {
$flag = false;
}
$lang = 'English';
} while ($flag);
$this->loaded[$name][$lang] = true;
}
/**
* Получение массива перевода из строки (.po файла)
*
* @param string $str
*
* @throws RuntimeException
*
* @return array
*/
protected function arrayFromStr($str)
{
$lines = explode("\n", $str);
$count = count($lines);
$result = [];
$cur = [];
$curComm = null;
$curVal = '';
$nplurals = 2;
$plural = '($n != 1);';
for ($i = 0; $i < $count; ++$i) {
$line = trim($lines[$i]);
// пустая строка
if (! isset($line{0})) {
// промежуточные данные
if (isset($curComm)) {
$cur[$curComm] = $curVal;
}
// ошибка формата
if (! isset($cur['msgid'])) {
throw new RuntimeException('File format error');
}
// заголовки
if (! isset($cur['msgid']{0})) {
if (preg_match('%Plural\-Forms:\s+nplurals=(\d+);\s*plural=([^;\n\r]+;)%i', $cur[0], $v)) {
$nplurals = (int) $v[1];
$plural = str_replace('n', '$n', trim($v[2]));
$plural = str_replace(':', ': (', $plural, $curVal);
$plural = str_replace(';', str_repeat(')', $curVal). ';', $plural);
}
// перевод
} else {
// множественный
if (isset($cur['msgid_plural']{0}) || isset($cur[1]{0})) {
if (! isset($cur[1]{0})) {
$cur[1] = $cur['msgid_plural'];
}
if (! isset($cur[0]{0})) {
$cur[0] = $cur['msgid'];
}
$curVal = [];
for ($v = 0; $v < $nplurals; ++$v) {
if (! isset($cur[$v]{0})) {
$curVal = null;
break;
}
$curVal[$v] = $cur[$v];
}
if (isset($curVal)) {
$curVal['plural'] = $plural;
$result[$cur['msgid']] = $curVal;
}
// одиночный
} elseif (isset($cur[0])) { // {0}
$result[$cur['msgid']] = $cur[0];
}
}
$curComm = null;
$curVal = '';
$cur = [];
continue;
// комментарий
} elseif ($line{0} == '#') {
continue;
// многострочное содержимое
} elseif ($line{0} == '"') {
if (isset($curComm)) {
$curVal .= $this->originalLine($line);
}
continue;
// промежуточные данные
} elseif (isset($curComm)) {
$cur[$curComm] = $curVal;
}
// выделение команды
$v = explode(' ', $line, 2);
$command = $v[0];
$v = isset($v[1]) ? $this->originalLine(trim($v[1])) : '';
switch ($command) {
case 'msgctxt':
case 'msgid':
case 'msgid_plural':
$curComm = $command;
$curVal = $v;
break;
case 'msgstr':
case 'msgstr[0]':
$curComm = 0;
$curVal = $v;
break;
case 'msgstr[1]':
$curComm = 1;
$curVal = $v;
break;
case 'msgstr[2]':
$curComm = 2;
$curVal = $v;
break;
case 'msgstr[3]':
$curComm = 3;
$curVal = $v;
break;
case 'msgstr[4]':
$curComm = 4;
$curVal = $v;
break;
case 'msgstr[5]':
$curComm = 5;
$curVal = $v;
break;
default:
throw new RuntimeException('File format error');
}
}
return $result;
}
/**
* Получение оригинальной строки с удалением кавычек
* и преобразованием спецсимволов
*
* @param string $line
*
* @return string
*/
protected function originalLine($line)
{
if (isset($line[1]) && $line{0} == '"' && $line{strlen($line) - 1} == '"') {
$line = substr($line, 1, -1);
}
return str_replace(
['\\n', '\\t', '\\"', '\\\\'],
["\n", "\t", '"', '\\'],
$line
);
}
}