wallet-core/packages/taler-wallet-webextension/src/cta/Withdraw.tsx

384 lines
12 KiB
TypeScript
Raw Normal View History

/*
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-10-13 19:26:18 +02:00
import { AmountJson, Amounts, ExchangeListItem, GetExchangeTosResult, i18n, WithdrawUriInfoResponse } from '@gnu-taler/taler-util';
import { ExchangeWithdrawDetails } from '@gnu-taler/taler-wallet-core/src/operations/withdraw';
2021-10-11 20:59:55 +02:00
import { useState } from "preact/hooks";
import { Fragment } from 'preact/jsx-runtime';
2021-09-13 18:32:58 +02:00
import { CheckboxOutlined } from '../components/CheckboxOutlined';
import { ExchangeXmlTos } from '../components/ExchangeToS';
import { LogoHeader } from '../components/LogoHeader';
import { Part } from '../components/Part';
2021-10-11 20:59:55 +02:00
import { SelectList } from '../components/SelectList';
2021-10-15 00:37:18 +02:00
import { ButtonSuccess, ButtonWarning, LinkSuccess, LinkWarning, TermsOfService, WalletAction, WarningText } from '../components/styled';
2021-10-11 20:59:55 +02:00
import { useAsyncAsHook } from '../hooks/useAsyncAsHook';
import {
2021-10-13 19:26:18 +02:00
acceptWithdrawal, getExchangeWithdrawalInfo, getWithdrawalDetailsForUri, setExchangeTosAccepted, listExchanges, getExchangeTos
} from "../wxApi";
2021-10-11 20:59:55 +02:00
import { wxMain } from '../wxBackend.js';
2021-05-07 23:10:27 +02:00
interface Props {
talerWithdrawUri?: string;
}
2021-05-31 16:34:48 +02:00
export interface ViewProps {
2021-10-13 19:26:18 +02:00
details: GetExchangeTosResult;
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;
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-09-13 18:32:58 +02:00
2021-05-31 16:34:48 +02:00
};
2021-09-13 18:32:58 +02:00
type TermsStatus = 'new' | 'accepted' | 'changed' | 'notfound';
2021-10-12 20:18:29 +02:00
type TermsDocument = TermsDocumentXml | TermsDocumentHtml | TermsDocumentPlain | TermsDocumentJson | TermsDocumentPdf;
2021-09-13 18:32:58 +02:00
interface TermsDocumentXml {
type: 'xml',
document: Document,
}
interface TermsDocumentHtml {
type: 'html',
2021-10-12 20:18:29 +02:00
href: URL,
}
interface TermsDocumentPlain {
type: 'plain',
content: string,
}
interface TermsDocumentJson {
type: 'json',
data: any,
}
interface TermsDocumentPdf {
type: 'pdf',
location: URL,
2021-09-13 18:32:58 +02:00
}
2021-10-11 20:59:55 +02:00
function amountToString(text: AmountJson) {
const aj = Amounts.jsonifyAmount(text)
const amount = Amounts.stringifyValue(aj)
return `${amount} ${aj.currency}`
}
2021-10-13 19:26:18 +02:00
export function View({ details, withdrawalFee, exchangeBaseUrl, knownExchanges, amount, onWithdraw, onSwitchExchange, terms, reviewing, onReview, onAccept, reviewed, confirmed }: ViewProps) {
2021-09-13 18:32:58 +02:00
const needsReview = terms.status === 'changed' || terms.status === 'new'
2021-10-11 20:59:55 +02:00
const [switchingExchange, setSwitchingExchange] = useState<string | undefined>(undefined)
const exchanges = knownExchanges.reduce((prev, ex) => ({ ...prev, [ex.exchangeBaseUrl]: ex.exchangeBaseUrl }), {})
return (
2021-09-17 20:48:33 +02:00
<WalletAction>
<LogoHeader />
<h2>
{i18n.str`Digital cash withdrawal`}
</h2>
<section>
2021-10-13 19:26:18 +02:00
<Part title="Total to withdraw" text={amountToString(Amounts.sub(amount, withdrawalFee).amount)} kind='positive' />
2021-09-17 20:48:33 +02:00
<Part title="Chosen amount" text={amountToString(amount)} kind='neutral' />
2021-10-13 19:26:18 +02:00
{Amounts.isNonZero(withdrawalFee) &&
<Part title="Exchange fee" text={amountToString(withdrawalFee)} kind='negative' />
2021-09-17 20:48:33 +02:00
}
2021-10-13 19:26:18 +02:00
<Part title="Exchange" text={exchangeBaseUrl} kind='neutral' big />
</section>
2021-09-13 18:32:58 +02:00
{!reviewing &&
<section>
2021-10-11 20:59:55 +02: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("")}>
{i18n.str`Switch exchange`}
</LinkSuccess>}
2021-09-13 18:32:58 +02:00
</section>
}
2021-10-12 20:18:29 +02:00
{!reviewing && reviewed &&
2021-09-13 18:32:58 +02:00
<section>
<LinkSuccess
upperCased
onClick={() => onReview(true)}
>
{i18n.str`Show terms of service`}
</LinkSuccess>
</section>
}
2021-10-15 00:37:18 +02:00
{terms.status === 'notfound' &&
<section>
<WarningText>
{i18n.str`Exchange doesn't have terms of service`}
</WarningText>
</section>
}
2021-09-13 18:32:58 +02:00
{reviewing &&
<section>
2021-10-12 20:18:29 +02: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>
}
2021-09-13 18:32:58 +02:00
</section>}
2021-10-12 20:18:29 +02:00
{reviewing && reviewed &&
2021-09-13 18:32:58 +02:00
<section>
<LinkSuccess
upperCased
onClick={() => onReview(false)}
>
{i18n.str`Hide terms of service`}
</LinkSuccess>
</section>
}
2021-10-12 20:18:29 +02: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-10-12 20:18:29 +02:00
onAccept(!reviewed)
2021-09-17 20:48:33 +02:00
onReview(false)
}}
/>
2021-09-13 18:32:58 +02:00
</section>
}
2021-10-11 20:59:55 +02:00
{/**
* Main action section
*/}
2021-09-13 18:32:58 +02:00
<section>
2021-10-12 20:18:29 +02: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-09-13 18:32:58 +02:00
}
2021-10-12 20:18:29 +02: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-09-13 18:32:58 +02:00
}
2021-10-12 20:18:29 +02: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-09-13 18:32:58 +02:00
}
2021-10-15 00:37:18 +02:00
{terms.status === 'notfound' &&
<ButtonWarning
upperCased
2021-10-13 19:26:18 +02:00
disabled={!exchangeBaseUrl}
onClick={onWithdraw}
>
{i18n.str`Withdraw anyway`}
</ButtonWarning>
2021-09-13 18:32:58 +02:00
}
</section>
</WalletAction>
2021-05-31 16:34:48 +02:00
)
}
2021-10-11 20:59:55 +02:00
export function WithdrawPageWithParsedURI({ uri, uriInfo }: { uri: string, uriInfo: WithdrawUriInfoResponse }) {
const [customExchange, setCustomExchange] = useState<string | undefined>(undefined)
const [errorAccepting, setErrorAccepting] = useState<string | undefined>(undefined)
2021-09-13 18:32:58 +02:00
const [reviewing, setReviewing] = useState<boolean>(false)
2021-10-12 20:18:29 +02:00
const [reviewed, setReviewed] = useState<boolean>(false)
const [confirmed, setConfirmed] = useState<boolean>(false)
2021-08-13 23:04:05 +02:00
2021-10-11 20:59:55 +02:00
const knownExchangesHook = useAsyncAsHook(() => listExchanges())
2021-10-11 20:59:55 +02: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-08-13 23:04:05 +02:00
2021-10-11 20:59:55 +02:00
const exchange = customExchange || uriInfo.defaultExchangeBaseUrl || thisCurrencyExchanges[0]?.exchangeBaseUrl
const detailsHook = useAsyncAsHook(async () => {
if (!exchange) throw Error('no default exchange')
2021-10-13 19:26:18 +02:00
const tos = await getExchangeTos(exchange, ['text/xml'])
const info = await getExchangeWithdrawalInfo({
2021-10-11 20:59:55 +02:00
exchangeBaseUrl: exchange,
amount: withdrawAmount,
2021-10-12 20:18:29 +02:00
tosAcceptedFormat: ['text/xml']
2021-10-11 20:59:55 +02:00
})
2021-10-15 00:37:18 +02:00
return { tos, info }
2021-10-11 20:59:55 +02:00
})
if (!detailsHook) {
return <span><i18n.Translate>Getting withdrawal details.</i18n.Translate></span>;
}
if (detailsHook.hasError) {
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-10-11 20:59:55 +02:00
const details = detailsHook.response
const onAccept = async (): Promise<void> => {
2021-09-17 20:48:33 +02:00
try {
2021-10-13 19:26:18 +02:00
await setExchangeTosAccepted(exchange, details.tos.currentEtag)
2021-10-12 20:18:29 +02: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) {
setErrorAccepting(e.message)
}
2021-09-17 20:48:33 +02:00
}
}
2021-09-13 18:32:58 +02:00
const onWithdraw = async (): Promise<void> => {
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) {
setConfirmed(false)
2021-05-31 16:34:48 +02:00
}
};
2021-10-13 19:26:18 +02:00
const termsContent: TermsDocument | undefined = parseTermsOfServiceContent(details.tos.contentType, details.tos.content);
const status: TermsStatus = !termsContent ? 'notfound' : (
2021-10-13 19:26:18 +02:00
!details.tos.acceptedEtag ? 'new' : (
details.tos.acceptedEtag !== details.tos.currentEtag ? 'changed' : 'accepted'
))
2021-09-13 18:32:58 +02:00
return <View onWithdraw={onWithdraw}
2021-10-13 19:26:18 +02:00
details={details.tos} amount={withdrawAmount}
exchangeBaseUrl={exchange}
withdrawalFee={details.info.withdrawFee} //FIXME
terms={{
status, value: termsContent
}}
2021-10-11 20:59:55 +02:00
onSwitchExchange={setCustomExchange}
knownExchanges={knownExchanges}
confirmed={confirmed}
2021-10-12 20:18:29 +02:00
reviewed={reviewed} onAccept={onAccept}
2021-09-13 18:32:58 +02:00
reviewing={reviewing} onReview={setReviewing}
2021-05-31 16:34:48 +02:00
/>
}
2021-10-11 20:59:55 +02:00
export function WithdrawPage({ talerWithdrawUri }: Props): JSX.Element {
const uriInfoHook = useAsyncAsHook(() => !talerWithdrawUri ? Promise.reject(undefined) :
getWithdrawalDetailsForUri({ talerWithdrawUri })
)
if (!talerWithdrawUri) {
return <span><i18n.Translate>missing withdraw uri</i18n.Translate></span>;
}
if (!uriInfoHook) {
return <span><i18n.Translate>Loading...</i18n.Translate></span>;
}
if (uriInfoHook.hasError) {
return <span><i18n.Translate>This URI is not valid anymore: {uriInfoHook.message}</i18n.Translate></span>;
}
return <WithdrawPageWithParsedURI uri={talerWithdrawUri} uriInfo={uriInfoHook.response} />
}
2021-10-12 20:18:29 +02:00
function parseTermsOfServiceContent(type: string, text: string): TermsDocument | undefined {
if (type === 'text/xml') {
try {
const document = new DOMParser().parseFromString(text, "text/xml")
return { type: 'xml', document }
} catch (e) {
console.log(e)
debugger;
}
} else if (type === 'text/html') {
try {
const href = new URL(text)
return { type: 'html', href }
} catch (e) {
console.log(e)
debugger;
}
} else if (type === 'text/json') {
try {
const data = JSON.parse(text)
return { type: 'json', data }
} catch (e) {
console.log(e)
debugger;
}
} else if (type === 'text/pdf') {
try {
const location = new URL(text)
return { type: 'pdf', location }
} catch (e) {
console.log(e)
debugger;
}
} else if (type === 'text/plain') {
try {
const content = text
return { type: 'plain', content }
} catch (e) {
console.log(e)
debugger;
}
}
return undefined
}