-
Notifications
You must be signed in to change notification settings - Fork 2k
Expand file tree
/
Copy pathLocalizationFinder.php
More file actions
397 lines (311 loc) · 12.6 KB
/
LocalizationFinder.php
File metadata and controls
397 lines (311 loc) · 12.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
<?php
declare(strict_types=1);
/**
* This file is part of CodeIgniter 4 framework.
*
* (c) CodeIgniter Foundation <admin@codeigniter.com>
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*/
namespace CodeIgniter\Commands\Translation;
use CodeIgniter\CLI\BaseCommand;
use CodeIgniter\CLI\CLI;
use CodeIgniter\Helpers\Array\ArrayHelper;
use Config\App;
use Locale;
use RecursiveDirectoryIterator;
use RecursiveIteratorIterator;
use SplFileInfo;
/**
* @see \CodeIgniter\Commands\Translation\LocalizationFinderTest
*/
class LocalizationFinder extends BaseCommand
{
protected $group = 'Translation';
protected $name = 'lang:find';
protected $description = 'Find and save available phrases to translate.';
protected $usage = 'lang:find [options]';
protected $arguments = [];
protected $options = [
'--locale' => 'Specify locale (en, ru, etc.) to save files.',
'--dir' => 'Directory to search for translations relative to APPPATH.',
'--show-new' => 'Show only new translations in table. Does not write to files.',
'--verbose' => 'Output detailed information.',
];
/**
* Flag for output detailed information
*/
private bool $verbose = false;
/**
* Flag for showing only translations, without saving
*/
private bool $showNew = false;
private string $languagePath;
public function run(array $params)
{
$this->verbose = array_key_exists('verbose', $params);
$this->showNew = array_key_exists('show-new', $params);
$optionLocale = $params['locale'] ?? null;
$optionDir = $params['dir'] ?? null;
$currentLocale = Locale::getDefault();
$currentDir = APPPATH;
$this->languagePath = $currentDir . 'Language';
if (ENVIRONMENT === 'testing') {
$currentDir = SUPPORTPATH . 'Services' . DIRECTORY_SEPARATOR;
$this->languagePath = SUPPORTPATH . 'Language';
}
if (is_string($optionLocale)) {
if (! in_array($optionLocale, config(App::class)->supportedLocales, true)) {
CLI::error(
'Error: "' . $optionLocale . '" is not supported. Supported locales: '
. implode(', ', config(App::class)->supportedLocales),
);
return EXIT_USER_INPUT;
}
$currentLocale = $optionLocale;
}
if (is_string($optionDir)) {
$tempCurrentDir = realpath($currentDir . $optionDir);
if ($tempCurrentDir === false) {
CLI::error('Error: Directory must be located in "' . $currentDir . '"');
return EXIT_USER_INPUT;
}
if ($this->isSubDirectory($tempCurrentDir, $this->languagePath)) {
CLI::error('Error: Directory "' . $this->languagePath . '" restricted to scan.');
return EXIT_USER_INPUT;
}
$currentDir = $tempCurrentDir;
}
$this->process($currentDir, $currentLocale);
CLI::write('All operations done!');
return EXIT_SUCCESS;
}
private function process(string $currentDir, string $currentLocale): void
{
$tableRows = [];
$countNewKeys = 0;
$iterator = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($currentDir));
$files = iterator_to_array($iterator, true);
ksort($files);
[
'foundLanguageKeys' => $foundLanguageKeys,
'badLanguageKeys' => $badLanguageKeys,
'countFiles' => $countFiles,
] = $this->findLanguageKeysInFiles($files);
ksort($foundLanguageKeys);
$languageDiff = [];
$languageFoundGroups = array_unique(array_keys($foundLanguageKeys));
foreach ($languageFoundGroups as $langFileName) {
$languageStoredKeys = [];
$languageFilePath = $this->languagePath . DIRECTORY_SEPARATOR . $currentLocale . DIRECTORY_SEPARATOR . $langFileName . '.php';
if (is_file($languageFilePath)) {
// Load old localization
$languageStoredKeys = require $languageFilePath;
}
$languageDiff = ArrayHelper::recursiveDiff($foundLanguageKeys[$langFileName], $languageStoredKeys);
$countNewKeys += ArrayHelper::recursiveCount($languageDiff);
if ($this->showNew) {
$tableRows = array_merge($this->arrayToTableRows($langFileName, $languageDiff), $tableRows);
} else {
$newLanguageKeys = array_replace_recursive($foundLanguageKeys[$langFileName], $languageStoredKeys);
if ($languageDiff !== []) {
if (file_put_contents($languageFilePath, $this->templateFile($newLanguageKeys)) === false) {
$this->writeIsVerbose('Lang file ' . $langFileName . ' (error write).', 'red');
} else {
$this->writeIsVerbose('Lang file "' . $langFileName . '" successful updated!', 'green');
}
}
}
}
if ($this->showNew && $tableRows !== []) {
sort($tableRows);
CLI::table($tableRows, ['File', 'Key']);
}
if (! $this->showNew && $countNewKeys > 0) {
CLI::write('Note: You need to run your linting tool to fix coding standards issues.', 'white', 'red');
}
$this->writeIsVerbose('Files found: ' . $countFiles);
$this->writeIsVerbose('New translates found: ' . $countNewKeys);
$this->writeIsVerbose('Bad translates found: ' . count($badLanguageKeys));
if ($this->verbose && $badLanguageKeys !== []) {
$tableBadRows = [];
foreach ($badLanguageKeys as $value) {
$tableBadRows[] = [$value[1], $value[0]];
}
ArrayHelper::sortValuesByNatural($tableBadRows, 0);
CLI::table($tableBadRows, ['Bad Key', 'Filepath']);
}
}
/**
* @param SplFileInfo|string $file
*
* @return array<string, array>
*/
private function findTranslationsInFile($file): array
{
$foundLanguageKeys = [];
$badLanguageKeys = [];
if (is_string($file) && is_file($file)) {
$file = new SplFileInfo($file);
}
$fileContent = file_get_contents($file->getRealPath());
preg_match_all('/lang\(\'([._a-z0-9\-]+)\'\)/ui', $fileContent, $matches);
if ($matches[1] === []) {
return compact('foundLanguageKeys', 'badLanguageKeys');
}
foreach ($matches[1] as $phraseKey) {
$phraseKeys = explode('.', $phraseKey);
// Language key not have Filename or Lang key
if (count($phraseKeys) < 2) {
$badLanguageKeys[] = [mb_substr($file->getRealPath(), mb_strlen(ROOTPATH)), $phraseKey];
continue;
}
$languageFileName = array_shift($phraseKeys);
$isEmptyNestedArray = ($languageFileName !== '' && $phraseKeys[0] === '')
|| ($languageFileName === '' && $phraseKeys[0] !== '')
|| ($languageFileName === '' && $phraseKeys[0] === '');
if ($isEmptyNestedArray) {
$badLanguageKeys[] = [mb_substr($file->getRealPath(), mb_strlen(ROOTPATH)), $phraseKey];
continue;
}
if (count($phraseKeys) === 1) {
$foundLanguageKeys[$languageFileName][$phraseKeys[0]] = $phraseKey;
} else {
$childKeys = $this->buildMultiArray($phraseKeys, $phraseKey);
$foundLanguageKeys[$languageFileName] = array_replace_recursive($foundLanguageKeys[$languageFileName] ?? [], $childKeys);
}
}
return compact('foundLanguageKeys', 'badLanguageKeys');
}
private function isIgnoredFile(SplFileInfo $file): bool
{
if ($file->isDir() || $this->isSubDirectory($file->getRealPath(), $this->languagePath)) {
return true;
}
return $file->getExtension() !== 'php';
}
private function templateFile(array $language = []): string
{
if ($language !== []) {
$languageArrayString = var_export($language, true);
$code = <<<PHP
<?php
return {$languageArrayString};
PHP;
return $this->replaceArraySyntax($code);
}
return <<<'PHP'
<?php
return [];
PHP;
}
private function replaceArraySyntax(string $code): string
{
$tokens = token_get_all($code);
$newTokens = $tokens;
foreach ($tokens as $i => $token) {
if (is_array($token)) {
[$tokenId, $tokenValue] = $token;
// Replace "array ("
if (
$tokenId === T_ARRAY
&& $tokens[$i + 1][0] === T_WHITESPACE
&& $tokens[$i + 2] === '('
) {
$newTokens[$i][1] = '[';
$newTokens[$i + 1][1] = '';
$newTokens[$i + 2] = '';
}
// Replace indent
if ($tokenId === T_WHITESPACE && preg_match('/\n([ ]+)/u', $tokenValue, $matches)) {
$newTokens[$i][1] = "\n{$matches[1]}{$matches[1]}";
}
} // Replace ")"
elseif ($token === ')') {
$newTokens[$i] = ']';
}
}
$output = '';
foreach ($newTokens as $token) {
$output .= $token[1] ?? $token;
}
return $output;
}
/**
* Create multidimensional array from another keys
*
* @param array<int,string> $fromKeys List of keys to build nested array
* @param string $lastArrayValue Value to assign at the deepest key
*
* @return array<string,mixed> Multidimensional associative array
*/
private function buildMultiArray(array $fromKeys, string $lastArrayValue = ''): array
{
$newArray = [];
$lastIndex = array_pop($fromKeys);
$current = &$newArray;
foreach ($fromKeys as $value) {
$current[$value] = [];
$current = &$current[$value];
}
$current[$lastIndex] = $lastArrayValue;
return $newArray;
}
/**
* Convert multi arrays to specific CLI table rows (flat array)
*
* @param array<int,mixed> $array Input translations (nested array or strings)
*
* @return array<int,array{0:string,1:string}> Flat list of table rows [langFileNames, value]
*/
private function arrayToTableRows(string $langFileName, array $array): array
{
$rows = [];
foreach ($array as $value) {
if (is_array($value)) {
$rows = array_merge($rows, $this->arrayToTableRows($langFileName, $value));
continue;
}
if (is_string($value)) {
$rows[] = [$langFileName, $value];
}
}
return $rows;
}
/**
* Show details in the console if the flag is set
*/
private function writeIsVerbose(string $text = '', ?string $foreground = null, ?string $background = null): void
{
if ($this->verbose) {
CLI::write($text, $foreground, $background);
}
}
private function isSubDirectory(string $directory, string $rootDirectory): bool
{
return 0 === strncmp($directory, $rootDirectory, strlen($directory));
}
/**
* @param list<SplFileInfo> $files
*
* @return array{'foundLanguageKeys': array<string, array<string, string>>, 'badLanguageKeys': array<int, array<int, string>>, 'countFiles': int}
*/
private function findLanguageKeysInFiles(array $files): array
{
$foundLanguageKeys = [];
$badLanguageKeys = [];
$countFiles = 0;
foreach ($files as $file) {
if ($this->isIgnoredFile($file)) {
continue;
}
$this->writeIsVerbose('File found: ' . mb_substr($file->getRealPath(), mb_strlen(APPPATH)));
$countFiles++;
$findInFile = $this->findTranslationsInFile($file);
$foundLanguageKeys = array_replace_recursive($findInFile['foundLanguageKeys'], $foundLanguageKeys);
$badLanguageKeys = array_merge($findInFile['badLanguageKeys'], $badLanguageKeys);
}
return compact('foundLanguageKeys', 'badLanguageKeys', 'countFiles');
}
}