summaryrefslogtreecommitdiff
path: root/packages/demobank-ui/src/pages/OperationState/state.ts
blob: a4890d72627ea2c79cdc08dabdb79c2ea7080b30 (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
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
/*
 This file is part of GNU Taler
 (C) 2022 Taler Systems S.A.

 GNU Taler is free software; you can redistribute it and/or modify it under the
 terms of the GNU General Public License as published by the Free Software
 Foundation; either version 3, or (at your option) any later version.

 GNU Taler is distributed in the hope that it will be useful, but WITHOUT ANY
 WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
 A PARTICULAR PURPOSE.  See the GNU General Public License for more details.

 You should have received a copy of the GNU General Public License along with
 GNU Taler; see the file COPYING.  If not, see <http://www.gnu.org/licenses/>
 */

import { Amounts, HttpStatusCode, TalerError, TranslatedString, parsePaytoUri, parseWithdrawUri, stringifyWithdrawUri } from "@gnu-taler/taler-util";
import { RequestError, notify, notifyError, notifyInfo, useTranslationContext, utils } from "@gnu-taler/web-util/browser";
import { useEffect, useState } from "preact/hooks";
import { useBankCoreApiContext } from "../../context/config.js";
import { useWithdrawalDetails } from "../../hooks/access.js";
import { useBackendState } from "../../hooks/backend.js";
import { useSettings } from "../../hooks/settings.js";
import { buildRequestErrorMessage, withRuntimeErrorHandling } from "../../utils.js";
import { Props, State } from "./index.js";
import { assertUnreachable } from "../WithdrawalOperationPage.js";
import { mutate } from "swr";

export function useComponentState({ currency, onClose }: Props): utils.RecursiveState<State> {
  const { i18n } = useTranslationContext();
  const [settings, updateSettings] = useSettings()
  const { state: credentials } = useBackendState()
  const creds = credentials.status !== "loggedIn" ? undefined : credentials
  const { api } = useBankCoreApiContext()
  // const { createWithdrawal } = useAccessAPI();
  // const { abortWithdrawal, confirmWithdrawal } = useAccessAnonAPI();
  const [busy, setBusy] = useState<Record<string, undefined>>()

  const amount = settings.maxWithdrawalAmount

  async function doSilentStart() {
    //FIXME: if amount is not enough use balance
    const parsedAmount = Amounts.parseOrThrow(`${currency}:${amount}`)
    if (!creds) return;
    await withRuntimeErrorHandling(i18n, async () => {
      const resp = await api.createWithdrawal(creds, {
        amount: Amounts.stringify(parsedAmount),
      });
      if (resp.type === "fail") {
        switch (resp.case) {
          case "insufficient-funds": return notify({
            type: "error",
            title: i18n.str`The operation was rejected due to insufficient funds.`,
            description: resp.detail.hint as TranslatedString,
            debug: resp.detail,
          });
          case "unauthorized": return notify({
            type: "error",
            title: i18n.str`Unauthorized to make the opeartion, maybe the session has expired or the password changed.`,
            description: resp.detail.hint as TranslatedString,
            debug: resp.detail,
          });
          default: assertUnreachable(resp)
        }
      }

      const uri = parseWithdrawUri(resp.body.taler_withdraw_uri);
      if (!uri) {
        return notifyError(
          i18n.str`Server responded with an invalid withdraw URI`,
          i18n.str`Withdraw URI: ${resp.body.taler_withdraw_uri}`);
      } else {
        updateSettings("currentWithdrawalOperationId", uri.withdrawalOperationId)
      }
    })
  }

  const withdrawalOperationId = settings.currentWithdrawalOperationId
  useEffect(() => {
    if (withdrawalOperationId === undefined) {
      doSilentStart()
    }
  }, [settings.fastWithdrawal, amount])

  if (!withdrawalOperationId) {
    return {
      status: "loading",
      error: undefined
    }
  }

  const wid = withdrawalOperationId

  async function doAbort() {
    await withRuntimeErrorHandling(i18n, async () => {
      const resp = await api.abortWithdrawalById(wid);
      if (resp.type === "ok") {
        updateSettings("currentWithdrawalOperationId", undefined)
        onClose();
      } else {
        switch (resp.case) {
          case "previously-confirmed": return notify({
            type: "error",
            title: i18n.str`The reserve operation has been confirmed previously and can't be aborted`,
            description: resp.detail.hint as TranslatedString,
            debug: resp.detail,
          })
          case "invalid-id": return notify({
            type: "error",
            title: i18n.str`The operation id is invalid.`,
            description: resp.detail.hint as TranslatedString,
            debug: resp.detail,
          });
          case "not-found": return notify({
            type: "error",
            title: i18n.str`The operation was not found.`,
            description: resp.detail.hint as TranslatedString,
            debug: resp.detail,
          });
          default: assertUnreachable(resp)
        }
      }
    })
  }

  async function doConfirm() {
    setBusy({})
    await withRuntimeErrorHandling(i18n, async () => {
      const resp = await api.confirmWithdrawalById(wid);
      if (resp.type === "ok") {
        mutate(() => true)//clean withdrawal state
        if (!settings.showWithdrawalSuccess) {
          notifyInfo(i18n.str`Wire transfer completed!`)
        }
      } else {
        switch (resp.case) {
          case "previously-aborted": return notify({
            type: "error",
            title: i18n.str`The withdrawal has been aborted previously and can't be confirmed`,
            description: resp.detail.hint as TranslatedString,
            debug: resp.detail,
          })
          case "no-exchange-or-reserve-selected": return notify({
            type: "error",
            title: i18n.str`The withdraw operation cannot be confirmed because no exchange and reserve public key selection happened before`,
            description: resp.detail.hint as TranslatedString,
            debug: resp.detail,
          })
          case "invalid-id": return notify({
            type: "error",
            title: i18n.str`The operation id is invalid.`,
            description: resp.detail.hint as TranslatedString,
            debug: resp.detail,
          });
          case "not-found": return notify({
            type: "error",
            title: i18n.str`The operation was not found.`,
            description: resp.detail.hint as TranslatedString,
            debug: resp.detail,
          });
          default: assertUnreachable(resp)
        }
      }
    })
    setBusy(undefined)
  }

  const uri = stringifyWithdrawUri({
    bankIntegrationApiBaseUrl: api.getIntegrationAPI().baseUrl,
    withdrawalOperationId,
  });
  const parsedUri = parseWithdrawUri(uri);
  if (!parsedUri) {
    return {
      status: "invalid-withdrawal",
      error: undefined,
      uri,
      onClose,
    }
  }

  return (): utils.RecursiveState<State> => {
    const result = useWithdrawalDetails(withdrawalOperationId);
    const shouldCreateNewOperation = result && !(result instanceof TalerError)

    useEffect(() => {
      if (shouldCreateNewOperation) {
        doSilentStart()
      }
    }, [])
    if (!result) {
      return {
        status: "loading",
        error: undefined
      }
    }
    if (result instanceof TalerError) {
      return {
        status: "loading-error",
        error: result
      }
    }

    if (result.type === "fail") {
      switch (result.case) {
        case "not-found": {
          return {
            status: "aborted",
            error: undefined,
            onClose: async () => {
              updateSettings("currentWithdrawalOperationId", undefined)
              onClose()
            },
          }
        }
        case "invalid-id": {
          return {
            status: "aborted",
            error: undefined,
            onClose: async () => {
              updateSettings("currentWithdrawalOperationId", undefined)
              onClose()
            },
          }

        }
        default: assertUnreachable(result)
      }
    }

    const { body: data } = result;
    if (data.aborted) {
      return {
        status: "aborted",
        error: undefined,
        onClose: async () => {
          updateSettings("currentWithdrawalOperationId", undefined)
          onClose()
        },
      }
    }

    if (data.confirmation_done) {
      if (!settings.showWithdrawalSuccess) {
        updateSettings("currentWithdrawalOperationId", undefined)
        onClose()
      }
      return {
        status: "confirmed",
        error: undefined,
        onClose: async () => {
          updateSettings("currentWithdrawalOperationId", undefined)
          onClose()
        },
      }
    }

    if (!data.selection_done) {
      return {
        status: "ready",
        error: undefined,
        uri: parsedUri,
        onClose: doAbort,
        onAbort: doAbort,
      }
    }

    if (!data.selected_reserve_pub) {
      return {
        status: "invalid-reserve",
        error: undefined,
        reserve: data.selected_reserve_pub,
        onClose,
      }
    }

    const account = !data.selected_exchange_account ? undefined : parsePaytoUri(data.selected_exchange_account)

    if (!account) {
      return {
        status: "invalid-payto",
        error: undefined,
        payto: data.selected_exchange_account,
        onClose,
      }
    }

    return {
      status: "need-confirmation",
      error: undefined,
      onAbort: doAbort,
      busy: !!busy,
      onConfirm: doConfirm
    }
  }

}