103 lines
3.4 KiB
PHP
103 lines
3.4 KiB
PHP
<?PHP
|
|
/**
|
|
* Compiles the static parts of the quality assessment web interface.
|
|
*/
|
|
declare(strict_types = 1);
|
|
|
|
require_once __DIR__ . '/provideEnv.php';
|
|
|
|
# if (!(file_put_contents(__DIR__ . '/static/json/openapi.json', json_encode(QAApiDesc::describeApi())))) {
|
|
# throw new Exception("Failed to save OpenAPI description");
|
|
# }
|
|
|
|
/**
|
|
* Generates the json for a translation file.
|
|
*
|
|
* @param string $lang Language.
|
|
*
|
|
* @return string
|
|
*/
|
|
function generateTranslationFile(string $lang):string {
|
|
|
|
$tlLoader = new MDTlLoader("mdConc", $lang);
|
|
|
|
return MD_STD::json_encode([
|
|
'concordance_checker' => $tlLoader->tl('concordance', 'concordance', 'concordance_checker'),
|
|
]);
|
|
|
|
}
|
|
|
|
/**
|
|
* Generate index.htm.
|
|
*
|
|
* @return string
|
|
*/
|
|
function generateAppShell():string {
|
|
|
|
return '<!DOCTYPE HTML>
|
|
<html data-allowed-langs="' . htmlspecialchars(implode(',', ALLOWED_LANGS)) . '">
|
|
<head>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
|
|
<link rel="stylesheet" type="text/css" href="static/css/qa.css?' . uniqid() . '" />
|
|
<link rel="manifest" href="/manifest.webmanifest" />
|
|
<meta name="theme-color" content="#aa4400" />
|
|
|
|
<title>Quality assessment :: museum-digital</title>
|
|
<meta name="twitter:title" content="Quality assessment :: museum-digital" />
|
|
<meta property="og:title" content="Quality assessment :: museum-digital" />
|
|
|
|
<meta name="twitter:card" content="summary" />
|
|
<meta name="twitter:site" content="@museumdigital" />
|
|
|
|
<meta name="description" content="Use museum-digital\'s quality assessment tools for your own data" />
|
|
<meta name="author" content="Joshua Ramon Enslin" />
|
|
<meta name="dc.creator" content="Joshua Ramon Enslin" />
|
|
|
|
<meta name="keywords" content="Imports, museum-digital, concordance" />
|
|
|
|
<link rel="shortcut icon" sizes="128x128" href="/static/img/mdlogo-code.svg" />
|
|
<link rel="apple-touch-icon" sizes="192x192" href="/static/img/mdlogo-code-128px.png" />
|
|
<meta property="twitter:image" content="/static/img/mdlogo-code.svg" />
|
|
<meta property="og:image" content="/static/img/mdlogo-code.svg" />
|
|
|
|
</head>
|
|
<body class="loading">
|
|
|
|
<script src="/static/js/qa.min.js?' . uniqid() . '" type="text/javascript" async></script>
|
|
|
|
</body>
|
|
</html>';
|
|
|
|
}
|
|
|
|
const ALLOWED_LANGS = ['de', 'en', 'uk'];
|
|
const SERVED_ROOT = __DIR__ . '/public/';
|
|
const SERVED_JSON_ROOT = __DIR__ . '/public/static/json/';
|
|
|
|
if (!is_dir(SERVED_JSON_ROOT)) {
|
|
echo "Will generate JSON root directory (" . SERVED_JSON_ROOT . ")" . PHP_EOL;
|
|
MD_STD::mkdir(SERVED_JSON_ROOT);
|
|
}
|
|
|
|
foreach (ALLOWED_LANGS as $lang) {
|
|
echo "Will generate JSON list of translations for language: " . $lang . PHP_EOL;
|
|
file_put_contents(SERVED_JSON_ROOT . 'tls.' . $lang . '.json', generateTranslationFile($lang));
|
|
}
|
|
|
|
echo "Will generate app shell" . PHP_EOL;
|
|
file_put_contents(SERVED_ROOT . 'index.htm', generateAppShell());
|
|
|
|
echo "Will minify CSS" . PHP_EOL;
|
|
exec("minify \\
|
|
-o " . escapeshellarg(__DIR__ . '/public/static/css/qa.min.css') . '\\
|
|
' . escapeshellarg(__DIR__ . '/public/static/css/editMenu.css') . '\\
|
|
' . escapeshellarg(__DIR__ . '/public/static/css/dialogue.css') . '\\
|
|
' . escapeshellarg(__DIR__ . '/public/static/css/qa.css'));
|
|
|
|
echo "Will minify JS" . PHP_EOL;
|
|
exec("minify \\
|
|
-o " . escapeshellarg(__DIR__ . '/public/static/js/qa.min.js') . '\
|
|
' . escapeshellarg(__DIR__ . '/public/static/js/qa.js'));
|