@keycloakify/keycloak-account-ui 25.0.4-rc.3 → 25.0.4-rc.4
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/KcAccountUiLoader.d.ts +44 -34
- package/KcAccountUiLoader.js +150 -11
- package/KcAccountUiLoader.js.map +1 -1
- package/README.md +6 -6
- package/package.json +7 -2
- package/src/KcAccountUiLoader.tsx +244 -47
- package/src/zKcContextLike.ts +231 -0
- package/zKcContextLike.d.ts +7 -0
- package/zKcContextLike.js +139 -0
- package/zKcContextLike.js.map +1 -0
package/KcAccountUiLoader.d.ts
CHANGED
|
@@ -1,42 +1,52 @@
|
|
|
1
1
|
import type { MenuItem } from "./root/PageNav";
|
|
2
|
-
export type KcContextLike =
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
2
|
+
export type KcContextLike = KcContextLike.Keycloak25AndUp | KcContextLike.Keycloak20To24 | KcContextLike.Keycloak19;
|
|
3
|
+
export declare namespace KcContextLike {
|
|
4
|
+
type Common = {
|
|
5
|
+
realm: {
|
|
6
|
+
name: string;
|
|
7
|
+
registrationEmailAsUsername: boolean;
|
|
8
|
+
editUsernameAllowed: boolean;
|
|
9
|
+
isInternationalizationEnabled: boolean;
|
|
10
|
+
identityFederationEnabled: boolean;
|
|
11
|
+
userManagedAccessAllowed: boolean;
|
|
12
|
+
};
|
|
13
|
+
resourceUrl: string;
|
|
14
|
+
baseUrl: {
|
|
15
|
+
rawSchemeSpecificPart: string;
|
|
16
|
+
scheme: string;
|
|
17
|
+
};
|
|
18
|
+
locale: string;
|
|
19
|
+
isAuthorizationEnabled: boolean;
|
|
20
|
+
deleteAccountAllowed: boolean;
|
|
21
|
+
updateEmailFeatureEnabled: boolean;
|
|
22
|
+
updateEmailActionEnabled: boolean;
|
|
10
23
|
};
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
scheme: string;
|
|
24
|
+
type I18nApi = {
|
|
25
|
+
msgJSON: string;
|
|
26
|
+
supportedLocales: Record<string, string>;
|
|
15
27
|
};
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
} & ({
|
|
24
|
-
serverBaseUrl: string;
|
|
25
|
-
authUrl: string;
|
|
26
|
-
clientId: string;
|
|
27
|
-
authServerUrl: string;
|
|
28
|
-
} | {
|
|
29
|
-
authUrl: {
|
|
30
|
-
rawSchemeSpecificPart: string;
|
|
31
|
-
scheme: string;
|
|
28
|
+
type Keycloak25AndUp = Common & {
|
|
29
|
+
serverBaseUrl: string;
|
|
30
|
+
authUrl: string;
|
|
31
|
+
clientId: string;
|
|
32
|
+
authServerUrl: string;
|
|
33
|
+
isOid4VciEnabled: boolean;
|
|
34
|
+
isViewGroupsEnabled: boolean;
|
|
32
35
|
};
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
36
|
+
type Keycloak20To24 = Common & I18nApi & {
|
|
37
|
+
authUrl: {
|
|
38
|
+
rawSchemeSpecificPart: string;
|
|
39
|
+
scheme: string;
|
|
40
|
+
};
|
|
41
|
+
isViewGroupsEnabled: boolean;
|
|
38
42
|
};
|
|
39
|
-
|
|
43
|
+
type Keycloak19 = Common & I18nApi & {
|
|
44
|
+
authUrl: {
|
|
45
|
+
rawSchemeSpecificPart: string;
|
|
46
|
+
scheme: string;
|
|
47
|
+
};
|
|
48
|
+
};
|
|
49
|
+
}
|
|
40
50
|
type LazyExoticComponentLike = {
|
|
41
51
|
_result: unknown;
|
|
42
52
|
};
|
package/KcAccountUiLoader.js
CHANGED
|
@@ -10,12 +10,18 @@ var __rest = (this && this.__rest) || function (s, e) {
|
|
|
10
10
|
return t;
|
|
11
11
|
};
|
|
12
12
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
13
|
+
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
14
|
+
/* eslint-disable @typescript-eslint/no-namespace */
|
|
13
15
|
import { Suspense, useMemo } from "react";
|
|
14
16
|
import { assert } from "tsafe/assert";
|
|
15
17
|
import { is } from "tsafe/is";
|
|
16
18
|
import { joinPath } from "./utils/joinPath";
|
|
17
19
|
import defaultContent from "./public/content";
|
|
18
20
|
import defaultLogoSvgUrl from "@keycloakify/keycloak-account-ui/public/logo.svg";
|
|
21
|
+
import { getI18n } from "react-i18next";
|
|
22
|
+
function getIsKeycloak25AndUp(kcContext) {
|
|
23
|
+
return "serverBaseUrl" in kcContext;
|
|
24
|
+
}
|
|
19
25
|
export function KcAccountUiLoader(props) {
|
|
20
26
|
const { KcAccountUi, loadingFallback } = props, paramsOfInit = __rest(props, ["KcAccountUi", "loadingFallback"]);
|
|
21
27
|
assert(is(KcAccountUi));
|
|
@@ -44,6 +50,7 @@ function init(params) {
|
|
|
44
50
|
return;
|
|
45
51
|
}
|
|
46
52
|
const { content = defaultContent, kcContext } = params;
|
|
53
|
+
//logValidationResult(kcContext);
|
|
47
54
|
const logoUrl = (() => {
|
|
48
55
|
var _a, _b;
|
|
49
56
|
if ((_a = params.logoUrl) === null || _a === void 0 ? void 0 : _a.startsWith("data:")) {
|
|
@@ -120,8 +127,12 @@ function init(params) {
|
|
|
120
127
|
deleteAccountAllowed: kcContext.deleteAccountAllowed,
|
|
121
128
|
updateEmailFeatureEnabled: kcContext.updateEmailFeatureEnabled,
|
|
122
129
|
updateEmailActionEnabled: kcContext.updateEmailActionEnabled,
|
|
123
|
-
isViewGroupsEnabled: kcContext
|
|
124
|
-
|
|
130
|
+
isViewGroupsEnabled: "isViewGroupsEnabled" in kcContext
|
|
131
|
+
? kcContext.isViewGroupsEnabled
|
|
132
|
+
: false,
|
|
133
|
+
isOid4VciEnabled: getIsKeycloak25AndUp(kcContext)
|
|
134
|
+
? kcContext.isOid4VciEnabled
|
|
135
|
+
: false,
|
|
125
136
|
},
|
|
126
137
|
};
|
|
127
138
|
{
|
|
@@ -132,16 +143,144 @@ function init(params) {
|
|
|
132
143
|
script.textContent = JSON.stringify(environment, null, 1);
|
|
133
144
|
document.body.appendChild(script);
|
|
134
145
|
}
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
const
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
146
|
+
{
|
|
147
|
+
const realFetch = window.fetch;
|
|
148
|
+
const buildJsonResponse = (json) => {
|
|
149
|
+
const response = {
|
|
150
|
+
headers: new Headers({ "Content-Type": "application/json" }),
|
|
151
|
+
ok: true,
|
|
152
|
+
json: () => Promise.resolve(json),
|
|
153
|
+
text: () => Promise.resolve(JSON.stringify(json)),
|
|
154
|
+
status: 200,
|
|
141
155
|
};
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
156
|
+
/*
|
|
157
|
+
return new Proxy(response, {
|
|
158
|
+
get(target, prop, receiver) {
|
|
159
|
+
console.log(`GET ${String(prop)}`);
|
|
160
|
+
return Reflect.get(target, prop, receiver);
|
|
161
|
+
},
|
|
162
|
+
});
|
|
163
|
+
*/
|
|
164
|
+
return response;
|
|
165
|
+
};
|
|
166
|
+
let isLanguageChangeEventListened = false;
|
|
167
|
+
let wasLocaleAttributeManuallyAdded = false;
|
|
168
|
+
window.fetch = async function fetch(...args) {
|
|
169
|
+
var _a, _b, _c, _d, _e, _f, _g;
|
|
170
|
+
var _h;
|
|
171
|
+
const [url, fetchOptions] = args;
|
|
172
|
+
polyfill_i18n_api: {
|
|
173
|
+
if (getIsKeycloak25AndUp(kcContext)) {
|
|
174
|
+
break polyfill_i18n_api;
|
|
175
|
+
}
|
|
176
|
+
//assert(is<KcContextLike.Keycloak20To24>(kcContext));
|
|
177
|
+
const langs = Object.keys(kcContext.supportedLocales);
|
|
178
|
+
if (`${url}`.endsWith("/supportedLocales")) {
|
|
179
|
+
return buildJsonResponse(langs);
|
|
180
|
+
}
|
|
181
|
+
for (const lang of langs) {
|
|
182
|
+
if (!`${url}`.endsWith(`/${lang}`)) {
|
|
183
|
+
continue;
|
|
184
|
+
}
|
|
185
|
+
const data = Object.entries(JSON.parse(kcContext.msgJSON)).map(([key, value]) => {
|
|
186
|
+
try {
|
|
187
|
+
value = decodeURIComponent(escape(value));
|
|
188
|
+
}
|
|
189
|
+
catch (_a) {
|
|
190
|
+
// ignore
|
|
191
|
+
}
|
|
192
|
+
return { key, value };
|
|
193
|
+
});
|
|
194
|
+
track_language_change: {
|
|
195
|
+
if (isLanguageChangeEventListened) {
|
|
196
|
+
break track_language_change;
|
|
197
|
+
}
|
|
198
|
+
isLanguageChangeEventListened = true;
|
|
199
|
+
getI18n().on("languageChanged", (lang) => {
|
|
200
|
+
if (lang !== kcContext.locale) {
|
|
201
|
+
window.location.reload();
|
|
202
|
+
}
|
|
203
|
+
});
|
|
204
|
+
}
|
|
205
|
+
return buildJsonResponse(data);
|
|
206
|
+
}
|
|
207
|
+
const urlObj = new URL((() => {
|
|
208
|
+
const urlStr = `${url}`;
|
|
209
|
+
return urlStr.startsWith("/")
|
|
210
|
+
? `${window.location.origin}${urlStr}`
|
|
211
|
+
: urlStr;
|
|
212
|
+
})());
|
|
213
|
+
add_locale_attribute: {
|
|
214
|
+
if (!environment.features.isInternationalizationEnabled) {
|
|
215
|
+
break add_locale_attribute;
|
|
216
|
+
}
|
|
217
|
+
if (((_b = (_a = fetchOptions === null || fetchOptions === void 0 ? void 0 : fetchOptions.method) === null || _a === void 0 ? void 0 : _a.toLocaleLowerCase()) !== null && _b !== void 0 ? _b : "get") !== "get") {
|
|
218
|
+
break add_locale_attribute;
|
|
219
|
+
}
|
|
220
|
+
if (!urlObj.pathname.replace(/\/$/, "").endsWith("/account")) {
|
|
221
|
+
break add_locale_attribute;
|
|
222
|
+
}
|
|
223
|
+
if (urlObj.searchParams.get("userProfileMetadata") !== "true") {
|
|
224
|
+
break add_locale_attribute;
|
|
225
|
+
}
|
|
226
|
+
const response = await realFetch(...args);
|
|
227
|
+
if (!response.ok) {
|
|
228
|
+
return response;
|
|
229
|
+
}
|
|
230
|
+
const data = await response.json();
|
|
231
|
+
(_c = data.attributes) !== null && _c !== void 0 ? _c : (data.attributes = {});
|
|
232
|
+
data.attributes.locale = [kcContext.locale];
|
|
233
|
+
(_d = data.userProfileMetadata) !== null && _d !== void 0 ? _d : (data.userProfileMetadata = {});
|
|
234
|
+
(_e = (_h = data.userProfileMetadata).attributes) !== null && _e !== void 0 ? _e : (_h.attributes = []);
|
|
235
|
+
if (!data.userProfileMetadata.attributes.includes("locale")) {
|
|
236
|
+
wasLocaleAttributeManuallyAdded = true;
|
|
237
|
+
data.userProfileMetadata.attributes.unshift({
|
|
238
|
+
name: "locale",
|
|
239
|
+
displayName: "locale",
|
|
240
|
+
required: false,
|
|
241
|
+
readOnly: false,
|
|
242
|
+
validators: {},
|
|
243
|
+
multivalued: false,
|
|
244
|
+
});
|
|
245
|
+
}
|
|
246
|
+
return buildJsonResponse(data);
|
|
247
|
+
}
|
|
248
|
+
remove_locale_attribute_from_req: {
|
|
249
|
+
if (!wasLocaleAttributeManuallyAdded) {
|
|
250
|
+
break remove_locale_attribute_from_req;
|
|
251
|
+
}
|
|
252
|
+
if (((_g = (_f = fetchOptions === null || fetchOptions === void 0 ? void 0 : fetchOptions.method) === null || _f === void 0 ? void 0 : _f.toLocaleLowerCase()) !== null && _g !== void 0 ? _g : "get") !== "post") {
|
|
253
|
+
break remove_locale_attribute_from_req;
|
|
254
|
+
}
|
|
255
|
+
if (!urlObj.pathname.replace(/\/$/, "").endsWith("/account")) {
|
|
256
|
+
break remove_locale_attribute_from_req;
|
|
257
|
+
}
|
|
258
|
+
if ((fetchOptions === null || fetchOptions === void 0 ? void 0 : fetchOptions.body) === undefined) {
|
|
259
|
+
break remove_locale_attribute_from_req;
|
|
260
|
+
}
|
|
261
|
+
let reqPayload;
|
|
262
|
+
try {
|
|
263
|
+
reqPayload = JSON.parse(fetchOptions.body);
|
|
264
|
+
}
|
|
265
|
+
catch (_j) {
|
|
266
|
+
break remove_locale_attribute_from_req;
|
|
267
|
+
}
|
|
268
|
+
if (reqPayload.userProfileMetadata === undefined) {
|
|
269
|
+
break remove_locale_attribute_from_req;
|
|
270
|
+
}
|
|
271
|
+
reqPayload.userProfileMetadata.attributes =
|
|
272
|
+
reqPayload.userProfileMetadata.attributes.filter((attr) => attr.name !== "locale");
|
|
273
|
+
fetchOptions.body = JSON.stringify(reqPayload);
|
|
274
|
+
args[1] = fetchOptions;
|
|
275
|
+
return realFetch(...args);
|
|
276
|
+
}
|
|
277
|
+
}
|
|
278
|
+
if (url === joinPath(environment.resourceUrl, "/content.json")) {
|
|
279
|
+
return buildJsonResponse(content);
|
|
280
|
+
}
|
|
281
|
+
return realFetch(...args);
|
|
282
|
+
};
|
|
283
|
+
}
|
|
145
284
|
}
|
|
146
285
|
function readQueryParamOrRestoreFromSessionStorage(params) {
|
|
147
286
|
var _a;
|
package/KcAccountUiLoader.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"KcAccountUiLoader.js","sourceRoot":"","sources":["src/KcAccountUiLoader.tsx"],"names":[],"mappings":";;;;;;;;;;;;AAAA,OAAO,EAAE,QAAQ,EAAE,OAAO,EAA4B,MAAM,OAAO,CAAC;AACpE,OAAO,EAAE,MAAM,EAAE,MAAM,cAAc,CAAC;AACtC,OAAO,EAAE,EAAE,EAAE,MAAM,UAAU,CAAC;AAG9B,OAAO,EAAE,QAAQ,EAAE,MAAM,iDAAiD,CAAC;AAC3E,OAAO,cAAc,MAAM,iDAAiD,CAAC;AAC7E,OAAO,iBAAiB,MAAM,kDAAkD,CAAC;
|
|
1
|
+
{"version":3,"file":"KcAccountUiLoader.js","sourceRoot":"","sources":["src/KcAccountUiLoader.tsx"],"names":[],"mappings":"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"}
|
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
<a href="https://github.com/keycloakify/keycloak-account-ui/actions">
|
|
9
9
|
<img src="https://github.com/keycloakify/keycloak-account-ui/actions/workflows/ci.yaml/badge.svg?branch=main">
|
|
10
10
|
</a>
|
|
11
|
-
<a href="https://www.npmjs.com/package/@keycloakify/keycloak-account-ui/v/25.0.4-rc.
|
|
11
|
+
<a href="https://www.npmjs.com/package/@keycloakify/keycloak-account-ui/v/25.0.4-rc.4">
|
|
12
12
|
<img src="https://img.shields.io/npm/dm/@keycloakify/keycloak-account-ui">
|
|
13
13
|
</a>
|
|
14
14
|
<p align="center">
|
|
@@ -26,17 +26,17 @@ All credits goes to the keycloak team for the original work. Mainly [@jonkoops
|
|
|
26
26
|
This re-packaged distribution exists to make it possible to take ownership of
|
|
27
27
|
some specific part of the Account UI to create your own custom version of it.
|
|
28
28
|
In straight forward therms it make the Account UI ejectable, you can copy
|
|
29
|
-
past [the source files](https://unpkg.com/browse/@keycloakify/keycloak-account-ui@25.0.4-rc.
|
|
29
|
+
past [the source files](https://unpkg.com/browse/@keycloakify/keycloak-account-ui@25.0.4-rc.4/src/) that you want to modify into your codebase.
|
|
30
30
|
|
|
31
31
|
For more details on integrating this package into your project, refer to the [Keycloakify documentation](https://keycloakify.dev).
|
|
32
32
|
|
|
33
33
|
> **Note:** This package's GitHub repository does not contain any code as it is automatically generated at build time by [scripts/prepare.ts](/scripts/prepare.ts).
|
|
34
|
-
> You can browse the sources includes int the NPM package [here](https://unpkg.com/browse/@keycloakify/keycloak-account-ui@25.0.4-rc.
|
|
34
|
+
> You can browse the sources includes int the NPM package [here](https://unpkg.com/browse/@keycloakify/keycloak-account-ui@25.0.4-rc.4/src/).
|
|
35
35
|
|
|
36
36
|
## Installation
|
|
37
37
|
|
|
38
38
|
> **Note:** This README file is automatically generated at build so the information above are guaranteed to be up to date.
|
|
39
|
-
> You are currently viewing the README of [`@keycloakify/keycloak-account-ui@25.0.4-rc.
|
|
39
|
+
> You are currently viewing the README of [`@keycloakify/keycloak-account-ui@25.0.4-rc.4`](https://www.npmjs.com/package/@keycloakify/keycloak-account-ui/v/25.0.4-rc.4) that
|
|
40
40
|
> mirrors [`@keycloak/keycloak-account-ui@25.0.4`](https://www.npmjs.com/package/@keycloak/keycloak-account-ui/v/25.0.4).
|
|
41
41
|
> It is the version of the Account UI that ships with [**Keycloak 25.0.4**](https://github.com/keycloak/keycloak/tree/25.0.4/js/apps/account-ui).
|
|
42
42
|
|
|
@@ -48,7 +48,7 @@ It's important to respect the exact version range listed here to avoid any compa
|
|
|
48
48
|
```json
|
|
49
49
|
{
|
|
50
50
|
"dependencies": {
|
|
51
|
-
"@keycloakify/keycloak-account-ui": "25.0.4-rc.
|
|
51
|
+
"@keycloakify/keycloak-account-ui": "25.0.4-rc.4",
|
|
52
52
|
"@patternfly/patternfly": "^5.3.1",
|
|
53
53
|
"@patternfly/react-core": "^5.3.3",
|
|
54
54
|
"@patternfly/react-icons": "^5.3.2",
|
|
@@ -72,4 +72,4 @@ It's important to respect the exact version range listed here to avoid any compa
|
|
|
72
72
|
## Ejecting
|
|
73
73
|
|
|
74
74
|
You can take partial ownership of some parts of the Account UI by copy pasting the sources files you want to modify into your codebase.
|
|
75
|
-
You can browse the sources files **[here](https://unpkg.com/browse/@keycloakify/keycloak-account-ui@25.0.4-rc.
|
|
75
|
+
You can browse the sources files **[here](https://unpkg.com/browse/@keycloakify/keycloak-account-ui@25.0.4-rc.4/src/)**.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@keycloakify/keycloak-account-ui",
|
|
3
|
-
"version": "25.0.4-rc.
|
|
3
|
+
"version": "25.0.4-rc.4",
|
|
4
4
|
"description": "Repackaged Keycloak Account UI",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -116,6 +116,7 @@
|
|
|
116
116
|
"src/utils/isRecord.ts",
|
|
117
117
|
"src/utils/joinPath.ts",
|
|
118
118
|
"src/utils/usePromise.ts",
|
|
119
|
+
"src/zKcContextLike.ts",
|
|
119
120
|
"KcAccountUi.d.ts",
|
|
120
121
|
"KcAccountUi.js",
|
|
121
122
|
"KcAccountUi.js.map",
|
|
@@ -386,7 +387,10 @@
|
|
|
386
387
|
"utils/joinPath.js.map",
|
|
387
388
|
"utils/usePromise.d.ts",
|
|
388
389
|
"utils/usePromise.js",
|
|
389
|
-
"utils/usePromise.js.map"
|
|
390
|
+
"utils/usePromise.js.map",
|
|
391
|
+
"zKcContextLike.d.ts",
|
|
392
|
+
"zKcContextLike.js",
|
|
393
|
+
"zKcContextLike.js.map"
|
|
390
394
|
],
|
|
391
395
|
"keywords": [],
|
|
392
396
|
"homepage": "https://github.com/keycloakify/keycloak-account-ui",
|
|
@@ -425,6 +429,7 @@
|
|
|
425
429
|
"react-dom": "^18.3.1",
|
|
426
430
|
"copyfiles": "^2.4.1",
|
|
427
431
|
"@types/lodash-es": "^4.17.12",
|
|
432
|
+
"zod": "^3.23.8",
|
|
428
433
|
"@patternfly/patternfly": "^5.3.1",
|
|
429
434
|
"@patternfly/react-core": "^5.3.3",
|
|
430
435
|
"@patternfly/react-icons": "^5.3.2",
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
2
|
+
/* eslint-disable @typescript-eslint/no-namespace */
|
|
1
3
|
import { Suspense, useMemo, type LazyExoticComponent } from "react";
|
|
2
4
|
import { assert } from "tsafe/assert";
|
|
3
5
|
import { is } from "tsafe/is";
|
|
@@ -6,52 +8,73 @@ import type { MenuItem } from "@keycloakify/keycloak-account-ui/root/PageNav";
|
|
|
6
8
|
import { joinPath } from "@keycloakify/keycloak-account-ui/utils/joinPath";
|
|
7
9
|
import defaultContent from "@keycloakify/keycloak-account-ui/public/content";
|
|
8
10
|
import defaultLogoSvgUrl from "@keycloakify/keycloak-account-ui/public/logo.svg";
|
|
11
|
+
import { getI18n } from "react-i18next";
|
|
12
|
+
//import { logValidationResult } from "./zKcContextLike";
|
|
13
|
+
|
|
14
|
+
export type KcContextLike =
|
|
15
|
+
| KcContextLike.Keycloak25AndUp
|
|
16
|
+
| KcContextLike.Keycloak20To24
|
|
17
|
+
| KcContextLike.Keycloak19;
|
|
18
|
+
|
|
19
|
+
export namespace KcContextLike {
|
|
20
|
+
export type Common = {
|
|
21
|
+
realm: {
|
|
22
|
+
name: string;
|
|
23
|
+
registrationEmailAsUsername: boolean;
|
|
24
|
+
editUsernameAllowed: boolean;
|
|
25
|
+
isInternationalizationEnabled: boolean;
|
|
26
|
+
identityFederationEnabled: boolean;
|
|
27
|
+
userManagedAccessAllowed: boolean;
|
|
28
|
+
};
|
|
29
|
+
resourceUrl: string;
|
|
30
|
+
baseUrl: {
|
|
31
|
+
rawSchemeSpecificPart: string;
|
|
32
|
+
scheme: string;
|
|
33
|
+
};
|
|
34
|
+
locale: string;
|
|
35
|
+
isAuthorizationEnabled: boolean;
|
|
36
|
+
deleteAccountAllowed: boolean;
|
|
37
|
+
updateEmailFeatureEnabled: boolean;
|
|
38
|
+
updateEmailActionEnabled: boolean;
|
|
39
|
+
};
|
|
9
40
|
|
|
10
|
-
export type
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
registrationEmailAsUsername: boolean;
|
|
14
|
-
editUsernameAllowed: boolean;
|
|
15
|
-
isInternationalizationEnabled: boolean;
|
|
16
|
-
identityFederationEnabled: boolean;
|
|
17
|
-
userManagedAccessAllowed: boolean;
|
|
41
|
+
export type I18nApi = {
|
|
42
|
+
msgJSON: string;
|
|
43
|
+
supportedLocales: Record<string, string>;
|
|
18
44
|
};
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
45
|
+
|
|
46
|
+
export type Keycloak25AndUp = Common & {
|
|
47
|
+
serverBaseUrl: string;
|
|
48
|
+
authUrl: string;
|
|
49
|
+
clientId: string;
|
|
50
|
+
authServerUrl: string;
|
|
51
|
+
isOid4VciEnabled: boolean;
|
|
52
|
+
isViewGroupsEnabled: boolean;
|
|
23
53
|
};
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
updateEmailFeatureEnabled: boolean;
|
|
28
|
-
updateEmailActionEnabled: boolean;
|
|
29
|
-
isViewGroupsEnabled: boolean;
|
|
30
|
-
isOid4VciEnabled: boolean;
|
|
31
|
-
} & (
|
|
32
|
-
| {
|
|
33
|
-
// Keycloak 25
|
|
34
|
-
serverBaseUrl: string;
|
|
35
|
-
authUrl: string;
|
|
36
|
-
clientId: string;
|
|
37
|
-
authServerUrl: string;
|
|
38
|
-
}
|
|
39
|
-
| {
|
|
40
|
-
// Keycloak 20
|
|
54
|
+
|
|
55
|
+
export type Keycloak20To24 = Common &
|
|
56
|
+
I18nApi & {
|
|
41
57
|
authUrl: {
|
|
42
58
|
rawSchemeSpecificPart: string;
|
|
43
59
|
scheme: string;
|
|
44
60
|
};
|
|
45
|
-
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
|
|
61
|
+
isViewGroupsEnabled: boolean;
|
|
62
|
+
};
|
|
63
|
+
|
|
64
|
+
export type Keycloak19 = Common &
|
|
65
|
+
I18nApi & {
|
|
49
66
|
authUrl: {
|
|
50
67
|
rawSchemeSpecificPart: string;
|
|
51
68
|
scheme: string;
|
|
52
69
|
};
|
|
53
|
-
}
|
|
54
|
-
|
|
70
|
+
};
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
function getIsKeycloak25AndUp(
|
|
74
|
+
kcContext: KcContextLike,
|
|
75
|
+
): kcContext is KcContextLike.Keycloak25AndUp {
|
|
76
|
+
return "serverBaseUrl" in kcContext;
|
|
77
|
+
}
|
|
55
78
|
|
|
56
79
|
type LazyExoticComponentLike = {
|
|
57
80
|
_result: unknown;
|
|
@@ -110,6 +133,8 @@ function init(
|
|
|
110
133
|
|
|
111
134
|
const { content = defaultContent, kcContext } = params;
|
|
112
135
|
|
|
136
|
+
//logValidationResult(kcContext);
|
|
137
|
+
|
|
113
138
|
const logoUrl = (() => {
|
|
114
139
|
if (params.logoUrl?.startsWith("data:")) {
|
|
115
140
|
const error = new Error(
|
|
@@ -209,8 +234,13 @@ function init(
|
|
|
209
234
|
deleteAccountAllowed: kcContext.deleteAccountAllowed,
|
|
210
235
|
updateEmailFeatureEnabled: kcContext.updateEmailFeatureEnabled,
|
|
211
236
|
updateEmailActionEnabled: kcContext.updateEmailActionEnabled,
|
|
212
|
-
isViewGroupsEnabled:
|
|
213
|
-
|
|
237
|
+
isViewGroupsEnabled:
|
|
238
|
+
"isViewGroupsEnabled" in kcContext
|
|
239
|
+
? kcContext.isViewGroupsEnabled
|
|
240
|
+
: false,
|
|
241
|
+
isOid4VciEnabled: getIsKeycloak25AndUp(kcContext)
|
|
242
|
+
? kcContext.isOid4VciEnabled
|
|
243
|
+
: false,
|
|
214
244
|
},
|
|
215
245
|
};
|
|
216
246
|
|
|
@@ -225,19 +255,186 @@ function init(
|
|
|
225
255
|
document.body.appendChild(script);
|
|
226
256
|
}
|
|
227
257
|
|
|
228
|
-
|
|
258
|
+
{
|
|
259
|
+
const realFetch = window.fetch;
|
|
260
|
+
|
|
261
|
+
const buildJsonResponse = (json: unknown): Response => {
|
|
262
|
+
const response = {
|
|
263
|
+
headers: new Headers({ "Content-Type": "application/json" }),
|
|
264
|
+
ok: true,
|
|
265
|
+
json: () => Promise.resolve(json),
|
|
266
|
+
text: () => Promise.resolve(JSON.stringify(json)),
|
|
267
|
+
status: 200,
|
|
268
|
+
} as Response;
|
|
229
269
|
|
|
230
|
-
|
|
231
|
-
|
|
270
|
+
/*
|
|
271
|
+
return new Proxy(response, {
|
|
272
|
+
get(target, prop, receiver) {
|
|
273
|
+
console.log(`GET ${String(prop)}`);
|
|
274
|
+
return Reflect.get(target, prop, receiver);
|
|
275
|
+
},
|
|
276
|
+
});
|
|
277
|
+
*/
|
|
278
|
+
return response;
|
|
279
|
+
};
|
|
280
|
+
|
|
281
|
+
let isLanguageChangeEventListened = false;
|
|
282
|
+
let wasLocaleAttributeManuallyAdded = false;
|
|
283
|
+
|
|
284
|
+
window.fetch = async function fetch(...args) {
|
|
285
|
+
const [url, fetchOptions] = args;
|
|
286
|
+
|
|
287
|
+
polyfill_i18n_api: {
|
|
288
|
+
if (getIsKeycloak25AndUp(kcContext)) {
|
|
289
|
+
break polyfill_i18n_api;
|
|
290
|
+
}
|
|
291
|
+
//assert(is<KcContextLike.Keycloak20To24>(kcContext));
|
|
232
292
|
|
|
233
|
-
|
|
234
|
-
return {
|
|
235
|
-
json: () => Promise.resolve(content),
|
|
236
|
-
} as Response;
|
|
237
|
-
}
|
|
293
|
+
const langs = Object.keys(kcContext.supportedLocales);
|
|
238
294
|
|
|
239
|
-
|
|
240
|
-
|
|
295
|
+
if (`${url}`.endsWith("/supportedLocales")) {
|
|
296
|
+
return buildJsonResponse(langs);
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
for (const lang of langs) {
|
|
300
|
+
if (!`${url}`.endsWith(`/${lang}`)) {
|
|
301
|
+
continue;
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
const data = Object.entries(
|
|
305
|
+
JSON.parse(kcContext.msgJSON) as Record<string, string>,
|
|
306
|
+
).map(([key, value]) => {
|
|
307
|
+
try {
|
|
308
|
+
value = decodeURIComponent(escape(value));
|
|
309
|
+
} catch {
|
|
310
|
+
// ignore
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
return { key, value };
|
|
314
|
+
});
|
|
315
|
+
|
|
316
|
+
track_language_change: {
|
|
317
|
+
if (isLanguageChangeEventListened) {
|
|
318
|
+
break track_language_change;
|
|
319
|
+
}
|
|
320
|
+
isLanguageChangeEventListened = true;
|
|
321
|
+
|
|
322
|
+
getI18n().on("languageChanged", (lang) => {
|
|
323
|
+
if (lang !== kcContext.locale) {
|
|
324
|
+
window.location.reload();
|
|
325
|
+
}
|
|
326
|
+
});
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
return buildJsonResponse(data);
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
const urlObj = new URL(
|
|
333
|
+
(() => {
|
|
334
|
+
const urlStr = `${url}`;
|
|
335
|
+
|
|
336
|
+
return urlStr.startsWith("/")
|
|
337
|
+
? `${window.location.origin}${urlStr}`
|
|
338
|
+
: urlStr;
|
|
339
|
+
})(),
|
|
340
|
+
);
|
|
341
|
+
|
|
342
|
+
add_locale_attribute: {
|
|
343
|
+
if (!environment.features.isInternationalizationEnabled) {
|
|
344
|
+
break add_locale_attribute;
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
if ((fetchOptions?.method?.toLocaleLowerCase() ?? "get") !== "get") {
|
|
348
|
+
break add_locale_attribute;
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
if (!urlObj.pathname.replace(/\/$/, "").endsWith("/account")) {
|
|
352
|
+
break add_locale_attribute;
|
|
353
|
+
}
|
|
354
|
+
|
|
355
|
+
if (urlObj.searchParams.get("userProfileMetadata") !== "true") {
|
|
356
|
+
break add_locale_attribute;
|
|
357
|
+
}
|
|
358
|
+
|
|
359
|
+
const response = await realFetch(...args);
|
|
360
|
+
|
|
361
|
+
if (!response.ok) {
|
|
362
|
+
return response;
|
|
363
|
+
}
|
|
364
|
+
|
|
365
|
+
const data = await response.json();
|
|
366
|
+
|
|
367
|
+
data.attributes ??= {};
|
|
368
|
+
|
|
369
|
+
data.attributes.locale = [kcContext.locale];
|
|
370
|
+
|
|
371
|
+
data.userProfileMetadata ??= {};
|
|
372
|
+
data.userProfileMetadata.attributes ??= [];
|
|
373
|
+
|
|
374
|
+
if (!data.userProfileMetadata.attributes.includes("locale")) {
|
|
375
|
+
wasLocaleAttributeManuallyAdded = true;
|
|
376
|
+
data.userProfileMetadata.attributes.unshift({
|
|
377
|
+
name: "locale",
|
|
378
|
+
displayName: "locale",
|
|
379
|
+
required: false,
|
|
380
|
+
readOnly: false,
|
|
381
|
+
validators: {},
|
|
382
|
+
multivalued: false,
|
|
383
|
+
});
|
|
384
|
+
}
|
|
385
|
+
|
|
386
|
+
return buildJsonResponse(data);
|
|
387
|
+
}
|
|
388
|
+
|
|
389
|
+
remove_locale_attribute_from_req: {
|
|
390
|
+
if (!wasLocaleAttributeManuallyAdded) {
|
|
391
|
+
break remove_locale_attribute_from_req;
|
|
392
|
+
}
|
|
393
|
+
|
|
394
|
+
if ((fetchOptions?.method?.toLocaleLowerCase() ?? "get") !== "post") {
|
|
395
|
+
break remove_locale_attribute_from_req;
|
|
396
|
+
}
|
|
397
|
+
|
|
398
|
+
if (!urlObj.pathname.replace(/\/$/, "").endsWith("/account")) {
|
|
399
|
+
break remove_locale_attribute_from_req;
|
|
400
|
+
}
|
|
401
|
+
|
|
402
|
+
if (fetchOptions?.body === undefined) {
|
|
403
|
+
break remove_locale_attribute_from_req;
|
|
404
|
+
}
|
|
405
|
+
|
|
406
|
+
let reqPayload: any;
|
|
407
|
+
|
|
408
|
+
try {
|
|
409
|
+
reqPayload = JSON.parse(fetchOptions.body as string);
|
|
410
|
+
} catch {
|
|
411
|
+
break remove_locale_attribute_from_req;
|
|
412
|
+
}
|
|
413
|
+
|
|
414
|
+
if (reqPayload.userProfileMetadata === undefined) {
|
|
415
|
+
break remove_locale_attribute_from_req;
|
|
416
|
+
}
|
|
417
|
+
|
|
418
|
+
reqPayload.userProfileMetadata.attributes =
|
|
419
|
+
reqPayload.userProfileMetadata.attributes.filter(
|
|
420
|
+
(attr: any) => attr.name !== "locale",
|
|
421
|
+
);
|
|
422
|
+
|
|
423
|
+
fetchOptions.body = JSON.stringify(reqPayload);
|
|
424
|
+
|
|
425
|
+
args[1] = fetchOptions;
|
|
426
|
+
|
|
427
|
+
return realFetch(...args);
|
|
428
|
+
}
|
|
429
|
+
}
|
|
430
|
+
|
|
431
|
+
if (url === joinPath(environment.resourceUrl, "/content.json")) {
|
|
432
|
+
return buildJsonResponse(content);
|
|
433
|
+
}
|
|
434
|
+
|
|
435
|
+
return realFetch(...args);
|
|
436
|
+
};
|
|
437
|
+
}
|
|
241
438
|
}
|
|
242
439
|
|
|
243
440
|
function readQueryParamOrRestoreFromSessionStorage(params: {
|
|
@@ -0,0 +1,231 @@
|
|
|
1
|
+
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
2
|
+
|
|
3
|
+
import type { KcContextLike } from "./KcAccountUiLoader";
|
|
4
|
+
import { z } from "zod";
|
|
5
|
+
import { id } from "tsafe/id";
|
|
6
|
+
import { assert, type Equals } from "tsafe/assert";
|
|
7
|
+
import { is } from "tsafe/is";
|
|
8
|
+
|
|
9
|
+
const zKcContextLikeCommon = (() => {
|
|
10
|
+
type TargetType = KcContextLike.Common;
|
|
11
|
+
|
|
12
|
+
const zTargetType = z.object({
|
|
13
|
+
realm: z.object({
|
|
14
|
+
name: z.string(),
|
|
15
|
+
registrationEmailAsUsername: z.boolean(),
|
|
16
|
+
editUsernameAllowed: z.boolean(),
|
|
17
|
+
isInternationalizationEnabled: z.boolean(),
|
|
18
|
+
identityFederationEnabled: z.boolean(),
|
|
19
|
+
userManagedAccessAllowed: z.boolean()
|
|
20
|
+
}),
|
|
21
|
+
resourceUrl: z.string(),
|
|
22
|
+
baseUrl: z.object({
|
|
23
|
+
rawSchemeSpecificPart: z.string(),
|
|
24
|
+
scheme: z.string()
|
|
25
|
+
}),
|
|
26
|
+
locale: z.string(),
|
|
27
|
+
isAuthorizationEnabled: z.boolean(),
|
|
28
|
+
deleteAccountAllowed: z.boolean(),
|
|
29
|
+
updateEmailFeatureEnabled: z.boolean(),
|
|
30
|
+
updateEmailActionEnabled: z.boolean(),
|
|
31
|
+
});
|
|
32
|
+
|
|
33
|
+
assert<Equals<z.infer<typeof zTargetType>, TargetType>>();
|
|
34
|
+
|
|
35
|
+
return id<z.ZodType<TargetType>>(zTargetType);
|
|
36
|
+
|
|
37
|
+
})();
|
|
38
|
+
|
|
39
|
+
const zI18nApi = (() => {
|
|
40
|
+
|
|
41
|
+
type TargetType = KcContextLike.I18nApi;
|
|
42
|
+
|
|
43
|
+
const zTargetType = z.object({
|
|
44
|
+
msgJSON: z.string(),
|
|
45
|
+
supportedLocales: z.record(z.string())
|
|
46
|
+
});
|
|
47
|
+
|
|
48
|
+
assert<Equals<z.infer<typeof zTargetType>, TargetType>>();
|
|
49
|
+
|
|
50
|
+
return id<z.ZodType<TargetType>>(zTargetType);
|
|
51
|
+
|
|
52
|
+
})();
|
|
53
|
+
|
|
54
|
+
export const zKcContextLikeKeycloak25AndUp = (() => {
|
|
55
|
+
type TargetType = KcContextLike.Keycloak25AndUp;
|
|
56
|
+
|
|
57
|
+
const zTargetType = z.intersection(
|
|
58
|
+
zKcContextLikeCommon,
|
|
59
|
+
z.object({
|
|
60
|
+
serverBaseUrl: z.string(),
|
|
61
|
+
authUrl: z.string(),
|
|
62
|
+
clientId: z.string(),
|
|
63
|
+
authServerUrl: z.string(),
|
|
64
|
+
isOid4VciEnabled: z.boolean(),
|
|
65
|
+
isViewGroupsEnabled: z.boolean(),
|
|
66
|
+
}));
|
|
67
|
+
|
|
68
|
+
assert<Equals<z.infer<typeof zTargetType>, TargetType>>();
|
|
69
|
+
|
|
70
|
+
return id<z.ZodType<TargetType>>(zTargetType);
|
|
71
|
+
|
|
72
|
+
})();
|
|
73
|
+
|
|
74
|
+
export const zKcContextLikeKeycloak20To24 = (() => {
|
|
75
|
+
type TargetType = KcContextLike.Keycloak20To24;
|
|
76
|
+
|
|
77
|
+
const zTargetType = z.intersection(
|
|
78
|
+
z.intersection(
|
|
79
|
+
zKcContextLikeCommon,
|
|
80
|
+
zI18nApi
|
|
81
|
+
),
|
|
82
|
+
z.object({
|
|
83
|
+
authUrl: z.object({
|
|
84
|
+
rawSchemeSpecificPart: z.string(),
|
|
85
|
+
scheme: z.string(),
|
|
86
|
+
}),
|
|
87
|
+
isViewGroupsEnabled: z.boolean(),
|
|
88
|
+
}));
|
|
89
|
+
|
|
90
|
+
assert<Equals<z.infer<typeof zTargetType>, TargetType>>();
|
|
91
|
+
|
|
92
|
+
return id<z.ZodType<TargetType>>(zTargetType);
|
|
93
|
+
|
|
94
|
+
})();
|
|
95
|
+
|
|
96
|
+
export const zKcContextLikeKeycloak19 = (() => {
|
|
97
|
+
type TargetType = KcContextLike.Keycloak19;
|
|
98
|
+
|
|
99
|
+
const zTargetType = z.intersection(
|
|
100
|
+
z.intersection(
|
|
101
|
+
zKcContextLikeCommon,
|
|
102
|
+
zI18nApi
|
|
103
|
+
),
|
|
104
|
+
z.object({
|
|
105
|
+
authUrl: z.object({
|
|
106
|
+
rawSchemeSpecificPart: z.string(),
|
|
107
|
+
scheme: z.string(),
|
|
108
|
+
}),
|
|
109
|
+
}));
|
|
110
|
+
|
|
111
|
+
assert<Equals<z.infer<typeof zTargetType>, TargetType>>();
|
|
112
|
+
|
|
113
|
+
return id<z.ZodType<TargetType>>(zTargetType);
|
|
114
|
+
|
|
115
|
+
})();
|
|
116
|
+
|
|
117
|
+
|
|
118
|
+
|
|
119
|
+
export const zKcContextLike = (()=>{
|
|
120
|
+
|
|
121
|
+
const zTargetType = z.union([
|
|
122
|
+
zKcContextLikeKeycloak25AndUp,
|
|
123
|
+
zKcContextLikeKeycloak20To24,
|
|
124
|
+
zKcContextLikeKeycloak19
|
|
125
|
+
]);
|
|
126
|
+
|
|
127
|
+
assert<Equals<z.infer<typeof zTargetType>, KcContextLike>>();
|
|
128
|
+
|
|
129
|
+
return id<z.ZodType<KcContextLike>>(zTargetType);
|
|
130
|
+
|
|
131
|
+
})();
|
|
132
|
+
|
|
133
|
+
export function logValidationResult(kcContext: any) {
|
|
134
|
+
|
|
135
|
+
const errorCommon = (()=>{
|
|
136
|
+
try{
|
|
137
|
+
|
|
138
|
+
zKcContextLikeCommon.parse(kcContext);
|
|
139
|
+
|
|
140
|
+
}catch(error){
|
|
141
|
+
|
|
142
|
+
assert(is<z.ZodError>(error));
|
|
143
|
+
|
|
144
|
+
return JSON.parse(error.message);
|
|
145
|
+
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
return undefined;
|
|
149
|
+
|
|
150
|
+
})();
|
|
151
|
+
|
|
152
|
+
const error = (()=>{
|
|
153
|
+
|
|
154
|
+
try{
|
|
155
|
+
|
|
156
|
+
zKcContextLike.parse(kcContext);
|
|
157
|
+
|
|
158
|
+
}catch(error){
|
|
159
|
+
|
|
160
|
+
assert(is<z.ZodError>(error));
|
|
161
|
+
|
|
162
|
+
return JSON.parse(error.message);
|
|
163
|
+
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
return undefined;
|
|
167
|
+
|
|
168
|
+
})();
|
|
169
|
+
|
|
170
|
+
const error19 = (()=>{
|
|
171
|
+
|
|
172
|
+
try{
|
|
173
|
+
|
|
174
|
+
zKcContextLikeKeycloak19.parse(kcContext);
|
|
175
|
+
|
|
176
|
+
}catch(error){
|
|
177
|
+
|
|
178
|
+
assert(is<z.ZodError>(error));
|
|
179
|
+
|
|
180
|
+
return JSON.parse(error.message);
|
|
181
|
+
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
return undefined;
|
|
185
|
+
|
|
186
|
+
})();
|
|
187
|
+
|
|
188
|
+
const error20to24 = (()=>{
|
|
189
|
+
|
|
190
|
+
try{
|
|
191
|
+
|
|
192
|
+
zKcContextLikeKeycloak20To24.parse(kcContext);
|
|
193
|
+
|
|
194
|
+
}catch(error){
|
|
195
|
+
|
|
196
|
+
assert(is<z.ZodError>(error));
|
|
197
|
+
|
|
198
|
+
return JSON.parse(error.message);
|
|
199
|
+
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
return undefined;
|
|
203
|
+
|
|
204
|
+
})();
|
|
205
|
+
|
|
206
|
+
const error25andUp = (()=>{
|
|
207
|
+
try{
|
|
208
|
+
|
|
209
|
+
zKcContextLikeKeycloak25AndUp.parse(kcContext);
|
|
210
|
+
|
|
211
|
+
}catch(error){
|
|
212
|
+
|
|
213
|
+
assert(is<z.ZodError>(error));
|
|
214
|
+
|
|
215
|
+
return JSON.parse(error.message);
|
|
216
|
+
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
return undefined;
|
|
220
|
+
|
|
221
|
+
})();
|
|
222
|
+
|
|
223
|
+
console.log({
|
|
224
|
+
errorCommon,
|
|
225
|
+
error,
|
|
226
|
+
error19,
|
|
227
|
+
error20to24,
|
|
228
|
+
error25andUp
|
|
229
|
+
});
|
|
230
|
+
|
|
231
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { KcContextLike } from "./KcAccountUiLoader";
|
|
2
|
+
import { z } from "zod";
|
|
3
|
+
export declare const zKcContextLikeKeycloak25AndUp: z.ZodType<KcContextLike.Keycloak25AndUp, z.ZodTypeDef, KcContextLike.Keycloak25AndUp>;
|
|
4
|
+
export declare const zKcContextLikeKeycloak20To24: z.ZodType<KcContextLike.Keycloak20To24, z.ZodTypeDef, KcContextLike.Keycloak20To24>;
|
|
5
|
+
export declare const zKcContextLikeKeycloak19: z.ZodType<KcContextLike.Keycloak19, z.ZodTypeDef, KcContextLike.Keycloak19>;
|
|
6
|
+
export declare const zKcContextLike: z.ZodType<KcContextLike, z.ZodTypeDef, KcContextLike>;
|
|
7
|
+
export declare function logValidationResult(kcContext: any): void;
|
|
@@ -0,0 +1,139 @@
|
|
|
1
|
+
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
2
|
+
import { z } from "zod";
|
|
3
|
+
import { id } from "tsafe/id";
|
|
4
|
+
import { assert } from "tsafe/assert";
|
|
5
|
+
import { is } from "tsafe/is";
|
|
6
|
+
const zKcContextLikeCommon = (() => {
|
|
7
|
+
const zTargetType = z.object({
|
|
8
|
+
realm: z.object({
|
|
9
|
+
name: z.string(),
|
|
10
|
+
registrationEmailAsUsername: z.boolean(),
|
|
11
|
+
editUsernameAllowed: z.boolean(),
|
|
12
|
+
isInternationalizationEnabled: z.boolean(),
|
|
13
|
+
identityFederationEnabled: z.boolean(),
|
|
14
|
+
userManagedAccessAllowed: z.boolean()
|
|
15
|
+
}),
|
|
16
|
+
resourceUrl: z.string(),
|
|
17
|
+
baseUrl: z.object({
|
|
18
|
+
rawSchemeSpecificPart: z.string(),
|
|
19
|
+
scheme: z.string()
|
|
20
|
+
}),
|
|
21
|
+
locale: z.string(),
|
|
22
|
+
isAuthorizationEnabled: z.boolean(),
|
|
23
|
+
deleteAccountAllowed: z.boolean(),
|
|
24
|
+
updateEmailFeatureEnabled: z.boolean(),
|
|
25
|
+
updateEmailActionEnabled: z.boolean(),
|
|
26
|
+
});
|
|
27
|
+
assert();
|
|
28
|
+
return id(zTargetType);
|
|
29
|
+
})();
|
|
30
|
+
const zI18nApi = (() => {
|
|
31
|
+
const zTargetType = z.object({
|
|
32
|
+
msgJSON: z.string(),
|
|
33
|
+
supportedLocales: z.record(z.string())
|
|
34
|
+
});
|
|
35
|
+
assert();
|
|
36
|
+
return id(zTargetType);
|
|
37
|
+
})();
|
|
38
|
+
export const zKcContextLikeKeycloak25AndUp = (() => {
|
|
39
|
+
const zTargetType = z.intersection(zKcContextLikeCommon, z.object({
|
|
40
|
+
serverBaseUrl: z.string(),
|
|
41
|
+
authUrl: z.string(),
|
|
42
|
+
clientId: z.string(),
|
|
43
|
+
authServerUrl: z.string(),
|
|
44
|
+
isOid4VciEnabled: z.boolean(),
|
|
45
|
+
isViewGroupsEnabled: z.boolean(),
|
|
46
|
+
}));
|
|
47
|
+
assert();
|
|
48
|
+
return id(zTargetType);
|
|
49
|
+
})();
|
|
50
|
+
export const zKcContextLikeKeycloak20To24 = (() => {
|
|
51
|
+
const zTargetType = z.intersection(z.intersection(zKcContextLikeCommon, zI18nApi), z.object({
|
|
52
|
+
authUrl: z.object({
|
|
53
|
+
rawSchemeSpecificPart: z.string(),
|
|
54
|
+
scheme: z.string(),
|
|
55
|
+
}),
|
|
56
|
+
isViewGroupsEnabled: z.boolean(),
|
|
57
|
+
}));
|
|
58
|
+
assert();
|
|
59
|
+
return id(zTargetType);
|
|
60
|
+
})();
|
|
61
|
+
export const zKcContextLikeKeycloak19 = (() => {
|
|
62
|
+
const zTargetType = z.intersection(z.intersection(zKcContextLikeCommon, zI18nApi), z.object({
|
|
63
|
+
authUrl: z.object({
|
|
64
|
+
rawSchemeSpecificPart: z.string(),
|
|
65
|
+
scheme: z.string(),
|
|
66
|
+
}),
|
|
67
|
+
}));
|
|
68
|
+
assert();
|
|
69
|
+
return id(zTargetType);
|
|
70
|
+
})();
|
|
71
|
+
export const zKcContextLike = (() => {
|
|
72
|
+
const zTargetType = z.union([
|
|
73
|
+
zKcContextLikeKeycloak25AndUp,
|
|
74
|
+
zKcContextLikeKeycloak20To24,
|
|
75
|
+
zKcContextLikeKeycloak19
|
|
76
|
+
]);
|
|
77
|
+
assert();
|
|
78
|
+
return id(zTargetType);
|
|
79
|
+
})();
|
|
80
|
+
export function logValidationResult(kcContext) {
|
|
81
|
+
const errorCommon = (() => {
|
|
82
|
+
try {
|
|
83
|
+
zKcContextLikeCommon.parse(kcContext);
|
|
84
|
+
}
|
|
85
|
+
catch (error) {
|
|
86
|
+
assert(is(error));
|
|
87
|
+
return JSON.parse(error.message);
|
|
88
|
+
}
|
|
89
|
+
return undefined;
|
|
90
|
+
})();
|
|
91
|
+
const error = (() => {
|
|
92
|
+
try {
|
|
93
|
+
zKcContextLike.parse(kcContext);
|
|
94
|
+
}
|
|
95
|
+
catch (error) {
|
|
96
|
+
assert(is(error));
|
|
97
|
+
return JSON.parse(error.message);
|
|
98
|
+
}
|
|
99
|
+
return undefined;
|
|
100
|
+
})();
|
|
101
|
+
const error19 = (() => {
|
|
102
|
+
try {
|
|
103
|
+
zKcContextLikeKeycloak19.parse(kcContext);
|
|
104
|
+
}
|
|
105
|
+
catch (error) {
|
|
106
|
+
assert(is(error));
|
|
107
|
+
return JSON.parse(error.message);
|
|
108
|
+
}
|
|
109
|
+
return undefined;
|
|
110
|
+
})();
|
|
111
|
+
const error20to24 = (() => {
|
|
112
|
+
try {
|
|
113
|
+
zKcContextLikeKeycloak20To24.parse(kcContext);
|
|
114
|
+
}
|
|
115
|
+
catch (error) {
|
|
116
|
+
assert(is(error));
|
|
117
|
+
return JSON.parse(error.message);
|
|
118
|
+
}
|
|
119
|
+
return undefined;
|
|
120
|
+
})();
|
|
121
|
+
const error25andUp = (() => {
|
|
122
|
+
try {
|
|
123
|
+
zKcContextLikeKeycloak25AndUp.parse(kcContext);
|
|
124
|
+
}
|
|
125
|
+
catch (error) {
|
|
126
|
+
assert(is(error));
|
|
127
|
+
return JSON.parse(error.message);
|
|
128
|
+
}
|
|
129
|
+
return undefined;
|
|
130
|
+
})();
|
|
131
|
+
console.log({
|
|
132
|
+
errorCommon,
|
|
133
|
+
error,
|
|
134
|
+
error19,
|
|
135
|
+
error20to24,
|
|
136
|
+
error25andUp
|
|
137
|
+
});
|
|
138
|
+
}
|
|
139
|
+
//# sourceMappingURL=zKcContextLike.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"zKcContextLike.js","sourceRoot":"","sources":["src/zKcContextLike.ts"],"names":[],"mappings":"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"}
|