2019-08-29 23:12:55 +02:00
|
|
|
/*
|
|
|
|
This file is part of TALER
|
|
|
|
(C) 2015-2016 GNUnet e.V.
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
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
|
|
|
|
TALER; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Page shown to the user to confirm creation
|
|
|
|
* of a reserve, usually requested by the bank.
|
|
|
|
*
|
2022-02-23 19:18:37 +01:00
|
|
|
* @author sebasjm
|
2019-08-29 23:12:55 +02:00
|
|
|
*/
|
|
|
|
|
2021-11-15 15:18:58 +01:00
|
|
|
import {
|
|
|
|
AmountJson,
|
|
|
|
Amounts,
|
|
|
|
ExchangeListItem,
|
|
|
|
i18n,
|
2022-02-23 19:18:37 +01:00
|
|
|
Translate,
|
2021-11-15 15:18:58 +01:00
|
|
|
WithdrawUriInfoResponse,
|
|
|
|
} from "@gnu-taler/taler-util";
|
2022-02-18 20:54:15 +01:00
|
|
|
import { OperationFailedError } from "@gnu-taler/taler-wallet-core";
|
2021-11-22 21:34:27 +01:00
|
|
|
import { Fragment, h, VNode } from "preact";
|
2021-10-11 20:59:55 +02:00
|
|
|
import { useState } from "preact/hooks";
|
2022-01-20 17:12:28 +01:00
|
|
|
import { Loading } from "../components/Loading";
|
|
|
|
import { LoadingError } from "../components/LoadingError";
|
2022-02-18 20:54:15 +01:00
|
|
|
import { ErrorTalerOperation } from "../components/ErrorTalerOperation";
|
2021-11-15 15:18:58 +01:00
|
|
|
import { LogoHeader } from "../components/LogoHeader";
|
|
|
|
import { Part } from "../components/Part";
|
|
|
|
import { SelectList } from "../components/SelectList";
|
|
|
|
import {
|
|
|
|
ButtonSuccess,
|
|
|
|
ButtonWarning,
|
|
|
|
LinkSuccess,
|
|
|
|
WalletAction,
|
|
|
|
} from "../components/styled";
|
|
|
|
import { useAsyncAsHook } from "../hooks/useAsyncAsHook";
|
2022-01-04 21:06:17 +01:00
|
|
|
import {
|
|
|
|
amountToString,
|
|
|
|
buildTermsOfServiceState,
|
|
|
|
TermsState,
|
|
|
|
} from "../utils/index";
|
2021-11-22 21:34:27 +01:00
|
|
|
import * as wxApi from "../wxApi";
|
|
|
|
import { TermsOfServiceSection } from "./TermsOfServiceSection";
|
2019-08-29 23:12:55 +02:00
|
|
|
|
2021-05-07 23:10:27 +02:00
|
|
|
interface Props {
|
|
|
|
talerWithdrawUri?: string;
|
|
|
|
}
|
2019-08-29 23:12:55 +02:00
|
|
|
|
2021-05-31 16:34:48 +02:00
|
|
|
export interface ViewProps {
|
2021-10-13 19:26:18 +02:00
|
|
|
withdrawalFee: AmountJson;
|
2021-11-22 21:34:27 +01:00
|
|
|
exchangeBaseUrl?: string;
|
2021-10-11 20:59:55 +02:00
|
|
|
amount: AmountJson;
|
|
|
|
onSwitchExchange: (ex: string) => void;
|
2021-09-13 18:32:58 +02:00
|
|
|
onWithdraw: () => Promise<void>;
|
|
|
|
onReview: (b: boolean) => void;
|
|
|
|
onAccept: (b: boolean) => void;
|
|
|
|
reviewing: boolean;
|
2021-10-12 20:18:29 +02:00
|
|
|
reviewed: boolean;
|
2021-11-22 21:34:27 +01:00
|
|
|
terms: TermsState;
|
2021-10-13 19:26:18 +02:00
|
|
|
knownExchanges: ExchangeListItem[];
|
2021-11-15 15:18:58 +01:00
|
|
|
}
|
2021-09-13 18:32:58 +02:00
|
|
|
|
2021-11-15 15:18:58 +01:00
|
|
|
export function View({
|
|
|
|
withdrawalFee,
|
|
|
|
exchangeBaseUrl,
|
|
|
|
knownExchanges,
|
|
|
|
amount,
|
|
|
|
onWithdraw,
|
|
|
|
onSwitchExchange,
|
|
|
|
terms,
|
|
|
|
reviewing,
|
|
|
|
onReview,
|
|
|
|
onAccept,
|
|
|
|
reviewed,
|
2021-11-16 17:59:53 +01:00
|
|
|
}: ViewProps): VNode {
|
2022-02-18 20:54:15 +01:00
|
|
|
const [withdrawError, setWithdrawError] = useState<
|
|
|
|
OperationFailedError | undefined
|
|
|
|
>(undefined);
|
|
|
|
const [confirmDisabled, setConfirmDisabled] = useState<boolean>(false);
|
|
|
|
|
2021-11-15 15:18:58 +01:00
|
|
|
const needsReview = terms.status === "changed" || terms.status === "new";
|
|
|
|
|
2021-11-24 13:52:58 +01:00
|
|
|
const [switchingExchange, setSwitchingExchange] = useState(false);
|
|
|
|
const [nextExchange, setNextExchange] = useState<string | undefined>(
|
|
|
|
undefined,
|
|
|
|
);
|
|
|
|
|
2022-02-18 20:54:15 +01:00
|
|
|
const exchanges = knownExchanges
|
|
|
|
.filter((e) => e.currency === amount.currency)
|
|
|
|
.reduce(
|
|
|
|
(prev, ex) => ({ ...prev, [ex.exchangeBaseUrl]: ex.exchangeBaseUrl }),
|
|
|
|
{},
|
|
|
|
);
|
|
|
|
|
|
|
|
async function doWithdrawAndCheckError() {
|
|
|
|
try {
|
|
|
|
setConfirmDisabled(true);
|
|
|
|
await onWithdraw();
|
|
|
|
} catch (e) {
|
|
|
|
if (e instanceof OperationFailedError) {
|
|
|
|
setWithdrawError(e);
|
|
|
|
}
|
|
|
|
setConfirmDisabled(false);
|
|
|
|
}
|
|
|
|
}
|
2021-10-11 20:59:55 +02:00
|
|
|
|
2019-08-29 23:12:55 +02:00
|
|
|
return (
|
2021-09-17 20:48:33 +02:00
|
|
|
<WalletAction>
|
2021-09-08 20:30:32 +02:00
|
|
|
<LogoHeader />
|
2022-02-23 19:18:37 +01:00
|
|
|
<h2>
|
2022-02-23 19:44:14 +01:00
|
|
|
<i18n.Translate>Digital cash withdrawal</i18n.Translate>
|
2022-02-23 19:18:37 +01:00
|
|
|
</h2>
|
2022-02-18 20:54:15 +01:00
|
|
|
|
|
|
|
{withdrawError && (
|
|
|
|
<ErrorTalerOperation
|
2022-02-23 19:18:37 +01:00
|
|
|
title={
|
2022-02-23 19:44:14 +01:00
|
|
|
<i18n.Translate>
|
|
|
|
Could not finish the withdrawal operation
|
|
|
|
</i18n.Translate>
|
2022-02-23 19:18:37 +01:00
|
|
|
}
|
2022-02-18 20:54:15 +01:00
|
|
|
error={withdrawError.operationError}
|
|
|
|
/>
|
|
|
|
)}
|
|
|
|
|
2021-09-08 20:30:32 +02:00
|
|
|
<section>
|
2021-11-15 15:18:58 +01:00
|
|
|
<Part
|
2022-02-23 19:44:14 +01:00
|
|
|
title={<i18n.Translate>Total to withdraw</i18n.Translate>}
|
2021-11-15 15:18:58 +01:00
|
|
|
text={amountToString(Amounts.sub(amount, withdrawalFee).amount)}
|
|
|
|
kind="positive"
|
|
|
|
/>
|
|
|
|
{Amounts.isNonZero(withdrawalFee) && (
|
2021-11-24 12:57:26 +01:00
|
|
|
<Fragment>
|
|
|
|
<Part
|
2022-02-23 19:44:14 +01:00
|
|
|
title={<i18n.Translate>Chosen amount</i18n.Translate>}
|
2021-11-24 12:57:26 +01:00
|
|
|
text={amountToString(amount)}
|
|
|
|
kind="neutral"
|
|
|
|
/>
|
|
|
|
<Part
|
2022-02-23 19:44:14 +01:00
|
|
|
title={<i18n.Translate>Exchange fee</i18n.Translate>}
|
2021-11-24 12:57:26 +01:00
|
|
|
text={amountToString(withdrawalFee)}
|
|
|
|
kind="negative"
|
|
|
|
/>
|
|
|
|
</Fragment>
|
2021-11-15 15:18:58 +01:00
|
|
|
)}
|
2021-11-22 21:34:27 +01:00
|
|
|
{exchangeBaseUrl && (
|
2022-02-23 19:18:37 +01:00
|
|
|
<Part
|
2022-02-23 19:44:14 +01:00
|
|
|
title={<i18n.Translate>Exchange</i18n.Translate>}
|
2022-02-23 19:18:37 +01:00
|
|
|
text={exchangeBaseUrl}
|
|
|
|
kind="neutral"
|
|
|
|
big
|
|
|
|
/>
|
2021-11-22 21:34:27 +01:00
|
|
|
)}
|
2021-09-08 20:30:32 +02:00
|
|
|
</section>
|
2021-11-15 15:18:58 +01:00
|
|
|
{!reviewing && (
|
2021-09-13 18:32:58 +02:00
|
|
|
<section>
|
2021-11-24 13:52:58 +01:00
|
|
|
{switchingExchange ? (
|
2021-11-15 15:18:58 +01:00
|
|
|
<Fragment>
|
|
|
|
<div>
|
|
|
|
<SelectList
|
2022-02-23 19:44:14 +01:00
|
|
|
label={<i18n.Translate>Known exchanges</i18n.Translate>}
|
2021-11-15 15:18:58 +01:00
|
|
|
list={exchanges}
|
2021-11-24 13:52:58 +01:00
|
|
|
value={nextExchange}
|
|
|
|
name="switchingExchange"
|
|
|
|
onChange={setNextExchange}
|
2021-11-15 15:18:58 +01:00
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
<LinkSuccess
|
|
|
|
upperCased
|
2021-11-24 13:52:58 +01:00
|
|
|
onClick={() => {
|
|
|
|
if (nextExchange !== undefined) {
|
|
|
|
onSwitchExchange(nextExchange);
|
|
|
|
}
|
|
|
|
setSwitchingExchange(false);
|
|
|
|
}}
|
2021-11-15 15:18:58 +01:00
|
|
|
>
|
2022-02-23 19:18:37 +01:00
|
|
|
{nextExchange === undefined ? (
|
2022-02-23 19:44:14 +01:00
|
|
|
<i18n.Translate>Cancel exchange selection</i18n.Translate>
|
2022-02-23 19:18:37 +01:00
|
|
|
) : (
|
2022-02-23 19:44:14 +01:00
|
|
|
<i18n.Translate>Confirm exchange selection</i18n.Translate>
|
2022-02-23 19:18:37 +01:00
|
|
|
)}
|
2021-11-15 15:18:58 +01:00
|
|
|
</LinkSuccess>
|
|
|
|
</Fragment>
|
|
|
|
) : (
|
2021-11-24 13:52:58 +01:00
|
|
|
<LinkSuccess upperCased onClick={() => setSwitchingExchange(true)}>
|
2022-02-23 19:44:14 +01:00
|
|
|
<i18n.Translate>Switch exchange</i18n.Translate>
|
2021-11-15 15:18:58 +01:00
|
|
|
</LinkSuccess>
|
|
|
|
)}
|
2021-09-13 18:32:58 +02:00
|
|
|
</section>
|
2021-11-15 15:18:58 +01:00
|
|
|
)}
|
2021-11-22 21:34:27 +01:00
|
|
|
<TermsOfServiceSection
|
|
|
|
reviewed={reviewed}
|
|
|
|
reviewing={reviewing}
|
|
|
|
terms={terms}
|
|
|
|
onAccept={onAccept}
|
|
|
|
onReview={onReview}
|
|
|
|
/>
|
2021-09-13 18:32:58 +02:00
|
|
|
<section>
|
2021-11-15 15:18:58 +01:00
|
|
|
{(terms.status === "accepted" || (needsReview && reviewed)) && (
|
2021-09-17 20:48:33 +02:00
|
|
|
<ButtonSuccess
|
|
|
|
upperCased
|
2022-02-18 20:54:15 +01:00
|
|
|
disabled={!exchangeBaseUrl || confirmDisabled}
|
|
|
|
onClick={doWithdrawAndCheckError}
|
2021-09-17 20:48:33 +02:00
|
|
|
>
|
2022-02-23 19:44:14 +01:00
|
|
|
<i18n.Translate>Confirm withdrawal</i18n.Translate>
|
2021-09-17 20:48:33 +02:00
|
|
|
</ButtonSuccess>
|
2021-11-15 15:18:58 +01:00
|
|
|
)}
|
|
|
|
{terms.status === "notfound" && (
|
2021-10-13 14:54:18 +02:00
|
|
|
<ButtonWarning
|
|
|
|
upperCased
|
2021-10-13 19:26:18 +02:00
|
|
|
disabled={!exchangeBaseUrl}
|
2022-02-18 20:54:15 +01:00
|
|
|
onClick={doWithdrawAndCheckError}
|
2021-10-13 14:54:18 +02:00
|
|
|
>
|
2022-02-23 19:44:14 +01:00
|
|
|
<i18n.Translate>Withdraw anyway</i18n.Translate>
|
2021-10-13 14:54:18 +02:00
|
|
|
</ButtonWarning>
|
2021-11-15 15:18:58 +01:00
|
|
|
)}
|
2021-09-08 20:30:32 +02:00
|
|
|
</section>
|
2021-08-19 05:34:47 +02:00
|
|
|
</WalletAction>
|
2021-11-15 15:18:58 +01:00
|
|
|
);
|
2021-05-31 16:34:48 +02:00
|
|
|
}
|
|
|
|
|
2021-11-15 15:18:58 +01:00
|
|
|
export function WithdrawPageWithParsedURI({
|
|
|
|
uri,
|
|
|
|
uriInfo,
|
|
|
|
}: {
|
|
|
|
uri: string;
|
|
|
|
uriInfo: WithdrawUriInfoResponse;
|
2021-11-16 17:59:53 +01:00
|
|
|
}): VNode {
|
2021-11-15 15:18:58 +01:00
|
|
|
const [customExchange, setCustomExchange] = useState<string | undefined>(
|
|
|
|
undefined,
|
|
|
|
);
|
2021-11-22 21:34:27 +01:00
|
|
|
// const [errorAccepting, setErrorAccepting] = useState<string | undefined>(
|
|
|
|
// undefined,
|
|
|
|
// );
|
2021-11-15 15:18:58 +01:00
|
|
|
|
|
|
|
const [reviewing, setReviewing] = useState<boolean>(false);
|
|
|
|
const [reviewed, setReviewed] = useState<boolean>(false);
|
|
|
|
|
2021-11-22 21:34:27 +01:00
|
|
|
const knownExchangesHook = useAsyncAsHook(() => wxApi.listExchanges());
|
2021-11-15 15:18:58 +01:00
|
|
|
|
|
|
|
const knownExchanges =
|
|
|
|
!knownExchangesHook || knownExchangesHook.hasError
|
|
|
|
? []
|
|
|
|
: knownExchangesHook.response.exchanges;
|
|
|
|
const withdrawAmount = Amounts.parseOrThrow(uriInfo.amount);
|
|
|
|
const thisCurrencyExchanges = knownExchanges.filter(
|
|
|
|
(ex) => ex.currency === withdrawAmount.currency,
|
|
|
|
);
|
|
|
|
|
2021-11-22 21:34:27 +01:00
|
|
|
const exchange: string | undefined =
|
|
|
|
customExchange ??
|
|
|
|
uriInfo.defaultExchangeBaseUrl ??
|
|
|
|
(thisCurrencyExchanges[0]
|
|
|
|
? thisCurrencyExchanges[0].exchangeBaseUrl
|
|
|
|
: undefined);
|
|
|
|
|
2021-10-11 20:59:55 +02:00
|
|
|
const detailsHook = useAsyncAsHook(async () => {
|
2021-11-15 15:18:58 +01:00
|
|
|
if (!exchange) throw Error("no default exchange");
|
2021-11-22 21:34:27 +01:00
|
|
|
const tos = await wxApi.getExchangeTos(exchange, ["text/xml"]);
|
|
|
|
|
|
|
|
const tosState = buildTermsOfServiceState(tos);
|
|
|
|
|
|
|
|
const info = await wxApi.getExchangeWithdrawalInfo({
|
2021-10-11 20:59:55 +02:00
|
|
|
exchangeBaseUrl: exchange,
|
|
|
|
amount: withdrawAmount,
|
2021-11-15 15:18:58 +01:00
|
|
|
tosAcceptedFormat: ["text/xml"],
|
|
|
|
});
|
2021-11-22 21:34:27 +01:00
|
|
|
return { tos: tosState, info };
|
2021-11-15 15:18:58 +01:00
|
|
|
});
|
2021-10-11 20:59:55 +02:00
|
|
|
|
|
|
|
if (!detailsHook) {
|
2022-01-20 17:12:28 +01:00
|
|
|
return <Loading />;
|
2021-10-11 20:59:55 +02:00
|
|
|
}
|
|
|
|
if (detailsHook.hasError) {
|
2021-11-15 15:18:58 +01:00
|
|
|
return (
|
2022-01-20 17:12:28 +01:00
|
|
|
<LoadingError
|
2022-02-23 19:44:14 +01:00
|
|
|
title={
|
|
|
|
<i18n.Translate>Could not load the withdrawal details</i18n.Translate>
|
|
|
|
}
|
2022-01-20 17:12:28 +01:00
|
|
|
error={detailsHook}
|
|
|
|
/>
|
2021-11-15 15:18:58 +01:00
|
|
|
);
|
2021-08-13 23:04:05 +02:00
|
|
|
}
|
2021-05-31 16:34:48 +02:00
|
|
|
|
2021-11-15 15:18:58 +01:00
|
|
|
const details = detailsHook.response;
|
2021-10-11 20:59:55 +02:00
|
|
|
|
2021-09-13 20:32:06 +02:00
|
|
|
const onAccept = async (): Promise<void> => {
|
2021-11-22 21:34:27 +01:00
|
|
|
if (!exchange) return;
|
2021-09-17 20:48:33 +02:00
|
|
|
try {
|
2021-11-22 21:34:27 +01:00
|
|
|
await wxApi.setExchangeTosAccepted(exchange, details.tos.version);
|
2021-11-15 15:18:58 +01:00
|
|
|
setReviewed(true);
|
2021-09-17 20:48:33 +02:00
|
|
|
} catch (e) {
|
2021-10-11 20:59:55 +02:00
|
|
|
if (e instanceof Error) {
|
2021-11-22 21:34:27 +01:00
|
|
|
//FIXME: uncomment this and display error
|
|
|
|
// setErrorAccepting(e.message);
|
2021-10-11 20:59:55 +02:00
|
|
|
}
|
2021-09-17 20:48:33 +02:00
|
|
|
}
|
2021-11-15 15:18:58 +01:00
|
|
|
};
|
2021-09-13 20:32:06 +02:00
|
|
|
|
2021-09-13 18:32:58 +02:00
|
|
|
const onWithdraw = async (): Promise<void> => {
|
2021-11-22 21:34:27 +01:00
|
|
|
if (!exchange) return;
|
2022-02-18 20:54:15 +01:00
|
|
|
const res = await wxApi.acceptWithdrawal(uri, exchange);
|
|
|
|
if (res.confirmTransferUrl) {
|
|
|
|
document.location.href = res.confirmTransferUrl;
|
2021-05-31 16:34:48 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2021-11-15 15:18:58 +01:00
|
|
|
return (
|
|
|
|
<View
|
|
|
|
onWithdraw={onWithdraw}
|
|
|
|
amount={withdrawAmount}
|
|
|
|
exchangeBaseUrl={exchange}
|
|
|
|
withdrawalFee={details.info.withdrawFee} //FIXME
|
2021-11-22 21:34:27 +01:00
|
|
|
terms={detailsHook.response.tos}
|
2021-11-15 15:18:58 +01:00
|
|
|
onSwitchExchange={setCustomExchange}
|
|
|
|
knownExchanges={knownExchanges}
|
|
|
|
reviewed={reviewed}
|
|
|
|
onAccept={onAccept}
|
|
|
|
reviewing={reviewing}
|
|
|
|
onReview={setReviewing}
|
|
|
|
/>
|
|
|
|
);
|
2019-08-29 23:12:55 +02:00
|
|
|
}
|
2021-11-15 15:18:58 +01:00
|
|
|
export function WithdrawPage({ talerWithdrawUri }: Props): VNode {
|
|
|
|
const uriInfoHook = useAsyncAsHook(() =>
|
|
|
|
!talerWithdrawUri
|
|
|
|
? Promise.reject(undefined)
|
2021-11-22 21:34:27 +01:00
|
|
|
: wxApi.getWithdrawalDetailsForUri({ talerWithdrawUri }),
|
2021-11-15 15:18:58 +01:00
|
|
|
);
|
2021-10-11 20:59:55 +02:00
|
|
|
|
|
|
|
if (!talerWithdrawUri) {
|
2021-11-15 15:18:58 +01:00
|
|
|
return (
|
|
|
|
<span>
|
2022-02-23 19:44:14 +01:00
|
|
|
<i18n.Translate>missing withdraw uri</i18n.Translate>
|
2021-11-15 15:18:58 +01:00
|
|
|
</span>
|
|
|
|
);
|
2021-10-11 20:59:55 +02:00
|
|
|
}
|
|
|
|
if (!uriInfoHook) {
|
2022-01-20 17:12:28 +01:00
|
|
|
return <Loading />;
|
2021-10-11 20:59:55 +02:00
|
|
|
}
|
|
|
|
if (uriInfoHook.hasError) {
|
2021-11-15 15:18:58 +01:00
|
|
|
return (
|
2022-01-20 17:12:28 +01:00
|
|
|
<LoadingError
|
2022-02-23 19:44:14 +01:00
|
|
|
title={
|
|
|
|
<i18n.Translate>Could not get the info from the URI</i18n.Translate>
|
|
|
|
}
|
2022-01-20 17:12:28 +01:00
|
|
|
error={uriInfoHook}
|
|
|
|
/>
|
2021-11-15 15:18:58 +01:00
|
|
|
);
|
2021-10-11 20:59:55 +02:00
|
|
|
}
|
2022-01-20 17:12:28 +01:00
|
|
|
|
2021-11-15 15:18:58 +01:00
|
|
|
return (
|
|
|
|
<WithdrawPageWithParsedURI
|
|
|
|
uri={talerWithdrawUri}
|
|
|
|
uriInfo={uriInfoHook.response}
|
|
|
|
/>
|
|
|
|
);
|
2021-10-11 20:59:55 +02:00
|
|
|
}
|