2023-03-20 01:30:42 +01:00
|
|
|
import { join as pathJoin, relative as pathRelative } from "path";
|
|
|
|
import { transformCodebase } from "./tools/transformCodebase";
|
2024-05-15 05:14:01 +02:00
|
|
|
import { promptKeycloakVersion } from "./shared/promptKeycloakVersion";
|
2024-06-09 09:15:16 +02:00
|
|
|
import { getBuildContext } from "./shared/buildContext";
|
2023-03-20 01:30:42 +01:00
|
|
|
import * as fs from "fs";
|
2024-05-15 05:14:01 +02:00
|
|
|
import type { CliCommandOptions } from "./main";
|
2024-09-08 12:00:07 +02:00
|
|
|
import { downloadAndExtractArchive } from "./tools/downloadAndExtractArchive";
|
2023-03-24 05:43:34 +01:00
|
|
|
|
2024-05-15 05:14:01 +02:00
|
|
|
export async function command(params: { cliCommandOptions: CliCommandOptions }) {
|
|
|
|
const { cliCommandOptions } = params;
|
|
|
|
|
2024-06-09 09:15:16 +02:00
|
|
|
const buildContext = getBuildContext({ cliCommandOptions });
|
2023-04-19 05:04:11 +02:00
|
|
|
|
2024-06-16 01:29:15 +02:00
|
|
|
const emailThemeSrcDirPath = pathJoin(buildContext.themeSrcDirPath, "email");
|
2023-06-19 00:09:21 +02:00
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2024-05-18 04:33:31 +02:00
|
|
|
console.log("Initialize with the base email theme from which version of Keycloak?");
|
|
|
|
|
2024-05-17 05:13:41 +02:00
|
|
|
const { keycloakVersion } = await promptKeycloakVersion({
|
2024-05-18 04:33:31 +02:00
|
|
|
// NOTE: This is arbitrary
|
2024-05-20 15:48:51 +02:00
|
|
|
startingFromMajor: 17,
|
2024-06-11 19:08:36 +02:00
|
|
|
excludeMajorVersions: [],
|
2024-08-27 17:40:48 +02:00
|
|
|
doOmitPatch: false,
|
2024-08-13 00:10:34 +02:00
|
|
|
buildContext
|
2024-05-17 05:13:41 +02:00
|
|
|
});
|
2023-03-20 01:30:42 +01:00
|
|
|
|
2024-09-08 12:00:07 +02:00
|
|
|
const { extractedDirPath } = await downloadAndExtractArchive({
|
|
|
|
url: `https://repo1.maven.org/maven2/org/keycloak/keycloak-themes/${keycloakVersion}/keycloak-themes-${keycloakVersion}.jar`,
|
|
|
|
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(
|
2024-09-08 12:06:49 +02:00
|
|
|
[
|
|
|
|
`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
|
|
|
}
|