index on authEvaluateTab: f0a2494d Add nexus profile for releases (#1704) (#1961)

auth evaluate wip

wip auth evaluate tab

add identity information and permissions

help text and wip evaluate

wip contextual attributes

wip contextual attributes

add conditional dropdown for auth method

wip resource fields

scopes and context inputs working

fix resources error and update onChange

package-lock

cleanup: remove comments and log stmts

add conditional fields when applyToResourceType is true

package.json from main

PR feedback from Erik

Co-authored-by: Erik Jan de Wit <edewit@redhat.com>

Update src/clients/authorization/AuthorizationEvaluate.tsx

Co-authored-by: Erik Jan de Wit <edewit@redhat.com>

handleSubmit

remove log stmt

fix cypress test

PR feedback from Erik

try fixing policies test

PR feedback from Jon

Co-authored-by: Jon Koops <jonkoops@gmail.com>

PR feedback from Jon

rename id

revert client policy test

reset

add trigger

authEvaluateReset

conditionally render based on type

Apply suggestions from code review

Co-authored-by: Jon Koops <jonkoops@gmail.com>

PR feedback

remove controller

Update src/components/attribute-input/AttributeInput.tsx

Co-authored-by: Jon Koops <jonkoops@gmail.com>

PR feedback

Update src/clients/authorization/AuthorizationEvaluate.tsx

Co-authored-by: Jon Koops <jonkoops@gmail.com>

remove reset
This commit is contained in:
Jenny 2022-02-15 12:52:46 -05:00 committed by GitHub
parent a9e67b5fc4
commit 158bd07398
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 110 additions and 72 deletions

View file

@ -598,7 +598,6 @@ export default function ClientDetails() {
clientRoles={clientRoles}
users={users}
save={save}
reset={() => setupForm(client)}
/>
</Tab>
<Tab

View file

@ -28,6 +28,18 @@ import { defaultContextAttributes } from "../utils";
import type ResourceRepresentation from "@keycloak/keycloak-admin-client/lib/defs/resourceRepresentation";
import { useParams } from "react-router-dom";
import type ScopeRepresentation from "@keycloak/keycloak-admin-client/lib/defs/scopeRepresentation";
import type { KeyValueType } from "../../components/attribute-form/attribute-convert";
interface EvaluateFormInputs
extends Omit<ResourceEvaluation, "context" | "resources"> {
applyToResource: boolean;
alias: string;
authScopes: string[];
context: {
attributes: Record<string, string>[];
};
resources: Record<string, string>[];
}
export type AttributeType = {
key: string;
@ -42,20 +54,28 @@ type ClientSettingsProps = {
clients: ClientRepresentation[];
clientName?: string;
save: () => void;
reset: () => void;
users: UserRepresentation[];
clientRoles: RoleRepresentation[];
};
export type AttributeForm = Omit<
EvaluateFormInputs,
"context" | "resources"
> & {
context: {
attributes?: KeyValueType[];
};
resources?: KeyValueType[];
};
export const AuthorizationEvaluate = ({
clients,
clientRoles,
clientName,
users,
reset,
}: ClientSettingsProps) => {
const form = useFormContext<ResourceEvaluation>();
const { control } = form;
const form = useFormContext<EvaluateFormInputs>();
const { control, reset, trigger } = form;
const { t } = useTranslation("clients");
const adminClient = useAdminClient();
const realm = useRealm();
@ -90,15 +110,27 @@ export const AuthorizationEvaluate = ({
[]
);
const evaluate = (formValues: ResourceEvaluation) => {
const evaluate = async () => {
if (!(await trigger())) {
return;
}
const formValues = form.getValues();
const keys = formValues.resources.map(({ key }) => key);
const resEval: ResourceEvaluation = {
roleIds: formValues.roleIds ?? [],
clientId: selectedClient ? selectedClient.id! : clientId,
userId: selectedUser?.id!,
resources: resources.filter((resource) => keys.includes(resource.name!)),
entitlements: false,
context: formValues.context,
resources: formValues.resources,
clientId: selectedClient?.id!,
context: {
attributes: Object.fromEntries(
formValues.context.attributes
.filter((item) => item.key || item.value !== "")
.map(({ key, value }) => [key, value])
),
},
};
return adminClient.clients.evaluateResource(
{ id: clientId!, realm: realm.realm },
resEval
@ -128,7 +160,10 @@ export const AuthorizationEvaluate = ({
fieldId="client"
>
<Controller
name="client"
name="clientId"
rules={{
validate: (value) => value.length > 0,
}}
defaultValue={clientName}
control={control}
render={({ onChange, value }) => (
@ -140,7 +175,7 @@ export const AuthorizationEvaluate = ({
onChange((value as ClientRepresentation).clientId);
setClientsDropdownOpen(false);
}}
selections={value}
selections={selectedClient === value ? value : clientName}
variant={SelectVariant.typeahead}
aria-label={t("client")}
isOpen={clientsDropdownOpen}
@ -171,6 +206,9 @@ export const AuthorizationEvaluate = ({
>
<Controller
name="userId"
rules={{
validate: (value) => value.length > 0,
}}
defaultValue=""
control={control}
render={({ onChange, value }) => (
@ -212,7 +250,7 @@ export const AuthorizationEvaluate = ({
fieldId="realmRole"
>
<Controller
name="rolesIds"
name="roleIds"
placeholderText={t("selectARole")}
control={control}
defaultValue={[]}
@ -297,7 +335,10 @@ export const AuthorizationEvaluate = ({
fieldId={name!}
>
<AttributeInput
selectableValues={resources.map((item) => item.name!)}
selectableValues={resources.map<AttributeType>((item) => ({
name: item.name!,
key: item._id!,
}))}
resources={resources}
isKeySelectable
name="resources"
@ -390,35 +431,33 @@ export const AuthorizationEvaluate = ({
fieldId={name!}
>
<AttributeInput
selectableValues={defaultContextAttributes.map(
(item) => item.name
)}
selectableValues={defaultContextAttributes}
isKeySelectable
name="context"
name="context.attributes"
/>
</FormGroup>
</ExpandableSection>
</FormAccess>
<ActionGroup>
<Button data-testid="authorization-eval" type="submit">
<Button data-testid="authorization-eval" onClick={() => evaluate()}>
{t("evaluate")}
</Button>
<Button
data-testid="authorization-revert"
variant="link"
onClick={reset}
onClick={() => reset()}
>
{t("common:revert")}
</Button>
<Button
data-testid="authorization-revert"
variant="primary"
onClick={reset}
onClick={() => reset()}
isDisabled
>
{t("lastEvaluation")}
</Button>
</ActionGroup>
</FormAccess>
</FormPanel>
</PageSection>
);

View file

@ -5,7 +5,10 @@ import { ActionGroup, Button } from "@patternfly/react-core";
import type { RoleRepresentation } from "../../model/role-model";
import type { KeyValueType } from "./attribute-convert";
import { AttributeInput } from "../attribute-input/AttributeInput";
import {
AttributeInput,
AttributeType,
} from "../attribute-input/AttributeInput";
import { FormAccess } from "../form-access/FormAccess";
export type AttributeForm = Omit<RoleRepresentation, "attributes"> & {
@ -15,7 +18,7 @@ export type AttributeForm = Omit<RoleRepresentation, "attributes"> & {
export type AttributesFormProps = {
form: UseFormMethods<AttributeForm>;
isKeySelectable?: boolean;
selectableValues?: string[];
selectableValues?: AttributeType[];
save?: (model: AttributeForm) => void;
reset?: () => void;
};

View file

@ -24,7 +24,7 @@ import { camelCase } from "lodash-es";
import type ResourceRepresentation from "@keycloak/keycloak-admin-client/lib/defs/resourceRepresentation";
export type AttributeType = {
key: string;
key?: string;
name: string;
custom?: boolean;
values?: {
@ -34,7 +34,7 @@ export type AttributeType = {
type AttributeInputProps = {
name: string;
selectableValues?: string[];
selectableValues?: AttributeType[];
isKeySelectable?: boolean;
resources?: ResourceRepresentation[];
};
@ -56,7 +56,7 @@ export const AttributeInput = ({
if (!fields.length) {
append({ key: "", value: "" });
}
}, []);
}, [fields]);
const [isKeyOpenArray, setIsKeyOpenArray] = useState([false]);
const watchLastKey = watch(`${name}[${fields.length - 1}].key`, "");
@ -84,16 +84,32 @@ export const AttributeInput = ({
if (selectableValues) {
attributeValues = defaultContextAttributes.find(
(attr) => attr.name === getValues().context[rowIndex]?.key
(attr) => attr.key === getValues().context[rowIndex]?.key
)?.values;
}
const renderSelectOptionType = () => {
if (attributeValues?.length && !resources) {
return attributeValues.map((attr) => (
<SelectOption key={attr.key} value={attr.key}>
{attr.name}
</SelectOption>
));
} else if (scopeValues?.length) {
return scopeValues.map((scope) => (
<SelectOption key={scope.name} value={scope.name}>
{scope.name}
</SelectOption>
));
}
};
const getMessageBundleKey = (attributeName: string) =>
camelCase(attributeName).replace(/\W/g, "");
return (
<Td>
{scopeValues?.length || attributeValues?.length ? (
{resources || attributeValues?.length ? (
<Controller
name={`${name}[${rowIndex}].value`}
defaultValue={[]}
@ -111,31 +127,17 @@ export const AttributeInput = ({
toggleId={`group-${name}`}
onToggle={(open) => toggleValueSelect(rowIndex, open)}
isOpen={isValueOpenArray[rowIndex]}
variant={
resources
? SelectVariant.typeaheadMulti
: SelectVariant.typeahead
}
variant={SelectVariant.typeahead}
typeAheadAriaLabel={t("clients:selectOrTypeAKey")}
placeholderText={t("clients:selectOrTypeAKey")}
selections={value}
onSelect={(_, v) => {
if (resources) {
const option = v.toString();
if (value.includes(option)) {
onChange(value.filter((item: string) => item !== option));
} else {
onChange([...value, option]);
}
} else {
onChange(v);
}
toggleValueSelect(rowIndex, false);
}}
>
{(scopeValues || attributeValues)?.map((scope) => (
<SelectOption key={scope.name} value={scope.name} />
))}
{renderSelectOptionType()}
</Select>
)}
/>
@ -192,18 +194,18 @@ export const AttributeInput = ({
placeholderText={t("clients:selectOrTypeAKey")}
selections={value}
onSelect={(_, v) => {
onChange(v);
onChange(v.toString());
toggleKeySelect(rowIndex, false);
}}
>
{selectableValues?.map((attribute) => (
<SelectOption
selected={attribute === value}
key={attribute}
value={attribute}
selected={attribute.name === value}
key={attribute.key}
value={resources ? attribute.name : attribute.key}
>
{attribute}
{attribute.name}
</SelectOption>
))}
</Select>

View file

@ -39,7 +39,6 @@ import {
ClientRoleRoute,
toClientRole,
} from "./routes/ClientRole";
import { defaultContextAttributes } from "../clients/utils";
export default function RealmRoleTabs() {
const { t } = useTranslation("roles");
@ -378,10 +377,6 @@ export default function RealmRoleTabs() {
title={<TabTitleText>{t("common:attributes")}</TabTitleText>}
>
<AttributesForm
isKeySelectable
selectableValues={defaultContextAttributes.map(
(item) => item.key
)}
form={form}
save={save}
reset={() => reset(role)}