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-09-08 20:30:32 +02:00
|
|
|
import { AmountLike, Amounts, i18n, WithdrawUriInfoResponse } from '@gnu-taler/taler-util';
|
|
|
|
import { ExchangeWithdrawDetails } from '@gnu-taler/taler-wallet-core/src/operations/withdraw';
|
|
|
|
import { useEffect, useState } from "preact/hooks";
|
2021-09-13 18:32:58 +02:00
|
|
|
import { CheckboxOutlined } from '../components/CheckboxOutlined';
|
|
|
|
import { ExchangeXmlTos } from '../components/ExchangeToS';
|
2021-09-08 20:30:32 +02:00
|
|
|
import { LogoHeader } from '../components/LogoHeader';
|
|
|
|
import { Part } from '../components/Part';
|
2021-09-13 18:32:58 +02:00
|
|
|
import { ButtonDestructive, ButtonSuccess, ButtonWarning, LinkSuccess, TermsOfService, WalletAction } from '../components/styled';
|
2020-06-03 13:16:25 +02:00
|
|
|
import {
|
2021-09-13 20:32:06 +02:00
|
|
|
acceptWithdrawal, getExchangeWithdrawalInfo, getWithdrawalDetailsForUri, onUpdateNotification, setExchangeTosAccepted
|
2020-06-03 13:16:25 +02:00
|
|
|
} from "../wxApi";
|
2021-09-13 18:33:13 +02:00
|
|
|
import { h } from 'preact';
|
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-09-08 20:30:32 +02:00
|
|
|
details: ExchangeWithdrawDetails;
|
|
|
|
amount: string;
|
2021-09-13 18:32:58 +02:00
|
|
|
onWithdraw: () => Promise<void>;
|
|
|
|
// setCancelled: (b: boolean) => void;
|
|
|
|
// setSelecting: (b: boolean) => void;
|
|
|
|
onReview: (b: boolean) => void;
|
|
|
|
onAccept: (b: boolean) => void;
|
|
|
|
reviewing: boolean;
|
|
|
|
accepted: 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-05-31 16:34:48 +02:00
|
|
|
};
|
|
|
|
|
2021-09-13 18:32:58 +02:00
|
|
|
type TermsStatus = 'new' | 'accepted' | 'changed' | 'notfound';
|
|
|
|
|
|
|
|
type TermsDocument = TermsDocumentXml | TermsDocumentHtml;
|
|
|
|
|
|
|
|
interface TermsDocumentXml {
|
|
|
|
type: 'xml',
|
|
|
|
document: Document,
|
|
|
|
}
|
|
|
|
|
|
|
|
interface TermsDocumentHtml {
|
|
|
|
type: 'html',
|
|
|
|
href: string,
|
|
|
|
}
|
|
|
|
|
2021-09-08 20:30:32 +02:00
|
|
|
function amountToString(text: AmountLike) {
|
|
|
|
const aj = Amounts.jsonifyAmount(text)
|
|
|
|
const amount = Amounts.stringifyValue(aj)
|
|
|
|
return `${amount} ${aj.currency}`
|
|
|
|
}
|
|
|
|
|
2021-09-13 20:32:06 +02:00
|
|
|
export function View({ details, amount, onWithdraw, terms, reviewing, onReview, onAccept, accepted, confirmed }: ViewProps) {
|
2021-09-13 18:32:58 +02:00
|
|
|
const needsReview = terms.status === 'changed' || terms.status === 'new'
|
2019-08-29 23:12:55 +02:00
|
|
|
|
|
|
|
return (
|
2021-09-08 20:30:32 +02:00
|
|
|
<WalletAction style={{ textAlign: 'center' }}>
|
|
|
|
<LogoHeader />
|
|
|
|
<h2>
|
|
|
|
{i18n.str`Digital cash withdrawal`}
|
|
|
|
</h2>
|
|
|
|
<section>
|
|
|
|
<div>
|
|
|
|
<Part title="Total to withdraw" text={amountToString(Amounts.sub(Amounts.parseOrThrow(amount), details.withdrawFee).amount)} kind='positive' />
|
|
|
|
<Part title="Chosen amount" text={amountToString(amount)} kind='neutral' />
|
|
|
|
{Amounts.isNonZero(details.withdrawFee) &&
|
|
|
|
<Part title="Exchange fee" text={amountToString(details.withdrawFee)} kind='negative' />
|
|
|
|
}
|
|
|
|
<Part title="Exchange" text={details.exchangeInfo.baseUrl} kind='neutral' big />
|
|
|
|
</div>
|
|
|
|
</section>
|
2021-09-13 18:32:58 +02:00
|
|
|
{!reviewing &&
|
|
|
|
<section>
|
|
|
|
<LinkSuccess
|
2021-09-08 20:30:32 +02:00
|
|
|
upperCased
|
|
|
|
>
|
2021-09-13 18:32:58 +02:00
|
|
|
{i18n.str`Edit exchange`}
|
|
|
|
</LinkSuccess>
|
|
|
|
</section>
|
|
|
|
}
|
|
|
|
{!reviewing && accepted &&
|
|
|
|
<section>
|
|
|
|
<LinkSuccess
|
|
|
|
upperCased
|
|
|
|
onClick={() => onReview(true)}
|
|
|
|
>
|
|
|
|
{i18n.str`Show terms of service`}
|
|
|
|
</LinkSuccess>
|
|
|
|
</section>
|
|
|
|
}
|
|
|
|
{reviewing &&
|
|
|
|
<section>
|
|
|
|
<TermsOfService>
|
|
|
|
{terms.status !== 'accepted' && terms.value && terms.value.type === 'xml' && <ExchangeXmlTos doc={terms.value.document} />}
|
|
|
|
</TermsOfService>
|
|
|
|
</section>}
|
|
|
|
{reviewing && accepted &&
|
|
|
|
<section>
|
|
|
|
<LinkSuccess
|
|
|
|
upperCased
|
|
|
|
onClick={() => onReview(false)}
|
|
|
|
>
|
|
|
|
{i18n.str`Hide terms of service`}
|
|
|
|
</LinkSuccess>
|
|
|
|
</section>
|
|
|
|
}
|
|
|
|
{(reviewing || accepted) &&
|
|
|
|
<section>
|
|
|
|
<div>
|
|
|
|
<CheckboxOutlined
|
|
|
|
name="terms"
|
|
|
|
enabled={accepted}
|
|
|
|
label={i18n.str`I accept the exchange terms of service`}
|
|
|
|
onToggle={() => {
|
|
|
|
onAccept(!accepted)
|
|
|
|
onReview(false)
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
}
|
|
|
|
|
|
|
|
<section>
|
|
|
|
{terms.status === 'new' && !accepted &&
|
|
|
|
<div>
|
|
|
|
<ButtonSuccess
|
|
|
|
upperCased
|
|
|
|
disabled={!details.exchangeInfo.baseUrl}
|
|
|
|
onClick={() => onReview(true)}
|
|
|
|
>
|
|
|
|
{i18n.str`Review exchange terms of service`}
|
|
|
|
</ButtonSuccess>
|
|
|
|
</div>
|
|
|
|
}
|
|
|
|
{terms.status === 'changed' && !accepted &&
|
|
|
|
<div>
|
|
|
|
<ButtonWarning
|
|
|
|
upperCased
|
|
|
|
disabled={!details.exchangeInfo.baseUrl}
|
|
|
|
onClick={() => onReview(true)}
|
|
|
|
>
|
|
|
|
{i18n.str`Review new version of terms of service`}
|
|
|
|
</ButtonWarning>
|
|
|
|
</div>
|
|
|
|
}
|
|
|
|
{(terms.status === 'accepted' || (needsReview && accepted)) &&
|
|
|
|
<div>
|
|
|
|
<ButtonSuccess
|
|
|
|
upperCased
|
2021-09-13 20:32:06 +02:00
|
|
|
disabled={!details.exchangeInfo.baseUrl || confirmed}
|
2021-09-13 18:32:58 +02:00
|
|
|
onClick={onWithdraw}
|
|
|
|
>
|
|
|
|
{i18n.str`Confirm withdrawal`}
|
|
|
|
</ButtonSuccess>
|
|
|
|
</div>
|
|
|
|
}
|
|
|
|
{terms.status === 'notfound' &&
|
|
|
|
<div>
|
|
|
|
<ButtonDestructive
|
|
|
|
upperCased
|
|
|
|
disabled={true}
|
|
|
|
>
|
|
|
|
{i18n.str`Exchange doesn't have terms of service`}
|
|
|
|
</ButtonDestructive>
|
|
|
|
</div>
|
|
|
|
}
|
2021-09-08 20:30:32 +02:00
|
|
|
</section>
|
2021-08-19 05:34:47 +02:00
|
|
|
</WalletAction>
|
2021-05-31 16:34:48 +02:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2021-08-13 23:04:05 +02:00
|
|
|
export function WithdrawPage({ talerWithdrawUri, ...rest }: Props): JSX.Element {
|
2021-09-08 20:30:32 +02:00
|
|
|
const [uriInfo, setUriInfo] = useState<WithdrawUriInfoResponse | undefined>(undefined);
|
|
|
|
const [details, setDetails] = useState<ExchangeWithdrawDetails | undefined>(undefined);
|
2021-05-31 16:34:48 +02:00
|
|
|
const [cancelled, setCancelled] = useState(false);
|
|
|
|
const [selecting, setSelecting] = useState(false);
|
2021-08-19 05:34:47 +02:00
|
|
|
const [error, setError] = useState<boolean>(false);
|
2021-05-31 16:34:48 +02:00
|
|
|
const [updateCounter, setUpdateCounter] = useState(1);
|
2021-09-13 18:32:58 +02:00
|
|
|
const [reviewing, setReviewing] = useState<boolean>(false)
|
|
|
|
const [accepted, setAccepted] = useState<boolean>(false)
|
2021-09-13 20:32:06 +02:00
|
|
|
const [confirmed, setConfirmed] = useState<boolean>(false)
|
2021-08-13 23:04:05 +02:00
|
|
|
|
2021-05-31 16:34:48 +02:00
|
|
|
useEffect(() => {
|
|
|
|
return onUpdateNotification(() => {
|
2021-08-13 23:04:05 +02:00
|
|
|
console.log('updating...')
|
2021-05-31 16:34:48 +02:00
|
|
|
setUpdateCounter(updateCounter + 1);
|
|
|
|
});
|
|
|
|
}, []);
|
|
|
|
|
|
|
|
useEffect(() => {
|
2021-08-13 23:04:05 +02:00
|
|
|
console.log('on effect yes', talerWithdrawUri)
|
2021-05-31 16:34:48 +02:00
|
|
|
if (!talerWithdrawUri) return
|
|
|
|
const fetchData = async (): Promise<void> => {
|
2021-08-13 23:04:05 +02:00
|
|
|
try {
|
|
|
|
const res = await getWithdrawalDetailsForUri({ talerWithdrawUri });
|
2021-09-08 20:30:32 +02:00
|
|
|
setUriInfo(res);
|
2021-08-13 23:04:05 +02:00
|
|
|
} catch (e) {
|
2021-08-23 21:51:49 +02:00
|
|
|
console.error('error', JSON.stringify(e, undefined, 2))
|
2021-08-19 05:34:47 +02:00
|
|
|
setError(true)
|
2021-05-31 16:34:48 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
fetchData();
|
2021-09-08 20:30:32 +02:00
|
|
|
}, [selecting, talerWithdrawUri, updateCounter]);
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
async function fetchData() {
|
|
|
|
if (!uriInfo || !uriInfo.defaultExchangeBaseUrl) return
|
|
|
|
const res = await getExchangeWithdrawalInfo({
|
|
|
|
exchangeBaseUrl: uriInfo.defaultExchangeBaseUrl,
|
2021-09-13 20:32:06 +02:00
|
|
|
amount: Amounts.parseOrThrow(uriInfo.amount),
|
|
|
|
tosAcceptedFormat: ['text/json', 'text/xml', 'text/pdf']
|
2021-09-08 20:30:32 +02:00
|
|
|
})
|
|
|
|
setDetails(res)
|
|
|
|
}
|
|
|
|
fetchData()
|
|
|
|
}, [uriInfo])
|
2021-08-13 23:04:05 +02:00
|
|
|
|
|
|
|
if (!talerWithdrawUri) {
|
|
|
|
return <span><i18n.Translate>missing withdraw uri</i18n.Translate></span>;
|
|
|
|
}
|
2021-05-31 16:34:48 +02:00
|
|
|
|
2021-09-13 20:32:06 +02:00
|
|
|
const onAccept = async (): Promise<void> => {
|
|
|
|
if (!details) {
|
|
|
|
throw Error("can't accept, no exchange selected");
|
|
|
|
}
|
|
|
|
await setExchangeTosAccepted(details.exchangeDetails.exchangeBaseUrl, details.tosRequested?.tosEtag)
|
|
|
|
setAccepted(true)
|
|
|
|
}
|
|
|
|
|
2021-09-13 18:32:58 +02:00
|
|
|
const onWithdraw = async (): Promise<void> => {
|
2021-09-08 20:30:32 +02:00
|
|
|
if (!details) {
|
2021-05-31 16:34:48 +02:00
|
|
|
throw Error("can't accept, no exchange selected");
|
|
|
|
}
|
2021-09-13 20:32:06 +02:00
|
|
|
setConfirmed(true)
|
2021-09-08 20:30:32 +02:00
|
|
|
console.log("accepting exchange", details.exchangeInfo.baseUrl);
|
|
|
|
const res = await acceptWithdrawal(talerWithdrawUri, details.exchangeInfo.baseUrl);
|
2021-05-31 16:34:48 +02:00
|
|
|
console.log("accept withdrawal response", res);
|
|
|
|
if (res.confirmTransferUrl) {
|
|
|
|
document.location.href = res.confirmTransferUrl;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2021-08-13 23:04:05 +02:00
|
|
|
if (cancelled) {
|
|
|
|
return <span><i18n.Translate>Withdraw operation has been cancelled.</i18n.Translate></span>;
|
|
|
|
}
|
2021-08-19 05:34:47 +02:00
|
|
|
if (error) {
|
|
|
|
return <span><i18n.Translate>This URI is not valid anymore.</i18n.Translate></span>;
|
|
|
|
}
|
2021-09-08 20:30:32 +02:00
|
|
|
if (!uriInfo) {
|
|
|
|
return <span><i18n.Translate>Loading...</i18n.Translate></span>;
|
|
|
|
}
|
|
|
|
if (!details) {
|
|
|
|
return <span><i18n.Translate>Getting withdrawal details.</i18n.Translate></span>;
|
|
|
|
}
|
2021-08-13 23:04:05 +02:00
|
|
|
|
2021-09-13 20:32:06 +02:00
|
|
|
let termsContent: TermsDocument | undefined = undefined;
|
|
|
|
if (details.tosRequested) {
|
|
|
|
if (details.tosRequested.tosContentType === 'text/xml') {
|
|
|
|
try {
|
|
|
|
const document = new DOMParser().parseFromString(details.tosRequested.tosText, "text/xml")
|
|
|
|
termsContent = { type: 'xml', document }
|
|
|
|
} catch (e) {
|
|
|
|
console.log(e)
|
|
|
|
debugger;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const status: TermsStatus = !termsContent ? 'notfound' : (
|
|
|
|
!details.exchangeDetails.termsOfServiceAcceptedEtag ? 'new' : (
|
|
|
|
details.tosRequested?.tosEtag !== details.exchangeDetails.termsOfServiceAcceptedEtag ? 'changed' : 'accepted'
|
|
|
|
))
|
|
|
|
|
|
|
|
|
2021-09-13 18:32:58 +02:00
|
|
|
return <View onWithdraw={onWithdraw}
|
|
|
|
// setCancelled={setCancelled} setSelecting={setSelecting}
|
2021-09-08 20:30:32 +02:00
|
|
|
details={details} amount={uriInfo.amount}
|
2021-09-13 20:32:06 +02:00
|
|
|
terms={{
|
|
|
|
status, value: termsContent
|
|
|
|
}}
|
|
|
|
confirmed={confirmed}
|
|
|
|
accepted={accepted} onAccept={onAccept}
|
2021-09-13 18:32:58 +02:00
|
|
|
reviewing={reviewing} onReview={setReviewing}
|
|
|
|
// terms={[]}
|
2021-05-31 16:34:48 +02:00
|
|
|
/>
|
2019-08-29 23:12:55 +02:00
|
|
|
}
|
|
|
|
|