Skip to content

Commit

Permalink
chore: UI SCIM guard for users (#6859)
Browse files Browse the repository at this point in the history
https://linear.app/unleash/issue/2-2092/ui-should-not-allow-manual-management-of-scim-managed-users-in-unleash

Adds a UI SCIM guard when trying to manage users.

The condition for the guard is:
 - Enterprise
 - SCIM flag enabled
 - SCIM setting enabled
 - SCIM user


![image](https://github.com/Unleash/unleash/assets/14320932/8a5451f1-0d6e-48ba-b090-bb5832c0e9ec)
  • Loading branch information
nunogois committed Apr 15, 2024
1 parent 3d60c2a commit 279d343
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ interface IUsersActionsCellProps {
onChangePassword: (event: React.SyntheticEvent) => void;
onResetPassword: (event: React.SyntheticEvent) => void;
onDelete: (event: React.SyntheticEvent) => void;
scimEnabled?: boolean;
}

export const UsersActionsCell: VFC<IUsersActionsCellProps> = ({
Expand All @@ -28,16 +29,21 @@ export const UsersActionsCell: VFC<IUsersActionsCellProps> = ({
onChangePassword,
onResetPassword,
onDelete,
scimEnabled,
}) => {
const scimTooltip =
'This user is managed by your SCIM provider and cannot be changed manually';

return (
<StyledBox>
<PermissionIconButton
data-loading
onClick={onEdit}
permission={ADMIN}
tooltipProps={{
title: 'Edit user',
title: scimEnabled ? scimTooltip : 'Edit user',
}}
disabled={scimEnabled}
>
<Edit />
</PermissionIconButton>
Expand All @@ -63,8 +69,9 @@ export const UsersActionsCell: VFC<IUsersActionsCellProps> = ({
onClick={onChangePassword}
permission={ADMIN}
tooltipProps={{
title: 'Change password',
title: scimEnabled ? scimTooltip : 'Change password',
}}
disabled={scimEnabled}
>
<Lock />
</PermissionIconButton>
Expand All @@ -73,8 +80,9 @@ export const UsersActionsCell: VFC<IUsersActionsCellProps> = ({
onClick={onResetPassword}
permission={ADMIN}
tooltipProps={{
title: 'Reset password',
title: scimEnabled ? scimTooltip : 'Reset password',
}}
disabled={scimEnabled}
>
<LockReset />
</PermissionIconButton>
Expand All @@ -83,8 +91,9 @@ export const UsersActionsCell: VFC<IUsersActionsCellProps> = ({
onClick={onDelete}
permission={ADMIN}
tooltipProps={{
title: 'Remove user',
title: scimEnabled ? scimTooltip : 'Remove user',
}}
disabled={scimEnabled}
>
<Delete />
</PermissionIconButton>
Expand Down
11 changes: 10 additions & 1 deletion frontend/src/component/admin/users/UsersList/UsersList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ import Download from '@mui/icons-material/Download';
import { StyledUsersLinkDiv } from '../Users.styles';
import { useUiFlag } from 'hooks/useUiFlag';
import useUiConfig from '../../../../hooks/api/getters/useUiConfig/useUiConfig';
import { useScimSettings } from 'hooks/api/getters/useScimSettings/useScimSettings';

const UsersList = () => {
const navigate = useNavigate();
Expand All @@ -56,6 +57,11 @@ const UsersList = () => {
open: false,
});
const userAccessUIEnabled = useUiFlag('userAccessUIEnabled');
const {
settings: { enabled: scimSettingEnabled },
} = useScimSettings();
const scimFlagEnabled = useUiFlag('scimApi');
const scimEnabled = isEnterprise() && scimSettingEnabled && scimFlagEnabled;
const [delDialog, setDelDialog] = useState(false);
const [showConfirm, setShowConfirm] = useState(false);
const [emailSent, setEmailSent] = useState(false);
Expand Down Expand Up @@ -193,7 +199,9 @@ const UsersList = () => {
Header: 'Actions',
id: 'Actions',
align: 'center',
Cell: ({ row: { original: user } }: any) => (
Cell: ({
row: { original: user },
}: { row: { original: IUser } }) => (
<UsersActionsCell
onEdit={() => {
navigate(`/admin/users/${user.id}/edit`);
Expand All @@ -210,6 +218,7 @@ const UsersList = () => {
onChangePassword={openPwDialog(user)}
onResetPassword={openResetPwDialog(user)}
onDelete={openDelDialog(user)}
scimEnabled={scimEnabled && Boolean(user.scimId)}
/>
),
width: userAccessUIEnabled ? 240 : 200,
Expand Down
1 change: 1 addition & 0 deletions frontend/src/interfaces/user.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ export interface IUser {
paid?: boolean;
addedAt?: string;
accountType?: AccountType;
scimId?: string;
}

export interface IPermission {
Expand Down

0 comments on commit 279d343

Please sign in to comment.