-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTranslationScanner.php
More file actions
561 lines (474 loc) · 12.2 KB
/
Copy pathTranslationScanner.php
File metadata and controls
561 lines (474 loc) · 12.2 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
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
<?php
/**
* @copyright 2015 Constantin Romankiewicz <constantin@zweiiconkram.de>
* @license Apache License 2.0; see LICENSE
*/
require_once 'Configuration.php';
/**
* Scans file system for translation files.
*
* @author Constantin Romankiewicz <constantin@zweiiconkram.de>
* @since 1.0
*/
class TranslationScanner
{
/**
* @var string The default base directory containing the extensions.
*/
public static $basePath = __DIR__ . '/extensions/';
private $component;
private $path;
protected $usedAdmin = array();
protected $usedSite = array();
protected $unusedAdmin = array();
protected $unusedSite = array();
protected $missingAdmin = array();
protected $missingSite = array();
protected $extensionName;
private $languageAdmin;
private $languageSite;
private $languages = array();
private $error;
/**
* TranslationScanner constructor.
*
* @param string $extensionName Identifier of the extension to be scanned.
*
* @param string $path Location of the extension folder (optional).
* If left empty, the extension should be in a sub-folder of the $baseFolder.
*/
public function __construct($extensionName, $path = '')
{
$this->extensionName = $extensionName;
if (empty($path))
{
$path = __DIR__ . '/extensions/' . $extensionName;
}
$this->path = $path;
if (!is_dir($path))
{
return;
}
if ($installFile = $this->findInstallFile())
{
$xml = simplexml_load_file($path . '/' . $installFile);
$this->component = ($xml['type'] == 'component');
}
else
{
$this->error = 'No XML installation file found.';
}
}
/**
* Scans all code and language files inside the extension directory and analyzes the language strings.
*
* @return void
*/
public function scanAll()
{
if (!is_dir($this->path))
{
$this->error = 'Invalid path supplied: ' . $this->path . ' is not a directory.';
}
$config = Configuration::getInstance();
if ($this->component)
{
$this->usedAdmin = $this->sortUnique(
array_merge(
$this->scanDirectory($this->path . '/', '.xml', false),
$this->scanDirectory($this->path . '/admin', '.php'),
$this->scanDirectory($this->path . '/admin', '.xml'),
$this->scanDirectory($this->path . '/site', '.xml')
)
);
$this->usedSite = $this->sortUnique(
array_merge(
$this->scanDirectory($this->path . '/site', '.php'),
$this->scanDirectory($this->path . '/admin/model/field', '.xml'),
$this->scanDirectory($this->path . '/admin/model/form', '.xml'),
$this->scanDirectory($this->path . '/admin/models/fields', '.xml'),
$this->scanDirectory($this->path . '/admin/models/forms', '.xml')
)
);
if (is_dir($this->path . '/admin/language'))
{
$this->languageAdmin = $this->scanLanguages($this->path . '/admin/language');
$hidden = $config->getHiddenStrings($this->extensionName, 'admin');
$this->compareStrings($this->languageAdmin, $this->usedAdmin, $this->missingAdmin, $this->unusedAdmin, $hidden);
// TODO .sys.ini
}
else
{
// TODO
}
if (is_dir($this->path . '/site/language'))
{
$this->languageSite = $this->scanLanguages($this->path . '/site/language');
$hidden = $config->getHiddenStrings($this->extensionName, 'site');
$this->compareStrings($this->languageSite, $this->usedSite, $this->missingSite, $this->unusedSite, $hidden);
}
else
{
// TODO
}
}
else
{
$this->usedSite = $this->sortUnique(
array_merge(
$this->scanDirectory($this->path, '.php'),
$this->scanDirectory($this->path, '.xml')
)
);
$this->languageSite = $this->scanLanguages($this->path . '/language');
$hidden = $config->getHiddenStrings($this->extensionName, 'site');
$this->compareStrings($this->languageSite, $this->usedSite, $this->missingSite, $this->unusedSite, $hidden);
}
}
/**
* Recursively searches for code files in a directory.
*
* @param string $path Directory to be searched.
* @param string $ending File ending of the files to be returned.
* @param boolean $recursive Whether to recursively descend into directories.
*
* @return array One-dimensional array containing the paths to all files that have been found.
*/
public function scanDirectory($path, $ending, $recursive = true)
{
$strings = array();
if (is_dir($path))
{
if ($dh = opendir($path))
{
while (($file = readdir($dh)) !== false)
{
if ($file === '.' || $file === '..')
{
continue;
}
$filePath = $path . '/' . $file;
if (is_dir($filePath) && $recursive)
{
$strings = array_merge($strings, $this->scanDirectory($filePath, $ending));
}
elseif (substr($file, -strlen($ending)) === $ending)
{
$strings = array_merge($strings, $this->scanCodeFile($filePath));
}
}
closedir($dh);
}
}
return $strings;
}
/**
* Scans all language files inside a given path.
*
* @param string $path Path to the directory containing the language files.
* @param boolean $sys Whether to include .sys.ini files or not (default: false).
*
* @return array Associative array with the key being the subfolder of the language files (typically the language key)
* and the value being the language strings, grouped by file.
*/
public function scanLanguages($path, $sys = false)
{
$strings = array();
if (!is_dir($path))
{
return array();
}
if ($dh = opendir($path))
{
while (($folder = readdir($dh)) !== false)
{
if ($folder === '.' || $folder === '..')
{
continue;
}
$folderPath = $path . '/' . $folder;
if (is_dir($folderPath))
{
if (!in_array($folder, $this->languages))
{
array_push($this->languages, $folder);
}
$strings[$folder] = $this->scanLanguage($folderPath, $folder, $sys);
}
}
closedir($dh);
}
return $strings;
}
/**
* Scans the language files of a single language.
*
* @param string $path Path to the directory containing the language files.
* @param string $language Language key.
* @param boolean $sys Whether to include .sys.ini files or not (default: false).
*
* @return array Associative array with the key being the language file and the value an array of language strings.
*/
public function scanLanguage($path, $language, $sys = false)
{
$fileName = $language . '.' . $this->extensionName . ($sys ? '.sys' : '') . '.ini';
$strings = array();
if (!is_dir($path))
{
return array();
}
if ($dh = opendir($path))
{
while (($file = readdir($dh)) !== false)
{
if ($file === '.' || $file === '..')
{
continue;
}
$filePath = $path . '/' . $file;
if (is_file($filePath) && $file === $fileName)
{
$strings[$file] = $this->scanLangFile($filePath);
}
}
closedir($dh);
}
return $strings;
}
/**
* Searches for an installation XML manifest in the given directory.
*
* @param string $dir Directory containing the XML manifest, relative to the base path of the extension (optional).
*
* @return null|string Path to the installation manifest file, relative to the base path of the extension.
* Null if no installation manifest could be found.
*/
private function findInstallFile($dir = '')
{
$files = scandir($this->path . '/' . $dir);
$split = explode('_', $this->extensionName);
$pattern = $split[count($split) - 1] . '.xml';
foreach ($files as $file)
{
if (substr($file, -strlen($pattern)) === $pattern)
{
if ($dir != '')
{
$file = $dir . '/' . $file;
}
return $file;
}
}
if ($dir == '')
{
$file = $this->findInstallFile('admin');
if ($file)
{
return $file;
}
$file = $this->findInstallFile('site');
if ($file)
{
return $file;
}
}
return null;
}
/**
* Scans a given code file for language strings.
* The language strings have to be in the format EXTENSION_IDENTIFIER_SOMETHING, e.g. COM_MYCOMPONENT_ERROR_NO_FILE.
*
* @param string $file Path to the file.
*
* @return array All found language strings.
*/
private function scanCodeFile($file)
{
$strings = array();
$content = file_get_contents($file);
if (!$content)
{
return array();
}
$pattern = "/" . strtoupper($this->extensionName) . "[A-Z_0-9]*/";
if (preg_match_all($pattern, $content, $matches))
{
$strings = $matches[0];
}
return $strings;
}
/**
* Sorts an array and removes duplicated values.
*
* @param array $array The array to operate on.
*
* @return array A sorted and unique version of the array.
*/
private function sortUnique($array)
{
sort($array);
return array_unique($array);
}
/**
* Scans a single language file for translated language strings.
*
* @param string $file Path to the language file.
*
* @return array All translated language strings contained in the file.
*/
private function scanLangFile($file)
{
$strings = array();
$handle = @fopen($file, "r");
if (!$handle)
{
return array();
}
$pattern = "/^(" . strtoupper($this->extensionName) . "[A-Z_0-9]*)=/";
while (($line = fgets($handle)) !== false)
{
if (preg_match($pattern, $line, $matches))
{
array_push($strings, $matches[1]);
}
}
if (!feof($handle))
{
return array();
}
fclose($handle);
return $strings;
}
/**
* Compares the language strings found in the code base with those translated in the language files.
*
* @param array $languageFiles Associative array in the form:
* array(
* 'en-GB' => array(
* 'en-GB.com_something.ini => array(language strings),
* ...
* ),
* ...
* )
* @param array $used Array containing all strings used in the code base.
* @param array $missing Reference to an array where the function inserts all untranslated strings.
* @param array $unused Reference to an array where the function inserts all translated strings not used in the code base.
* @param array $hidden Language strings that should be ignored.
*
* @return void Values are returned by reference in the parameters.
*/
private function compareStrings($languageFiles, $used, &$missing, &$unused, $hidden)
{
foreach ($languageFiles as $language => $files)
{
$missing[$language] = array();
foreach ($files as $file => $defined)
{
foreach ($used as $string)
{
if (($index = array_search($string, $defined)) !== false)
{
unset($languageFiles[$language][$file][$index]);
}
elseif (!in_array($string, $hidden))
{
array_push($missing[$language], $string);
}
}
// Remove hidden strings from defined strings.
foreach ($hidden as $string)
{
if (($index = array_search($string, $defined)) !== false)
{
unset($languageFiles[$language][$file][$index]);
}
}
}
}
$unused = $languageFiles;
}
/**
* @return array
*/
public function getUsedAdmin()
{
return $this->usedAdmin;
}
/**
* @return array
*/
public function getUsedSite()
{
return $this->usedSite;
}
/**
* @return array
*/
public function getUnusedAdmin()
{
return $this->unusedAdmin;
}
/**
* @return array
*/
public function getUnusedSite()
{
return $this->unusedSite;
}
/**
* @return array
*/
public function getMissingAdmin()
{
return $this->missingAdmin;
}
/**
* @return array
*/
public function getMissingSite()
{
return $this->missingSite;
}
/**
* @return mixed
*/
public function getExtensionName()
{
return $this->extensionName;
}
/**
* @return mixed
*/
public function getLanguageAdmin()
{
return $this->languageAdmin;
}
/**
* @return mixed
*/
public function getLanguageSite()
{
return $this->languageSite;
}
/**
* @return array
*/
public function getLanguages()
{
return $this->languages;
}
/**
* @return string
*/
public function getError()
{
return $this->error;
}
/**
* @return boolean
*/
public function isComponent()
{
return $this->component;
}
}