2021-07-13 12:56:44 +00:00
|
|
|
import React, { useState } from "react";
|
2021-05-04 08:11:58 +00:00
|
|
|
import { useTranslation } from "react-i18next";
|
|
|
|
import FileSaver from "file-saver";
|
|
|
|
import {
|
|
|
|
ActionGroup,
|
|
|
|
AlertVariant,
|
|
|
|
Button,
|
|
|
|
Card,
|
|
|
|
CardBody,
|
|
|
|
CardHeader,
|
|
|
|
CardTitle,
|
|
|
|
FormGroup,
|
|
|
|
PageSection,
|
|
|
|
Switch,
|
|
|
|
Text,
|
|
|
|
TextContent,
|
|
|
|
TextInput,
|
|
|
|
} from "@patternfly/react-core";
|
|
|
|
|
2021-08-26 08:39:35 +00:00
|
|
|
import type CertificateRepresentation from "@keycloak/keycloak-admin-client/lib/defs/certificateRepresentation";
|
|
|
|
import type KeyStoreConfig from "@keycloak/keycloak-admin-client/lib/defs/keystoreConfig";
|
2021-05-04 08:11:58 +00:00
|
|
|
import { HelpItem } from "../../components/help-enabler/HelpItem";
|
|
|
|
import { FormAccess } from "../../components/form-access/FormAccess";
|
|
|
|
import { Controller, useFormContext, useWatch } from "react-hook-form";
|
2021-05-04 17:58:18 +00:00
|
|
|
import type { ClientForm } from "../ClientDetails";
|
2021-05-04 08:11:58 +00:00
|
|
|
import { GenerateKeyDialog } from "./GenerateKeyDialog";
|
2021-04-29 15:01:27 +00:00
|
|
|
import { useFetch, useAdminClient } from "../../context/auth/AdminClient";
|
2021-05-04 08:11:58 +00:00
|
|
|
import { useAlerts } from "../../components/alert/Alerts";
|
|
|
|
import { ImportKeyDialog, ImportFile } from "./ImportKeyDialog";
|
2021-10-12 09:28:55 +00:00
|
|
|
import { Certificate } from "./Certificate";
|
2021-05-04 08:11:58 +00:00
|
|
|
|
|
|
|
type KeysProps = {
|
|
|
|
save: () => void;
|
|
|
|
clientId: string;
|
|
|
|
};
|
|
|
|
|
|
|
|
const attr = "jwt.credential";
|
|
|
|
|
|
|
|
export const Keys = ({ clientId, save }: KeysProps) => {
|
|
|
|
const { t } = useTranslation("clients");
|
|
|
|
const {
|
|
|
|
control,
|
|
|
|
register,
|
|
|
|
formState: { isDirty },
|
|
|
|
} = useFormContext<ClientForm>();
|
|
|
|
const adminClient = useAdminClient();
|
2021-07-28 12:01:42 +00:00
|
|
|
const { addAlert, addError } = useAlerts();
|
2021-05-04 08:11:58 +00:00
|
|
|
|
|
|
|
const [keyInfo, setKeyInfo] = useState<CertificateRepresentation>();
|
|
|
|
const [openGenerateKeys, setOpenGenerateKeys] = useState(false);
|
|
|
|
const [openImportKeys, setOpenImportKeys] = useState(false);
|
|
|
|
|
|
|
|
const useJwksUrl = useWatch({
|
|
|
|
control,
|
|
|
|
name: "attributes.use-jwks-url",
|
|
|
|
defaultValue: "false",
|
|
|
|
});
|
2021-04-29 15:01:27 +00:00
|
|
|
|
|
|
|
useFetch(
|
|
|
|
() => adminClient.clients.getKeyInfo({ id: clientId, attr }),
|
|
|
|
(info) => setKeyInfo(info),
|
2021-05-04 08:11:58 +00:00
|
|
|
[]
|
|
|
|
);
|
|
|
|
|
|
|
|
const generate = async (config: KeyStoreConfig) => {
|
|
|
|
try {
|
|
|
|
const keyStore = await adminClient.clients.generateAndDownloadKey(
|
|
|
|
{
|
|
|
|
id: clientId,
|
|
|
|
attr,
|
|
|
|
},
|
|
|
|
config
|
|
|
|
);
|
|
|
|
FileSaver.saveAs(
|
|
|
|
new Blob([keyStore], { type: "application/octet-stream" }),
|
|
|
|
`keystore.${config.format == "PKCS12" ? "p12" : "jks"}`
|
|
|
|
);
|
|
|
|
addAlert(t("generateSuccess"), AlertVariant.success);
|
|
|
|
} catch (error) {
|
2021-07-28 12:01:42 +00:00
|
|
|
addError("clients:generateError", error);
|
2021-05-04 08:11:58 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
const importKey = async (importFile: ImportFile) => {
|
|
|
|
try {
|
|
|
|
const formData = new FormData();
|
|
|
|
const { file, ...rest } = importFile;
|
|
|
|
Object.entries(rest).map((entry) =>
|
|
|
|
formData.append(entry[0], entry[1] as string)
|
|
|
|
);
|
|
|
|
formData.append("file", file.value);
|
|
|
|
|
|
|
|
await adminClient.clients.uploadCertificate(
|
|
|
|
{ id: clientId, attr },
|
|
|
|
formData
|
|
|
|
);
|
|
|
|
addAlert(t("importSuccess"), AlertVariant.success);
|
|
|
|
} catch (error) {
|
2021-07-28 12:01:42 +00:00
|
|
|
addError("clients:importError", error);
|
2021-05-04 08:11:58 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
return (
|
|
|
|
<PageSection variant="light" className="keycloak__form">
|
|
|
|
{openGenerateKeys && (
|
|
|
|
<GenerateKeyDialog
|
|
|
|
toggleDialog={() => setOpenGenerateKeys(!openGenerateKeys)}
|
|
|
|
save={generate}
|
|
|
|
/>
|
|
|
|
)}
|
|
|
|
{openImportKeys && (
|
|
|
|
<ImportKeyDialog
|
|
|
|
toggleDialog={() => setOpenImportKeys(!openImportKeys)}
|
|
|
|
save={importKey}
|
|
|
|
/>
|
|
|
|
)}
|
|
|
|
<Card isFlat>
|
|
|
|
<CardHeader>
|
|
|
|
<CardTitle>{t("jwksUrlConfig")}</CardTitle>
|
|
|
|
</CardHeader>
|
|
|
|
<CardBody>
|
|
|
|
<TextContent>
|
|
|
|
<Text>{t("keysIntro")}</Text>
|
|
|
|
</TextContent>
|
|
|
|
</CardBody>
|
|
|
|
<CardBody>
|
|
|
|
<FormAccess role="manage-clients" isHorizontal>
|
|
|
|
<FormGroup
|
|
|
|
hasNoPaddingTop
|
|
|
|
label={t("useJwksUrl")}
|
|
|
|
fieldId="useJwksUrl"
|
|
|
|
labelIcon={
|
|
|
|
<HelpItem
|
|
|
|
helpText="clients-help:useJwksUrl"
|
|
|
|
forLabel={t("useJwksUrl")}
|
2021-07-12 14:09:14 +00:00
|
|
|
forID={t(`common:helpLabel`, { label: t("useJwksUrl") })}
|
2021-05-04 08:11:58 +00:00
|
|
|
/>
|
|
|
|
}
|
|
|
|
>
|
|
|
|
<Controller
|
|
|
|
name="attributes.use-jwks-url"
|
|
|
|
defaultValue="false"
|
|
|
|
control={control}
|
|
|
|
render={({ onChange, value }) => (
|
|
|
|
<Switch
|
|
|
|
data-testid="useJwksUrl"
|
2021-07-12 14:09:14 +00:00
|
|
|
id="useJwksUrl-switch"
|
2021-05-04 08:11:58 +00:00
|
|
|
label={t("common:on")}
|
|
|
|
labelOff={t("common:off")}
|
|
|
|
isChecked={value === "true"}
|
|
|
|
onChange={(value) => onChange(`${value}`)}
|
|
|
|
/>
|
|
|
|
)}
|
|
|
|
/>
|
|
|
|
</FormGroup>
|
2021-08-26 12:15:28 +00:00
|
|
|
{useJwksUrl !== "true" &&
|
|
|
|
(keyInfo ? (
|
2021-10-12 09:28:55 +00:00
|
|
|
<Certificate plain keyInfo={keyInfo} />
|
2021-08-26 12:15:28 +00:00
|
|
|
) : (
|
|
|
|
"No client certificate configured"
|
|
|
|
))}
|
2021-05-04 08:11:58 +00:00
|
|
|
{useJwksUrl === "true" && (
|
|
|
|
<FormGroup
|
|
|
|
label={t("jwksUrl")}
|
|
|
|
fieldId="jwksUrl"
|
|
|
|
labelIcon={
|
|
|
|
<HelpItem
|
|
|
|
helpText="clients-help:jwksUrl"
|
|
|
|
forLabel={t("jwksUrl")}
|
|
|
|
forID="jwksUrl"
|
|
|
|
/>
|
|
|
|
}
|
|
|
|
>
|
|
|
|
<TextInput
|
|
|
|
type="text"
|
|
|
|
id="jwksUrl"
|
|
|
|
name="attributes.jwks-url"
|
|
|
|
ref={register}
|
|
|
|
/>
|
|
|
|
</FormGroup>
|
|
|
|
)}
|
|
|
|
<ActionGroup>
|
|
|
|
<Button
|
|
|
|
data-testid="saveKeys"
|
|
|
|
onClick={save}
|
|
|
|
isDisabled={!isDirty}
|
|
|
|
>
|
|
|
|
{t("common:save")}
|
|
|
|
</Button>
|
|
|
|
<Button
|
|
|
|
data-testid="generate"
|
|
|
|
variant="secondary"
|
|
|
|
onClick={() => setOpenGenerateKeys(true)}
|
|
|
|
>
|
|
|
|
{t("generateNewKeys")}
|
|
|
|
</Button>
|
|
|
|
<Button
|
|
|
|
data-testid="import"
|
|
|
|
variant="secondary"
|
|
|
|
onClick={() => setOpenImportKeys(true)}
|
|
|
|
isDisabled={useJwksUrl === "true"}
|
|
|
|
>
|
|
|
|
{t("import")}
|
|
|
|
</Button>
|
|
|
|
</ActionGroup>
|
|
|
|
</FormAccess>
|
|
|
|
</CardBody>
|
|
|
|
</Card>
|
|
|
|
</PageSection>
|
|
|
|
);
|
|
|
|
};
|