mirror of
https://github.com/Karaka-Management/Build.git
synced 2026-01-10 19:28:41 +00:00
114 lines
3.5 KiB
PHP
114 lines
3.5 KiB
PHP
<?php
|
|
/**
|
|
* Jingga
|
|
*
|
|
* PHP Version 8.2
|
|
*
|
|
* Inspect .lang.php files and check them for errors/optimization
|
|
*
|
|
* @package Modules\HumanResourceManagement
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 2.0
|
|
* @version 1.0.0
|
|
* @link https://jingga.app
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
function printUsage() : void
|
|
{
|
|
echo 'Usage: -m <PATH>';
|
|
|
|
echo "\t" . '-m Module name.' . "\n";
|
|
}
|
|
|
|
// $destination = ($key = \array_search('-d', $argv)) === false || $key === \count($argv) - 1 ? null : \trim($argv[$key + 1], '" ');
|
|
$moduleName = ($key = \array_search('-m', $argv)) === false || $key === \count($argv) - 1 ? null : \trim($argv[$key + 1], '" ');
|
|
|
|
if (!isset($moduleName)) {
|
|
\printUsage();
|
|
|
|
return;
|
|
}
|
|
|
|
$modulePath = __DIR__ . '/../../../Modules/' . $moduleName;
|
|
|
|
$sources = new \RecursiveIteratorIterator(new \RecursiveDirectoryIterator($modulePath));
|
|
$tpls = [];
|
|
$langs = [];
|
|
|
|
foreach ($sources as $source) {
|
|
if ($source->isFile()
|
|
&& (($temp = \strlen($source->getPathname()) - \strlen('tpl.php')) >= 0 && \strpos($source->getPathname(), 'tpl.php', $temp) !== false)
|
|
) {
|
|
$tpls[] = $source->getPathname();
|
|
} elseif ($source->isFile()
|
|
&& (($temp = \strlen($source->getPathname()) - \strlen('lang.php')) >= 0 && \strpos($source->getPathname(), 'lang.php', $temp) !== false)
|
|
&& \strlen(\explode('.', \basename($source->getPathname()))[0]) === 2
|
|
) {
|
|
$langFileContent = include $source->getPathname();
|
|
$langs[\explode('.', \basename($source->getPathname()))[0]] = \end($langFileContent);
|
|
}
|
|
}
|
|
|
|
// Compare language files
|
|
$length = 0;
|
|
$unequalLength = false;
|
|
$unusedLanguage = [];
|
|
|
|
foreach($langs as $lang => $data) {
|
|
if ($length === 0) {
|
|
$length = \count($data);
|
|
$unusedLanguage = \array_keys($data);
|
|
}
|
|
|
|
if ($length !== \count($data)) {
|
|
$unequalLength = true;
|
|
}
|
|
|
|
foreach ($tpls as $tpl) {
|
|
$fileContent = \file_get_contents($tpl);
|
|
|
|
foreach ($data as $key => $word) {
|
|
if ((\stripos($fileContent, '$this->getHtml(\'' . $key . '\')') !== false
|
|
|| \stripos($fileContent, '$this->getHtml(\'' . $key . '\', \'' . $moduleName . '\', \'Backend\')') !== false)
|
|
&& ($key = \array_search($key, $unusedLanguage)) !== false
|
|
) {
|
|
unset($unusedLanguage[$key]);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
echo 'Language files have different length: ' . ($unequalLength ? 'yes' : 'no') . "\n";
|
|
echo 'Unused language components: ' . "\n";
|
|
\var_dump($unusedLanguage);
|
|
|
|
$sources = new \RecursiveIteratorIterator(new \RecursiveDirectoryIterator($modulePath));
|
|
$tpls = [];
|
|
$langs = [];
|
|
|
|
foreach ($sources as $source) {
|
|
if ($source->isFile()
|
|
&& (($temp = \strlen($source->getPathname()) - \strlen('lang.php')) >= 0 && \strpos($source->getPathname(), 'lang.php', $temp) !== false)
|
|
&& \strlen(\explode('.', \basename($source->getPathname()))[0]) === 2
|
|
) {
|
|
$file = \file_get_contents($source->getPathname());
|
|
$lines = \explode("\n", $file);
|
|
$exclude = [];
|
|
|
|
foreach ($lines as $line) {
|
|
foreach ($unusedLanguage as $unused) {
|
|
if (\strpos($line, ' \'' . $unused . '\' ') !== false
|
|
&& \stripos($unused, ':') === false
|
|
) {
|
|
continue 2;
|
|
}
|
|
}
|
|
|
|
$exclude[] = $line;
|
|
}
|
|
|
|
\file_put_contents($source->getPathname(), \implode("\n", $exclude));
|
|
}
|
|
}
|