2019-08-29 23:12:55 +02:00
|
|
|
/*
|
|
|
|
This file is part of TALER
|
|
|
|
(C) 2015 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 entering
|
|
|
|
* a contract.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Imports.
|
|
|
|
*/
|
2021-06-08 21:01:41 +02:00
|
|
|
// import * as i18n from "../i18n";
|
2019-08-29 23:12:55 +02:00
|
|
|
|
2021-09-27 18:06:50 +02:00
|
|
|
import { AmountJson, AmountLike, Amounts, ConfirmPayResult, ConfirmPayResultDone, ConfirmPayResultType, ContractTerms, getJsonI18n, i18n, PreparePayResult, PreparePayResultType } from "@gnu-taler/taler-util";
|
|
|
|
import { Fragment, JSX, VNode } from "preact";
|
|
|
|
import { useEffect, useState } from "preact/hooks";
|
2021-09-17 20:48:33 +02:00
|
|
|
import { LogoHeader } from "../components/LogoHeader";
|
|
|
|
import { Part } from "../components/Part";
|
|
|
|
import { QR } from "../components/QR";
|
2021-09-27 18:06:50 +02:00
|
|
|
import { ButtonSuccess, LinkSuccess, SuccessBox, WalletAction, WarningBox } from "../components/styled";
|
|
|
|
import { useBalances } from "../hooks/useBalances";
|
|
|
|
import * as wxApi from "../wxApi";
|
2019-08-29 23:12:55 +02:00
|
|
|
|
2021-05-07 23:10:27 +02:00
|
|
|
interface Props {
|
|
|
|
talerPayUri?: string
|
|
|
|
}
|
|
|
|
|
2021-09-27 18:06:50 +02:00
|
|
|
// export function AlreadyPaid({ payStatus }: { payStatus: PreparePayResult }) {
|
|
|
|
// const fulfillmentUrl = payStatus.contractTerms.fulfillment_url;
|
|
|
|
// let message;
|
|
|
|
// if (fulfillmentUrl) {
|
|
|
|
// message = (
|
|
|
|
// <span>
|
|
|
|
// You have already paid for this article. Click{" "}
|
|
|
|
// <a href={fulfillmentUrl} target="_bank" rel="external">here</a> to view it again.
|
|
|
|
// </span>
|
|
|
|
// );
|
|
|
|
// } else {
|
|
|
|
// message = <span>
|
|
|
|
// You have already paid for this article:{" "}
|
|
|
|
// <em>
|
|
|
|
// {payStatus.contractTerms.fulfillment_message ?? "no message given"}
|
|
|
|
// </em>
|
|
|
|
// </span>;
|
|
|
|
// }
|
|
|
|
// return <section class="main">
|
|
|
|
// <h1>GNU Taler Wallet</h1>
|
|
|
|
// <article class="fade">
|
|
|
|
// {message}
|
|
|
|
// </article>
|
|
|
|
// </section>
|
|
|
|
// }
|
2021-08-13 23:04:05 +02:00
|
|
|
|
|
|
|
const doPayment = async (payStatus: PreparePayResult): Promise<ConfirmPayResultDone> => {
|
|
|
|
if (payStatus.status !== "payment-possible") {
|
|
|
|
throw Error(`invalid state: ${payStatus.status}`);
|
|
|
|
}
|
|
|
|
const proposalId = payStatus.proposalId;
|
|
|
|
const res = await wxApi.confirmPay(proposalId, undefined);
|
|
|
|
if (res.type !== ConfirmPayResultType.Done) {
|
|
|
|
throw Error("payment pending");
|
|
|
|
}
|
|
|
|
const fu = res.contractTerms.fulfillment_url;
|
|
|
|
if (fu) {
|
|
|
|
document.location.href = fu;
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-06-16 23:21:03 +02:00
|
|
|
export function PayPage({ talerPayUri }: Props): JSX.Element {
|
2021-05-07 15:38:28 +02:00
|
|
|
const [payStatus, setPayStatus] = useState<PreparePayResult | undefined>(undefined);
|
|
|
|
const [payResult, setPayResult] = useState<ConfirmPayResult | undefined>(undefined);
|
2019-08-29 23:12:55 +02:00
|
|
|
const [payErrMsg, setPayErrMsg] = useState<string | undefined>("");
|
|
|
|
|
2021-09-27 18:06:50 +02:00
|
|
|
const balance = useBalances()
|
|
|
|
const balanceWithoutError = balance?.error ? [] : (balance?.response.balances || [])
|
|
|
|
|
|
|
|
const foundBalance = balanceWithoutError.find(b => payStatus && Amounts.parseOrThrow(b.available).currency === Amounts.parseOrThrow(payStatus?.amountRaw).currency)
|
|
|
|
const foundAmount = foundBalance ? Amounts.parseOrThrow(foundBalance.available) : undefined
|
|
|
|
|
2019-08-29 23:12:55 +02:00
|
|
|
useEffect(() => {
|
2021-05-07 23:10:27 +02:00
|
|
|
if (!talerPayUri) return;
|
2020-04-06 20:02:01 +02:00
|
|
|
const doFetch = async (): Promise<void> => {
|
2019-08-29 23:12:55 +02:00
|
|
|
const p = await wxApi.preparePay(talerPayUri);
|
|
|
|
setPayStatus(p);
|
|
|
|
};
|
|
|
|
doFetch();
|
2021-08-13 23:04:05 +02:00
|
|
|
}, [talerPayUri]);
|
2019-08-29 23:12:55 +02:00
|
|
|
|
2021-05-07 23:10:27 +02:00
|
|
|
if (!talerPayUri) {
|
|
|
|
return <span>missing pay uri</span>
|
|
|
|
}
|
2021-08-13 23:04:05 +02:00
|
|
|
|
2019-08-29 23:12:55 +02:00
|
|
|
if (!payStatus) {
|
|
|
|
return <span>Loading payment information ...</span>;
|
|
|
|
}
|
|
|
|
|
2021-09-27 18:06:50 +02:00
|
|
|
// if (payResult && payResult.type === ConfirmPayResultType.Done) {
|
|
|
|
// if (payResult.contractTerms.fulfillment_message) {
|
|
|
|
// const obj = {
|
|
|
|
// fulfillment_message: payResult.contractTerms.fulfillment_message,
|
|
|
|
// fulfillment_message_i18n:
|
|
|
|
// payResult.contractTerms.fulfillment_message_i18n,
|
|
|
|
// };
|
|
|
|
// const msg = getJsonI18n(obj, "fulfillment_message");
|
|
|
|
// return (
|
|
|
|
// <div>
|
|
|
|
// <p>Payment succeeded.</p>
|
|
|
|
// <p>{msg}</p>
|
|
|
|
// </div>
|
|
|
|
// );
|
|
|
|
// } else {
|
|
|
|
// return <span>Redirecting ...</span>;
|
|
|
|
// }
|
|
|
|
// }
|
2019-08-29 23:12:55 +02:00
|
|
|
|
2021-08-13 23:04:05 +02:00
|
|
|
const onClick = async () => {
|
|
|
|
try {
|
|
|
|
const res = await doPayment(payStatus)
|
|
|
|
setPayResult(res);
|
|
|
|
} catch (e) {
|
|
|
|
console.error(e);
|
2021-09-08 20:30:32 +02:00
|
|
|
if (e instanceof Error) {
|
|
|
|
setPayErrMsg(e.message);
|
|
|
|
}
|
2021-08-13 23:04:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2021-09-27 18:06:50 +02:00
|
|
|
return <PaymentRequestView uri={talerPayUri} payStatus={payStatus} onClick={onClick} payErrMsg={payErrMsg} balance={foundAmount} />;
|
2021-08-13 23:04:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
export interface PaymentRequestViewProps {
|
|
|
|
payStatus: PreparePayResult;
|
|
|
|
onClick: () => void;
|
|
|
|
payErrMsg?: string;
|
2021-09-17 20:48:33 +02:00
|
|
|
uri: string;
|
2021-09-27 18:06:50 +02:00
|
|
|
balance: AmountJson | undefined;
|
2021-08-13 23:04:05 +02:00
|
|
|
}
|
2021-09-27 18:06:50 +02:00
|
|
|
export function PaymentRequestView({ uri, payStatus, onClick, payErrMsg, balance }: PaymentRequestViewProps) {
|
2021-09-17 20:48:33 +02:00
|
|
|
let totalFees: AmountJson = Amounts.getZero(payStatus.amountRaw);
|
2021-05-07 15:38:28 +02:00
|
|
|
const contractTerms: ContractTerms = payStatus.contractTerms;
|
2019-08-29 23:12:55 +02:00
|
|
|
|
|
|
|
if (!contractTerms) {
|
|
|
|
return (
|
|
|
|
<span>
|
|
|
|
Error: did not get contract terms from merchant or wallet backend.
|
|
|
|
</span>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-08-13 23:04:05 +02:00
|
|
|
if (payStatus.status === PreparePayResultType.PaymentPossible) {
|
|
|
|
const amountRaw = Amounts.parseOrThrow(payStatus.amountRaw);
|
|
|
|
const amountEffective: AmountJson = Amounts.parseOrThrow(
|
|
|
|
payStatus.amountEffective,
|
|
|
|
);
|
|
|
|
totalFees = Amounts.sub(amountEffective, amountRaw).amount;
|
|
|
|
}
|
|
|
|
|
2021-05-07 15:38:28 +02:00
|
|
|
let merchantName: VNode;
|
2019-08-29 23:12:55 +02:00
|
|
|
if (contractTerms.merchant && contractTerms.merchant.name) {
|
|
|
|
merchantName = <strong>{contractTerms.merchant.name}</strong>;
|
|
|
|
} else {
|
|
|
|
merchantName = <strong>(pub: {contractTerms.merchant_pub})</strong>;
|
|
|
|
}
|
|
|
|
|
2021-09-27 18:06:50 +02:00
|
|
|
function Alternative() {
|
|
|
|
const [showQR, setShowQR] = useState<boolean>(false)
|
|
|
|
const privateUri = payStatus.status !== PreparePayResultType.AlreadyConfirmed ? `${uri}&n=${payStatus.noncePriv}` : uri
|
|
|
|
return <section>
|
|
|
|
<LinkSuccess upperCased onClick={() => setShowQR(qr => !qr)}>
|
|
|
|
{!showQR ? i18n.str`Pay with a mobile phone` : i18n.str`Hide QR`}
|
|
|
|
</LinkSuccess>
|
|
|
|
{showQR && <div>
|
|
|
|
<QR text={privateUri} />
|
|
|
|
Scan the QR code or <a href={privateUri}>click here</a>
|
|
|
|
</div>}
|
|
|
|
</section>
|
|
|
|
}
|
|
|
|
|
|
|
|
function ButtonsSection() {
|
|
|
|
if (payErrMsg) {
|
|
|
|
return <section>
|
|
|
|
<div>
|
|
|
|
<p>Payment failed: {payErrMsg}</p>
|
|
|
|
<button class="pure-button button-success" onClick={onClick} >
|
|
|
|
{i18n.str`Retry`}
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
}
|
|
|
|
if (payStatus.status === PreparePayResultType.PaymentPossible) {
|
|
|
|
return <Fragment>
|
|
|
|
<section>
|
|
|
|
<ButtonSuccess upperCased>
|
|
|
|
{i18n.str`Pay`} {amountToString(payStatus.amountEffective)}
|
|
|
|
</ButtonSuccess>
|
|
|
|
</section>
|
|
|
|
<Alternative />
|
|
|
|
</Fragment>
|
|
|
|
}
|
|
|
|
if (payStatus.status === PreparePayResultType.InsufficientBalance) {
|
|
|
|
return <Fragment>
|
|
|
|
<section>
|
|
|
|
{balance ? <WarningBox>
|
|
|
|
Your balance of {amountToString(balance)} is not enough to pay for this purchase
|
|
|
|
</WarningBox> : <WarningBox>
|
|
|
|
Your balance is not enough to pay for this purchase.
|
|
|
|
</WarningBox>}
|
|
|
|
</section>
|
|
|
|
<section>
|
|
|
|
<ButtonSuccess upperCased>
|
|
|
|
{i18n.str`Withdraw digital cash`}
|
|
|
|
</ButtonSuccess>
|
|
|
|
</section>
|
|
|
|
<Alternative />
|
|
|
|
</Fragment>
|
|
|
|
}
|
|
|
|
if (payStatus.status === PreparePayResultType.AlreadyConfirmed) {
|
|
|
|
return <Fragment>
|
|
|
|
<section>
|
|
|
|
{payStatus.paid && contractTerms.fulfillment_message && <Part title="Merchant message" text={contractTerms.fulfillment_message} kind='neutral' />}
|
|
|
|
</section>
|
|
|
|
{!payStatus.paid && <Alternative />}
|
|
|
|
</Fragment>
|
|
|
|
}
|
|
|
|
return <span />
|
|
|
|
}
|
|
|
|
|
2021-09-17 20:48:33 +02:00
|
|
|
return <WalletAction>
|
|
|
|
<LogoHeader />
|
2021-09-27 18:06:50 +02:00
|
|
|
|
2021-09-17 20:48:33 +02:00
|
|
|
<h2>
|
|
|
|
{i18n.str`Digital cash payment`}
|
|
|
|
</h2>
|
2021-09-27 18:06:50 +02:00
|
|
|
{payStatus.status === PreparePayResultType.AlreadyConfirmed &&
|
|
|
|
(payStatus.paid ? <SuccessBox> Already paid </SuccessBox> : <WarningBox> Already confirmed </WarningBox>)
|
|
|
|
}
|
2021-09-17 20:48:33 +02:00
|
|
|
<section>
|
2021-09-27 18:06:50 +02:00
|
|
|
{payStatus.status !== PreparePayResultType.InsufficientBalance && Amounts.isNonZero(totalFees) &&
|
|
|
|
<Part big title="Total to pay" text={amountToString(payStatus.amountEffective)} kind='negative' />
|
2021-09-20 05:19:31 +02:00
|
|
|
}
|
2021-09-17 20:48:33 +02:00
|
|
|
<Part big title="Purchase amount" text={amountToString(payStatus.amountRaw)} kind='neutral' />
|
2021-09-27 18:06:50 +02:00
|
|
|
{Amounts.isNonZero(totalFees) && <Fragment>
|
|
|
|
<Part big title="Fee" text={amountToString(totalFees)} kind='negative' />
|
|
|
|
</Fragment>
|
|
|
|
}
|
2021-09-17 20:48:33 +02:00
|
|
|
<Part title="Merchant" text={contractTerms.merchant.name} kind='neutral' />
|
|
|
|
<Part title="Purchase" text={contractTerms.summary} kind='neutral' />
|
|
|
|
{contractTerms.order_id && <Part title="Receipt" text={`#${contractTerms.order_id}`} kind='neutral' />}
|
|
|
|
</section>
|
2021-09-27 18:06:50 +02:00
|
|
|
<ButtonsSection />
|
2021-09-17 20:48:33 +02:00
|
|
|
|
|
|
|
</WalletAction>
|
|
|
|
}
|
2021-08-13 23:04:05 +02:00
|
|
|
|
2021-09-17 20:48:33 +02:00
|
|
|
function amountToString(text: AmountLike) {
|
|
|
|
const aj = Amounts.jsonifyAmount(text)
|
2021-09-27 18:06:50 +02:00
|
|
|
const amount = Amounts.stringifyValue(aj, 2)
|
2021-09-17 20:48:33 +02:00
|
|
|
return `${amount} ${aj.currency}`
|
|
|
|
}
|