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.
|
|
|
|
*
|
|
|
|
* @author Florian Dold
|
|
|
|
*/
|
|
|
|
|
2021-11-15 15:18:58 +01:00
|
|
|
import {
|
|
|
|
AmountJson,
|
|
|
|
Amounts,
|
|
|
|
ExchangeListItem,
|
|
|
|
GetExchangeTosResult,
|
|
|
|
i18n,
|
|
|
|
WithdrawUriInfoResponse,
|
|
|
|
} from "@gnu-taler/taler-util";
|
2021-11-16 17:59:53 +01:00
|
|
|
import { VNode, h, Fragment } from "preact";
|
2021-10-11 20:59:55 +02:00
|
|
|
import { useState } from "preact/hooks";
|
2021-11-15 15:18:58 +01:00
|
|
|
import { CheckboxOutlined } from "../components/CheckboxOutlined";
|
|
|
|
import { ExchangeXmlTos } from "../components/ExchangeToS";
|
|
|
|
import { LogoHeader } from "../components/LogoHeader";
|
|
|
|
import { Part } from "../components/Part";
|
|
|
|
import { SelectList } from "../components/SelectList";
|
|
|
|
import {
|
|
|
|
ButtonSuccess,
|
|
|
|
ButtonWarning,
|
|
|
|
LinkSuccess,
|
|
|
|
TermsOfService,
|
|
|
|
WalletAction,
|
|
|
|
WarningText,
|
|
|
|
} from "../components/styled";
|
|
|
|
import { useAsyncAsHook } from "../hooks/useAsyncAsHook";
|
2020-06-03 13:16:25 +02:00
|
|
|
import {
|
2021-11-15 15:18:58 +01:00
|
|
|
acceptWithdrawal,
|
|
|
|
getExchangeTos,
|
|
|
|
getExchangeWithdrawalInfo,
|
|
|
|
getWithdrawalDetailsForUri,
|
|
|
|
listExchanges,
|
|
|
|
setExchangeTosAccepted,
|
2020-06-03 13:16:25 +02:00
|
|
|
} from "../wxApi";
|
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;
|
|
|
|
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-09-13 20:32:06 +02:00
|
|
|
confirmed: boolean;
|
2021-09-13 18:32:58 +02:00
|
|
|
terms: {
|
|
|
|
value?: TermsDocument;
|
|
|
|
status: TermsStatus;
|
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
|
|
|
type TermsStatus = "new" | "accepted" | "changed" | "notfound";
|
2021-09-13 18:32:58 +02:00
|
|
|
|
2021-11-15 15:18:58 +01:00
|
|
|
type TermsDocument =
|
|
|
|
| TermsDocumentXml
|
|
|
|
| TermsDocumentHtml
|
|
|
|
| TermsDocumentPlain
|
|
|
|
| TermsDocumentJson
|
|
|
|
| TermsDocumentPdf;
|
2021-09-13 18:32:58 +02:00
|
|
|
|
|
|
|
interface TermsDocumentXml {
|
2021-11-15 15:18:58 +01:00
|
|
|
type: "xml";
|
|
|
|
document: Document;
|
2021-09-13 18:32:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
interface TermsDocumentHtml {
|
2021-11-15 15:18:58 +01:00
|
|
|
type: "html";
|
|
|
|
href: URL;
|
2021-10-12 20:18:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
interface TermsDocumentPlain {
|
2021-11-15 15:18:58 +01:00
|
|
|
type: "plain";
|
|
|
|
content: string;
|
2021-10-12 20:18:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
interface TermsDocumentJson {
|
2021-11-15 15:18:58 +01:00
|
|
|
type: "json";
|
|
|
|
data: any;
|
2021-10-12 20:18:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
interface TermsDocumentPdf {
|
2021-11-15 15:18:58 +01:00
|
|
|
type: "pdf";
|
|
|
|
location: URL;
|
2021-09-13 18:32:58 +02:00
|
|
|
}
|
|
|
|
|
2021-11-16 17:59:53 +01:00
|
|
|
function amountToString(text: AmountJson): string {
|
2021-11-15 15:18:58 +01:00
|
|
|
const aj = Amounts.jsonifyAmount(text);
|
|
|
|
const amount = Amounts.stringifyValue(aj);
|
|
|
|
return `${amount} ${aj.currency}`;
|
2021-09-08 20:30:32 +02:00
|
|
|
}
|
|
|
|
|
2021-11-15 15:18:58 +01:00
|
|
|
export function View({
|
|
|
|
withdrawalFee,
|
|
|
|
exchangeBaseUrl,
|
|
|
|
knownExchanges,
|
|
|
|
amount,
|
|
|
|
onWithdraw,
|
|
|
|
onSwitchExchange,
|
|
|
|
terms,
|
|
|
|
reviewing,
|
|
|
|
onReview,
|
|
|
|
onAccept,
|
|
|
|
reviewed,
|
|
|
|
confirmed,
|
2021-11-16 17:59:53 +01:00
|
|
|
}: ViewProps): VNode {
|
2021-11-15 15:18:58 +01:00
|
|
|
const needsReview = terms.status === "changed" || terms.status === "new";
|
|
|
|
|
|
|
|
const [switchingExchange, setSwitchingExchange] = useState<
|
|
|
|
string | undefined
|
|
|
|
>(undefined);
|
|
|
|
const exchanges = knownExchanges.reduce(
|
|
|
|
(prev, ex) => ({ ...prev, [ex.exchangeBaseUrl]: ex.exchangeBaseUrl }),
|
|
|
|
{},
|
|
|
|
);
|
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 />
|
2021-11-15 15:18:58 +01:00
|
|
|
<h2>{i18n.str`Digital cash withdrawal`}</h2>
|
2021-09-08 20:30:32 +02:00
|
|
|
<section>
|
2021-11-15 15:18:58 +01:00
|
|
|
<Part
|
|
|
|
title="Total to withdraw"
|
|
|
|
text={amountToString(Amounts.sub(amount, withdrawalFee).amount)}
|
|
|
|
kind="positive"
|
|
|
|
/>
|
|
|
|
<Part
|
|
|
|
title="Chosen amount"
|
|
|
|
text={amountToString(amount)}
|
|
|
|
kind="neutral"
|
|
|
|
/>
|
|
|
|
{Amounts.isNonZero(withdrawalFee) && (
|
|
|
|
<Part
|
|
|
|
title="Exchange fee"
|
|
|
|
text={amountToString(withdrawalFee)}
|
|
|
|
kind="negative"
|
|
|
|
/>
|
|
|
|
)}
|
|
|
|
<Part title="Exchange" text={exchangeBaseUrl} kind="neutral" big />
|
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-15 15:18:58 +01:00
|
|
|
{switchingExchange !== undefined ? (
|
|
|
|
<Fragment>
|
|
|
|
<div>
|
|
|
|
<SelectList
|
|
|
|
label="Known exchanges"
|
|
|
|
list={exchanges}
|
|
|
|
name=""
|
|
|
|
onChange={onSwitchExchange}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
<LinkSuccess
|
|
|
|
upperCased
|
|
|
|
onClick={() => onSwitchExchange(switchingExchange)}
|
|
|
|
>
|
|
|
|
{i18n.str`Confirm exchange selection`}
|
|
|
|
</LinkSuccess>
|
|
|
|
</Fragment>
|
|
|
|
) : (
|
|
|
|
<LinkSuccess upperCased onClick={() => setSwitchingExchange("")}>
|
2021-10-11 20:59:55 +02:00
|
|
|
{i18n.str`Switch exchange`}
|
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
|
|
|
)}
|
|
|
|
{!reviewing && reviewed && (
|
2021-09-13 18:32:58 +02:00
|
|
|
<section>
|
2021-11-15 15:18:58 +01:00
|
|
|
<LinkSuccess upperCased onClick={() => onReview(true)}>
|
2021-09-13 18:32:58 +02:00
|
|
|
{i18n.str`Show terms of service`}
|
|
|
|
</LinkSuccess>
|
|
|
|
</section>
|
2021-11-15 15:18:58 +01:00
|
|
|
)}
|
|
|
|
{terms.status === "notfound" && (
|
2021-10-15 00:37:18 +02:00
|
|
|
<section>
|
|
|
|
<WarningText>
|
|
|
|
{i18n.str`Exchange doesn't have terms of service`}
|
|
|
|
</WarningText>
|
|
|
|
</section>
|
2021-11-15 15:18:58 +01:00
|
|
|
)}
|
|
|
|
{reviewing && (
|
2021-09-13 18:32:58 +02:00
|
|
|
<section>
|
2021-11-15 15:18:58 +01:00
|
|
|
{terms.status !== "accepted" &&
|
|
|
|
terms.value &&
|
|
|
|
terms.value.type === "xml" && (
|
|
|
|
<TermsOfService>
|
|
|
|
<ExchangeXmlTos doc={terms.value.document} />
|
|
|
|
</TermsOfService>
|
|
|
|
)}
|
|
|
|
{terms.status !== "accepted" &&
|
|
|
|
terms.value &&
|
|
|
|
terms.value.type === "plain" && (
|
|
|
|
<div style={{ textAlign: "left" }}>
|
|
|
|
<pre>{terms.value.content}</pre>
|
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
{terms.status !== "accepted" &&
|
|
|
|
terms.value &&
|
|
|
|
terms.value.type === "html" && (
|
|
|
|
<iframe src={terms.value.href.toString()} />
|
|
|
|
)}
|
|
|
|
{terms.status !== "accepted" &&
|
|
|
|
terms.value &&
|
|
|
|
terms.value.type === "pdf" && (
|
|
|
|
<a href={terms.value.location.toString()} download="tos.pdf">
|
|
|
|
Download Terms of Service
|
|
|
|
</a>
|
|
|
|
)}
|
|
|
|
</section>
|
|
|
|
)}
|
|
|
|
{reviewing && reviewed && (
|
2021-09-13 18:32:58 +02:00
|
|
|
<section>
|
2021-11-15 15:18:58 +01:00
|
|
|
<LinkSuccess upperCased onClick={() => onReview(false)}>
|
2021-09-13 18:32:58 +02:00
|
|
|
{i18n.str`Hide terms of service`}
|
|
|
|
</LinkSuccess>
|
|
|
|
</section>
|
2021-11-15 15:18:58 +01:00
|
|
|
)}
|
|
|
|
{(reviewing || reviewed) && (
|
2021-09-13 18:32:58 +02:00
|
|
|
<section>
|
2021-09-17 20:48:33 +02:00
|
|
|
<CheckboxOutlined
|
|
|
|
name="terms"
|
2021-10-12 20:18:29 +02:00
|
|
|
enabled={reviewed}
|
2021-09-17 20:48:33 +02:00
|
|
|
label={i18n.str`I accept the exchange terms of service`}
|
|
|
|
onToggle={() => {
|
2021-11-15 15:18:58 +01:00
|
|
|
onAccept(!reviewed);
|
|
|
|
onReview(false);
|
2021-09-17 20:48:33 +02:00
|
|
|
}}
|
|
|
|
/>
|
2021-09-13 18:32:58 +02:00
|
|
|
</section>
|
2021-11-15 15:18:58 +01:00
|
|
|
)}
|
2021-09-13 18:32:58 +02:00
|
|
|
|
2021-10-11 20:59:55 +02:00
|
|
|
{/**
|
|
|
|
* Main action section
|
|
|
|
*/}
|
2021-09-13 18:32:58 +02:00
|
|
|
<section>
|
2021-11-15 15:18:58 +01:00
|
|
|
{terms.status === "new" && !reviewed && !reviewing && (
|
2021-09-17 20:48:33 +02:00
|
|
|
<ButtonSuccess
|
|
|
|
upperCased
|
2021-10-13 19:26:18 +02:00
|
|
|
disabled={!exchangeBaseUrl}
|
2021-09-17 20:48:33 +02:00
|
|
|
onClick={() => onReview(true)}
|
|
|
|
>
|
|
|
|
{i18n.str`Review exchange terms of service`}
|
|
|
|
</ButtonSuccess>
|
2021-11-15 15:18:58 +01:00
|
|
|
)}
|
|
|
|
{terms.status === "changed" && !reviewed && !reviewing && (
|
2021-09-17 20:48:33 +02:00
|
|
|
<ButtonWarning
|
|
|
|
upperCased
|
2021-10-13 19:26:18 +02:00
|
|
|
disabled={!exchangeBaseUrl}
|
2021-09-17 20:48:33 +02:00
|
|
|
onClick={() => onReview(true)}
|
|
|
|
>
|
|
|
|
{i18n.str`Review new version of terms of service`}
|
|
|
|
</ButtonWarning>
|
2021-11-15 15:18:58 +01:00
|
|
|
)}
|
|
|
|
{(terms.status === "accepted" || (needsReview && reviewed)) && (
|
2021-09-17 20:48:33 +02:00
|
|
|
<ButtonSuccess
|
|
|
|
upperCased
|
2021-10-13 19:26:18 +02:00
|
|
|
disabled={!exchangeBaseUrl || confirmed}
|
2021-09-17 20:48:33 +02:00
|
|
|
onClick={onWithdraw}
|
|
|
|
>
|
|
|
|
{i18n.str`Confirm withdrawal`}
|
|
|
|
</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}
|
2021-10-13 14:54:18 +02:00
|
|
|
onClick={onWithdraw}
|
|
|
|
>
|
|
|
|
{i18n.str`Withdraw anyway`}
|
|
|
|
</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,
|
|
|
|
);
|
|
|
|
const [errorAccepting, setErrorAccepting] = useState<string | undefined>(
|
|
|
|
undefined,
|
|
|
|
);
|
|
|
|
|
|
|
|
const [reviewing, setReviewing] = useState<boolean>(false);
|
|
|
|
const [reviewed, setReviewed] = useState<boolean>(false);
|
|
|
|
const [confirmed, setConfirmed] = useState<boolean>(false);
|
|
|
|
|
|
|
|
const knownExchangesHook = useAsyncAsHook(() => listExchanges());
|
|
|
|
|
|
|
|
const knownExchanges =
|
|
|
|
!knownExchangesHook || knownExchangesHook.hasError
|
|
|
|
? []
|
|
|
|
: knownExchangesHook.response.exchanges;
|
|
|
|
const withdrawAmount = Amounts.parseOrThrow(uriInfo.amount);
|
|
|
|
const thisCurrencyExchanges = knownExchanges.filter(
|
|
|
|
(ex) => ex.currency === withdrawAmount.currency,
|
|
|
|
);
|
|
|
|
|
|
|
|
const exchange =
|
|
|
|
customExchange ||
|
|
|
|
uriInfo.defaultExchangeBaseUrl ||
|
|
|
|
thisCurrencyExchanges[0]?.exchangeBaseUrl;
|
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");
|
|
|
|
const tos = await getExchangeTos(exchange, ["text/xml"]);
|
2021-10-13 19:26:18 +02:00
|
|
|
const info = await getExchangeWithdrawalInfo({
|
2021-10-11 20:59:55 +02:00
|
|
|
exchangeBaseUrl: exchange,
|
|
|
|
amount: withdrawAmount,
|
2021-11-15 15:18:58 +01:00
|
|
|
tosAcceptedFormat: ["text/xml"],
|
|
|
|
});
|
|
|
|
return { tos, info };
|
|
|
|
});
|
2021-10-11 20:59:55 +02:00
|
|
|
|
|
|
|
if (!detailsHook) {
|
2021-11-15 15:18:58 +01:00
|
|
|
return (
|
|
|
|
<span>
|
|
|
|
<i18n.Translate>Getting withdrawal details.</i18n.Translate>
|
|
|
|
</span>
|
|
|
|
);
|
2021-10-11 20:59:55 +02:00
|
|
|
}
|
|
|
|
if (detailsHook.hasError) {
|
2021-11-15 15:18:58 +01:00
|
|
|
return (
|
|
|
|
<span>
|
|
|
|
<i18n.Translate>
|
|
|
|
Problems getting details: {detailsHook.message}
|
|
|
|
</i18n.Translate>
|
|
|
|
</span>
|
|
|
|
);
|
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-09-17 20:48:33 +02:00
|
|
|
try {
|
2021-11-15 15:18:58 +01:00
|
|
|
await setExchangeTosAccepted(exchange, details.tos.currentEtag);
|
|
|
|
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-15 15:18:58 +01:00
|
|
|
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-15 15:18:58 +01:00
|
|
|
setConfirmed(true);
|
2021-10-13 19:26:18 +02:00
|
|
|
console.log("accepting exchange", exchange);
|
2021-09-17 20:48:33 +02:00
|
|
|
try {
|
2021-10-13 19:26:18 +02:00
|
|
|
const res = await acceptWithdrawal(uri, exchange);
|
2021-09-17 20:48:33 +02:00
|
|
|
console.log("accept withdrawal response", res);
|
|
|
|
if (res.confirmTransferUrl) {
|
|
|
|
document.location.href = res.confirmTransferUrl;
|
|
|
|
}
|
|
|
|
} catch (e) {
|
2021-11-15 15:18:58 +01:00
|
|
|
setConfirmed(false);
|
2021-05-31 16:34:48 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2021-11-15 15:18:58 +01:00
|
|
|
const termsContent: TermsDocument | undefined = parseTermsOfServiceContent(
|
|
|
|
details.tos.contentType,
|
|
|
|
details.tos.content,
|
|
|
|
);
|
|
|
|
|
|
|
|
const status: TermsStatus = !termsContent
|
|
|
|
? "notfound"
|
|
|
|
: !details.tos.acceptedEtag
|
|
|
|
? "new"
|
|
|
|
: details.tos.acceptedEtag !== details.tos.currentEtag
|
|
|
|
? "changed"
|
|
|
|
: "accepted";
|
|
|
|
|
|
|
|
return (
|
|
|
|
<View
|
|
|
|
onWithdraw={onWithdraw}
|
2021-11-16 17:59:53 +01:00
|
|
|
// details={details.tos}
|
2021-11-15 15:18:58 +01:00
|
|
|
amount={withdrawAmount}
|
|
|
|
exchangeBaseUrl={exchange}
|
|
|
|
withdrawalFee={details.info.withdrawFee} //FIXME
|
|
|
|
terms={{
|
|
|
|
status,
|
|
|
|
value: termsContent,
|
|
|
|
}}
|
|
|
|
onSwitchExchange={setCustomExchange}
|
|
|
|
knownExchanges={knownExchanges}
|
|
|
|
confirmed={confirmed}
|
|
|
|
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)
|
|
|
|
: getWithdrawalDetailsForUri({ talerWithdrawUri }),
|
|
|
|
);
|
2021-10-11 20:59:55 +02:00
|
|
|
|
|
|
|
if (!talerWithdrawUri) {
|
2021-11-15 15:18:58 +01:00
|
|
|
return (
|
|
|
|
<span>
|
|
|
|
<i18n.Translate>missing withdraw uri</i18n.Translate>
|
|
|
|
</span>
|
|
|
|
);
|
2021-10-11 20:59:55 +02:00
|
|
|
}
|
|
|
|
if (!uriInfoHook) {
|
2021-11-15 15:18:58 +01:00
|
|
|
return (
|
|
|
|
<span>
|
|
|
|
<i18n.Translate>Loading...</i18n.Translate>
|
|
|
|
</span>
|
|
|
|
);
|
2021-10-11 20:59:55 +02:00
|
|
|
}
|
|
|
|
if (uriInfoHook.hasError) {
|
2021-11-15 15:18:58 +01:00
|
|
|
return (
|
|
|
|
<span>
|
|
|
|
<i18n.Translate>
|
|
|
|
This URI is not valid anymore: {uriInfoHook.message}
|
|
|
|
</i18n.Translate>
|
|
|
|
</span>
|
|
|
|
);
|
2021-10-11 20:59:55 +02:00
|
|
|
}
|
2021-11-15 15:18:58 +01:00
|
|
|
return (
|
|
|
|
<WithdrawPageWithParsedURI
|
|
|
|
uri={talerWithdrawUri}
|
|
|
|
uriInfo={uriInfoHook.response}
|
|
|
|
/>
|
|
|
|
);
|
2021-10-11 20:59:55 +02:00
|
|
|
}
|
2019-08-29 23:12:55 +02:00
|
|
|
|
2021-11-15 15:18:58 +01:00
|
|
|
function parseTermsOfServiceContent(
|
|
|
|
type: string,
|
|
|
|
text: string,
|
|
|
|
): TermsDocument | undefined {
|
|
|
|
if (type === "text/xml") {
|
2021-10-12 20:18:29 +02:00
|
|
|
try {
|
2021-11-15 15:18:58 +01:00
|
|
|
const document = new DOMParser().parseFromString(text, "text/xml");
|
|
|
|
return { type: "xml", document };
|
2021-10-12 20:18:29 +02:00
|
|
|
} catch (e) {
|
2021-11-15 15:18:58 +01:00
|
|
|
console.log(e);
|
2021-10-12 20:18:29 +02:00
|
|
|
}
|
2021-11-15 15:18:58 +01:00
|
|
|
} else if (type === "text/html") {
|
2021-10-12 20:18:29 +02:00
|
|
|
try {
|
2021-11-15 15:18:58 +01:00
|
|
|
const href = new URL(text);
|
|
|
|
return { type: "html", href };
|
2021-10-12 20:18:29 +02:00
|
|
|
} catch (e) {
|
2021-11-15 15:18:58 +01:00
|
|
|
console.log(e);
|
2021-10-12 20:18:29 +02:00
|
|
|
}
|
2021-11-15 15:18:58 +01:00
|
|
|
} else if (type === "text/json") {
|
2021-10-12 20:18:29 +02:00
|
|
|
try {
|
2021-11-15 15:18:58 +01:00
|
|
|
const data = JSON.parse(text);
|
|
|
|
return { type: "json", data };
|
2021-10-12 20:18:29 +02:00
|
|
|
} catch (e) {
|
2021-11-15 15:18:58 +01:00
|
|
|
console.log(e);
|
2021-10-12 20:18:29 +02:00
|
|
|
}
|
2021-11-15 15:18:58 +01:00
|
|
|
} else if (type === "text/pdf") {
|
2021-10-12 20:18:29 +02:00
|
|
|
try {
|
2021-11-15 15:18:58 +01:00
|
|
|
const location = new URL(text);
|
|
|
|
return { type: "pdf", location };
|
2021-10-12 20:18:29 +02:00
|
|
|
} catch (e) {
|
2021-11-15 15:18:58 +01:00
|
|
|
console.log(e);
|
2021-10-12 20:18:29 +02:00
|
|
|
}
|
2021-11-15 15:18:58 +01:00
|
|
|
} else if (type === "text/plain") {
|
2021-10-12 20:18:29 +02:00
|
|
|
try {
|
2021-11-15 15:18:58 +01:00
|
|
|
const content = text;
|
|
|
|
return { type: "plain", content };
|
2021-10-12 20:18:29 +02:00
|
|
|
} catch (e) {
|
2021-11-15 15:18:58 +01:00
|
|
|
console.log(e);
|
2021-10-12 20:18:29 +02:00
|
|
|
}
|
|
|
|
}
|
2021-11-15 15:18:58 +01:00
|
|
|
return undefined;
|
2021-10-12 20:18:29 +02:00
|
|
|
}
|