-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBasicWizard.tsx
390 lines (365 loc) · 11.6 KB
/
BasicWizard.tsx
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
import { useEffect, useState } from 'react';
import Api, { ApiConfigResponse, ApiResponse } from '../utils/Api';
import ModeSelector, { SelectedMode } from './ModeSelector';
import { ExfilExtension, StorageExtension } from './extensions/Extension';
import {
getStorages,
initializeExfilExtensions,
} from './extensions/ExtensionManager';
import {
Typography,
Stepper,
Step,
StepLabel,
StepContent,
Box,
Button,
StepButton,
} from '@mui/material';
import Authentication from './Authentication';
import BasicSelector from './BasicSelector';
import { snackError } from '../utils/Snack';
interface WizardProps {
api: Api;
onFinished: (
config: ApiConfigResponse,
mode: SelectedMode,
exfil: ExfilExtension,
storage?: StorageExtension
) => void;
}
enum Steps {
Authentication,
SelectAction,
SelectExfil,
ConfigureExfil,
SelectStorage,
ConfigureStorage,
Confirm,
}
export default function BasicWizard({ api, onFinished }: WizardProps) {
const [storages, _] = useState(getStorages());
const [authenticated, setAuthenticated] = useState<boolean>(false);
const [config, setConfig] = useState<ApiConfigResponse | undefined>(
undefined
);
const [mode, setMode] = useState<SelectedMode>('None');
const [exfils, setExfils] = useState<ExfilExtension[]>([]);
const [selectedExfil, setSelectedExfil] = useState<ExfilExtension | null>(
null
);
const [exfilConfigured, setExfilConfigured] = useState(false);
const [selectedStorage, setSelectedStorage] =
useState<StorageExtension | null>(null);
const [storageConfigured, setStorageConfigured] = useState(false);
const [step, setStep] = useState(Steps.Authentication);
const isUploadMode = mode == 'UploadChunked' || mode == 'UploadSingle';
useEffect(() => {
async function getConfig() {
try {
const res = await api.config();
setConfig(res);
} catch (error) {
const err = error as ApiResponse;
snackError(`Failed querying config: ${err.message}`);
setAuthenticated(false);
}
}
if (authenticated) getConfig();
}, [authenticated]);
useEffect(() => {
if (!config) return;
setExfils(
initializeExfilExtensions(api, config).filter((e) => e.isPresent())
);
}, [config]);
function onAuthenticated(): void {
setAuthenticated(true);
setStep(Steps.SelectAction);
}
function onModeSelected(type: SelectedMode, exfils: ExfilExtension[]): void {
setMode(type);
setExfils(exfils);
setStep(Steps.SelectExfil);
}
function onExfilSelected(idx: number): void {
const exfil = exfils[idx];
setSelectedExfil(exfil);
var nextStep = Steps.ConfigureExfil;
if (!exfil.isConfigurable) {
nextStep = Steps.SelectStorage; // Skip configuration step
if (!isUploadMode) nextStep = Steps.ConfigureStorage + 1; // Skip storage selection + configuration step for downloads
}
setStep(nextStep);
}
function onStorageSelected(idx: number): void {
const storage = storages[idx];
setSelectedStorage(storage);
if (!storage.isConfigurable)
setStep(Steps.ConfigureStorage + 1); // Skip configuration step
else
setStep(Steps.ConfigureStorage);
}
function modeToString(mode: SelectedMode): string {
// "You'd like to ..."
switch (mode) {
case 'None':
return 'do nothing';
case 'DownloadSingle':
return 'perform a basic download';
case 'UploadSingle':
return 'perform a basic upload';
case 'DownloadChunked':
return 'perform a chunked download';
case 'UploadChunked':
return 'perform a chunked upload';
}
}
function onStartOver(): void {
setSelectedStorage(null);
setSelectedExfil(null);
setExfils(
initializeExfilExtensions(api, config as ApiConfigResponse).filter((e) =>
e.isPresent()
)
);
setMode('None');
setStep(0);
setExfilConfigured(false);
setStorageConfigured(false);
}
function onFinish() {
onFinished(
config as ApiConfigResponse,
mode,
selectedExfil as ExfilExtension,
selectedStorage ? selectedStorage : undefined
);
}
const getExfilConfigLabel = () => {
if (!selectedExfil) return <i>No transport selected yet.</i>;
if (exfilConfigured) return <i>{selectedExfil.displayName} configured.</i>;
if (!selectedExfil.isConfigurable)
return <i>{selectedExfil?.displayName} is not configurable.</i>;
return <>Configure {selectedExfil.displayName}:</>;
};
const getStorageConfigLabel = () => {
if (!selectedStorage) return <i>No storage selected.</i>;
if (storageConfigured)
return <i>{selectedStorage.displayName} configured.</i>;
if (!selectedStorage.isConfigurable)
return <i>{selectedStorage?.displayName} is not configurable.</i>;
return <>Configure {selectedStorage.displayName}:</>;
};
function onExfilConfigFinished(): void {
setExfilConfigured(true);
setStep(Steps.ConfigureExfil + 1);
}
function onStorageConfigFinished(): void {
setStorageConfigured(true);
setStep(Steps.ConfigureStorage + 1);
}
function onConfigChange(config: ApiConfigResponse): void {
setConfig(config);
}
function navToModeSelect(): void {
setStep(Steps.SelectAction);
setMode('None');
setSelectedExfil(null);
setSelectedStorage(null);
}
function navToExfilSelect(): void {
setStep(Steps.SelectExfil);
setSelectedExfil(null);
setSelectedStorage(null);
}
function navToExfilConfig(): void {
setStep(Steps.ConfigureExfil);
setSelectedStorage(null);
}
function navToStorageSelect(): void {
setStep(Steps.SelectStorage);
}
function navToStorageConfig(): void {
setStep(Steps.ConfigureStorage);
}
return (
<>
<Typography gutterBottom>
Welcome to Volatile Vault. This screen gives you fine-grained control
over the way your data is being uploaded, downloaded and stored. Use the
following wizard to configure your up- & downloads!
</Typography>
<Stepper activeStep={step} orientation="vertical">
{/* 0 - Authentication */}
<Step key={Steps.Authentication}>
<StepLabel>
<Typography variant="subtitle1">
{authenticated ? <i>Authenticated!</i> : <>Authentication</>}
</Typography>
</StepLabel>
<StepContent>
<Authentication api={api} onAuthenticated={onAuthenticated} />
</StepContent>
</Step>
{/* 1 - Select action */}
<Step key={Steps.SelectAction}>
<StepButton onClick={navToModeSelect}>
<Typography variant="subtitle1">
{mode == 'None' ? (
'What would you like to do?'
) : (
<i>You will {modeToString(mode)}.</i>
)}
</Typography>
</StepButton>
<StepContent>
<ModeSelector exfils={exfils} onSelected={onModeSelected} />
</StepContent>
</Step>
{/* 2 - Select exfil */}
<Step key={Steps.SelectExfil}>
<StepButton
disabled={step <= Steps.SelectExfil}
onClick={navToExfilSelect}
>
<Typography variant="subtitle1">
{selectedExfil == null ? (
'Which transport should be used for exfiltration?'
) : (
<i>
You will use {selectedExfil.displayName} for exfiltration.
</i>
)}
</Typography>
</StepButton>
<StepContent>
<BasicSelector
items={exfils}
type="Exfil"
onSelected={onExfilSelected}
/>
</StepContent>
</Step>
{/* 3 - Configure exfil */}
<Step key={Steps.ConfigureExfil}>
<StepButton
disabled={
step <= Steps.ConfigureExfil || !selectedExfil?.isConfigurable
}
onClick={navToExfilConfig}
>
<Typography variant="subtitle1">{getExfilConfigLabel()}</Typography>
</StepButton>
<StepContent>
{selectedExfil?.isConfigurable && (
<>
{selectedExfil.configView({
config: config as ApiConfigResponse,
onChange: onConfigChange,
})}
<Box sx={{ mb: 2 }}>
<div>
<Button
onClick={onExfilConfigFinished}
variant="contained"
sx={{ mt: 1, mr: 1 }}
>
Continue
</Button>
</div>
</Box>
</>
)}
</StepContent>
</Step>
{/* 4 - Select storage */}
<Step key={Steps.SelectStorage}>
<StepButton disabled={step <= Steps.SelectStorage || !isUploadMode} onClick={navToStorageSelect}>
<Typography variant="subtitle1">
{selectedStorage == null ? (
isUploadMode ? (
'Which option should be used for storage?'
) : (
<i>
Downloads will determine the storage used automatically.
</i>
)
) : (
<i>You will use {selectedStorage.displayName} for storage.</i>
)}
</Typography>
</StepButton>
<StepContent>
<BasicSelector
items={storages}
type="Storage"
onSelected={onStorageSelected}
/>
</StepContent>
</Step>
{/* 5 - Configure storage */}
<Step key={Steps.ConfigureStorage}>
<StepButton
disabled={
step <= Steps.ConfigureStorage || !selectedStorage?.isConfigurable
}
onClick={navToStorageConfig}
>
<Typography variant="subtitle1">
{getStorageConfigLabel()}
</Typography>
</StepButton>
<StepContent>
{selectedStorage?.isConfigurable && (
<>
{selectedStorage.configView({
config: config as ApiConfigResponse,
onChange: onConfigChange,
})}
<Box sx={{ mb: 2 }}>
<div>
<Button
onClick={onStorageConfigFinished}
variant="contained"
sx={{ mt: 1, mr: 1 }}
>
Continue
</Button>
</div>
</Box>
</>
)}
</StepContent>
</Step>
{/* 6 - Confirm */}
{step == Steps.Confirm && (
<Step key={Steps.Confirm}>
<StepLabel>
<Typography variant="subtitle1">Let's go!</Typography>
</StepLabel>
<StepContent>
<Typography variant="body2">
Does everything look right to you? Then let's continue.
</Typography>
<Box sx={{ mb: 2 }}>
<div>
<Button
onClick={onFinish}
variant="contained"
sx={{ mt: 1, mr: 1 }}
>
Continue
</Button>
<Button onClick={onStartOver} sx={{ mt: 1, mr: 1 }}>
Start over
</Button>
</div>
</Box>
</StepContent>
</Step>
)}
</Stepper>
</>
);
}