-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathStaticConfiguration.tsx
More file actions
408 lines (376 loc) · 13 KB
/
StaticConfiguration.tsx
File metadata and controls
408 lines (376 loc) · 13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
import React, { useState, useCallback, useEffect, useMemo } from 'react'
import { useFormik } from 'formik'
import { useTranslation } from 'react-i18next'
import { Row, Col, Form, FormGroup } from 'Components'
import GluuInputRow from 'Routes/Apps/Gluu/GluuInputRow'
import GluuSelectRow from 'Routes/Apps/Gluu/GluuSelectRow'
import GluuToggleRow from 'Routes/Apps/Gluu/GluuToggleRow'
import GluuCommitDialog from 'Routes/Apps/Gluu/GluuCommitDialog'
import GluuFormFooter from 'Routes/Apps/Gluu/GluuFormFooter'
import GluuLabel from 'Routes/Apps/Gluu/GluuLabel'
import GluuProperties from 'Routes/Apps/Gluu/GluuProperties'
import GluuTypeAhead from 'Routes/Apps/Gluu/GluuTypeAhead'
import { adminUiFeatures } from 'Plugins/admin/helper/utils'
import {
validationSchema,
transformToFormValues,
fidoConstants,
getAvailableHintOptions,
getEmptyDropdownMessage,
} from '../helper'
import {
StaticConfigurationProps,
StaticConfigFormValues,
MinimalFormik,
FormikSetFieldValue,
} from '../types/fido'
import { AttestationMode } from '../types'
const StaticConfiguration: React.FC<StaticConfigurationProps> = ({
fidoConfiguration,
handleSubmit,
isSubmitting,
readOnly,
}) => {
const { t } = useTranslation()
const [modal, setModal] = useState(false)
const toggle = useCallback(() => {
setModal((prev) => !prev)
}, [])
const initialValues: StaticConfigFormValues = transformToFormValues(
fidoConfiguration?.fido2Configuration,
fidoConstants.STATIC,
) as StaticConfigFormValues
const formik = useFormik<StaticConfigFormValues>({
initialValues,
onSubmit: readOnly ? () => undefined : toggle,
validationSchema: validationSchema[fidoConstants.VALIDATION_SCHEMAS.STATIC_CONFIG],
validateOnMount: true,
})
useEffect(() => {
if (fidoConfiguration?.fido2Configuration) {
formik.resetForm({
values: transformToFormValues(
fidoConfiguration.fido2Configuration,
fidoConstants.STATIC,
) as StaticConfigFormValues,
})
}
}, [fidoConfiguration])
const submitForm = useCallback(
(userMessage: string) => {
if (readOnly) {
return
}
toggle()
handleSubmit(formik.values, userMessage)
},
[handleSubmit, toggle, formik.values, readOnly],
)
const handleCancel = useCallback(() => {
formik.resetForm()
}, [formik])
const requestedPartiesOptions = useMemo(() => {
return (formik.values.requestedParties || []).map((item) => ({
key: item.key || '',
value: item.value || '',
}))
}, [formik.values.requestedParties])
const enabledFidoAlgorithmsOptions = useMemo(() => {
return (formik.values.enabledFidoAlgorithms || []).map((item) => ({
key: '',
value: item,
}))
}, [formik.values.enabledFidoAlgorithms])
const metadataServersOptions = useMemo(() => {
return (formik.values.metadataServers || []).map((server) => ({
key: server.url || '',
value: server.rootCert || '',
}))
}, [formik.values.metadataServers])
// Create a wrapper formik that transforms metadata servers between key/value and url/rootCert
const metadataServersFormik = useMemo<MinimalFormik<StaticConfigFormValues>>(() => {
const setFieldValueWrapper: FormikSetFieldValue<StaticConfigFormValues> = (
name,
value,
shouldValidate,
) => {
if (name === fidoConstants.FORM_FIELDS.METADATA_SERVERS) {
// Transform {key, value} back to {url, rootCert}
const arr = Array.isArray(value) ? (value as Array<{ key?: string; value?: string }>) : []
const transformedValue = arr.map((item) => ({
url: item.key || '',
rootCert: item.value || '',
}))
formik.setFieldValue(name, transformedValue, shouldValidate)
} else {
formik.setFieldValue(name, value, shouldValidate)
}
}
return {
values: formik.values,
setFieldValue: setFieldValueWrapper,
}
}, [formik.values, formik.setFieldValue])
const availableHintOptions = useMemo(() => {
return getAvailableHintOptions(formik.values.hints)
}, [formik.values.hints])
const emptyDropdownMessage = useMemo(() => {
return getEmptyDropdownMessage(formik.values.hints)
}, [formik.values.hints])
const handleFormSubmit = useCallback(
(e: React.FormEvent<HTMLFormElement>) => {
e.preventDefault()
if (readOnly) {
return
}
formik.handleSubmit()
},
[formik, readOnly],
)
return (
<Form onSubmit={handleFormSubmit} className="mt-4">
<FormGroup row>
<Col sm={8}>
<GluuInputRow
label={fidoConstants.LABELS.AUTHENTICATOR_CERTIFICATES_FOLDER}
name={fidoConstants.FORM_FIELDS.AUTHENTICATOR_CERTS_FOLDER}
value={formik.values.authenticatorCertsFolder || ''}
formik={formik}
lsize={4}
rsize={8}
required
showError={
!!(formik.errors.authenticatorCertsFolder && formik.touched.authenticatorCertsFolder)
}
errorMessage={formik.errors.authenticatorCertsFolder}
/>
</Col>
<Col sm={8}>
<GluuInputRow
label={fidoConstants.LABELS.MDS_TOC_CERTIFICATES_FOLDER}
name="mdsCertsFolder"
value={formik.values.mdsCertsFolder || ''}
formik={formik}
lsize={4}
rsize={8}
required
showError={!!(formik.errors.mdsCertsFolder && formik.touched.mdsCertsFolder)}
errorMessage={formik.errors.mdsCertsFolder}
/>
</Col>
<Col sm={8}>
<GluuInputRow
label={fidoConstants.LABELS.MDS_TOC_FILES_FOLDER}
name="mdsTocsFolder"
value={formik.values.mdsTocsFolder || ''}
formik={formik}
lsize={4}
rsize={8}
required
showError={!!(formik.errors.mdsTocsFolder && formik.touched.mdsTocsFolder)}
errorMessage={formik.errors.mdsTocsFolder}
/>
</Col>
<Col sm={8}>
<GluuInputRow
label={fidoConstants.LABELS.UNFINISHED_REQUEST_EXPIRATION}
name="unfinishedRequestExpiration"
type="number"
value={formik.values.unfinishedRequestExpiration ?? ''}
formik={formik}
lsize={4}
rsize={8}
required
showError={
!!(
formik.errors.unfinishedRequestExpiration &&
formik.touched.unfinishedRequestExpiration
)
}
errorMessage={formik.errors.unfinishedRequestExpiration}
/>
</Col>
<Col sm={8}>
<GluuInputRow
label={fidoConstants.LABELS.AUTHENTICATION_HISTORY_EXPIRATION}
name="authenticationHistoryExpiration"
type="number"
value={formik.values.authenticationHistoryExpiration ?? ''}
formik={formik}
lsize={4}
rsize={8}
required
showError={
!!(
formik.errors.authenticationHistoryExpiration &&
formik.touched.authenticationHistoryExpiration
)
}
errorMessage={formik.errors.authenticationHistoryExpiration}
/>
</Col>
<Col sm={8}>
<GluuInputRow
label={fidoConstants.LABELS.SERVER_METADATA_FOLDER}
name="serverMetadataFolder"
value={formik.values.serverMetadataFolder || ''}
formik={formik}
lsize={4}
rsize={8}
required
showError={
!!(formik.errors.serverMetadataFolder && formik.touched.serverMetadataFolder)
}
errorMessage={formik.errors.serverMetadataFolder}
/>
</Col>
<Col sm={8}>
<GluuToggleRow
label={fidoConstants.LABELS.USER_AUTO_ENROLLMENT}
name={fidoConstants.FORM_FIELDS.USER_AUTO_ENROLLMENT}
formik={formik}
lsize={4}
rsize={8}
required
doc_category={fidoConstants.DOC_CATEGORY}
/>
</Col>
<Col sm={8}>
<Row className="mt-2">
<GluuLabel label={fidoConstants.LABELS.REQUESTED_PARTIES_ID} size={4} />
<Col sm={8}>
<GluuProperties
compName={fidoConstants.FORM_FIELDS.REQUESTED_PARTIES}
isInputLables={true}
keyLabel={t('fields.name')}
valueLabel={t('fields.domain')}
formik={formik}
options={requestedPartiesOptions}
keyPlaceholder={t('placeholders.name')}
valuePlaceholder={t('placeholders.value')}
buttonText={fidoConstants.BUTTON_TEXT.ADD_PARTY}
/>
</Col>
</Row>
</Col>
<Col sm={8}>
<Row>
<GluuLabel label={fidoConstants.LABELS.ENABLED_FIDO_ALGORITHMS} size={4} />
<Col sm={8}>
<GluuProperties
compName={fidoConstants.FORM_FIELDS.ENABLED_FIDO_ALGORITHMS}
isInputLables={true}
formik={formik}
options={enabledFidoAlgorithmsOptions}
isKeys={false}
buttonText={fidoConstants.BUTTON_TEXT.ADD_ALGORITHM}
/>
</Col>
</Row>
</Col>
<Col sm={8}>
<Row className="mt-2">
<GluuLabel label={fidoConstants.LABELS.METADATA_SERVERS} size={4} />
<Col sm={8}>
<GluuProperties
compName={fidoConstants.FORM_FIELDS.METADATA_SERVERS}
isInputLables={true}
keyLabel="URL"
valueLabel="Root Certificate"
formik={metadataServersFormik}
options={metadataServersOptions}
keyPlaceholder="Enter URL"
valuePlaceholder="Enter Root Certificate"
buttonText={fidoConstants.BUTTON_TEXT.ADD_METADATA_SERVER}
/>
</Col>
</Row>
</Col>
<Col sm={8}>
<GluuToggleRow
label={fidoConstants.LABELS.DISABLE_METADATA_SERVICE}
name={fidoConstants.FORM_FIELDS.DISABLE_METADATA_SERVICE}
formik={formik}
lsize={4}
rsize={8}
doc_category={fidoConstants.DOC_CATEGORY}
/>
</Col>
<Col sm={8}>
<GluuTypeAhead
name={fidoConstants.FORM_FIELDS.HINTS}
label={fidoConstants.LABELS.HINTS}
value={formik.values.hints || []}
options={availableHintOptions}
lsize={4}
rsize={8}
required
showError={!!(formik.errors.hints && formik.touched.hints)}
errorMessage={formik.errors.hints as string}
doc_category={fidoConstants.DOC_CATEGORY}
emptyLabel={emptyDropdownMessage}
allowNew={false}
onChange={(selected) => {
const next = (selected || []).filter((v): v is string => typeof v === 'string')
formik.setFieldValue(fidoConstants.FORM_FIELDS.HINTS, next)
}}
/>
</Col>
<Col sm={8}>
<GluuToggleRow
label={fidoConstants.LABELS.ENTERPRISE_ATTESTATION}
name={fidoConstants.FORM_FIELDS.ENTERPRISE_ATTESTATION}
formik={formik}
lsize={4}
rsize={8}
required
doc_category={fidoConstants.DOC_CATEGORY}
/>
</Col>
<Col sm={8}>
<GluuSelectRow
label={fidoConstants.LABELS.ATTESTATION_MODE}
name={fidoConstants.FORM_FIELDS.ATTESTATION_MODE}
value={formik.values.attestationMode || ''}
formik={formik}
values={Object.values(AttestationMode).map((mode) => ({ label: mode, value: mode }))}
lsize={4}
rsize={8}
required={true}
showError={!!(formik.errors.attestationMode && formik.touched.attestationMode)}
errorMessage={formik.errors.attestationMode}
handleChange={(_e) => {
formik.setFieldTouched(fidoConstants.FORM_FIELDS.ATTESTATION_MODE, true, false)
}}
/>
</Col>
</FormGroup>
<Row>
<Col>
<GluuFormFooter
showBack={true}
showCancel={true}
showApply={!readOnly}
onApply={toggle}
onCancel={handleCancel}
disableBack={false}
disableCancel={!formik.dirty}
disableApply={!formik.isValid || !formik.dirty}
applyButtonType="button"
isLoading={isSubmitting ?? false}
/>
</Col>
</Row>
{!readOnly && (
<GluuCommitDialog
handler={toggle}
modal={modal}
feature={adminUiFeatures.fido_configuration_write}
onAccept={submitForm}
formik={formik}
/>
)}
</Form>
)
}
export default React.memo(StaticConfiguration)