d22095fc03
* add create client policy form; WIP add client policy tests checkout realm settings test from master RealmSettingsPage.ts master remove comment and add missing translation fix tests PR feedback from Jon and Erik * rebase * replace hardcoded URL with path * fix tests * editClientPolicy * edit client policy * rename test * feedback from jon
300 lines
9.5 KiB
TypeScript
300 lines
9.5 KiB
TypeScript
import React, { useState } from "react";
|
|
import {
|
|
ActionGroup,
|
|
AlertVariant,
|
|
Button,
|
|
ButtonVariant,
|
|
Divider,
|
|
DropdownItem,
|
|
Flex,
|
|
FlexItem,
|
|
FormGroup,
|
|
PageSection,
|
|
Text,
|
|
TextArea,
|
|
TextInput,
|
|
TextVariants,
|
|
ValidatedOptions,
|
|
} from "@patternfly/react-core";
|
|
import { useTranslation } from "react-i18next";
|
|
import { useForm } from "react-hook-form";
|
|
import { FormAccess } from "../components/form-access/FormAccess";
|
|
import { ViewHeader } from "../components/view-header/ViewHeader";
|
|
import { Link, useHistory, useParams } from "react-router-dom";
|
|
import { useRealm } from "../context/realm-context/RealmContext";
|
|
import { useAlerts } from "../components/alert/Alerts";
|
|
import { useAdminClient, useFetch } from "../context/auth/AdminClient";
|
|
import type ClientProfileRepresentation from "@keycloak/keycloak-admin-client/lib/defs/clientProfileRepresentation";
|
|
import { HelpItem } from "../components/help-enabler/HelpItem";
|
|
import { PlusCircleIcon } from "@patternfly/react-icons";
|
|
import "./RealmSettingsSection.css";
|
|
import { useConfirmDialog } from "../components/confirm-dialog/ConfirmDialog";
|
|
import type ClientPolicyRepresentation from "@keycloak/keycloak-admin-client/lib/defs/clientPolicyRepresentation";
|
|
import { toClientPolicies } from "./routes/ClientPolicies";
|
|
import type { EditClientPolicyParams } from "./routes/EditClientPolicy";
|
|
|
|
type NewClientPolicyForm = Required<ClientPolicyRepresentation>;
|
|
|
|
const defaultValues: NewClientPolicyForm = {
|
|
name: "",
|
|
description: "",
|
|
conditions: [],
|
|
enabled: true,
|
|
profiles: [],
|
|
};
|
|
|
|
export const NewClientPolicyForm = () => {
|
|
const { t } = useTranslation("realm-settings");
|
|
const { errors, reset: resetForm } = useForm<NewClientPolicyForm>({
|
|
defaultValues,
|
|
});
|
|
const { realm } = useRealm();
|
|
const { policyName } = useParams<EditClientPolicyParams>();
|
|
const { addAlert, addError } = useAlerts();
|
|
const adminClient = useAdminClient();
|
|
const [policies, setPolicies] = useState<ClientProfileRepresentation[]>([]);
|
|
const [
|
|
showAddConditionsAndProfilesForm,
|
|
setShowAddConditionsAndProfilesForm,
|
|
] = useState(false);
|
|
|
|
const [createdPolicy, setCreatedPolicy] =
|
|
useState<ClientPolicyRepresentation>();
|
|
|
|
const history = useHistory();
|
|
const form = useForm<ClientPolicyRepresentation>({ mode: "onChange" });
|
|
|
|
useFetch(
|
|
() => adminClient.clientPolicies.listPolicies(),
|
|
(policies) => {
|
|
setPolicies(policies.policies ?? []);
|
|
const currentPolicy = policies.policies?.find(
|
|
(item) => item.name === policyName
|
|
);
|
|
if (currentPolicy) {
|
|
setupForm(currentPolicy);
|
|
}
|
|
},
|
|
[]
|
|
);
|
|
|
|
const setupForm = (policy: ClientPolicyRepresentation) => {
|
|
resetForm();
|
|
Object.entries(policy).map(([key, value]) => {
|
|
form.setValue(key, value);
|
|
});
|
|
};
|
|
|
|
const save = async () => {
|
|
const createdForm = form.getValues();
|
|
const createdPolicy = {
|
|
...createdForm,
|
|
profiles: [],
|
|
conditions: [],
|
|
};
|
|
|
|
const policyNameExists = policies.find(
|
|
(policy) => policy.name === createdPolicy.name
|
|
);
|
|
|
|
const res = policies.map((policy) =>
|
|
policy.name === createdPolicy.name ? createdPolicy : policy
|
|
);
|
|
|
|
const allPolicies = policyNameExists ? res : policies.concat(createdForm);
|
|
|
|
try {
|
|
await adminClient.clientPolicies.updatePolicy({
|
|
policies: allPolicies,
|
|
});
|
|
addAlert(
|
|
t("realm-settings:createClientPolicySuccess"),
|
|
AlertVariant.success
|
|
);
|
|
setShowAddConditionsAndProfilesForm(true);
|
|
setCreatedPolicy(createdPolicy);
|
|
} catch (error) {
|
|
addError("realm-settings:createClientProfileError", error);
|
|
}
|
|
};
|
|
|
|
const [toggleDeleteDialog, DeleteConfirm] = useConfirmDialog({
|
|
titleKey: t("deleteClientProfileConfirmTitle"),
|
|
messageKey: t("deleteClientProfileConfirm"),
|
|
continueButtonLabel: t("delete"),
|
|
continueButtonVariant: ButtonVariant.danger,
|
|
onConfirm: async () => {
|
|
const updatedPolicies = policies.filter(
|
|
(policy) => policy.name !== createdPolicy?.name
|
|
);
|
|
|
|
try {
|
|
await adminClient.clientPolicies.updatePolicy({
|
|
policies: updatedPolicies,
|
|
});
|
|
addAlert(t("deleteClientSuccess"), AlertVariant.success);
|
|
history.push(toClientPolicies({ realm }));
|
|
} catch (error) {
|
|
addError(t("deleteClientError"), error);
|
|
}
|
|
},
|
|
});
|
|
|
|
return (
|
|
<>
|
|
<DeleteConfirm />
|
|
<ViewHeader
|
|
titleKey={
|
|
showAddConditionsAndProfilesForm || policyName
|
|
? createdPolicy?.name! || policyName
|
|
: t("createPolicy")
|
|
}
|
|
divider
|
|
dropdownItems={
|
|
showAddConditionsAndProfilesForm
|
|
? [
|
|
<DropdownItem
|
|
key="delete"
|
|
value="delete"
|
|
onClick={() => {
|
|
toggleDeleteDialog;
|
|
}}
|
|
data-testid="deleteClientProfileDropdown"
|
|
>
|
|
{t("deleteClientProfile")}
|
|
</DropdownItem>,
|
|
]
|
|
: undefined
|
|
}
|
|
/>
|
|
<PageSection variant="light">
|
|
<FormAccess isHorizontal role="view-realm" className="pf-u-mt-lg">
|
|
<FormGroup
|
|
label={t("common:name")}
|
|
fieldId="kc-name"
|
|
isRequired
|
|
helperTextInvalid={t("common:required")}
|
|
validated={
|
|
errors.name ? ValidatedOptions.error : ValidatedOptions.default
|
|
}
|
|
>
|
|
<TextInput
|
|
ref={form.register({ required: true })}
|
|
type="text"
|
|
id="kc-client-profile-name"
|
|
name="name"
|
|
data-testid="client-policy-name"
|
|
/>
|
|
</FormGroup>
|
|
<FormGroup label={t("common:description")} fieldId="kc-description">
|
|
<TextArea
|
|
name="description"
|
|
aria-label={t("description")}
|
|
ref={form.register()}
|
|
type="text"
|
|
id="kc-client-policy-description"
|
|
data-testid="client-policy-description"
|
|
/>
|
|
</FormGroup>
|
|
<ActionGroup>
|
|
<Button
|
|
variant="primary"
|
|
onClick={save}
|
|
data-testid="saveCreatePolicy"
|
|
>
|
|
{t("common:save")}
|
|
</Button>
|
|
<Button
|
|
id="cancelCreatePolicy"
|
|
variant="secondary"
|
|
onClick={() =>
|
|
showAddConditionsAndProfilesForm
|
|
? resetForm(createdPolicy)
|
|
: history.push(toClientPolicies({ realm }))
|
|
}
|
|
data-testid="cancelCreatePolicy"
|
|
>
|
|
{showAddConditionsAndProfilesForm
|
|
? t("realm-settings:reload")
|
|
: t("common:cancel")}
|
|
</Button>
|
|
</ActionGroup>
|
|
{(showAddConditionsAndProfilesForm || policyName) && (
|
|
<>
|
|
<Flex>
|
|
<FlexItem>
|
|
<Text className="kc-conditions" component={TextVariants.h1}>
|
|
{t("conditions")}
|
|
<HelpItem
|
|
helpText={t("realm-settings-help:conditions")}
|
|
forLabel={t("conditionsHelpItem")}
|
|
forID={t("conditions")}
|
|
/>
|
|
</Text>
|
|
</FlexItem>
|
|
<FlexItem align={{ default: "alignRight" }}>
|
|
<Button
|
|
id="addCondition"
|
|
component={(props) => (
|
|
<Link
|
|
{...props}
|
|
to={`/${realm}/realm-settings/clientPolicies`}
|
|
></Link>
|
|
)}
|
|
variant="link"
|
|
className="kc-addCondition"
|
|
data-testid="cancelCreateProfile"
|
|
icon={<PlusCircleIcon />}
|
|
>
|
|
{t("realm-settings:addCondition")}
|
|
</Button>
|
|
</FlexItem>
|
|
</Flex>
|
|
<Divider />
|
|
<Text className="kc-emptyConditions" component={TextVariants.h6}>
|
|
{t("realm-settings:emptyConditions")}
|
|
</Text>
|
|
</>
|
|
)}
|
|
{(showAddConditionsAndProfilesForm || policyName) && (
|
|
<>
|
|
<Flex>
|
|
<FlexItem>
|
|
<Text
|
|
className="kc-client-profiles"
|
|
component={TextVariants.h1}
|
|
>
|
|
{t("clientProfiles")}
|
|
<HelpItem
|
|
helpText={t("realm-settings-help:clientProfiles")}
|
|
forLabel={t("clientProfilesHelpItem")}
|
|
forID={t("clientProfiles")}
|
|
/>
|
|
</Text>
|
|
</FlexItem>
|
|
<FlexItem align={{ default: "alignRight" }}>
|
|
<Button
|
|
id="addExecutor"
|
|
variant="link"
|
|
className="kc-addClientProfile"
|
|
data-testid="cancelCreateProfile"
|
|
icon={<PlusCircleIcon />}
|
|
>
|
|
{t("realm-settings:addClientProfile")}
|
|
</Button>
|
|
</FlexItem>
|
|
</Flex>
|
|
<Divider />
|
|
<Text
|
|
className="kc-emptyClientProfiles"
|
|
component={TextVariants.h6}
|
|
>
|
|
{t("realm-settings:emptyProfiles")}
|
|
</Text>
|
|
</>
|
|
)}
|
|
</FormAccess>
|
|
</PageSection>
|
|
</>
|
|
);
|
|
};
|