summaryrefslogtreecommitdiff
path: root/packages/anastasis-webui/src/pages/home/SolveScreen.tsx
blob: bc1a88db3cbc693993681d04aa2d0540ec4aed52 (plain)
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
import { Fragment, h, VNode } from "preact";
import { useState } from "preact/hooks";
import { AnastasisClientFrame } from ".";
import {
  ChallengeFeedback,
  ChallengeFeedbackStatus,
  ChallengeInfo,
} from "../../../../anastasis-core/lib";
import { AsyncButton } from "../../components/AsyncButton";
import { TextInput } from "../../components/fields/TextInput";
import { useAnastasisContext } from "../../context/anastasis";

function SolveOverviewFeedbackDisplay(props: { feedback?: ChallengeFeedback }) {
  const { feedback } = props;
  if (!feedback) {
    return null;
  }
  switch (feedback.state) {
    case ChallengeFeedbackStatus.Message:
      return (
        <div>
          <p>{feedback.message}</p>
        </div>
      );
    case ChallengeFeedbackStatus.Pending:
    case ChallengeFeedbackStatus.AuthIban:
      return null;
    case ChallengeFeedbackStatus.RateLimitExceeded:
      return <div>Rate limit exceeded.</div>;
    case ChallengeFeedbackStatus.Redirect:
      return <div>Redirect (FIXME: not supported)</div>;
    case ChallengeFeedbackStatus.Unsupported:
      return <div>Challenge not supported by client.</div>;
    case ChallengeFeedbackStatus.TruthUnknown:
      return <div>Truth unknown</div>;
    default:
      return (
        <div>
          <pre>{JSON.stringify(feedback)}</pre>
        </div>
      );
  }
}

export function SolveScreen(): VNode {
  const reducer = useAnastasisContext();
  const [answer, setAnswer] = useState("");

  if (!reducer) {
    return (
      <AnastasisClientFrame hideNav title="Recovery problem">
        <div>no reducer in context</div>
      </AnastasisClientFrame>
    );
  }
  if (
    !reducer.currentReducerState ||
    reducer.currentReducerState.recovery_state === undefined
  ) {
    return (
      <AnastasisClientFrame hideNav title="Recovery problem">
        <div>invalid state</div>
      </AnastasisClientFrame>
    );
  }

  if (!reducer.currentReducerState.recovery_information) {
    return (
      <AnastasisClientFrame
        hideNext="Recovery document not found"
        title="Recovery problem"
      >
        <div>no recovery information found</div>
      </AnastasisClientFrame>
    );
  }
  if (!reducer.currentReducerState.selected_challenge_uuid) {
    return (
      <AnastasisClientFrame hideNav title="Recovery problem">
        <div>invalid state</div>
        <div style={{ marginTop: '2em', display: 'flex', justifyContent: 'space-between' }}>
        <button class="button" onClick={() => reducer.back()}>Back</button>
      </div>
      </AnastasisClientFrame>
    );
  }

  const chArr = reducer.currentReducerState.recovery_information.challenges;
  const challengeFeedback =
    reducer.currentReducerState.challenge_feedback ?? {};
  const selectedUuid = reducer.currentReducerState.selected_challenge_uuid;
  const challenges: {
    [uuid: string]: ChallengeInfo;
  } = {};
  for (const ch of chArr) {
    challenges[ch.uuid] = ch;
  }
  const selectedChallenge = challenges[selectedUuid];
  const dialogMap: Record<string, (p: SolveEntryProps) => h.JSX.Element> = {
    question: SolveQuestionEntry,
    sms: SolveSmsEntry,
    email: SolveEmailEntry,
    post: SolvePostEntry,
  };
  const SolveDialog =
    selectedChallenge === undefined
      ? SolveUndefinedEntry
      : dialogMap[selectedChallenge.type] ?? SolveUnsupportedEntry;

  async function onNext(): Promise<void> {
    return reducer?.transition("solve_challenge", { answer });
  }
  function onCancel(): void {
    reducer?.back();
  }

  return (
    <AnastasisClientFrame hideNav title="Recovery: Solve challenge">
      <SolveOverviewFeedbackDisplay
        feedback={challengeFeedback[selectedUuid]}
      />
      <SolveDialog
        id={selectedUuid}
        answer={answer}
        setAnswer={setAnswer}
        challenge={selectedChallenge}
        feedback={challengeFeedback[selectedUuid]}
      />

      <div
        style={{
          marginTop: "2em",
          display: "flex",
          justifyContent: "space-between",
        }}
      >
        <button class="button" onClick={onCancel}>
          Cancel
        </button>
        <AsyncButton class="button is-info" onClick={onNext}>
          Confirm
        </AsyncButton>
      </div>
    </AnastasisClientFrame>
  );
}

export interface SolveEntryProps {
  id: string;
  challenge: ChallengeInfo;
  feedback?: ChallengeFeedback;
  answer: string;
  setAnswer: (s: string) => void;
}

function SolveSmsEntry({
  challenge,
  answer,
  setAnswer,
}: SolveEntryProps): VNode {
  return (
    <Fragment>
      <p>
        An sms has been sent to "<b>{challenge.instructions}</b>". Type the code
        below
      </p>
      <TextInput label="Answer" grabFocus bind={[answer, setAnswer]} />
    </Fragment>
  );
}
function SolveQuestionEntry({
  challenge,
  answer,
  setAnswer,
}: SolveEntryProps): VNode {
  return (
    <Fragment>
      <p>Type the answer to the following question:</p>
      <pre>{challenge.instructions}</pre>
      <TextInput label="Answer" grabFocus bind={[answer, setAnswer]} />
    </Fragment>
  );
}

function SolvePostEntry({
  challenge,
  answer,
  setAnswer,
}: SolveEntryProps): VNode {
  return (
    <Fragment>
      <p>
        instruction for post type challenge "<b>{challenge.instructions}</b>"
      </p>
      <TextInput label="Answer" grabFocus bind={[answer, setAnswer]} />
    </Fragment>
  );
}

function SolveEmailEntry({
  challenge,
  answer,
  setAnswer,
}: SolveEntryProps): VNode {
  return (
    <Fragment>
      <p>
        An email has been sent to "<b>{challenge.instructions}</b>". Type the
        code below
      </p>
      <TextInput label="Answer" grabFocus bind={[answer, setAnswer]} />
    </Fragment>
  );
}

function SolveUnsupportedEntry(props: SolveEntryProps): VNode {
  return (
    <Fragment>
      <p>
        The challenge selected is not supported for this UI. Please update this
        version or try using another policy.
      </p>
      <p>
        <b>Challenge type:</b> {props.challenge.type}
      </p>
    </Fragment>
  );
}
function SolveUndefinedEntry(props: SolveEntryProps): VNode {
  return (
    <Fragment>
      <p>
        There is no challenge information for id <b>"{props.id}"</b>. Try
        resetting the recovery session.
      </p>
    </Fragment>
  );
}