keycloak_theme/src/bin/initialize-email-theme.ts

97 lines
3.1 KiB
TypeScript
Raw Normal View History

2023-03-20 01:30:42 +01:00
import { join as pathJoin, relative as pathRelative } from "path";
import { transformCodebase } from "./tools/transformCodebase";
2024-10-05 20:30:09 +02:00
import type { BuildContext } from "./shared/buildContext";
2023-03-20 01:30:42 +01:00
import * as fs from "fs";
2024-09-08 12:00:07 +02:00
import { downloadAndExtractArchive } from "./tools/downloadAndExtractArchive";
import { maybeDelegateCommandToCustomHandler } from "./shared/customHandler_delegate";
2024-10-17 23:23:26 +02:00
import { assert } from "tsafe/assert";
import { getSupportedDockerImageTags } from "./start-keycloak/getSupportedDockerImageTags";
2023-03-24 05:43:34 +01:00
2024-10-05 20:30:09 +02:00
export async function command(params: { buildContext: BuildContext }) {
const { buildContext } = params;
const { hasBeenHandled } = maybeDelegateCommandToCustomHandler({
commandName: "initialize-email-theme",
buildContext
});
if (hasBeenHandled) {
return;
}
const emailThemeSrcDirPath = pathJoin(buildContext.themeSrcDirPath, "email");
2024-09-08 12:00:07 +02:00
if (
fs.existsSync(emailThemeSrcDirPath) &&
fs.readdirSync(emailThemeSrcDirPath).length > 0
) {
2024-05-20 15:48:51 +02:00
console.warn(
2024-09-08 12:00:07 +02:00
`There is already a non empty ${pathRelative(
2024-05-20 15:48:51 +02:00
process.cwd(),
emailThemeSrcDirPath
)} directory in your project. Aborting.`
);
2023-03-20 01:30:42 +01:00
process.exit(-1);
}
console.log("Initialize with the base email theme from which version of Keycloak?");
const { extractedDirPath } = await downloadAndExtractArchive({
url: await (async () => {
const { latestMajorTags } = await getSupportedDockerImageTags({
buildContext
});
2024-10-17 23:23:26 +02:00
const keycloakVersion = latestMajorTags[0];
2024-10-17 23:23:26 +02:00
assert(keycloakVersion !== undefined);
2024-10-17 23:23:26 +02:00
return `https://repo1.maven.org/maven2/org/keycloak/keycloak-themes/${keycloakVersion}/keycloak-themes-${keycloakVersion}.jar`;
})(),
2024-09-08 12:00:07 +02:00
cacheDirPath: buildContext.cacheDirPath,
fetchOptions: buildContext.fetchOptions,
uniqueIdOfOnArchiveFile: "extractOnlyEmailTheme",
onArchiveFile: async ({ fileRelativePath, writeFile }) => {
const fileRelativePath_target = pathRelative(
pathJoin("theme", "base", "email"),
fileRelativePath
);
if (fileRelativePath_target.startsWith("..")) {
return;
}
await writeFile({ fileRelativePath: fileRelativePath_target });
}
2023-03-20 01:30:42 +01:00
});
transformCodebase({
2024-09-08 12:00:07 +02:00
srcDirPath: extractedDirPath,
2024-05-20 15:48:51 +02:00
destDirPath: emailThemeSrcDirPath
2023-03-20 01:30:42 +01:00
});
2023-03-21 01:50:21 +01:00
{
2023-03-24 05:43:34 +01:00
const themePropertyFilePath = pathJoin(emailThemeSrcDirPath, "theme.properties");
2023-03-21 01:50:21 +01:00
2024-05-20 15:48:51 +02:00
fs.writeFileSync(
themePropertyFilePath,
Buffer.from(
[
`parent=base`,
fs.readFileSync(themePropertyFilePath).toString("utf8")
].join("\n"),
2024-05-20 15:48:51 +02:00
"utf8"
)
);
2023-03-21 01:50:21 +01:00
}
2024-05-20 15:48:51 +02:00
console.log(
`The \`${pathJoin(
".",
pathRelative(process.cwd(), emailThemeSrcDirPath)
)}\` directory have been created.`
);
2024-05-18 10:24:55 +02:00
console.log("You can delete any file you don't modify.");
2023-03-24 05:43:34 +01:00
}