keycloakify 9.4.0-rc.1 → 9.4.0-rc.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/PUBLIC_URL.d.ts +5 -0
- package/PUBLIC_URL.js +15 -0
- package/PUBLIC_URL.js.map +1 -0
- package/account/kcContext/createGetKcContext.js +7 -4
- package/account/kcContext/createGetKcContext.js.map +1 -1
- package/account/kcContext/kcContextMocks.js +3 -5
- package/account/kcContext/kcContextMocks.js.map +1 -1
- package/bin/copy-keycloak-resources-to-public.js +1 -4
- package/bin/copy-keycloak-resources-to-public.js.map +1 -1
- package/bin/download-builtin-keycloak-theme.js +35 -24
- package/bin/download-builtin-keycloak-theme.js.map +1 -1
- package/bin/initialize-email-theme.js +2 -4
- package/bin/initialize-email-theme.js.map +1 -1
- package/bin/keycloakify/buildOptions/buildOptions.d.ts +0 -1
- package/bin/keycloakify/buildOptions/buildOptions.js +14 -5
- package/bin/keycloakify/buildOptions/buildOptions.js.map +1 -1
- package/bin/keycloakify/generateFtl/ftl_object_to_js_code_declaring_an_object.ftl +8 -0
- package/bin/keycloakify/generateFtl/generateFtl.js +2 -1
- package/bin/keycloakify/generateFtl/generateFtl.js.map +1 -1
- package/bin/keycloakify/generateStartKeycloakTestingContainer.js +0 -1
- package/bin/keycloakify/generateStartKeycloakTestingContainer.js.map +1 -1
- package/bin/keycloakify/keycloakify.js +6 -6
- package/bin/keycloakify/keycloakify.js.map +1 -1
- package/bin/keycloakify/replacers/replaceImportsInJsCode/webpack.js +0 -5
- package/bin/keycloakify/replacers/replaceImportsInJsCode/webpack.js.map +1 -1
- package/bin/tools/transformCodebase.js +5 -5
- package/bin/tools/transformCodebase.js.map +1 -1
- package/lib/BASE_URL.d.ts +10 -0
- package/lib/BASE_URL.js +38 -0
- package/lib/BASE_URL.js.map +1 -0
- package/lib/isStorybook.d.ts +1 -0
- package/lib/isStorybook.js +3 -0
- package/lib/isStorybook.js.map +1 -0
- package/lib/keycloakJsAdapter.d.ts +4 -0
- package/lib/keycloakJsAdapter.js +4 -0
- package/lib/keycloakJsAdapter.js.map +1 -1
- package/login/kcContext/createGetKcContext.js +7 -4
- package/login/kcContext/createGetKcContext.js.map +1 -1
- package/login/kcContext/kcContextMocks.js +3 -5
- package/login/kcContext/kcContextMocks.js.map +1 -1
- package/package.json +16 -6
- package/src/PUBLIC_URL.ts +21 -0
- package/src/account/kcContext/createGetKcContext.ts +8 -5
- package/src/account/kcContext/kcContextMocks.ts +3 -5
- package/src/bin/copy-keycloak-resources-to-public.ts +1 -6
- package/src/bin/download-builtin-keycloak-theme.ts +37 -24
- package/src/bin/initialize-email-theme.ts +1 -4
- package/src/bin/keycloakify/buildOptions/buildOptions.ts +18 -7
- package/src/bin/keycloakify/generateFtl/ftl_object_to_js_code_declaring_an_object.ftl +8 -0
- package/src/bin/keycloakify/generateFtl/generateFtl.ts +3 -2
- package/src/bin/keycloakify/generateStartKeycloakTestingContainer.ts +0 -1
- package/src/bin/keycloakify/keycloakify.ts +8 -6
- package/src/bin/keycloakify/replacers/replaceImportsInJsCode/webpack.ts +0 -14
- package/src/bin/tools/transformCodebase.ts +6 -5
- package/src/lib/BASE_URL.ts +44 -0
- package/src/lib/isStorybook.ts +3 -0
- package/src/lib/keycloakJsAdapter.ts +4 -0
- package/src/login/kcContext/createGetKcContext.ts +8 -5
- package/src/login/kcContext/kcContextMocks.ts +3 -5
- package/bin/tools/pathJoin.d.ts +0 -1
- package/bin/tools/pathJoin.js +0 -15
- package/bin/tools/pathJoin.js.map +0 -1
- package/src/bin/tools/pathJoin.ts +0 -6
@@ -7,7 +7,7 @@ import { join as pathJoin } from "path";
|
|
7
7
|
import { objectKeys } from "tsafe/objectKeys";
|
8
8
|
import type { BuildOptions } from "../buildOptions";
|
9
9
|
import { assert } from "tsafe/assert";
|
10
|
-
import { type ThemeType, nameOfTheGlobal, basenameOfTheKeycloakifyResourcesDir } from "../../constants";
|
10
|
+
import { type ThemeType, nameOfTheGlobal, basenameOfTheKeycloakifyResourcesDir, resources_common } from "../../constants";
|
11
11
|
|
12
12
|
export type BuildOptionsLike = {
|
13
13
|
bundler: "vite" | "webpack";
|
@@ -105,7 +105,8 @@ export function generateFtlFilesCodeFactory(params: {
|
|
105
105
|
.replace("KEYCLOAKIFY_VERSION_xEdKd3xEdr", keycloakifyVersion)
|
106
106
|
.replace("KEYCLOAKIFY_THEME_VERSION_sIgKd3xEdr3dx", buildOptions.themeVersion)
|
107
107
|
.replace("KEYCLOAKIFY_THEME_TYPE_dExKd3xEdr", themeType)
|
108
|
-
.replace("KEYCLOAKIFY_THEME_NAME_cXxKd3xEer", themeName)
|
108
|
+
.replace("KEYCLOAKIFY_THEME_NAME_cXxKd3xEer", themeName)
|
109
|
+
.replace("RESOURCES_COMMON_cLsLsMrtDkpVv", resources_common),
|
109
110
|
"<!-- xIdLqMeOedErIdLsPdNdI9dSlxI -->": [
|
110
111
|
"<#if scripts??>",
|
111
112
|
" <#list scripts as script>",
|
@@ -30,7 +30,6 @@ export function generateStartKeycloakTestingContainer(params: { jarFilePath: str
|
|
30
30
|
Buffer.from(
|
31
31
|
[
|
32
32
|
"#!/usr/bin/env bash",
|
33
|
-
`# If you want to test with Keycloak version prior to 23 use the retrocompat-${pathBasename(jarFilePath)}`,
|
34
33
|
"",
|
35
34
|
`docker rm ${containerName} || true`,
|
36
35
|
"",
|
@@ -11,10 +11,7 @@ import { getThemeSrcDirPath } from "../getThemeSrcDirPath";
|
|
11
11
|
import { getProjectRoot } from "../tools/getProjectRoot";
|
12
12
|
|
13
13
|
export async function main() {
|
14
|
-
const reactAppRootDirPath = process.cwd();
|
15
|
-
|
16
14
|
const buildOptions = readBuildOptions({
|
17
|
-
reactAppRootDirPath,
|
18
15
|
"processArgv": process.argv.slice(2)
|
19
16
|
});
|
20
17
|
|
@@ -23,7 +20,7 @@ export async function main() {
|
|
23
20
|
|
24
21
|
const keycloakifyDirPath = getProjectRoot();
|
25
22
|
|
26
|
-
const { themeSrcDirPath } = getThemeSrcDirPath({ reactAppRootDirPath });
|
23
|
+
const { themeSrcDirPath } = getThemeSrcDirPath({ "reactAppRootDirPath": buildOptions.reactAppRootDirPath });
|
27
24
|
|
28
25
|
for (const themeName of buildOptions.themeNames) {
|
29
26
|
await generateTheme({
|
@@ -83,12 +80,17 @@ export async function main() {
|
|
83
80
|
"",
|
84
81
|
...(!buildOptions.doCreateJar
|
85
82
|
? []
|
86
|
-
: [
|
83
|
+
: [
|
84
|
+
`✅ Your keycloak theme has been generated and bundled into .${pathSep}${pathRelative(
|
85
|
+
buildOptions.reactAppRootDirPath,
|
86
|
+
jarFilePath
|
87
|
+
)} 🚀`
|
88
|
+
]),
|
87
89
|
"",
|
88
90
|
`To test your theme locally you can spin up a Keycloak ${containerKeycloakVersion} container image with the theme pre loaded by running:`,
|
89
91
|
"",
|
90
92
|
`👉 $ .${pathSep}${pathRelative(
|
91
|
-
reactAppRootDirPath,
|
93
|
+
buildOptions.reactAppRootDirPath,
|
92
94
|
pathJoin(buildOptions.keycloakifyBuildDirPath, generateStartKeycloakTestingContainer.basename)
|
93
95
|
)} 👈`,
|
94
96
|
``,
|
@@ -29,20 +29,6 @@ export function replaceImportsInJsCode_webpack(params: { jsCode: string; buildOp
|
|
29
29
|
);
|
30
30
|
}
|
31
31
|
|
32
|
-
// d={NODE_ENV:"production",PUBLIC_URL:"/foo-bar",WDS_SOCKET_HOST
|
33
|
-
// d={NODE_ENV:"production",PUBLIC_URL:"",WDS_SOCKET_HOST
|
34
|
-
// ->
|
35
|
-
// ... PUBLIC_URL:window.kcContext.url.resourcesPath+"/build" ...
|
36
|
-
fixedJsCode = fixedJsCode.replace(
|
37
|
-
new RegExp(
|
38
|
-
`NODE_ENV:"production",PUBLIC_URL:"${
|
39
|
-
buildOptions.urlPathname !== undefined ? replaceAll(buildOptions.urlPathname.slice(0, -1), "/", "\\/") : ""
|
40
|
-
}"`,
|
41
|
-
"g"
|
42
|
-
),
|
43
|
-
`NODE_ENV:"production",PUBLIC_URL:window.${nameOfTheGlobal}.url.resourcesPath+"/${basenameOfTheKeycloakifyResourcesDir}"`
|
44
|
-
);
|
45
|
-
|
46
32
|
// Example: "static/ or "foo/bar/"
|
47
33
|
const staticDir = (() => {
|
48
34
|
let out = pathRelative(buildOptions.reactAppBuildDirPath, buildOptions.assetsDirPath);
|
@@ -17,13 +17,14 @@ type TransformSourceCode = (params: { sourceCode: Buffer; filePath: string; file
|
|
17
17
|
* */
|
18
18
|
export function transformCodebase(params: { srcDirPath: string; destDirPath: string; transformSourceCode?: TransformSourceCode }) {
|
19
19
|
const { srcDirPath, transformSourceCode } = params;
|
20
|
-
let { destDirPath } = params;
|
21
20
|
|
22
|
-
const isTargetSameAsSource = path.relative(srcDirPath, destDirPath) === "";
|
21
|
+
const isTargetSameAsSource = path.relative(srcDirPath, params.destDirPath) === "";
|
23
22
|
|
24
|
-
|
25
|
-
|
26
|
-
|
23
|
+
const destDirPath = isTargetSameAsSource ? path.join(srcDirPath, "..", "tmp_xOsPdkPsTdzPs34sOkHs") : params.destDirPath;
|
24
|
+
|
25
|
+
fs.mkdirSync(destDirPath, {
|
26
|
+
"recursive": true
|
27
|
+
});
|
27
28
|
|
28
29
|
for (const fileRelativePath of crawl({ "dirPath": srcDirPath, "returnedPathsType": "relative to dirPath" })) {
|
29
30
|
const filePath = path.join(srcDirPath, fileRelativePath);
|
@@ -0,0 +1,44 @@
|
|
1
|
+
import { assert } from "tsafe/assert";
|
2
|
+
|
3
|
+
/**
|
4
|
+
* WARNING: Internal use only!!
|
5
|
+
* THIS DOES NOT WORK IN KEYCLOAK! It's only for resolving mock assets.
|
6
|
+
* This is just a way to know what's the base url that works
|
7
|
+
* both in webpack and vite.
|
8
|
+
* You can see this as a polyfill that return `import.meta.env.BASE_URL` when in Vite
|
9
|
+
* and when in Webpack returns the base url in the same format as vite does meaning
|
10
|
+
* "/" if hosted at root or "/foo/" when hosted under a subpath (always start and ends with a "/").
|
11
|
+
*/
|
12
|
+
export const BASE_URL = (() => {
|
13
|
+
vite: {
|
14
|
+
let BASE_URL: string;
|
15
|
+
|
16
|
+
try {
|
17
|
+
// @ts-expect-error
|
18
|
+
BASE_URL = import.meta.env.BASE_URL;
|
19
|
+
|
20
|
+
assert(typeof BASE_URL === "string");
|
21
|
+
} catch {
|
22
|
+
break vite;
|
23
|
+
}
|
24
|
+
|
25
|
+
return BASE_URL;
|
26
|
+
}
|
27
|
+
|
28
|
+
webpack: {
|
29
|
+
let BASE_URL: string;
|
30
|
+
|
31
|
+
try {
|
32
|
+
// @ts-expect-error
|
33
|
+
BASE_URL = process.env.PUBLIC_URL;
|
34
|
+
|
35
|
+
assert(typeof BASE_URL === "string");
|
36
|
+
} catch {
|
37
|
+
break webpack;
|
38
|
+
}
|
39
|
+
|
40
|
+
return BASE_URL === "" ? "/" : `${BASE_URL}/`;
|
41
|
+
}
|
42
|
+
|
43
|
+
throw new Error("Bundler not supported");
|
44
|
+
})();
|
@@ -36,6 +36,10 @@ export declare namespace keycloak_js {
|
|
36
36
|
}
|
37
37
|
|
38
38
|
/**
|
39
|
+
* @deprecated: This will be removed in the next major version.
|
40
|
+
* If you use this, please copy paste the code into your project.
|
41
|
+
* Better yet migrate away from keycloak-js and use https://docs.oidc-spa.dev instead.
|
42
|
+
*
|
39
43
|
* NOTE: This is just a slightly modified version of the default adapter in keycloak-js
|
40
44
|
* The goal here is just to be able to inject search param in url before keycloak redirect.
|
41
45
|
* Our use case for it is to pass over the login screen the states of useGlobalState
|
@@ -2,14 +2,13 @@ import type { KcContext, Attribute } from "./KcContext";
|
|
2
2
|
import { kcContextMocks, kcContextCommonMock } from "./kcContextMocks";
|
3
3
|
import type { DeepPartial } from "keycloakify/tools/DeepPartial";
|
4
4
|
import { deepAssign } from "keycloakify/tools/deepAssign";
|
5
|
+
import { isStorybook } from "keycloakify/lib/isStorybook";
|
5
6
|
import { id } from "tsafe/id";
|
6
7
|
import { exclude } from "tsafe/exclude";
|
7
8
|
import { assert } from "tsafe/assert";
|
8
9
|
import type { ExtendKcContext } from "./getKcContextFromWindow";
|
9
10
|
import { getKcContextFromWindow } from "./getKcContextFromWindow";
|
10
|
-
import { pathJoin } from "keycloakify/bin/tools/pathJoin";
|
11
11
|
import { symToStr } from "tsafe/symToStr";
|
12
|
-
import { resources_common } from "keycloakify/bin/constants";
|
13
12
|
|
14
13
|
export function createGetKcContext<KcContextExtension extends { pageId: string } = never>(params?: {
|
15
14
|
mockData?: readonly DeepPartial<ExtendKcContext<KcContextExtension>>[];
|
@@ -31,7 +30,13 @@ export function createGetKcContext<KcContextExtension extends { pageId: string }
|
|
31
30
|
if (mockPageId !== undefined && realKcContext === undefined) {
|
32
31
|
//TODO maybe trow if no mock fo custom page
|
33
32
|
|
34
|
-
|
33
|
+
warn_that_mock_is_enbaled: {
|
34
|
+
if (isStorybook) {
|
35
|
+
break warn_that_mock_is_enbaled;
|
36
|
+
}
|
37
|
+
|
38
|
+
console.log(`%cKeycloakify: ${symToStr({ mockPageId })} set to ${mockPageId}.`, "background: red; color: yellow; font-size: medium");
|
39
|
+
}
|
35
40
|
|
36
41
|
const kcContextDefaultMock = kcContextMocks.find(({ pageId }) => pageId === mockPageId);
|
37
42
|
|
@@ -147,8 +152,6 @@ export function createGetKcContext<KcContextExtension extends { pageId: string }
|
|
147
152
|
return { "kcContext": undefined as any };
|
148
153
|
}
|
149
154
|
|
150
|
-
realKcContext.url.resourcesCommonPath = pathJoin(realKcContext.url.resourcesPath, resources_common);
|
151
|
-
|
152
155
|
return { "kcContext": realKcContext as any };
|
153
156
|
}
|
154
157
|
|
@@ -1,10 +1,10 @@
|
|
1
1
|
import "minimal-polyfills/Object.fromEntries";
|
2
2
|
import type { KcContext, Attribute } from "./KcContext";
|
3
3
|
import { resources_common, keycloak_resources } from "keycloakify/bin/constants";
|
4
|
-
import { pathJoin } from "keycloakify/bin/tools/pathJoin";
|
5
4
|
import { id } from "tsafe/id";
|
6
5
|
import { assert, type Equals } from "tsafe/assert";
|
7
6
|
import type { LoginThemePageId } from "keycloakify/bin/keycloakify/generateFtl";
|
7
|
+
import { BASE_URL } from "keycloakify/lib/BASE_URL";
|
8
8
|
|
9
9
|
const attributes: Attribute[] = [
|
10
10
|
{
|
@@ -100,9 +100,7 @@ const attributes: Attribute[] = [
|
|
100
100
|
|
101
101
|
const attributesByName = Object.fromEntries(attributes.map(attribute => [attribute.name, attribute])) as any;
|
102
102
|
|
103
|
-
const
|
104
|
-
|
105
|
-
const resourcesPath = pathJoin(PUBLIC_URL, keycloak_resources, "login", "resources");
|
103
|
+
const resourcesPath = `${BASE_URL}${keycloak_resources}/login/resources`;
|
106
104
|
|
107
105
|
export const kcContextCommonMock: KcContext.Common = {
|
108
106
|
"themeVersion": "0.0.0",
|
@@ -112,7 +110,7 @@ export const kcContextCommonMock: KcContext.Common = {
|
|
112
110
|
"url": {
|
113
111
|
"loginAction": "#",
|
114
112
|
resourcesPath,
|
115
|
-
"resourcesCommonPath":
|
113
|
+
"resourcesCommonPath": `${resourcesPath}/${resources_common}`,
|
116
114
|
"loginRestartFlowUrl": "/auth/realms/myrealm/login-actions/restart?client_id=account&tab_id=HoAx28ja4xg",
|
117
115
|
"loginUrl": "/auth/realms/myrealm/login-actions/authenticate?client_id=account&tab_id=HoAx28ja4xg"
|
118
116
|
},
|
package/bin/tools/pathJoin.d.ts
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
export declare function pathJoin(...path: string[]): string;
|
package/bin/tools/pathJoin.js
DELETED
@@ -1,15 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.pathJoin = void 0;
|
4
|
-
function pathJoin() {
|
5
|
-
var path = [];
|
6
|
-
for (var _i = 0; _i < arguments.length; _i++) {
|
7
|
-
path[_i] = arguments[_i];
|
8
|
-
}
|
9
|
-
return path
|
10
|
-
.map(function (part, i) { return (i === 0 ? part : part.replace(/^\/+/, "")); })
|
11
|
-
.map(function (part, i) { return (i === path.length - 1 ? part : part.replace(/\/+$/, "")); })
|
12
|
-
.join(typeof process !== "undefined" && process.platform === "win32" ? "\\" : "/");
|
13
|
-
}
|
14
|
-
exports.pathJoin = pathJoin;
|
15
|
-
//# sourceMappingURL=pathJoin.js.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"pathJoin.js","sourceRoot":"","sources":["../../src/bin/tools/pathJoin.ts"],"names":[],"mappings":";;;AAAA,SAAgB,QAAQ;IAAC,cAAiB;SAAjB,UAAiB,EAAjB,qBAAiB,EAAjB,IAAiB;QAAjB,yBAAiB;;IACtC,OAAO,IAAI;SACN,GAAG,CAAC,UAAC,IAAI,EAAE,CAAC,IAAK,OAAA,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,EAA3C,CAA2C,CAAC;SAC7D,GAAG,CAAC,UAAC,IAAI,EAAE,CAAC,IAAK,OAAA,CAAC,CAAC,KAAK,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,EAAzD,CAAyD,CAAC;SAC3E,IAAI,CAAC,OAAO,OAAO,KAAK,WAAW,IAAI,OAAO,CAAC,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;AAC3F,CAAC;AALD,4BAKC"}
|
@@ -1,6 +0,0 @@
|
|
1
|
-
export function pathJoin(...path: string[]): string {
|
2
|
-
return path
|
3
|
-
.map((part, i) => (i === 0 ? part : part.replace(/^\/+/, "")))
|
4
|
-
.map((part, i) => (i === path.length - 1 ? part : part.replace(/\/+$/, "")))
|
5
|
-
.join(typeof process !== "undefined" && process.platform === "win32" ? "\\" : "/");
|
6
|
-
}
|