wizard: add user information step (HMS-4903)

This commit introduces the user information step with the following fields:
(*) `userName` field
(*) `password` field
(*) add unit tests for create and edit mode
This commit is contained in:
Michal Gold 2024-12-18 17:39:51 +02:00 committed by Lucas Garfield
parent 7da478791e
commit d0f2317649
8 changed files with 342 additions and 3 deletions

View file

@ -34,6 +34,7 @@ import {
Services,
Subscription,
UploadTypes,
User,
} from '../../../store/imageBuilderApi';
import {
selectActivationKey,
@ -81,6 +82,7 @@ import {
selectLanguages,
selectKeyboard,
selectHostname,
selectUsers,
} from '../../../store/wizardSlice';
import { FileSystemConfigurationType } from '../steps/FileSystem';
import {
@ -206,6 +208,15 @@ function commonRequestToState(
blueprintName: request.name || '',
blueprintDescription: request.description || '',
},
users:
request.customizations.users?.map((user) => ({
name: user.name,
password: '', // The image-builder API does not return the password.
ssh_key: user.ssh_key || '',
confirmPassword: '',
groups: user.groups || [],
isAdministrator: user.groups?.includes('wheel') || false,
})) || [],
compliance:
compliancePolicyID !== undefined
? {
@ -502,7 +513,7 @@ const getCustomizations = (state: RootState, orgID: string): Customizations => {
custom_repositories: getCustomRepositories(state),
openscap: getOpenscap(state),
filesystem: getFileSystem(state),
users: undefined,
users: getUsers(state),
services: getServices(state),
hostname: selectHostname(state) || undefined,
kernel: selectKernel(state).append
@ -558,6 +569,24 @@ const getOpenscap = (state: RootState): OpenScap | undefined => {
return undefined;
};
const getUsers = (state: RootState): User[] | undefined => {
const users = selectUsers(state);
if (users.length === 0) {
return undefined;
}
return users.map((user) => {
const result: User = {
name: user.name,
};
if (user.password !== '') {
result.password = user.password;
}
return result as User;
});
};
const getFileSystem = (state: RootState): Filesystem[] | undefined => {
const mode = selectFileSystemConfigurationType(state);