This page lists files in the current directory. You can view content, get download/execute commands for Wget, Curl, or PowerShell, or filter the list using wildcards (e.g., `*.sh`).
wget 'https://sme10.lists2.roe3.org/FreshRSS/cli/i18n/I18nCompletionValidator.php'
<?php
declare(strict_types=1);
require_once __DIR__ . '/I18nValidatorInterface.php';
class I18nCompletionValidator implements I18nValidatorInterface {
/** @var array<string,array<string,I18nValue>> */
private array $reference;
/** @var array<string,array<string,I18nValue>> */
private array $language;
private int $totalEntries = 0;
private int $passEntries = 0;
private string $result = '';
/**
* @param array<string,array<string,I18nValue>> $reference
* @param array<string,array<string,I18nValue>> $language
*/
public function __construct(array $reference, array $language) {
$this->reference = $reference;
$this->language = $language;
}
#[\Override]
public function displayReport(): string {
if ($this->passEntries > $this->totalEntries) {
throw new \RuntimeException('The number of translated strings cannot be higher than the number of strings');
}
if ($this->totalEntries === 0) {
return 'There is no data.' . PHP_EOL;
}
return sprintf('Translation is %5.1f%% complete.', $this->passEntries / $this->totalEntries * 100) . PHP_EOL;
}
#[\Override]
public function displayResult(): string {
return $this->result;
}
#[\Override]
public function validate(): bool {
foreach ($this->reference as $file => $data) {
foreach ($data as $refKey => $refValue) {
$this->totalEntries++;
if (!array_key_exists($file, $this->language) || !array_key_exists($refKey, $this->language[$file])) {
$this->result .= "Missing key $refKey" . PHP_EOL;
continue;
}
$value = $this->language[$file][$refKey];
if ($value->isIgnore()) {
$this->passEntries++;
continue;
}
if ($refValue->equal($value)) {
$this->result .= "Untranslated key $refKey - $refValue" . PHP_EOL;
continue;
}
$this->passEntries++;
}
}
return $this->totalEntries === $this->passEntries;
}
}
wget 'https://sme10.lists2.roe3.org/FreshRSS/cli/i18n/I18nData.php'
<?php
declare(strict_types=1);
class I18nData {
public const REFERENCE_LANGUAGE = 'en';
/** @var array<string,array<string,array<string,I18nValue>>> */
private array $data;
/** @param array<string,array<string,array<string,I18nValue>>> $data */
public function __construct(array $data) {
$this->data = $data;
$this->addMissingKeysFromReference();
$this->removeExtraKeysFromOtherLanguages();
$this->processValueStates();
}
/**
* @return array<string,array<string,array<string,I18nValue>>>
*/
public function getData(): array {
return $this->data;
}
private function addMissingKeysFromReference(): void {
$reference = $this->getReferenceLanguage();
$languages = $this->getNonReferenceLanguages();
foreach ($reference as $file => $refValues) {
foreach ($refValues as $key => $refValue) {
foreach ($languages as $language) {
if (!array_key_exists($file, $this->data[$language]) || !array_key_exists($key, $this->data[$language][$file])) {
$this->data[$language][$file][$key] = clone $refValue;
}
$value = $this->data[$language][$file][$key];
if ($refValue->equal($value) && !$value->isIgnore()) {
$value->markAsTodo();
}
}
}
}
}
private function removeExtraKeysFromOtherLanguages(): void {
$reference = $this->getReferenceLanguage();
foreach ($this->getNonReferenceLanguages() as $language) {
foreach ($this->getLanguage($language) as $file => $values) {
foreach ($values as $key => $value) {
if (!array_key_exists($key, $reference[$file])) {
unset($this->data[$language][$file][$key]);
}
}
}
}
}
private function processValueStates(): void {
$reference = $this->getReferenceLanguage();
$languages = $this->getNonReferenceLanguages();
foreach ($reference as $file => $refValues) {
foreach ($refValues as $key => $refValue) {
foreach ($languages as $language) {
$value = $this->data[$language][$file][$key];
if ($refValue->equal($value) && !$value->isIgnore()) {
$value->markAsTodo();
continue;
}
if (!$refValue->equal($value) && $value->isTodo()) {
$value->markAsDirty();
continue;
}
}
}
}
}
/**
* Return the available languages
* @return array<string>
*/
public function getAvailableLanguages(): array {
$languages = array_keys($this->data);
sort($languages);
return $languages;
}
/**
* Return all available languages without the reference language
* @return array<string>
*/
private function getNonReferenceLanguages(): array {
return array_filter(array_keys($this->data),
static fn(string $value) => static::REFERENCE_LANGUAGE !== $value);
}
/**
* Add a new language. It’s a copy of the reference language.
* @throws Exception
*/
public function addLanguage(string $language, ?string $reference = null): void {
if (array_key_exists($language, $this->data)) {
throw new Exception('The selected language already exist.');
}
if (!is_string($reference) || !array_key_exists($reference, $this->data)) {
$reference = static::REFERENCE_LANGUAGE;
}
$this->data[$language] = $this->data[$reference];
}
/**
* Check if the key is known.
*/
public function isKnown(string $key): bool {
return array_key_exists($this->getFilenamePrefix($key), $this->data[static::REFERENCE_LANGUAGE]) &&
array_key_exists($key, $this->data[static::REFERENCE_LANGUAGE][$this->getFilenamePrefix($key)]);
}
/**
* Return the parent key for a specified key.
* To get the parent key, you need to remove the last section of the key. Each
* is separated into sections. The parent of a section is the concatenation of
* all sections before the selected key. For instance, if the key is 'a.b.c.d.e',
* the parent key is 'a.b.c.d'.
*/
private function getParentKey(string $key): string {
return substr($key, 0, strrpos($key, '.') ?: null);
}
/**
* Return the siblings for a specified key.
* To get the siblings, we need to find all matches with the parent.
*
* @return array<string>
*/
private function getSiblings(string $key): array {
if (!array_key_exists($this->getFilenamePrefix($key), $this->data[static::REFERENCE_LANGUAGE])) {
return [];
}
$keys = array_keys($this->data[static::REFERENCE_LANGUAGE][$this->getFilenamePrefix($key)]);
$parent = $this->getParentKey($key);
return array_values(array_filter($keys, static fn(string $element) => false !== strpos($element, $parent)));
}
/**
* Check if the key is an only child.
* To be an only child, there must be only one sibling and that sibling must
* be the empty sibling. The empty sibling is the parent.
*/
private function isOnlyChild(string $key): bool {
$siblings = $this->getSiblings($key);
if (1 !== count($siblings)) {
return false;
}
return '_' === $siblings[0][-1];
}
/**
* Return the parent key as an empty sibling.
* When a key has children, it cannot have its value directly. The value
* needs to be attached to an empty sibling represented by "_".
*/
private function getEmptySibling(string $key): string {
return "{$key}._";
}
/**
* Check if a key is a parent key.
* To be a parent key, there must be at least one key starting with the key
* under test. Of course, it cannot be itself.
*/
private function isParent(string $key): bool {
if (!array_key_exists($this->getFilenamePrefix($key), $this->data[static::REFERENCE_LANGUAGE])) {
return false;
}
$keys = array_keys($this->data[static::REFERENCE_LANGUAGE][$this->getFilenamePrefix($key)]);
$children = array_values(array_filter($keys, static function (string $element) use ($key) {
if ($element === $key) {
return false;
}
return false !== strpos($element, $key);
}));
return count($children) !== 0;
}
/**
* Add a new key to all languages.
* @throws Exception
*/
public function addKey(string $key, string $value): void {
if ($this->isParent($key)) {
$key = $this->getEmptySibling($key);
}
if ($this->isKnown($key)) {
throw new Exception('The selected key already exist.');
}
$parentKey = $this->getParentKey($key);
if ($this->isKnown($parentKey)) {
// The parent key exists, that means that we need to convert it to an array.
// To create an array, we need to change the key by appending an empty section.
foreach ($this->getAvailableLanguages() as $language) {
$parentValue = $this->data[$language][$this->getFilenamePrefix($parentKey)][$parentKey];
$this->data[$language][$this->getFilenamePrefix($this->getEmptySibling($parentKey))][$this->getEmptySibling($parentKey)] =
new I18nValue($parentValue);
}
}
$value = new I18nValue($value);
$value->markAsTodo();
foreach ($this->getAvailableLanguages() as $language) {
if (!array_key_exists($key, $this->data[$language][$this->getFilenamePrefix($key)])) {
$this->data[$language][$this->getFilenamePrefix($key)][$key] = $value;
}
}
if ($this->isKnown($parentKey)) {
$this->removeKey($parentKey);
}
}
/**
* Add a value for a key for the selected language.
*
* @throws Exception
*/
public function addValue(string $key, string $value, string $language): void {
if (!in_array($language, $this->getAvailableLanguages(), true)) {
throw new Exception('The selected language does not exist.');
}
if (!array_key_exists($this->getFilenamePrefix($key), $this->data[static::REFERENCE_LANGUAGE]) ||
!array_key_exists($key, $this->data[static::REFERENCE_LANGUAGE][$this->getFilenamePrefix($key)])) {
throw new Exception('The selected key does not exist for the selected language.');
}
$value = new I18nValue($value);
if (static::REFERENCE_LANGUAGE === $language) {
$previousValue = $this->data[static::REFERENCE_LANGUAGE][$this->getFilenamePrefix($key)][$key];
foreach ($this->getAvailableLanguages() as $lang) {
$currentValue = $this->data[$lang][$this->getFilenamePrefix($key)][$key];
if ($currentValue->equal($previousValue)) {
$this->data[$lang][$this->getFilenamePrefix($key)][$key] = $value;
}
}
} else {
$this->data[$language][$this->getFilenamePrefix($key)][$key] = $value;
}
}
/**
* Remove a key in all languages
*/
public function removeKey(string $key): void {
if (!$this->isKnown($key) && !$this->isKnown($this->getEmptySibling($key))) {
throw new Exception('The selected key does not exist.');
}
if (!$this->isKnown($key)) {
// The key has children, it needs to be appended with an empty section.
$key = $this->getEmptySibling($key);
}
foreach ($this->getAvailableLanguages() as $language) {
if (array_key_exists($key, $this->data[$language][$this->getFilenamePrefix($key)])) {
unset($this->data[$language][$this->getFilenamePrefix($key)][$key]);
}
}
if ($this->isOnlyChild($key)) {
$parentKey = $this->getParentKey($key);
foreach ($this->getAvailableLanguages() as $language) {
$parentValue = $this->data[$language][$this->getFilenamePrefix($this->getEmptySibling($parentKey))][$this->getEmptySibling($parentKey)];
$this->data[$language][$this->getFilenamePrefix($parentKey)][$parentKey] = $parentValue;
}
$this->removeKey($this->getEmptySibling($parentKey));
}
}
/**
* Ignore a key from a language, or revert an existing ignore on a key.
*/
public function ignore(string $key, string $language, bool $revert = false): void {
$value = $this->data[$language][$this->getFilenamePrefix($key)][$key];
if ($revert) {
$value->unmarkAsIgnore();
} else {
$value->markAsIgnore();
}
}
/**
* Ignore all unmodified keys from a language, or revert all existing ignores on unmodified keys.
*/
public function ignore_unmodified(string $language, bool $revert = false): void {
$my_language = $this->getLanguage($language);
foreach ($this->getReferenceLanguage() as $file => $ref_language) {
foreach ($ref_language as $key => $ref_value) {
if (array_key_exists($key, $my_language[$file])) {
if ($ref_value->equal($my_language[$file][$key])) {
$this->ignore($key, $language, $revert);
}
}
}
}
}
/**
* @return array<string,array<string,I18nValue>>
*/
public function getLanguage(string $language): array {
return $this->data[$language];
}
/**
* @return array<string,array<string,I18nValue>>
*/
public function getReferenceLanguage(): array {
return $this->getLanguage(static::REFERENCE_LANGUAGE);
}
private function getFilenamePrefix(string $key): string {
return preg_replace('/\..*/', '.php', $key) ?? '';
}
}
wget 'https://sme10.lists2.roe3.org/FreshRSS/cli/i18n/I18nFile.php'
<?php
declare(strict_types=1);
require_once __DIR__ . '/I18nValue.php';
class I18nFile {
/**
* @return array<string,array<string,array<string,I18nValue>>>
*/
public function load(): array {
$i18n = [];
$dirs = new DirectoryIterator(I18N_PATH);
foreach ($dirs as $dir) {
if ($dir->isDot()) {
continue;
}
$files = new DirectoryIterator($dir->getPathname());
foreach ($files as $file) {
if (!$file->isFile()) {
continue;
}
$i18n[$dir->getFilename()][$file->getFilename()] = $this->flatten($this->process($file->getPathname()), $file->getBasename('.php'));
}
}
return $i18n;
}
/**
* @param array<string,array<string,array<string,I18nValue>>> $i18n
*/
public function dump(array $i18n): void {
foreach ($i18n as $language => $file) {
$dir = I18N_PATH . DIRECTORY_SEPARATOR . $language;
if (!file_exists($dir)) {
mkdir($dir, 0770, true);
}
foreach ($file as $name => $content) {
$filename = $dir . DIRECTORY_SEPARATOR . $name;
file_put_contents($filename, $this->format($content));
}
}
}
/**
* Process the content of an i18n file
* @return array<string,array<string,I18nValue>>
*/
private function process(string $filename): array {
$fileContent = file_get_contents($filename) ?: [];
$content = str_replace('<?php', '', $fileContent);
$content = preg_replace([
"#',\s*//\s*TODO.*#i",
"#',\s*//\s*DIRTY.*#i",
"#',\s*//\s*IGNORE.*#i",
], [
' -> todo\',',
' -> dirty\',',
' -> ignore\',',
], $content);
try {
$content = eval($content);
} catch (ParseError $ex) {
if (defined('STDERR')) {
fwrite(STDERR, "Error while processing: $filename\n");
fwrite(STDERR, $ex->getMessage());
}
die(1);
}
if (is_array($content)) {
return $content;
}
return [];
}
/**
* Flatten an array of translation
*
* @param array<string,I18nValue|array<string,I18nValue>> $translation
* @param string $prefix
* @return array<string,I18nValue>
*/
private function flatten(array $translation, string $prefix = ''): array {
$a = [];
if ('' !== $prefix) {
$prefix .= '.';
}
foreach ($translation as $key => $value) {
if (is_array($value)) {
$a += $this->flatten($value, $prefix . $key);
} else {
$a[$prefix . $key] = new I18nValue($value);
}
}
return $a;
}
/**
* Unflatten an array of translation
*
* The first key is dropped since it represents the filename and we have
* no use of it.
*
* @param array<string,I18nValue> $translation
* @return array<string,array<string,I18nValue>>
*/
private function unflatten(array $translation): array {
$a = [];
ksort($translation, SORT_NATURAL);
foreach ($translation as $compoundKey => $value) {
$keys = explode('.', $compoundKey);
array_shift($keys);
eval("\$a['" . implode("']['", $keys) . "'] = '" . addcslashes($value->__toString(), "'") . "';");
}
return $a;
}
/**
* Format an array of translation
*
* It takes an array of translation and format it to be dumped in a
* translation file. The array is first converted to a string then some
* formatting regexes are applied to match the original content.
*
* @param array<string,I18nValue> $translation
*/
private function format(array $translation): string {
$translation = var_export($this->unflatten($translation), true);
$patterns = [
'/ -> todo\',/',
'/ -> dirty\',/',
'/ -> ignore\',/',
'/array \(/',
'/=>\s*array/',
'/(\w) {2}/',
'/ {2}/',
];
$replacements = [
"',\t// TODO", // Double quoting is mandatory to have a tab instead of the \t string
"',\t// DIRTY", // Double quoting is mandatory to have a tab instead of the \t string
"',\t// IGNORE", // Double quoting is mandatory to have a tab instead of the \t string
'array(',
'=> array',
'$1 ',
"\t", // Double quoting is mandatory to have a tab instead of the \t string
];
$translation = preg_replace($patterns, $replacements, $translation);
return <<<OUTPUT
<?php
/******************************************************************************/
/* Each entry of that file can be associated with a comment to indicate its */
/* state. When there is no comment, it means the entry is fully translated. */
/* The recognized comments are (comment matching is case-insensitive): */
/* + TODO: the entry has never been translated. */
/* + DIRTY: the entry has been translated but needs to be updated. */
/* + IGNORE: the entry does not need to be translated. */
/* When a comment is not recognized, it is discarded. */
/******************************************************************************/
return {$translation};
OUTPUT;
}
}
wget 'https://sme10.lists2.roe3.org/FreshRSS/cli/i18n/I18nUsageValidator.php'
<?php
declare(strict_types=1);
require_once __DIR__ . '/I18nValidatorInterface.php';
class I18nUsageValidator implements I18nValidatorInterface {
/** @var array<string> */
private array $code;
/** @var array<string,array<string,I18nValue>> */
private array $reference;
private int $totalEntries = 0;
private int $failedEntries = 0;
private string $result = '';
/**
* @param array<string,array<string,I18nValue>> $reference
* @param array<string> $code
*/
public function __construct(array $reference, array $code) {
$this->code = $code;
$this->reference = $reference;
}
#[\Override]
public function displayReport(): string {
if ($this->failedEntries > $this->totalEntries) {
throw new \RuntimeException('The number of unused strings cannot be higher than the number of strings');
}
if ($this->totalEntries === 0) {
return 'There is no data.' . PHP_EOL;
}
return sprintf('%5.1f%% of translation keys are unused.', $this->failedEntries / $this->totalEntries * 100) . PHP_EOL;
}
#[\Override]
public function displayResult(): string {
return $this->result;
}
#[\Override]
public function validate(): bool {
foreach ($this->reference as $file => $data) {
foreach ($data as $key => $value) {
$this->totalEntries++;
if (preg_match('/\._$/', $key) === 1 && in_array(preg_replace('/\._$/', '', $key), $this->code, true)) {
continue;
}
if (!in_array($key, $this->code, true)) {
$this->result .= sprintf('Unused key %s - %s', $key, $value) . PHP_EOL;
$this->failedEntries++;
continue;
}
}
}
return 0 === $this->failedEntries;
}
}
wget 'https://sme10.lists2.roe3.org/FreshRSS/cli/i18n/I18nValidatorInterface.php'
<?php
declare(strict_types=1);
interface I18nValidatorInterface {
/**
* Display the validation result.
* Empty if there are no errors.
*/
public function displayResult(): string;
public function validate(): bool;
/**
* Display the validation report.
*/
public function displayReport(): string;
}
wget 'https://sme10.lists2.roe3.org/FreshRSS/cli/i18n/I18nValue.php'
<?php
declare(strict_types=1);
class I18nValue {
private const STATE_DIRTY = 'dirty';
public const STATE_IGNORE = 'ignore';
private const STATE_TODO = 'todo';
private const STATES = [
self::STATE_DIRTY,
self::STATE_IGNORE,
self::STATE_TODO,
];
private string $value;
private ?string $state = null;
/** @param I18nValue|string $data */
public function __construct($data) {
if ($data instanceof I18nValue) {
$data = $data->__toString();
}
$data = explode(' -> ', $data);
$this->value = (string)(array_shift($data) ?? '');
if (count($data) === 0) {
return;
}
$state = array_shift($data);
if (in_array($state, self::STATES, true)) {
$this->state = $state;
}
}
public function __clone() {
$this->markAsTodo();
}
public function equal(I18nValue $value): bool {
return $this->value === $value->getValue();
}
public function isIgnore(): bool {
return $this->state === self::STATE_IGNORE;
}
public function isTodo(): bool {
return $this->state === self::STATE_TODO;
}
public function markAsDirty(): void {
$this->state = self::STATE_DIRTY;
}
public function markAsIgnore(): void {
$this->state = self::STATE_IGNORE;
}
public function markAsTodo(): void {
$this->state = self::STATE_TODO;
}
public function unmarkAsIgnore(): void {
if ($this->state === self::STATE_IGNORE) {
$this->state = null;
}
}
#[\Override]
public function __toString(): string {
if ($this->state === null) {
return $this->value;
}
return "{$this->value} -> {$this->state}";
}
public function getValue(): string {
return $this->value;
}
}