keycloak-scim/src/user-federation/UserFederationLdapSettings.tsx

220 lines
6.8 KiB
TypeScript
Raw Normal View History

import { useState } from "react";
import {
ActionGroup,
AlertVariant,
Button,
Form,
PageSection,
2021-03-16 14:24:32 +00:00
Tab,
TabTitleText,
} from "@patternfly/react-core";
import { LdapSettingsAdvanced } from "./ldap/LdapSettingsAdvanced";
import { LdapSettingsKerberosIntegration } from "./ldap/LdapSettingsKerberosIntegration";
import { SettingsCache } from "./shared/SettingsCache";
import { LdapSettingsSynchronization } from "./ldap/LdapSettingsSynchronization";
import { LdapSettingsGeneral } from "./ldap/LdapSettingsGeneral";
import { LdapSettingsConnection } from "./ldap/LdapSettingsConnection";
import { LdapSettingsSearching } from "./ldap/LdapSettingsSearching";
import { useRealm } from "../context/realm-context/RealmContext";
import type ComponentRepresentation from "@keycloak/keycloak-admin-client/lib/defs/componentRepresentation";
import { FormProvider, useForm, useFormContext } from "react-hook-form";
2021-05-18 08:34:16 +00:00
import { useAdminClient, useFetch } from "../context/auth/AdminClient";
import { useAlerts } from "../components/alert/Alerts";
import { useTranslation } from "react-i18next";
import { useParams } from "react-router-dom";
import { useNavigate } from "react-router-dom-v5-compat";
import { ScrollForm } from "../components/scroll-form/ScrollForm";
2021-03-16 14:24:32 +00:00
import { KeycloakTabs } from "../components/keycloak-tabs/KeycloakTabs";
2021-03-29 15:52:56 +00:00
import { LdapMapperList } from "./ldap/mappers/LdapMapperList";
import { toUserFederation } from "./routes/UserFederation";
import { ExtendedHeader } from "./shared/ExtendedHeader";
2021-03-16 14:24:32 +00:00
2021-05-14 19:44:45 +00:00
type ldapComponentRepresentation = ComponentRepresentation & {
config?: {
periodicChangedUsersSync?: boolean;
periodicFullSync?: boolean;
};
};
const AddLdapFormContent = ({
save,
}: {
save: (component: ldapComponentRepresentation) => void;
}) => {
const { t } = useTranslation("user-federation");
const form = useFormContext();
2021-02-19 23:13:07 +00:00
const { id } = useParams<{ id: string }>();
const navigate = useNavigate();
2021-03-09 19:55:08 +00:00
const { realm } = useRealm();
2021-03-09 19:55:08 +00:00
return (
<>
<ScrollForm
sections={[
{
title: t("generalOptions"),
panel: <LdapSettingsGeneral form={form} vendorEdit={!!id} />,
},
{
title: t("connectionAndAuthenticationSettings"),
panel: <LdapSettingsConnection form={form} id={id} />,
},
{
title: t("ldapSearchingAndUpdatingSettings"),
panel: <LdapSettingsSearching form={form} />,
},
{
title: t("synchronizationSettings"),
panel: <LdapSettingsSynchronization form={form} />,
},
{
title: t("kerberosIntegration"),
panel: <LdapSettingsKerberosIntegration form={form} />,
},
{ title: t("cacheSettings"), panel: <SettingsCache form={form} /> },
{
title: t("advancedSettings"),
panel: <LdapSettingsAdvanced form={form} id={id} />,
},
]}
/>
<Form onSubmit={form.handleSubmit(save)}>
<ActionGroup className="keycloak__form_actions">
<Button
isDisabled={!form.formState.isDirty}
variant="primary"
type="submit"
data-testid="ldap-save"
>
{t("common:save")}
</Button>
<Button
variant="link"
onClick={() => navigate(toUserFederation({ realm }))}
data-testid="ldap-cancel"
>
{t("common:cancel")}
</Button>
</ActionGroup>
</Form>
</>
);
};
2021-10-29 16:11:06 +00:00
export default function UserFederationLdapSettings() {
const { t } = useTranslation("user-federation");
2021-05-06 13:03:25 +00:00
const form = useForm<ComponentRepresentation>({ mode: "onChange" });
const navigate = useNavigate();
const { adminClient } = useAdminClient();
const { realm } = useRealm();
const { id } = useParams<{ id: string }>();
const { addAlert, addError } = useAlerts();
const [component, setComponent] = useState<ComponentRepresentation>();
const [refreshCount, setRefreshCount] = useState(0);
const editMode = component?.config?.editMode;
const refresh = () => setRefreshCount((count) => count + 1);
2021-05-18 08:34:16 +00:00
useFetch(
async () => {
if (id) {
return await adminClient.components.findOne({ id });
}
return undefined;
},
(fetchedComponent) => {
if (fetchedComponent) {
setupForm(fetchedComponent);
setComponent(fetchedComponent);
} else if (id) {
throw new Error(t("common:notFound"));
2021-05-18 08:34:16 +00:00
}
},
[refreshCount]
2021-05-18 08:34:16 +00:00
);
const setupForm = (component: ComponentRepresentation) => {
form.reset({ ...component });
form.setValue(
"config.periodicChangedUsersSync",
component.config?.["changedSyncPeriod"][0] !== "-1"
);
2021-05-13 21:45:11 +00:00
form.setValue(
"config.periodicFullSync",
component.config?.["fullSyncPeriod"][0] !== "-1"
);
};
2021-05-14 19:44:45 +00:00
const save = async (component: ldapComponentRepresentation) => {
if (component.config?.periodicChangedUsersSync !== undefined) {
if (component.config.periodicChangedUsersSync === false) {
2021-05-13 21:45:11 +00:00
component.config.changedSyncPeriod = ["-1"];
}
delete component.config.periodicChangedUsersSync;
2021-05-13 21:45:11 +00:00
}
if (component.config?.periodicFullSync !== undefined) {
if (component.config.periodicFullSync === false) {
2021-05-13 21:45:11 +00:00
component.config.fullSyncPeriod = ["-1"];
}
delete component.config.periodicFullSync;
2021-05-13 21:45:11 +00:00
}
try {
2021-04-16 05:35:51 +00:00
if (!id) {
await adminClient.components.create(component);
navigate(toUserFederation({ realm }));
2021-04-16 05:35:51 +00:00
} else {
await adminClient.components.update({ id }, component);
2021-02-19 23:13:07 +00:00
}
addAlert(t(id ? "saveSuccess" : "createSuccess"), AlertVariant.success);
refresh();
} catch (error) {
addError(`user-federation:${id ? "saveError" : "createError"}`, error);
}
};
return (
<FormProvider {...form}>
<ExtendedHeader
provider="LDAP"
noDivider
editMode={editMode}
save={() => form.handleSubmit(save)()}
/>
<PageSection variant="light" className="pf-u-p-0">
{id ? (
<KeycloakTabs isBox>
<Tab
id="settings"
eventKey="settings"
title={<TabTitleText>{t("common:settings")}</TabTitleText>}
>
<PageSection variant="light">
<AddLdapFormContent save={save} />
</PageSection>
</Tab>
<Tab
id="mappers"
eventKey="mappers"
title={<TabTitleText>{t("common:mappers")}</TabTitleText>}
data-testid="ldap-mappers-tab"
>
2022-05-11 09:42:46 +00:00
<LdapMapperList />
</Tab>
</KeycloakTabs>
) : (
<PageSection variant="light">
<AddLdapFormContent save={save} />
</PageSection>
)}
</PageSection>
</FormProvider>
);
2021-10-29 16:11:06 +00:00
}