2021-02-21 23:40:10 +01:00
|
|
|
#!/usr/bin/env node
|
2021-03-03 02:31:02 +01:00
|
|
|
import { join as pathJoin } from "path";
|
2024-02-11 18:28:58 +01:00
|
|
|
import { downloadAndUnzip } from "./downloadAndUnzip";
|
2022-04-20 00:39:40 +02:00
|
|
|
import { promptKeycloakVersion } from "./promptKeycloakVersion";
|
2022-09-08 12:06:26 +03:00
|
|
|
import { getLogger } from "./tools/logger";
|
2024-01-30 06:38:26 +01:00
|
|
|
import { readBuildOptions, type BuildOptions } from "./keycloakify/buildOptions";
|
2023-09-03 23:26:34 +02:00
|
|
|
import { assert } from "tsafe/assert";
|
2023-08-20 03:00:45 +02:00
|
|
|
import * as child_process from "child_process";
|
|
|
|
import * as fs from "fs";
|
2024-02-05 08:52:58 +01:00
|
|
|
import { rmSync } from "./tools/fs.rmSync";
|
|
|
|
import { lastKeycloakVersionWithAccountV1 } from "./constants";
|
|
|
|
import { transformCodebase } from "./tools/transformCodebase";
|
2021-02-21 23:06:42 +01:00
|
|
|
|
2023-09-03 23:26:34 +02:00
|
|
|
export type BuildOptionsLike = {
|
|
|
|
cacheDirPath: string;
|
2024-02-11 18:28:58 +01:00
|
|
|
npmWorkspaceRootDirPath: string;
|
2023-09-03 23:26:34 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
assert<BuildOptions extends BuildOptionsLike ? true : false>();
|
|
|
|
|
|
|
|
export async function downloadBuiltinKeycloakTheme(params: { keycloakVersion: string; destDirPath: string; buildOptions: BuildOptionsLike }) {
|
|
|
|
const { keycloakVersion, destDirPath, buildOptions } = params;
|
2023-08-20 03:00:45 +02:00
|
|
|
|
2023-08-21 04:26:58 +02:00
|
|
|
await downloadAndUnzip({
|
|
|
|
destDirPath,
|
|
|
|
"url": `https://github.com/keycloak/keycloak/archive/refs/tags/${keycloakVersion}.zip`,
|
|
|
|
"specificDirsToExtract": ["", "-community"].map(ext => `keycloak-${keycloakVersion}/themes/src/main/resources${ext}/theme`),
|
2024-02-11 18:28:58 +01:00
|
|
|
buildOptions,
|
2023-08-21 04:26:58 +02:00
|
|
|
"preCacheTransform": {
|
2023-08-24 08:58:00 +02:00
|
|
|
"actionCacheId": "npm install and build",
|
2023-08-21 04:26:58 +02:00
|
|
|
"action": async ({ destDirPath }) => {
|
|
|
|
install_common_node_modules: {
|
|
|
|
const commonResourcesDirPath = pathJoin(destDirPath, "keycloak", "common", "resources");
|
2023-08-20 03:00:45 +02:00
|
|
|
|
2023-08-21 04:26:58 +02:00
|
|
|
if (!fs.existsSync(commonResourcesDirPath)) {
|
|
|
|
break install_common_node_modules;
|
|
|
|
}
|
2023-08-20 03:00:45 +02:00
|
|
|
|
2023-08-21 04:26:58 +02:00
|
|
|
if (!fs.existsSync(pathJoin(commonResourcesDirPath, "package.json"))) {
|
|
|
|
break install_common_node_modules;
|
|
|
|
}
|
2023-08-20 03:00:45 +02:00
|
|
|
|
2023-08-21 04:26:58 +02:00
|
|
|
if (fs.existsSync(pathJoin(commonResourcesDirPath, "node_modules"))) {
|
|
|
|
break install_common_node_modules;
|
|
|
|
}
|
2023-08-20 03:00:45 +02:00
|
|
|
|
2023-08-21 04:26:58 +02:00
|
|
|
child_process.execSync("npm install --omit=dev", {
|
|
|
|
"cwd": commonResourcesDirPath,
|
|
|
|
"stdio": "ignore"
|
|
|
|
});
|
|
|
|
}
|
2023-08-20 03:00:45 +02:00
|
|
|
|
2024-04-13 01:12:36 +02:00
|
|
|
repatriate_common_resources_from_base_login_theme: {
|
|
|
|
const baseLoginThemeResourceDir = pathJoin(destDirPath, "base", "login", "resources");
|
|
|
|
|
|
|
|
if (!fs.existsSync(baseLoginThemeResourceDir)) {
|
|
|
|
break repatriate_common_resources_from_base_login_theme;
|
|
|
|
}
|
|
|
|
|
|
|
|
transformCodebase({
|
|
|
|
"srcDirPath": baseLoginThemeResourceDir,
|
|
|
|
"destDirPath": pathJoin(destDirPath, "keycloak", "login", "resources")
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2024-03-16 05:34:55 +01:00
|
|
|
install_and_move_to_common_resources_generated_in_keycloak_v2: {
|
|
|
|
if (!fs.readFileSync(pathJoin(destDirPath, "keycloak", "login", "theme.properties")).toString("utf8").includes("web_modules")) {
|
|
|
|
break install_and_move_to_common_resources_generated_in_keycloak_v2;
|
|
|
|
}
|
|
|
|
|
|
|
|
const accountV2DirSrcDirPath = pathJoin(destDirPath, "keycloak.v2", "account", "src");
|
|
|
|
|
|
|
|
if (!fs.existsSync(accountV2DirSrcDirPath)) {
|
|
|
|
break install_and_move_to_common_resources_generated_in_keycloak_v2;
|
|
|
|
}
|
|
|
|
|
|
|
|
const packageManager = fs.existsSync(pathJoin(accountV2DirSrcDirPath, "pnpm-lock.yaml")) ? "pnpm" : "npm";
|
|
|
|
|
|
|
|
if (packageManager === "pnpm") {
|
|
|
|
try {
|
|
|
|
child_process.execSync(`which pnpm`);
|
|
|
|
} catch {
|
|
|
|
console.log(`Installing pnpm globally`);
|
|
|
|
child_process.execSync(`npm install -g pnpm`);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
child_process.execSync(`${packageManager} install`, { "cwd": accountV2DirSrcDirPath, "stdio": "ignore" });
|
|
|
|
|
|
|
|
const packageJsonFilePath = pathJoin(accountV2DirSrcDirPath, "package.json");
|
|
|
|
|
|
|
|
const packageJsonRaw = fs.readFileSync(packageJsonFilePath);
|
|
|
|
|
|
|
|
const parsedPackageJson = JSON.parse(packageJsonRaw.toString("utf8"));
|
|
|
|
|
|
|
|
parsedPackageJson.scripts.build = parsedPackageJson.scripts.build
|
|
|
|
.replace(`${packageManager} run check-types`, "true")
|
|
|
|
.replace(`${packageManager} run babel`, "true");
|
|
|
|
|
|
|
|
fs.writeFileSync(packageJsonFilePath, Buffer.from(JSON.stringify(parsedPackageJson, null, 2), "utf8"));
|
|
|
|
|
|
|
|
child_process.execSync(`${packageManager} run build`, { "cwd": accountV2DirSrcDirPath, "stdio": "ignore" });
|
|
|
|
|
|
|
|
fs.writeFileSync(packageJsonFilePath, packageJsonRaw);
|
|
|
|
|
|
|
|
fs.rmSync(pathJoin(accountV2DirSrcDirPath, "node_modules"), { "recursive": true });
|
|
|
|
}
|
|
|
|
|
2024-02-08 00:12:10 +01:00
|
|
|
remove_keycloak_v2: {
|
|
|
|
const keycloakV2DirPath = pathJoin(destDirPath, "keycloak.v2");
|
2023-08-20 03:00:45 +02:00
|
|
|
|
2024-02-08 00:12:10 +01:00
|
|
|
if (!fs.existsSync(keycloakV2DirPath)) {
|
|
|
|
break remove_keycloak_v2;
|
2023-08-21 04:26:58 +02:00
|
|
|
}
|
2023-08-20 03:00:45 +02:00
|
|
|
|
2024-02-08 00:12:10 +01:00
|
|
|
rmSync(keycloakV2DirPath, { "recursive": true });
|
|
|
|
}
|
2023-08-20 03:00:45 +02:00
|
|
|
|
2024-02-08 00:12:10 +01:00
|
|
|
// Note, this is an optimization for reducing the size of the jar
|
|
|
|
remove_unused_node_modules: {
|
2024-02-08 23:36:52 +01:00
|
|
|
const nodeModuleDirPath = pathJoin(destDirPath, "keycloak", "common", "resources", "node_modules");
|
2023-08-20 03:00:45 +02:00
|
|
|
|
2024-02-08 23:36:52 +01:00
|
|
|
if (!fs.existsSync(nodeModuleDirPath)) {
|
2024-02-08 00:12:10 +01:00
|
|
|
break remove_unused_node_modules;
|
|
|
|
}
|
2023-08-20 03:00:45 +02:00
|
|
|
|
2024-02-08 00:12:10 +01:00
|
|
|
const toDeletePerfixes = [
|
|
|
|
"angular",
|
|
|
|
"bootstrap",
|
|
|
|
"rcue",
|
|
|
|
"font-awesome",
|
|
|
|
"ng-file-upload",
|
|
|
|
pathJoin("patternfly", "dist", "sass"),
|
|
|
|
pathJoin("patternfly", "dist", "less"),
|
|
|
|
pathJoin("patternfly", "dist", "js"),
|
|
|
|
"d3",
|
|
|
|
pathJoin("jquery", "src"),
|
|
|
|
"c3",
|
|
|
|
"core-js",
|
|
|
|
"eonasdan-bootstrap-datetimepicker",
|
|
|
|
"moment",
|
|
|
|
"react",
|
|
|
|
"patternfly-bootstrap-treeview",
|
|
|
|
"popper.js",
|
|
|
|
"tippy.js",
|
|
|
|
"jquery-match-height",
|
|
|
|
"google-code-prettify",
|
|
|
|
"patternfly-bootstrap-combobox",
|
|
|
|
"focus-trap",
|
|
|
|
"tabbable",
|
|
|
|
"scheduler",
|
|
|
|
"@types",
|
|
|
|
"datatables.net",
|
|
|
|
"datatables.net-colreorder",
|
|
|
|
"tslib",
|
|
|
|
"prop-types",
|
|
|
|
"file-selector",
|
|
|
|
"datatables.net-colreorder-bs",
|
|
|
|
"object-assign",
|
|
|
|
"warning",
|
|
|
|
"js-tokens",
|
|
|
|
"loose-envify",
|
|
|
|
"prop-types-extra",
|
|
|
|
"attr-accept",
|
|
|
|
"datatables.net-select",
|
|
|
|
"drmonty-datatables-colvis",
|
|
|
|
"datatables.net-bs",
|
|
|
|
pathJoin("@patternfly", "react"),
|
|
|
|
pathJoin("@patternfly", "patternfly", "docs")
|
|
|
|
];
|
|
|
|
|
|
|
|
transformCodebase({
|
2024-02-08 23:36:52 +01:00
|
|
|
"srcDirPath": nodeModuleDirPath,
|
|
|
|
"destDirPath": nodeModuleDirPath,
|
2024-02-08 00:12:10 +01:00
|
|
|
"transformSourceCode": ({ sourceCode, fileRelativePath }) => {
|
|
|
|
if (fileRelativePath.endsWith(".map")) {
|
|
|
|
return undefined;
|
|
|
|
}
|
2023-08-20 03:00:45 +02:00
|
|
|
|
2024-02-08 00:12:10 +01:00
|
|
|
if (toDeletePerfixes.find(prefix => fileRelativePath.startsWith(prefix)) !== undefined) {
|
|
|
|
return undefined;
|
|
|
|
}
|
2023-08-20 03:00:45 +02:00
|
|
|
|
2024-02-08 00:12:10 +01:00
|
|
|
if (fileRelativePath.startsWith(pathJoin("patternfly", "dist", "fonts"))) {
|
|
|
|
if (
|
|
|
|
!fileRelativePath.endsWith(".woff2") &&
|
|
|
|
!fileRelativePath.endsWith(".woff") &&
|
|
|
|
!fileRelativePath.endsWith(".ttf")
|
|
|
|
) {
|
|
|
|
return undefined;
|
|
|
|
}
|
|
|
|
}
|
2023-08-20 03:00:45 +02:00
|
|
|
|
2024-02-08 00:12:10 +01:00
|
|
|
return { "modifiedSourceCode": sourceCode };
|
|
|
|
}
|
|
|
|
});
|
2024-02-05 08:52:58 +01:00
|
|
|
}
|
|
|
|
|
2024-02-08 23:36:52 +01:00
|
|
|
// Just like node_modules
|
|
|
|
remove_unused_lib: {
|
|
|
|
const libDirPath = pathJoin(destDirPath, "keycloak", "common", "resources", "lib");
|
|
|
|
|
|
|
|
if (!fs.existsSync(libDirPath)) {
|
|
|
|
break remove_unused_lib;
|
|
|
|
}
|
|
|
|
|
2024-04-13 01:12:36 +02:00
|
|
|
const toDeletePerfixes = ["ui-ace", "filesaver", "fileupload", "angular", "ui-ace"];
|
2024-02-08 23:36:52 +01:00
|
|
|
|
|
|
|
transformCodebase({
|
|
|
|
"srcDirPath": libDirPath,
|
|
|
|
"destDirPath": libDirPath,
|
|
|
|
"transformSourceCode": ({ sourceCode, fileRelativePath }) => {
|
|
|
|
if (fileRelativePath.endsWith(".map")) {
|
|
|
|
return undefined;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (toDeletePerfixes.find(prefix => fileRelativePath.startsWith(prefix)) !== undefined) {
|
|
|
|
return undefined;
|
|
|
|
}
|
|
|
|
|
|
|
|
return { "modifiedSourceCode": sourceCode };
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2024-02-05 08:52:58 +01:00
|
|
|
last_account_v1_transformations: {
|
|
|
|
if (lastKeycloakVersionWithAccountV1 !== keycloakVersion) {
|
|
|
|
break last_account_v1_transformations;
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
const accountCssFilePath = pathJoin(destDirPath, "keycloak", "account", "resources", "css", "account.css");
|
|
|
|
|
|
|
|
fs.writeFileSync(
|
|
|
|
accountCssFilePath,
|
|
|
|
Buffer.from(fs.readFileSync(accountCssFilePath).toString("utf8").replace("top: -34px;", "top: -34px !important;"), "utf8")
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2024-02-08 14:09:55 +01:00
|
|
|
// Note, this is an optimization for reducing the size of the jar,
|
|
|
|
// For this version we know exactly which resources are used.
|
2024-02-05 08:52:58 +01:00
|
|
|
{
|
2024-02-08 14:09:55 +01:00
|
|
|
const nodeModulesDirPath = pathJoin(destDirPath, "keycloak", "common", "resources", "node_modules");
|
2024-02-05 08:52:58 +01:00
|
|
|
|
2024-02-08 23:36:52 +01:00
|
|
|
const toKeepPrefixes = [
|
2024-02-05 08:52:58 +01:00
|
|
|
...["patternfly.min.css", "patternfly-additions.min.css", "patternfly-additions.min.css"].map(fileBasename =>
|
2024-02-08 00:12:10 +01:00
|
|
|
pathJoin("patternfly", "dist", "css", fileBasename)
|
2024-02-05 08:52:58 +01:00
|
|
|
),
|
2024-02-08 23:36:52 +01:00
|
|
|
pathJoin("patternfly", "dist", "fonts")
|
2024-02-05 08:52:58 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
transformCodebase({
|
2024-02-08 00:12:10 +01:00
|
|
|
"srcDirPath": nodeModulesDirPath,
|
|
|
|
"destDirPath": nodeModulesDirPath,
|
2024-02-05 08:52:58 +01:00
|
|
|
"transformSourceCode": ({ sourceCode, fileRelativePath }) => {
|
2024-02-08 23:36:52 +01:00
|
|
|
if (toKeepPrefixes.find(prefix => fileRelativePath.startsWith(prefix)) === undefined) {
|
2024-02-05 08:52:58 +01:00
|
|
|
return undefined;
|
|
|
|
}
|
|
|
|
return { "modifiedSourceCode": sourceCode };
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2023-08-21 04:26:58 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2021-10-06 17:22:52 +02:00
|
|
|
}
|
2021-02-28 18:40:57 +01:00
|
|
|
|
2023-03-29 09:54:29 +02:00
|
|
|
async function main() {
|
2023-04-19 05:04:11 +02:00
|
|
|
const buildOptions = readBuildOptions({
|
|
|
|
"processArgv": process.argv.slice(2)
|
|
|
|
});
|
|
|
|
|
|
|
|
const logger = getLogger({ "isSilent": buildOptions.isSilent });
|
2023-03-29 09:54:29 +02:00
|
|
|
const { keycloakVersion } = await promptKeycloakVersion();
|
|
|
|
|
2023-04-19 05:04:11 +02:00
|
|
|
const destDirPath = pathJoin(buildOptions.keycloakifyBuildDirPath, "src", "main", "resources", "theme");
|
2021-10-07 21:00:53 +02:00
|
|
|
|
2023-03-29 09:54:29 +02:00
|
|
|
logger.log(`Downloading builtins theme of Keycloak ${keycloakVersion} here ${destDirPath}`);
|
2021-10-07 17:32:38 +02:00
|
|
|
|
2023-03-29 09:54:29 +02:00
|
|
|
await downloadBuiltinKeycloakTheme({
|
|
|
|
keycloakVersion,
|
2023-09-03 23:26:34 +02:00
|
|
|
destDirPath,
|
|
|
|
buildOptions
|
2023-03-29 09:54:29 +02:00
|
|
|
});
|
|
|
|
}
|
2021-10-07 21:00:53 +02:00
|
|
|
|
2023-03-29 09:54:29 +02:00
|
|
|
if (require.main === module) {
|
2023-03-30 22:09:27 +00:00
|
|
|
main();
|
2021-02-28 18:40:57 +01:00
|
|
|
}
|