2020-11-12 12:55:52 +00:00
|
|
|
import React, { useEffect, useState } from "react";
|
2020-11-02 20:15:09 +00:00
|
|
|
import {
|
2021-03-17 07:10:30 +00:00
|
|
|
Alert,
|
2020-11-02 20:15:09 +00:00
|
|
|
AlertVariant,
|
|
|
|
ButtonVariant,
|
|
|
|
DropdownItem,
|
|
|
|
PageSection,
|
2020-11-30 19:33:31 +00:00
|
|
|
Spinner,
|
2020-11-02 20:15:09 +00:00
|
|
|
Tab,
|
2021-03-01 09:20:36 +00:00
|
|
|
Tabs,
|
2020-11-02 20:15:09 +00:00
|
|
|
TabTitleText,
|
|
|
|
} from "@patternfly/react-core";
|
2021-02-17 21:12:25 +00:00
|
|
|
import { useParams } from "react-router-dom";
|
|
|
|
import { useErrorHandler } from "react-error-boundary";
|
2020-11-02 20:15:09 +00:00
|
|
|
import { useTranslation } from "react-i18next";
|
2021-02-28 20:02:31 +00:00
|
|
|
import { Controller, FormProvider, useForm, useWatch } from "react-hook-form";
|
2020-11-12 12:55:52 +00:00
|
|
|
import ClientRepresentation from "keycloak-admin/lib/defs/clientRepresentation";
|
2021-02-28 20:02:31 +00:00
|
|
|
import _ from "lodash";
|
2020-11-02 20:15:09 +00:00
|
|
|
|
|
|
|
import { ClientSettings } from "./ClientSettings";
|
|
|
|
import { useAlerts } from "../components/alert/Alerts";
|
2021-03-17 07:10:30 +00:00
|
|
|
import {
|
|
|
|
ConfirmDialogModal,
|
|
|
|
useConfirmDialog,
|
|
|
|
} from "../components/confirm-dialog/ConfirmDialog";
|
2021-02-28 20:02:31 +00:00
|
|
|
import { DownloadDialog } from "../components/download-dialog/DownloadDialog";
|
2020-11-02 20:15:09 +00:00
|
|
|
import { ViewHeader } from "../components/view-header/ViewHeader";
|
2021-01-11 18:56:19 +00:00
|
|
|
import { useAdminClient, asyncStateFetch } from "../context/auth/AdminClient";
|
2020-11-02 20:15:09 +00:00
|
|
|
import { Credentials } from "./credentials/Credentials";
|
|
|
|
import {
|
|
|
|
convertFormValuesToObject,
|
|
|
|
convertToFormValues,
|
|
|
|
exportClient,
|
|
|
|
} from "../util";
|
|
|
|
import {
|
|
|
|
convertToMultiline,
|
2021-02-28 20:02:31 +00:00
|
|
|
MultiLine,
|
2020-11-02 20:15:09 +00:00
|
|
|
toValue,
|
|
|
|
} from "../components/multi-line-input/MultiLineInput";
|
2020-11-24 20:11:13 +00:00
|
|
|
import { ClientScopes } from "./scopes/ClientScopes";
|
|
|
|
import { EvaluateScopes } from "./scopes/EvaluateScopes";
|
2021-01-29 13:59:03 +00:00
|
|
|
import { RolesList } from "../realm-roles/RolesList";
|
2020-12-07 18:37:36 +00:00
|
|
|
import { ServiceAccount } from "./service-account/ServiceAccount";
|
2021-01-13 20:47:40 +00:00
|
|
|
import { KeycloakTabs } from "../components/keycloak-tabs/KeycloakTabs";
|
2021-02-28 20:02:31 +00:00
|
|
|
import { AdvancedTab } from "./AdvancedTab";
|
2020-11-02 20:15:09 +00:00
|
|
|
|
2020-11-30 19:33:31 +00:00
|
|
|
type ClientDetailHeaderProps = {
|
2021-02-08 20:50:03 +00:00
|
|
|
onChange: (value: boolean) => void;
|
|
|
|
value: boolean;
|
2020-11-30 19:33:31 +00:00
|
|
|
save: () => void;
|
|
|
|
client: ClientRepresentation;
|
|
|
|
toggleDownloadDialog: () => void;
|
|
|
|
toggleDeleteDialog: () => void;
|
|
|
|
};
|
|
|
|
|
|
|
|
const ClientDetailHeader = ({
|
|
|
|
onChange,
|
|
|
|
value,
|
|
|
|
save,
|
|
|
|
client,
|
|
|
|
toggleDownloadDialog,
|
|
|
|
toggleDeleteDialog,
|
|
|
|
}: ClientDetailHeaderProps) => {
|
|
|
|
const { t } = useTranslation("clients");
|
|
|
|
const [toggleDisableDialog, DisableConfirm] = useConfirmDialog({
|
|
|
|
titleKey: "clients:disableConfirmTitle",
|
|
|
|
messageKey: "clients:disableConfirm",
|
|
|
|
continueButtonLabel: "common:disable",
|
|
|
|
onConfirm: () => {
|
|
|
|
onChange(!value);
|
|
|
|
save();
|
|
|
|
},
|
|
|
|
});
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<DisableConfirm />
|
|
|
|
<ViewHeader
|
|
|
|
titleKey={client ? client.clientId! : ""}
|
|
|
|
subKey="clients:clientsExplain"
|
|
|
|
dropdownItems={[
|
|
|
|
<DropdownItem key="download" onClick={() => toggleDownloadDialog()}>
|
|
|
|
{t("downloadAdapterConfig")}
|
|
|
|
</DropdownItem>,
|
|
|
|
<DropdownItem key="export" onClick={() => exportClient(client)}>
|
|
|
|
{t("common:export")}
|
|
|
|
</DropdownItem>,
|
|
|
|
<DropdownItem key="delete" onClick={() => toggleDeleteDialog()}>
|
|
|
|
{t("common:delete")}
|
|
|
|
</DropdownItem>,
|
|
|
|
]}
|
|
|
|
isEnabled={value}
|
|
|
|
onToggle={(value) => {
|
|
|
|
if (!value) {
|
|
|
|
toggleDisableDialog();
|
|
|
|
} else {
|
|
|
|
onChange(value);
|
|
|
|
save();
|
|
|
|
}
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
2021-02-28 20:02:31 +00:00
|
|
|
export type ClientForm = Omit<
|
|
|
|
ClientRepresentation,
|
|
|
|
"redirectUris" | "webOrigins"
|
|
|
|
> & {
|
|
|
|
redirectUris: MultiLine[];
|
|
|
|
webOrigins: MultiLine[];
|
|
|
|
};
|
|
|
|
|
2020-11-02 20:15:09 +00:00
|
|
|
export const ClientDetails = () => {
|
|
|
|
const { t } = useTranslation("clients");
|
2020-11-12 12:55:52 +00:00
|
|
|
const adminClient = useAdminClient();
|
2021-02-17 21:12:25 +00:00
|
|
|
const handleError = useErrorHandler();
|
|
|
|
|
2020-11-02 20:15:09 +00:00
|
|
|
const { addAlert } = useAlerts();
|
2021-02-28 20:02:31 +00:00
|
|
|
const [downloadDialogOpen, setDownloadDialogOpen] = useState(false);
|
|
|
|
const toggleDownloadDialog = () => setDownloadDialogOpen(!downloadDialogOpen);
|
2021-03-17 07:10:30 +00:00
|
|
|
const [changeAuthenticatorOpen, setChangeAuthenticatorOpen] = useState(false);
|
|
|
|
const toggleChangeAuthenticator = () =>
|
|
|
|
setChangeAuthenticatorOpen(!changeAuthenticatorOpen);
|
2021-03-01 09:20:36 +00:00
|
|
|
const [activeTab2, setActiveTab2] = useState(30);
|
2020-11-02 20:15:09 +00:00
|
|
|
|
2021-02-28 20:02:31 +00:00
|
|
|
const form = useForm<ClientForm>();
|
2020-11-02 20:15:09 +00:00
|
|
|
const publicClient = useWatch({
|
|
|
|
control: form.control,
|
|
|
|
name: "publicClient",
|
|
|
|
defaultValue: false,
|
|
|
|
});
|
2020-12-07 18:37:36 +00:00
|
|
|
|
2021-03-01 09:20:36 +00:00
|
|
|
const { clientId } = useParams<{ clientId: string }>();
|
2020-11-02 20:15:09 +00:00
|
|
|
|
2020-11-24 20:11:13 +00:00
|
|
|
const [client, setClient] = useState<ClientRepresentation>();
|
2020-11-02 20:15:09 +00:00
|
|
|
|
2021-01-29 13:59:03 +00:00
|
|
|
const loader = async () => {
|
2021-03-01 09:20:36 +00:00
|
|
|
const roles = await adminClient.clients.listRoles({ id: clientId });
|
2021-02-28 20:02:31 +00:00
|
|
|
return _.sortBy(roles, (role) => role.name?.toUpperCase());
|
2021-01-29 13:59:03 +00:00
|
|
|
};
|
|
|
|
|
2020-11-02 20:15:09 +00:00
|
|
|
const [toggleDeleteDialog, DeleteConfirm] = useConfirmDialog({
|
|
|
|
titleKey: "clients:clientDeleteConfirmTitle",
|
|
|
|
messageKey: "clients:clientDeleteConfirm",
|
|
|
|
continueButtonLabel: "common:delete",
|
|
|
|
continueButtonVariant: ButtonVariant.danger,
|
2020-11-12 12:55:52 +00:00
|
|
|
onConfirm: async () => {
|
2020-11-02 20:15:09 +00:00
|
|
|
try {
|
2021-03-01 09:20:36 +00:00
|
|
|
await adminClient.clients.del({ id: clientId });
|
2020-11-02 20:15:09 +00:00
|
|
|
addAlert(t("clientDeletedSuccess"), AlertVariant.success);
|
|
|
|
} catch (error) {
|
|
|
|
addAlert(`${t("clientDeleteError")} ${error}`, AlertVariant.danger);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
const setupForm = (client: ClientRepresentation) => {
|
2021-02-28 20:02:31 +00:00
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
|
|
const { redirectUris, webOrigins, ...formValues } = client;
|
|
|
|
form.reset(formValues);
|
2020-11-02 20:15:09 +00:00
|
|
|
Object.entries(client).map((entry) => {
|
2021-02-23 08:55:24 +00:00
|
|
|
if (entry[0] === "redirectUris" || entry[0] === "webOrigins") {
|
2020-11-02 20:15:09 +00:00
|
|
|
form.setValue(entry[0], convertToMultiline(entry[1]));
|
|
|
|
} else if (entry[0] === "attributes") {
|
|
|
|
convertToFormValues(entry[1], "attributes", form.setValue);
|
|
|
|
} else {
|
|
|
|
form.setValue(entry[0], entry[1]);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
useEffect(() => {
|
2021-01-11 18:56:19 +00:00
|
|
|
return asyncStateFetch(
|
2021-03-01 09:20:36 +00:00
|
|
|
() => adminClient.clients.findOne({ id: clientId }),
|
2021-01-05 13:39:27 +00:00
|
|
|
(fetchedClient) => {
|
2020-11-24 20:11:13 +00:00
|
|
|
setClient(fetchedClient);
|
2020-11-12 12:55:52 +00:00
|
|
|
setupForm(fetchedClient);
|
2021-02-17 21:12:25 +00:00
|
|
|
},
|
|
|
|
handleError
|
2021-01-05 13:39:27 +00:00
|
|
|
);
|
2021-03-01 09:20:36 +00:00
|
|
|
}, [clientId]);
|
2020-11-02 20:15:09 +00:00
|
|
|
|
2021-03-17 07:10:30 +00:00
|
|
|
const save = async (confirmed: boolean | undefined = false) => {
|
2020-11-02 20:15:09 +00:00
|
|
|
if (await form.trigger()) {
|
2021-03-17 07:10:30 +00:00
|
|
|
if (
|
|
|
|
client?.publicClient &&
|
|
|
|
client?.clientAuthenticatorType !==
|
|
|
|
form.getValues("clientAuthenticatorType") &&
|
|
|
|
!confirmed
|
|
|
|
) {
|
|
|
|
toggleChangeAuthenticator();
|
|
|
|
return;
|
|
|
|
}
|
2020-11-02 20:15:09 +00:00
|
|
|
const redirectUris = toValue(form.getValues()["redirectUris"]);
|
2021-02-23 08:55:24 +00:00
|
|
|
const webOrigins = toValue(form.getValues()["webOrigins"]);
|
2021-02-28 20:02:31 +00:00
|
|
|
const attributes = convertFormValuesToObject(
|
|
|
|
form.getValues()["attributes"]
|
|
|
|
);
|
2020-11-02 20:15:09 +00:00
|
|
|
|
|
|
|
try {
|
2021-02-28 20:02:31 +00:00
|
|
|
const newClient: ClientRepresentation = {
|
|
|
|
...client,
|
2020-11-02 20:15:09 +00:00
|
|
|
...form.getValues(),
|
|
|
|
redirectUris,
|
2021-02-23 08:55:24 +00:00
|
|
|
webOrigins,
|
2020-11-02 20:15:09 +00:00
|
|
|
attributes,
|
|
|
|
};
|
2021-03-01 09:20:36 +00:00
|
|
|
await adminClient.clients.update({ id: clientId }, newClient);
|
2021-02-28 20:02:31 +00:00
|
|
|
setupForm(newClient);
|
|
|
|
setClient(newClient);
|
2020-11-02 20:15:09 +00:00
|
|
|
addAlert(t("clientSaveSuccess"), AlertVariant.success);
|
|
|
|
} catch (error) {
|
|
|
|
addAlert(`${t("clientSaveError")} '${error}'`, AlertVariant.danger);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-11-30 19:33:31 +00:00
|
|
|
if (!client) {
|
|
|
|
return (
|
|
|
|
<div className="pf-u-text-align-center">
|
|
|
|
<Spinner />
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
2020-11-02 20:15:09 +00:00
|
|
|
return (
|
|
|
|
<>
|
2021-03-17 07:10:30 +00:00
|
|
|
<ConfirmDialogModal
|
|
|
|
continueButtonLabel="common:yes"
|
|
|
|
titleKey={t("changeAuthenticatorConfirmTitle", {
|
|
|
|
clientAuthenticatorType: form.getValues("clientAuthenticatorType"),
|
|
|
|
})}
|
|
|
|
open={changeAuthenticatorOpen}
|
|
|
|
toggleDialog={toggleChangeAuthenticator}
|
|
|
|
onConfirm={() => save(true)}
|
|
|
|
>
|
|
|
|
<>
|
|
|
|
{t("changeAuthenticatorConfirm", {
|
|
|
|
clientAuthenticatorType: form.getValues("clientAuthenticatorType"),
|
|
|
|
})}
|
|
|
|
{form.getValues("clientAuthenticatorType") === "client-jwt" && (
|
|
|
|
<Alert variant="info" isInline title={t("signedJWTConfirm")} />
|
|
|
|
)}
|
|
|
|
</>
|
|
|
|
</ConfirmDialogModal>
|
2020-11-02 20:15:09 +00:00
|
|
|
<DeleteConfirm />
|
2021-02-28 20:02:31 +00:00
|
|
|
<DownloadDialog
|
|
|
|
id={client.id!}
|
|
|
|
protocol={client.protocol}
|
|
|
|
open={downloadDialogOpen}
|
|
|
|
toggleDialog={toggleDownloadDialog}
|
|
|
|
/>
|
2020-11-02 20:15:09 +00:00
|
|
|
<Controller
|
|
|
|
name="enabled"
|
|
|
|
control={form.control}
|
|
|
|
defaultValue={true}
|
2020-11-30 19:33:31 +00:00
|
|
|
render={({ onChange, value }) => (
|
|
|
|
<ClientDetailHeader
|
|
|
|
value={value}
|
|
|
|
onChange={onChange}
|
|
|
|
client={client}
|
|
|
|
save={save}
|
|
|
|
toggleDeleteDialog={toggleDeleteDialog}
|
|
|
|
toggleDownloadDialog={toggleDownloadDialog}
|
|
|
|
/>
|
|
|
|
)}
|
2020-11-02 20:15:09 +00:00
|
|
|
/>
|
|
|
|
<PageSection variant="light">
|
2021-02-28 20:02:31 +00:00
|
|
|
<FormProvider {...form}>
|
|
|
|
<KeycloakTabs isBox>
|
2020-11-02 20:15:09 +00:00
|
|
|
<Tab
|
2021-02-28 20:02:31 +00:00
|
|
|
id="settings"
|
|
|
|
eventKey="settings"
|
|
|
|
title={<TabTitleText>{t("common:settings")}</TabTitleText>}
|
2020-11-02 20:15:09 +00:00
|
|
|
>
|
2021-02-28 20:02:31 +00:00
|
|
|
<ClientSettings save={save} />
|
2020-11-02 20:15:09 +00:00
|
|
|
</Tab>
|
2021-02-28 20:02:31 +00:00
|
|
|
{publicClient && (
|
2020-11-30 19:33:31 +00:00
|
|
|
<Tab
|
2021-02-28 20:02:31 +00:00
|
|
|
id="credentials"
|
|
|
|
eventKey="credentials"
|
|
|
|
title={<TabTitleText>{t("credentials")}</TabTitleText>}
|
2020-11-30 19:33:31 +00:00
|
|
|
>
|
2021-03-01 09:20:36 +00:00
|
|
|
<Credentials clientId={clientId} save={save} />
|
2020-11-30 19:33:31 +00:00
|
|
|
</Tab>
|
2021-02-28 20:02:31 +00:00
|
|
|
)}
|
|
|
|
<Tab
|
|
|
|
id="roles"
|
|
|
|
eventKey="roles"
|
|
|
|
title={<TabTitleText>{t("roles")}</TabTitleText>}
|
|
|
|
>
|
2021-03-15 13:42:19 +00:00
|
|
|
<RolesList
|
|
|
|
loader={loader}
|
|
|
|
paginated={false}
|
|
|
|
messageBundle="clients"
|
|
|
|
/>
|
2021-02-28 20:02:31 +00:00
|
|
|
</Tab>
|
|
|
|
<Tab
|
|
|
|
id="clientScopes"
|
|
|
|
eventKey="clientScopes"
|
|
|
|
title={<TabTitleText>{t("clientScopes")}</TabTitleText>}
|
|
|
|
>
|
2021-03-01 09:20:36 +00:00
|
|
|
<Tabs
|
|
|
|
activeKey={activeTab2}
|
|
|
|
isSecondary
|
|
|
|
onSelect={(_, key) => setActiveTab2(key as number)}
|
|
|
|
>
|
2021-02-28 20:02:31 +00:00
|
|
|
<Tab
|
|
|
|
id="setup"
|
2021-03-01 09:20:36 +00:00
|
|
|
eventKey={30}
|
2021-02-28 20:02:31 +00:00
|
|
|
title={<TabTitleText>{t("setup")}</TabTitleText>}
|
|
|
|
>
|
2021-03-01 09:20:36 +00:00
|
|
|
<ClientScopes
|
|
|
|
clientId={clientId}
|
|
|
|
protocol={client!.protocol!}
|
|
|
|
/>
|
2021-02-28 20:02:31 +00:00
|
|
|
</Tab>
|
|
|
|
<Tab
|
|
|
|
id="evaluate"
|
2021-03-01 09:20:36 +00:00
|
|
|
eventKey={31}
|
2021-02-28 20:02:31 +00:00
|
|
|
title={<TabTitleText>{t("evaluate")}</TabTitleText>}
|
|
|
|
>
|
2021-03-01 09:20:36 +00:00
|
|
|
<EvaluateScopes
|
|
|
|
clientId={clientId}
|
|
|
|
protocol={client!.protocol!}
|
|
|
|
/>
|
2021-02-28 20:02:31 +00:00
|
|
|
</Tab>
|
2021-03-01 09:20:36 +00:00
|
|
|
</Tabs>
|
2021-02-28 20:02:31 +00:00
|
|
|
</Tab>
|
|
|
|
{client!.serviceAccountsEnabled && (
|
2020-11-24 20:11:13 +00:00
|
|
|
<Tab
|
2021-02-28 20:02:31 +00:00
|
|
|
id="serviceAccount"
|
|
|
|
eventKey="serviceAccount"
|
|
|
|
title={<TabTitleText>{t("serviceAccount")}</TabTitleText>}
|
2020-11-24 20:11:13 +00:00
|
|
|
>
|
2021-03-01 09:20:36 +00:00
|
|
|
<ServiceAccount clientId={clientId} />
|
2020-11-24 20:11:13 +00:00
|
|
|
</Tab>
|
2021-02-28 20:02:31 +00:00
|
|
|
)}
|
2020-12-07 18:37:36 +00:00
|
|
|
<Tab
|
2021-02-28 20:02:31 +00:00
|
|
|
id="advanced"
|
|
|
|
eventKey="advanced"
|
|
|
|
title={<TabTitleText>{t("advanced")}</TabTitleText>}
|
2020-12-07 18:37:36 +00:00
|
|
|
>
|
2021-02-28 20:02:31 +00:00
|
|
|
<AdvancedTab save={save} client={client} />
|
2020-12-07 18:37:36 +00:00
|
|
|
</Tab>
|
2021-02-28 20:02:31 +00:00
|
|
|
</KeycloakTabs>
|
|
|
|
</FormProvider>
|
2020-11-02 20:15:09 +00:00
|
|
|
</PageSection>
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
};
|