564441899b
* merge all namespaces into one added fallback namespace to the configuration to minimize changes to the keys * small fix * Fix the broken `OverridesBackend` * remove stray console log * restore ns argument * PR review * merge main --------- Co-authored-by: Jon Koops <jonkoops@gmail.com>
208 lines
7.2 KiB
TypeScript
208 lines
7.2 KiB
TypeScript
import ComponentRepresentation from "@keycloak/keycloak-admin-client/lib/defs/componentRepresentation";
|
|
import {
|
|
FormGroup,
|
|
Select,
|
|
SelectOption,
|
|
SelectVariant,
|
|
} from "@patternfly/react-core";
|
|
import { useState } from "react";
|
|
import { Controller, UseFormReturn } from "react-hook-form";
|
|
import { useTranslation } from "react-i18next";
|
|
import { HelpItem } from "ui-shared";
|
|
|
|
import { adminClient } from "../../admin-client";
|
|
import { FormAccess } from "../../components/form/FormAccess";
|
|
import { KeycloakTextInput } from "../../components/keycloak-text-input/KeycloakTextInput";
|
|
import { WizardSectionHeader } from "../../components/wizard-section-header/WizardSectionHeader";
|
|
import { useRealm } from "../../context/realm-context/RealmContext";
|
|
import { useFetch } from "../../utils/useFetch";
|
|
|
|
export type LdapSettingsGeneralProps = {
|
|
form: UseFormReturn<ComponentRepresentation>;
|
|
showSectionHeading?: boolean;
|
|
showSectionDescription?: boolean;
|
|
vendorEdit?: boolean;
|
|
};
|
|
|
|
export const LdapSettingsGeneral = ({
|
|
form,
|
|
showSectionHeading = false,
|
|
showSectionDescription = false,
|
|
vendorEdit = false,
|
|
}: LdapSettingsGeneralProps) => {
|
|
const { t } = useTranslation();
|
|
const { realm } = useRealm();
|
|
|
|
useFetch(
|
|
() => adminClient.realms.findOne({ realm }),
|
|
(result) => form.setValue("parentId", result!.id),
|
|
[],
|
|
);
|
|
const [isVendorDropdownOpen, setIsVendorDropdownOpen] = useState(false);
|
|
|
|
const setVendorDefaultValues = () => {
|
|
switch (form.getValues("config.vendor[0]")) {
|
|
case "ad":
|
|
form.setValue("config.usernameLDAPAttribute[0]", "cn");
|
|
form.setValue("config.rdnLDAPAttribute[0]", "cn");
|
|
form.setValue("config.uuidLDAPAttribute[0]", "objectGUID");
|
|
form.setValue("config.krbPrincipalAttribute[0]", "userPrincipalName");
|
|
form.setValue(
|
|
"config.userObjectClasses[0]",
|
|
"person, organizationalPerson, user",
|
|
);
|
|
break;
|
|
case "rhds":
|
|
form.setValue("config.usernameLDAPAttribute[0]", "uid");
|
|
form.setValue("config.rdnLDAPAttribute[0]", "uid");
|
|
form.setValue("config.uuidLDAPAttribute[0]", "nsuniqueid");
|
|
form.setValue("config.krbPrincipalAttribute[0]", "krbPrincipalName");
|
|
form.setValue(
|
|
"config.userObjectClasses[0]",
|
|
"inetOrgPerson, organizationalPerson",
|
|
);
|
|
break;
|
|
case "tivoli":
|
|
form.setValue("config.usernameLDAPAttribute[0]", "uid");
|
|
form.setValue("config.rdnLDAPAttribute[0]", "uid");
|
|
form.setValue("config.uuidLDAPAttribute[0]", "uniqueidentifier");
|
|
form.setValue("config.krbPrincipalAttribute[0]", "krb5PrincipalName");
|
|
form.setValue(
|
|
"config.userObjectClasses[0]",
|
|
"inetOrgPerson, organizationalPerson",
|
|
);
|
|
break;
|
|
case "edirectory":
|
|
form.setValue("config.usernameLDAPAttribute[0]", "uid");
|
|
form.setValue("config.rdnLDAPAttribute[0]", "uid");
|
|
form.setValue("config.uuidLDAPAttribute[0]", "guid");
|
|
form.setValue("config.krbPrincipalAttribute[0]", "krb5PrincipalName");
|
|
form.setValue(
|
|
"config.userObjectClasses[0]",
|
|
"inetOrgPerson, organizationalPerson",
|
|
);
|
|
break;
|
|
case "other":
|
|
form.setValue("config.usernameLDAPAttribute[0]", "uid");
|
|
form.setValue("config.rdnLDAPAttribute[0]", "uid");
|
|
form.setValue("config.uuidLDAPAttribute[0]", "entryUUID");
|
|
form.setValue("config.krbPrincipalAttribute[0]", "krb5PrincipalName");
|
|
form.setValue(
|
|
"config.userObjectClasses[0]",
|
|
"inetOrgPerson, organizationalPerson",
|
|
);
|
|
break;
|
|
default:
|
|
return "";
|
|
}
|
|
};
|
|
|
|
return (
|
|
<>
|
|
{showSectionHeading && (
|
|
<WizardSectionHeader
|
|
title={t("generalOptions")}
|
|
description={t("ldapGeneralOptionsSettingsDescription")}
|
|
showDescription={showSectionDescription}
|
|
/>
|
|
)}
|
|
<FormAccess role="manage-realm" isHorizontal>
|
|
<FormGroup
|
|
label={t("uiDisplayName")}
|
|
labelIcon={
|
|
<HelpItem
|
|
helpText={t("user-federation-help:uiDisplayNameHelp")}
|
|
fieldLabelId="user-federation:uiDisplayName"
|
|
/>
|
|
}
|
|
fieldId="kc-ui-display-name"
|
|
isRequired
|
|
validated={form.formState.errors.name ? "error" : "default"}
|
|
helperTextInvalid={form.formState.errors.name?.message}
|
|
>
|
|
{/* These hidden fields are required so data object written back matches data retrieved */}
|
|
<KeycloakTextInput
|
|
hidden
|
|
id="kc-ui-provider-id"
|
|
defaultValue="ldap"
|
|
{...form.register("providerId")}
|
|
/>
|
|
<KeycloakTextInput
|
|
hidden
|
|
id="kc-ui-provider-type"
|
|
defaultValue="org.keycloak.storage.UserStorageProvider"
|
|
{...form.register("providerType")}
|
|
/>
|
|
<KeycloakTextInput
|
|
hidden
|
|
id="kc-ui-parentId"
|
|
defaultValue={realm}
|
|
{...form.register("parentId")}
|
|
/>
|
|
<KeycloakTextInput
|
|
isRequired
|
|
id="kc-ui-display-name"
|
|
defaultValue="ldap"
|
|
data-testid="ldap-name"
|
|
validated={form.formState.errors.name ? "error" : "default"}
|
|
{...form.register("name", {
|
|
required: {
|
|
value: true,
|
|
message: `${t("validateName")}`,
|
|
},
|
|
})}
|
|
/>
|
|
</FormGroup>
|
|
<FormGroup
|
|
label={t("vendor")}
|
|
labelIcon={
|
|
<HelpItem
|
|
helpText={t("user-federation-help:vendorHelp")}
|
|
fieldLabelId="user-federation:vendor"
|
|
/>
|
|
}
|
|
fieldId="kc-vendor"
|
|
isRequired
|
|
>
|
|
<Controller
|
|
name="config.vendor[0]"
|
|
defaultValue="ad"
|
|
control={form.control}
|
|
render={({ field }) => (
|
|
<Select
|
|
isDisabled={!!vendorEdit}
|
|
toggleId="kc-vendor"
|
|
required
|
|
onToggle={() => setIsVendorDropdownOpen(!isVendorDropdownOpen)}
|
|
isOpen={isVendorDropdownOpen}
|
|
onSelect={(_, value) => {
|
|
field.onChange(value as string);
|
|
setIsVendorDropdownOpen(false);
|
|
setVendorDefaultValues();
|
|
}}
|
|
selections={field.value}
|
|
variant={SelectVariant.single}
|
|
>
|
|
<SelectOption key={0} value="ad" isPlaceholder>
|
|
Active Directory
|
|
</SelectOption>
|
|
<SelectOption key={1} value="rhds">
|
|
Red Hat Directory Server
|
|
</SelectOption>
|
|
<SelectOption key={2} value="tivoli">
|
|
Tivoli
|
|
</SelectOption>
|
|
<SelectOption key={3} value="edirectory">
|
|
Novell eDirectory
|
|
</SelectOption>
|
|
<SelectOption key={4} value="other">
|
|
Other
|
|
</SelectOption>
|
|
</Select>
|
|
)}
|
|
></Controller>
|
|
</FormGroup>
|
|
</FormAccess>
|
|
</>
|
|
);
|
|
};
|