2024-05-19 10:46:26 +02:00
|
|
|
import { downloadKeycloakDefaultTheme } from "./shared/downloadKeycloakDefaultTheme";
|
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";
|
|
|
|
import { readBuildOptions } from "./shared/buildOptions";
|
2023-03-20 01:30:42 +01:00
|
|
|
import * as fs from "fs";
|
2024-05-15 05:14:01 +02:00
|
|
|
import { getThemeSrcDirPath } from "./shared/getThemeSrcDirPath";
|
2024-02-05 08:52:58 +01:00
|
|
|
import { rmSync } from "./tools/fs.rmSync";
|
2024-05-15 05:14:01 +02:00
|
|
|
import type { CliCommandOptions } from "./main";
|
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;
|
|
|
|
|
|
|
|
const buildOptions = readBuildOptions({ cliCommandOptions });
|
2023-04-19 05:04:11 +02:00
|
|
|
|
2023-06-19 00:09:21 +02:00
|
|
|
const { themeSrcDirPath } = getThemeSrcDirPath({
|
2024-05-20 15:48:51 +02:00
|
|
|
reactAppRootDirPath: buildOptions.reactAppRootDirPath
|
2023-04-02 03:10:16 +02:00
|
|
|
});
|
2023-03-24 05:43:34 +01:00
|
|
|
|
2023-06-19 00:09:21 +02:00
|
|
|
const emailThemeSrcDirPath = pathJoin(themeSrcDirPath, "email");
|
|
|
|
|
2023-03-24 05:43:34 +01:00
|
|
|
if (fs.existsSync(emailThemeSrcDirPath)) {
|
2024-05-20 15:48:51 +02:00
|
|
|
console.warn(
|
|
|
|
`There is already a ${pathRelative(
|
|
|
|
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,
|
|
|
|
cacheDirPath: buildOptions.cacheDirPath
|
2024-05-17 05:13:41 +02:00
|
|
|
});
|
2023-03-20 01:30:42 +01:00
|
|
|
|
2024-05-20 15:48:51 +02:00
|
|
|
const builtinKeycloakThemeTmpDirPath = pathJoin(
|
|
|
|
buildOptions.cacheDirPath,
|
|
|
|
"initialize-email-theme_tmp"
|
|
|
|
);
|
2024-05-17 00:54:54 +02:00
|
|
|
|
2024-05-20 15:48:51 +02:00
|
|
|
rmSync(builtinKeycloakThemeTmpDirPath, {
|
|
|
|
recursive: true,
|
|
|
|
force: true
|
|
|
|
});
|
2023-03-20 01:30:42 +01:00
|
|
|
|
2024-05-19 10:46:26 +02:00
|
|
|
await downloadKeycloakDefaultTheme({
|
2023-03-20 01:30:42 +01:00
|
|
|
keycloakVersion,
|
2024-05-20 15:48:51 +02:00
|
|
|
destDirPath: builtinKeycloakThemeTmpDirPath,
|
2023-09-03 23:26:34 +02:00
|
|
|
buildOptions
|
2023-03-20 01:30:42 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
transformCodebase({
|
2024-05-20 15:48:51 +02:00
|
|
|
srcDirPath: pathJoin(builtinKeycloakThemeTmpDirPath, "base", "email"),
|
|
|
|
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\n${fs.readFileSync(themePropertyFilePath).toString("utf8")}`,
|
|
|
|
"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-20 01:30:42 +01:00
|
|
|
|
2024-05-20 15:48:51 +02:00
|
|
|
rmSync(builtinKeycloakThemeTmpDirPath, { recursive: true });
|
2023-03-24 05:43:34 +01:00
|
|
|
}
|