keycloak_theme/src/bin/build-keycloak-theme/generateKeycloakThemeResources.ts

169 lines
6.1 KiB
TypeScript
Raw Normal View History

2021-02-28 18:40:57 +01:00
import { transformCodebase } from "../tools/transformCodebase";
2021-02-21 18:55:06 +01:00
import * as fs from "fs";
import { join as pathJoin, basename as pathBasename } from "path";
import { replaceImportsInCssCode, replaceImportsFromStaticInJsCode } from "./replaceImportFromStatic";
2021-03-26 15:29:17 +01:00
import { generateFtlFilesCodeFactory, pageIds } from "./generateFtl";
import { downloadBuiltinKeycloakTheme } from "../download-builtin-keycloak-theme";
2021-03-02 01:05:15 +01:00
import * as child_process from "child_process";
2022-07-30 00:51:11 +02:00
import { mockTestingResourcesCommonPath, mockTestingResourcesPath, mockTestingSubDirOfPublicDirBasename } from "../mockTestingResourcesPath";
2021-03-22 20:54:28 +01:00
import { isInside } from "../tools/isInside";
export function generateKeycloakThemeResources(params: {
themeName: string;
reactAppBuildDirPath: string;
keycloakThemeBuildingDirPath: string;
2022-04-20 00:39:40 +02:00
keycloakThemeEmailDirPath: string;
urlPathname: string;
//If urlOrigin is not undefined then it means --externals-assets
urlOrigin: undefined | string;
extraPagesId: string[];
extraThemeProperties: string[];
2022-04-09 20:17:20 +02:00
keycloakVersion: string;
2022-04-20 00:39:40 +02:00
}): { doBundleEmailTemplate: boolean } {
const {
themeName,
reactAppBuildDirPath,
keycloakThemeBuildingDirPath,
2022-04-20 00:39:40 +02:00
keycloakThemeEmailDirPath,
urlPathname,
urlOrigin,
extraPagesId,
extraThemeProperties,
keycloakVersion,
} = params;
2021-02-21 18:55:06 +01:00
const themeDirPath = pathJoin(keycloakThemeBuildingDirPath, "src", "main", "resources", "theme", themeName, "login");
2021-02-21 18:55:06 +01:00
let allCssGlobalsToDefine: Record<string, string> = {};
transformCodebase({
"destDirPath": urlOrigin === undefined ? pathJoin(themeDirPath, "resources", "build") : reactAppBuildDirPath,
2021-02-21 18:55:06 +01:00
"srcDirPath": reactAppBuildDirPath,
2021-03-03 02:31:02 +01:00
"transformSourceCode": ({ filePath, sourceCode }) => {
//NOTE: Prevent cycles, excludes the folder we generated for debug in public/
if (
2021-04-11 18:18:52 +02:00
urlOrigin === undefined &&
isInside({
2022-07-30 00:51:11 +02:00
"dirPath": pathJoin(reactAppBuildDirPath, mockTestingSubDirOfPublicDirBasename),
filePath,
})
) {
return undefined;
}
2021-04-11 18:18:52 +02:00
if (urlOrigin === undefined && /\.css?$/i.test(filePath)) {
const { cssGlobalsToDefine, fixedCssCode } = replaceImportsInCssCode({
"cssCode": sourceCode.toString("utf8"),
});
2021-02-21 18:55:06 +01:00
allCssGlobalsToDefine = {
...allCssGlobalsToDefine,
...cssGlobalsToDefine,
};
2021-02-21 18:55:06 +01:00
return {
"modifiedSourceCode": Buffer.from(fixedCssCode, "utf8"),
};
2021-03-28 13:37:02 +02:00
}
2021-02-21 18:55:06 +01:00
2021-03-28 13:37:02 +02:00
if (/\.js?$/i.test(filePath)) {
const { fixedJsCode } = replaceImportsFromStaticInJsCode({
"jsCode": sourceCode.toString("utf8"),
urlOrigin,
2021-03-28 13:37:02 +02:00
});
return {
"modifiedSourceCode": Buffer.from(fixedJsCode, "utf8"),
};
2021-02-21 18:55:06 +01:00
}
return urlOrigin === undefined ? { "modifiedSourceCode": sourceCode } : undefined;
},
2021-02-21 18:55:06 +01:00
});
2022-04-20 00:39:40 +02:00
let doBundleEmailTemplate: boolean;
email: {
if (!fs.existsSync(keycloakThemeEmailDirPath)) {
console.log(
[
`Not bundling email template because ${pathBasename(keycloakThemeEmailDirPath)} does not exist`,
`To start customizing the email template, run: 👉 npx create-keycloak-email-directory 👈`,
2022-04-20 00:39:40 +02:00
].join("\n"),
);
doBundleEmailTemplate = false;
break email;
}
doBundleEmailTemplate = true;
transformCodebase({
"srcDirPath": keycloakThemeEmailDirPath,
"destDirPath": pathJoin(themeDirPath, "..", "email"),
});
}
2021-02-21 18:55:06 +01:00
const { generateFtlFilesCode } = generateFtlFilesCodeFactory({
"cssGlobalsToDefine": allCssGlobalsToDefine,
"indexHtmlCode": fs.readFileSync(pathJoin(reactAppBuildDirPath, "index.html")).toString("utf8"),
2021-04-11 18:18:52 +02:00
urlPathname,
urlOrigin,
2021-02-21 18:55:06 +01:00
});
[...pageIds, ...extraPagesId].forEach(pageId => {
2021-03-06 22:41:36 +01:00
const { ftlCode } = generateFtlFilesCode({ pageId });
2021-02-21 18:55:06 +01:00
2021-04-11 18:18:52 +02:00
fs.mkdirSync(themeDirPath, { "recursive": true });
fs.writeFileSync(pathJoin(themeDirPath, pageId), Buffer.from(ftlCode, "utf8"));
2021-02-21 18:55:06 +01:00
});
2021-03-02 01:05:15 +01:00
{
2021-03-03 02:31:02 +01:00
const tmpDirPath = pathJoin(themeDirPath, "..", "tmp_xxKdLpdIdLd");
2021-03-02 01:05:15 +01:00
downloadBuiltinKeycloakTheme({
keycloakVersion,
"destDirPath": tmpDirPath,
2021-03-02 01:05:15 +01:00
});
const themeResourcesDirPath = pathJoin(themeDirPath, "resources");
2021-03-08 00:09:52 +01:00
2021-03-03 02:31:02 +01:00
transformCodebase({
"srcDirPath": pathJoin(tmpDirPath, "keycloak", "login", "resources"),
"destDirPath": themeResourcesDirPath,
2021-03-08 00:09:52 +01:00
});
const reactAppPublicDirPath = pathJoin(reactAppBuildDirPath, "..", "public");
2021-03-08 00:09:52 +01:00
transformCodebase({
"srcDirPath": pathJoin(tmpDirPath, "keycloak", "common", "resources"),
2022-07-30 00:51:11 +02:00
"destDirPath": pathJoin(themeResourcesDirPath, pathBasename(mockTestingResourcesCommonPath)),
2021-03-08 00:09:52 +01:00
});
transformCodebase({
"srcDirPath": themeResourcesDirPath,
2022-07-30 00:51:11 +02:00
"destDirPath": pathJoin(reactAppPublicDirPath, mockTestingResourcesPath),
2021-03-03 02:31:02 +01:00
});
2021-03-02 01:05:15 +01:00
2022-07-30 00:51:11 +02:00
const keycloakResourcesWithinPublicDirPath = pathJoin(reactAppPublicDirPath, mockTestingSubDirOfPublicDirBasename);
2021-03-08 00:09:52 +01:00
fs.writeFileSync(
pathJoin(keycloakResourcesWithinPublicDirPath, "README.txt"),
Buffer.from(
["This is just a test folder that helps develop", "the login and register page without having to run a Keycloak container"].join(" "),
),
2021-03-08 00:09:52 +01:00
);
fs.writeFileSync(pathJoin(keycloakResourcesWithinPublicDirPath, ".gitignore"), Buffer.from("*", "utf8"));
2021-03-10 22:45:09 +01:00
2021-03-03 02:31:02 +01:00
child_process.execSync(`rm -r ${tmpDirPath}`);
2021-03-02 01:05:15 +01:00
}
2021-02-22 00:35:52 +01:00
fs.writeFileSync(
pathJoin(themeDirPath, "theme.properties"),
Buffer.from("parent=keycloak".concat("\n\n", extraThemeProperties.join("\n\n")), "utf8"),
2021-02-22 00:35:52 +01:00
);
2022-04-20 00:39:40 +02:00
return { doBundleEmailTemplate };
2021-02-21 18:55:06 +01:00
}