keycloak-scim/apps/admin-ui/src/clients/add/SamlSignature.tsx

203 lines
6.4 KiB
TypeScript
Raw Normal View History

import { useState } from "react";
2021-10-05 10:32:20 +00:00
import { useTranslation } from "react-i18next";
import { Controller, useFormContext } from "react-hook-form";
import {
FormGroup,
Select,
SelectOption,
SelectVariant,
} from "@patternfly/react-core";
import type ClientRepresentation from "@keycloak/keycloak-admin-client/lib/defs/clientRepresentation";
import { convertAttributeNameToForm } from "../../util";
2021-10-05 10:32:20 +00:00
import { FormAccess } from "../../components/form-access/FormAccess";
import { HelpItem } from "../../components/help-enabler/HelpItem";
import { Toggle } from "./SamlConfig";
const SIGNATURE_ALGORITHMS = [
"RSA_SHA1",
"RSA_SHA256",
"RSA_SHA256_MGF1",
"RSA_SHA512",
"RSA_SHA512_MGF1",
"DSA_SHA1",
] as const;
const KEYNAME_TRANSFORMER = ["NONE", "KEY_ID", "CERT_SUBJECT"] as const;
const CANONICALIZATION = [
{ name: "EXCLUSIVE", value: "http://www.w3.org/2001/10/xml-exc-c14n#" },
2021-10-05 10:32:20 +00:00
{
name: "EXCLUSIVE_WITH_COMMENTS",
value: "http://www.w3.org/2001/10/xml-exc-c14n#WithComments",
2021-10-05 10:32:20 +00:00
},
{
name: "INCLUSIVE",
value: "http://www.w3.org/TR/2001/REC-xml-c14n-20010315",
2021-10-05 10:32:20 +00:00
},
{
name: "INCLUSIVE_WITH_COMMENTS",
value: "http://www.w3.org/TR/2001/REC-xml-c14n-20010315#WithComments",
2021-10-05 10:32:20 +00:00
},
] as const;
export const SamlSignature = () => {
const { t } = useTranslation("clients");
const [algOpen, setAlgOpen] = useState(false);
const [keyOpen, setKeyOpen] = useState(false);
const [canOpen, setCanOpen] = useState(false);
const { control, watch } = useFormContext<ClientRepresentation>();
2021-10-05 10:32:20 +00:00
2022-09-29 11:07:02 +00:00
const signDocs = watch(
convertAttributeNameToForm("attributes.saml.server.signature")
);
const signAssertion = watch(
convertAttributeNameToForm("attributes.saml.assertion.signature")
);
2021-10-05 10:32:20 +00:00
return (
<FormAccess
isHorizontal
role="manage-clients"
className="keycloak__capability-config__form"
>
<Toggle
name={convertAttributeNameToForm("attributes.saml.server.signature")}
label="signDocuments"
/>
<Toggle
name={convertAttributeNameToForm("attributes.saml.assertion.signature")}
2021-10-05 10:32:20 +00:00
label="signAssertions"
/>
{(signDocs === "true" || signAssertion === "true") && (
<>
<FormGroup
label={t("signatureAlgorithm")}
fieldId="signatureAlgorithm"
labelIcon={
<HelpItem
helpText="clients-help:signatureAlgorithm"
2021-12-14 14:56:36 +00:00
fieldLabelId="clients:signatureAlgorithm"
2021-10-05 10:32:20 +00:00
/>
}
>
<Controller
name={convertAttributeNameToForm(
"attributes.saml.signature.algorithm"
)}
2021-10-05 10:32:20 +00:00
defaultValue={SIGNATURE_ALGORITHMS[0]}
Key
control={control}
render={({ onChange, value }) => (
<Select
toggleId="signatureAlgorithm"
onToggle={setAlgOpen}
2021-10-05 10:32:20 +00:00
onSelect={(_, value) => {
onChange(value.toString());
setAlgOpen(false);
}}
selections={value}
variant={SelectVariant.single}
aria-label={t("signatureAlgorithm")}
isOpen={algOpen}
>
{SIGNATURE_ALGORITHMS.map((algorithm) => (
<SelectOption
selected={algorithm === value}
key={algorithm}
value={algorithm}
/>
))}
</Select>
)}
/>
</FormGroup>
<FormGroup
label={t("signatureKeyName")}
fieldId="signatureKeyName"
labelIcon={
<HelpItem
helpText="clients-help:signatureKeyName"
2021-12-14 14:56:36 +00:00
fieldLabelId="clients:signatureKeyName"
2021-10-05 10:32:20 +00:00
/>
}
>
<Controller
name={convertAttributeNameToForm(
"attributes.saml.server.signature.keyinfo$xmlSigKeyInfoKeyNameTransformer"
)}
2021-10-05 10:32:20 +00:00
defaultValue={KEYNAME_TRANSFORMER[0]}
control={control}
render={({ onChange, value }) => (
<Select
toggleId="signatureKeyName"
onToggle={setKeyOpen}
2021-10-05 10:32:20 +00:00
onSelect={(_, value) => {
onChange(value.toString());
setKeyOpen(false);
}}
selections={value}
variant={SelectVariant.single}
aria-label={t("signatureKeyName")}
isOpen={keyOpen}
>
{KEYNAME_TRANSFORMER.map((key) => (
<SelectOption
selected={key === value}
key={key}
value={key}
/>
))}
</Select>
)}
/>
</FormGroup>
<FormGroup
label={t("canonicalization")}
fieldId="canonicalization"
labelIcon={
<HelpItem
helpText="clients-help:canonicalization"
2021-12-14 14:56:36 +00:00
fieldLabelId="clients:canonicalization"
2021-10-05 10:32:20 +00:00
/>
}
>
<Controller
name="attributes.saml_signature_canonicalization_method"
defaultValue={CANONICALIZATION[0].value}
control={control}
render={({ onChange, value }) => (
<Select
toggleId="canonicalization"
onToggle={setCanOpen}
2021-10-05 10:32:20 +00:00
onSelect={(_, value) => {
onChange(value.toString());
setCanOpen(false);
}}
selections={
CANONICALIZATION.find((can) => can.value === value)?.name
}
variant={SelectVariant.single}
aria-label={t("canonicalization")}
isOpen={canOpen}
>
{CANONICALIZATION.map((can) => (
<SelectOption
selected={can.value === value}
key={can.name}
value={can.value}
>
{can.name}
</SelectOption>
))}
</Select>
)}
/>
</FormGroup>
</>
)}
</FormAccess>
);
};