7afd75ba08
Closes #27442 Signed-off-by: Jon Koops <jonkoops@gmail.com>
164 lines
4.3 KiB
TypeScript
164 lines
4.3 KiB
TypeScript
import KeycloakAdminClient from "@keycloak/keycloak-admin-client";
|
|
import ClientRepresentation from "@keycloak/keycloak-admin-client/lib/defs/clientRepresentation";
|
|
import IdentityProviderRepresentation from "@keycloak/keycloak-admin-client/lib/defs/identityProviderRepresentation";
|
|
import RealmRepresentation from "@keycloak/keycloak-admin-client/lib/defs/realmRepresentation";
|
|
import type { UserProfileConfig } from "@keycloak/keycloak-admin-client/lib/defs/userProfileMetadata";
|
|
import UserRepresentation from "@keycloak/keycloak-admin-client/lib/defs/userRepresentation";
|
|
|
|
import { DEFAULT_REALM } from "../src/constants";
|
|
import { getBaseUrl } from "./utils";
|
|
|
|
const adminClient = new KeycloakAdminClient({
|
|
baseUrl: getBaseUrl(),
|
|
realmName: DEFAULT_REALM,
|
|
});
|
|
|
|
await adminClient.auth({
|
|
username: "admin",
|
|
password: "admin",
|
|
grantType: "password",
|
|
clientId: "admin-cli",
|
|
});
|
|
|
|
export async function useTheme() {
|
|
const masterRealm = await adminClient.realms.findOne({
|
|
realm: DEFAULT_REALM,
|
|
});
|
|
|
|
await adminClient.realms.update(
|
|
{ realm: DEFAULT_REALM },
|
|
{ ...masterRealm, accountTheme: "keycloak.v3" },
|
|
);
|
|
}
|
|
|
|
export async function inRealm<T>(realm: string, fn: () => Promise<T>) {
|
|
const prevRealm = adminClient.realmName;
|
|
adminClient.realmName = realm;
|
|
try {
|
|
return await fn();
|
|
} finally {
|
|
adminClient.realmName = prevRealm;
|
|
}
|
|
}
|
|
|
|
export async function importRealm(realm: RealmRepresentation) {
|
|
await adminClient.realms.create(realm);
|
|
}
|
|
|
|
export async function deleteRealm(realm: string) {
|
|
await adminClient.realms.del({ realm });
|
|
}
|
|
|
|
export async function createClient(
|
|
client: ClientRepresentation,
|
|
): Promise<string> {
|
|
return adminClient.clients.create(client).then((client) => client.id);
|
|
}
|
|
|
|
export async function findClientByClientId(clientId: string) {
|
|
return adminClient.clients
|
|
.find({ clientId })
|
|
.then((clientArray) => clientArray[0]?.["id"]);
|
|
}
|
|
|
|
export async function deleteClient(id: string) {
|
|
await adminClient.clients.del({ id });
|
|
}
|
|
|
|
export async function createIdentityProvider(
|
|
idp: IdentityProviderRepresentation,
|
|
): Promise<string> {
|
|
return adminClient.identityProviders.create(idp)["id"];
|
|
}
|
|
|
|
export async function deleteIdentityProvider(alias: string) {
|
|
await adminClient.identityProviders.del({ alias });
|
|
}
|
|
|
|
export async function importUserProfile(
|
|
userProfile: UserProfileConfig,
|
|
realm: string,
|
|
) {
|
|
await adminClient.users.updateProfile({ ...userProfile, realm });
|
|
}
|
|
|
|
export async function enableLocalization(realm = DEFAULT_REALM) {
|
|
const realmRepresentation = await adminClient.realms.findOne({ realm });
|
|
await adminClient.realms.update(
|
|
{ realm },
|
|
{
|
|
...realmRepresentation,
|
|
internationalizationEnabled: true,
|
|
supportedLocales: ["en", "nl", "de"],
|
|
},
|
|
);
|
|
}
|
|
|
|
export async function createUser(user: UserRepresentation) {
|
|
try {
|
|
await adminClient.users.create(user);
|
|
} catch (error) {
|
|
console.error(error);
|
|
}
|
|
}
|
|
|
|
export async function createRandomUserWithPassword(
|
|
username: string,
|
|
password: string,
|
|
props?: UserRepresentation,
|
|
): Promise<string> {
|
|
return createUser({
|
|
username: username,
|
|
enabled: true,
|
|
credentials: [
|
|
{
|
|
type: "password",
|
|
value: password,
|
|
},
|
|
],
|
|
...props,
|
|
}).then(() => username);
|
|
}
|
|
|
|
export async function getUserByUsername(username: string, realm: string) {
|
|
const users = await adminClient.users.find({ username, realm, exact: true });
|
|
return users.length > 0 ? users[0] : undefined;
|
|
}
|
|
|
|
export async function deleteUser(username: string) {
|
|
try {
|
|
const users = await adminClient.users.find({ username });
|
|
const { id } = users[0];
|
|
await adminClient.users.del({ id: id! });
|
|
} catch (error) {
|
|
console.error(error);
|
|
}
|
|
}
|
|
|
|
export async function updateUser(user: UserRepresentation, realm: string) {
|
|
try {
|
|
await adminClient.users.update({ id: user.id!, realm }, user);
|
|
} catch (error) {
|
|
console.error(error);
|
|
}
|
|
}
|
|
|
|
export async function getCredentials(id: string, realm: string) {
|
|
try {
|
|
return await adminClient.users.getCredentials({ id, realm });
|
|
} catch (error) {
|
|
console.error(error);
|
|
}
|
|
}
|
|
|
|
export async function deleteCredential(
|
|
id: string,
|
|
credentialId: string,
|
|
realm: string,
|
|
) {
|
|
try {
|
|
await adminClient.users.deleteCredential({ id, credentialId, realm });
|
|
} catch (error) {
|
|
console.error(error);
|
|
}
|
|
}
|