306 lines
10 KiB
TypeScript
306 lines
10 KiB
TypeScript
import type GroupRepresentation from "@keycloak/keycloak-admin-client/lib/defs/groupRepresentation";
|
|
import type UserRepresentation from "@keycloak/keycloak-admin-client/lib/defs/userRepresentation";
|
|
import {
|
|
AlertVariant,
|
|
ButtonVariant,
|
|
DropdownItem,
|
|
PageSection,
|
|
Tab,
|
|
TabTitleText,
|
|
} from "@patternfly/react-core";
|
|
import { useState } from "react";
|
|
import { Controller, FormProvider, useForm } from "react-hook-form";
|
|
import { useTranslation } from "react-i18next";
|
|
import { useHistory } from "react-router-dom";
|
|
import { useNavigate } from "react-router-dom-v5-compat";
|
|
|
|
import { useAlerts } from "../components/alert/Alerts";
|
|
import { useConfirmDialog } from "../components/confirm-dialog/ConfirmDialog";
|
|
import { KeycloakSpinner } from "../components/keycloak-spinner/KeycloakSpinner";
|
|
import {
|
|
RoutableTabs,
|
|
routableTab,
|
|
} from "../components/routable-tabs/RoutableTabs";
|
|
import { ViewHeader } from "../components/view-header/ViewHeader";
|
|
import { useAccess } from "../context/access/Access";
|
|
import { useAdminClient, useFetch } from "../context/auth/AdminClient";
|
|
import { useRealm } from "../context/realm-context/RealmContext";
|
|
import { UserProfileProvider } from "../realm-settings/user-profile/UserProfileContext";
|
|
import { useParams } from "../utils/useParams";
|
|
import { toUser, UserParams, UserTab } from "./routes/User";
|
|
import { toUsers } from "./routes/Users";
|
|
import { UserAttributes } from "./UserAttributes";
|
|
import { UserConsents } from "./UserConsents";
|
|
import { UserCredentials } from "./UserCredentials";
|
|
import { BruteForced, UserForm } from "./UserForm";
|
|
import { UserGroups } from "./UserGroups";
|
|
import { UserIdentityProviderLinks } from "./UserIdentityProviderLinks";
|
|
import { UserRoleMapping } from "./UserRoleMapping";
|
|
import { UserSessions } from "./UserSessions";
|
|
|
|
import "./user-section.css";
|
|
|
|
const UsersTabs = () => {
|
|
const { t } = useTranslation("users");
|
|
const { addAlert, addError } = useAlerts();
|
|
const navigate = useNavigate();
|
|
const { realm } = useRealm();
|
|
const { hasAccess } = useAccess();
|
|
const history = useHistory();
|
|
|
|
const { adminClient } = useAdminClient();
|
|
const userForm = useForm<UserRepresentation>({ mode: "onChange" });
|
|
const { id } = useParams<UserParams>();
|
|
const [user, setUser] = useState<UserRepresentation>();
|
|
const [bruteForced, setBruteForced] = useState<BruteForced>();
|
|
const [addedGroups, setAddedGroups] = useState<GroupRepresentation[]>([]);
|
|
const [refreshCount, setRefreshCount] = useState(0);
|
|
const refresh = () => setRefreshCount((count) => count + 1);
|
|
|
|
useFetch(
|
|
async () => {
|
|
if (id) {
|
|
const user = await adminClient.users.findOne({ id });
|
|
if (!user) {
|
|
throw new Error(t("common:notFound"));
|
|
}
|
|
|
|
const isBruteForceProtected = (await adminClient.realms.findOne({
|
|
realm,
|
|
}))!.bruteForceProtected;
|
|
const bruteForce = await adminClient.attackDetection.findOne({
|
|
id: user.id!,
|
|
});
|
|
const isLocked: boolean =
|
|
isBruteForceProtected && bruteForce && bruteForce.disabled;
|
|
return { user, bruteForced: { isBruteForceProtected, isLocked } };
|
|
}
|
|
return { user: undefined };
|
|
},
|
|
({ user, bruteForced }) => {
|
|
setUser(user);
|
|
setBruteForced(bruteForced);
|
|
user && setupForm(user);
|
|
},
|
|
[user?.username, refreshCount]
|
|
);
|
|
|
|
const setupForm = (user: UserRepresentation) => {
|
|
userForm.reset(user);
|
|
};
|
|
|
|
const updateGroups = (groups: GroupRepresentation[]) => {
|
|
setAddedGroups(groups);
|
|
};
|
|
|
|
const save = async (formUser: UserRepresentation) => {
|
|
formUser.username = formUser.username?.trim();
|
|
|
|
try {
|
|
if (id) {
|
|
await adminClient.users.update(
|
|
{ id },
|
|
{
|
|
...formUser,
|
|
attributes: { ...user?.attributes, ...formUser.attributes },
|
|
}
|
|
);
|
|
addAlert(t("userSaved"), AlertVariant.success);
|
|
refresh();
|
|
} else {
|
|
const createdUser = await adminClient.users.create({
|
|
...formUser,
|
|
groups: addedGroups.map((group) => group.path!),
|
|
});
|
|
|
|
addAlert(t("userCreated"), AlertVariant.success);
|
|
navigate(toUser({ id: createdUser.id, realm, tab: "settings" }));
|
|
}
|
|
} catch (error) {
|
|
addError("users:userCreateError", error);
|
|
}
|
|
};
|
|
|
|
const [toggleDeleteDialog, DeleteConfirm] = useConfirmDialog({
|
|
titleKey: "users:deleteConfirm",
|
|
messageKey: "users:deleteConfirmCurrentUser",
|
|
continueButtonLabel: "common:delete",
|
|
continueButtonVariant: ButtonVariant.danger,
|
|
onConfirm: async () => {
|
|
try {
|
|
await adminClient.users.del({ id });
|
|
addAlert(t("userDeletedSuccess"), AlertVariant.success);
|
|
navigate(toUsers({ realm }));
|
|
} catch (error) {
|
|
addError("users:userDeletedError", error);
|
|
}
|
|
},
|
|
});
|
|
|
|
const [toggleImpersonateDialog, ImpersonateConfirm] = useConfirmDialog({
|
|
titleKey: "users:impersonateConfirm",
|
|
messageKey: "users:impersonateConfirmDialog",
|
|
continueButtonLabel: "users:impersonate",
|
|
onConfirm: async () => {
|
|
try {
|
|
const data = await adminClient.users.impersonation(
|
|
{ id },
|
|
{ user: id, realm }
|
|
);
|
|
if (data.sameRealm) {
|
|
window.location = data.redirect;
|
|
} else {
|
|
window.open(data.redirect, "_blank");
|
|
}
|
|
} catch (error) {
|
|
addError("users:impersonateError", error);
|
|
}
|
|
},
|
|
});
|
|
|
|
if (id && !user) {
|
|
return <KeycloakSpinner />;
|
|
}
|
|
|
|
const toTab = (tab: UserTab) =>
|
|
toUser({
|
|
realm,
|
|
id,
|
|
tab,
|
|
});
|
|
|
|
const routableUserTab = (tab: UserTab) =>
|
|
routableTab({ history, to: toTab(tab) });
|
|
|
|
return (
|
|
<>
|
|
<ImpersonateConfirm />
|
|
<DeleteConfirm />
|
|
<Controller
|
|
name="enabled"
|
|
control={userForm.control}
|
|
defaultValue={true}
|
|
render={({ onChange, value }) => (
|
|
<ViewHeader
|
|
titleKey={user?.id ? user.username! : t("createUser")}
|
|
className="kc-username-view-header"
|
|
divider={!id}
|
|
dropdownItems={[
|
|
<DropdownItem
|
|
key="impersonate"
|
|
isDisabled={!user?.access?.impersonate}
|
|
onClick={() => toggleImpersonateDialog()}
|
|
>
|
|
{t("impersonate")}
|
|
</DropdownItem>,
|
|
<DropdownItem
|
|
key="delete"
|
|
isDisabled={!user?.access?.manage}
|
|
onClick={() => toggleDeleteDialog()}
|
|
>
|
|
{t("common:delete")}
|
|
</DropdownItem>,
|
|
]}
|
|
isEnabled={value}
|
|
onToggle={(value) => {
|
|
onChange(value);
|
|
save(userForm.getValues());
|
|
}}
|
|
/>
|
|
)}
|
|
/>
|
|
<PageSection variant="light" className="pf-u-p-0">
|
|
<UserProfileProvider>
|
|
<FormProvider {...userForm}>
|
|
{id && user && (
|
|
<RoutableTabs
|
|
isBox
|
|
mountOnEnter
|
|
defaultLocation={toTab("settings")}
|
|
>
|
|
<Tab
|
|
data-testid="user-details-tab"
|
|
title={<TabTitleText>{t("common:details")}</TabTitleText>}
|
|
{...routableUserTab("settings")}
|
|
>
|
|
<PageSection variant="light">
|
|
{bruteForced && (
|
|
<UserForm
|
|
onGroupsUpdate={updateGroups}
|
|
save={save}
|
|
user={user}
|
|
bruteForce={bruteForced}
|
|
/>
|
|
)}
|
|
</PageSection>
|
|
</Tab>
|
|
<Tab
|
|
data-testid="attributes"
|
|
title={<TabTitleText>{t("common:attributes")}</TabTitleText>}
|
|
{...routableUserTab("attributes")}
|
|
>
|
|
<UserAttributes user={user} />
|
|
</Tab>
|
|
<Tab
|
|
data-testid="credentials"
|
|
isHidden={!user.access?.manage}
|
|
title={<TabTitleText>{t("common:credentials")}</TabTitleText>}
|
|
{...routableUserTab("credentials")}
|
|
>
|
|
<UserCredentials user={user} />
|
|
</Tab>
|
|
<Tab
|
|
data-testid="role-mapping-tab"
|
|
isHidden={!user.access?.mapRoles}
|
|
title={<TabTitleText>{t("roleMapping")}</TabTitleText>}
|
|
{...routableUserTab("role-mapping")}
|
|
>
|
|
<UserRoleMapping id={id} name={user.username!} />
|
|
</Tab>
|
|
<Tab
|
|
data-testid="user-groups-tab"
|
|
title={<TabTitleText>{t("common:groups")}</TabTitleText>}
|
|
{...routableUserTab("groups")}
|
|
>
|
|
<UserGroups user={user} />
|
|
</Tab>
|
|
<Tab
|
|
data-testid="user-consents-tab"
|
|
title={<TabTitleText>{t("consents")}</TabTitleText>}
|
|
{...routableUserTab("consents")}
|
|
>
|
|
<UserConsents />
|
|
</Tab>
|
|
{hasAccess("view-identity-providers") && (
|
|
<Tab
|
|
data-testid="identity-provider-links-tab"
|
|
title={
|
|
<TabTitleText>{t("identityProviderLinks")}</TabTitleText>
|
|
}
|
|
{...routableUserTab("identity-provider-links")}
|
|
>
|
|
<UserIdentityProviderLinks userId={id} />
|
|
</Tab>
|
|
)}
|
|
<Tab
|
|
data-testid="user-sessions-tab"
|
|
title={<TabTitleText>{t("sessions")}</TabTitleText>}
|
|
{...routableUserTab("sessions")}
|
|
>
|
|
<UserSessions />
|
|
</Tab>
|
|
</RoutableTabs>
|
|
)}
|
|
{!id && (
|
|
<PageSection variant="light">
|
|
<UserForm onGroupsUpdate={updateGroups} save={save} />
|
|
</PageSection>
|
|
)}
|
|
</FormProvider>
|
|
</UserProfileProvider>
|
|
</PageSection>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default UsersTabs;
|