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

399 lines
11 KiB
TypeScript
Raw Normal View History

/*
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.
*/
// import * as i18n from "../i18n";
2021-11-15 15:18:58 +01:00
import {
AmountJson,
AmountLike,
Amounts,
ConfirmPayResult,
ConfirmPayResultDone,
ConfirmPayResultType,
ContractTerms,
i18n,
2021-12-06 14:31:19 +01:00
NotificationType,
2021-11-15 15:18:58 +01:00
PreparePayResult,
PreparePayResultType,
2022-01-19 17:51:48 +01:00
Product,
2021-11-15 15:18:58 +01:00
} from "@gnu-taler/taler-util";
2021-11-29 18:11:32 +01:00
import { OperationFailedError } from "@gnu-taler/taler-wallet-core";
2021-11-16 17:59:53 +01:00
import { Fragment, h, VNode } from "preact";
import { useEffect, useState } from "preact/hooks";
2022-01-20 17:12:28 +01:00
import { Loading } from "../components/Loading";
import { LoadingError } from "../components/LoadingError";
2021-09-17 20:48:33 +02:00
import { LogoHeader } from "../components/LogoHeader";
import { Part } from "../components/Part";
import { QR } from "../components/QR";
2021-11-15 15:18:58 +01:00
import {
ButtonSuccess,
LinkSuccess,
2022-01-19 17:51:48 +01:00
SmallLightText,
2021-11-15 15:18:58 +01:00
SuccessBox,
WalletAction,
WarningBox,
} from "../components/styled";
import { useAsyncAsHook } from "../hooks/useAsyncAsHook";
2021-09-27 18:06:50 +02:00
import * as wxApi from "../wxApi";
2021-05-07 23:10:27 +02:00
interface Props {
2021-11-15 15:18:58 +01:00
talerPayUri?: string;
goToWalletManualWithdraw: (currency?: string) => void;
goBack: () => void;
2021-05-07 23:10:27 +02:00
}
2021-11-15 15:18:58 +01:00
const doPayment = async (
payStatus: PreparePayResult,
): Promise<ConfirmPayResultDone> => {
2021-08-13 23:04:05 +02:00
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-12-06 14:31:19 +01:00
export function PayPage({
talerPayUri,
goToWalletManualWithdraw,
2022-01-20 17:12:28 +01:00
goBack,
2021-12-06 14:31:19 +01:00
}: Props): VNode {
2021-11-15 15:18:58 +01:00
const [payResult, setPayResult] = useState<ConfirmPayResult | undefined>(
undefined,
);
2021-11-29 18:11:32 +01:00
const [payErrMsg, setPayErrMsg] = useState<
OperationFailedError | string | undefined
>(undefined);
2022-01-20 17:12:28 +01:00
const hook = useAsyncAsHook(async () => {
if (!talerPayUri) throw Error("Missing pay uri");
const payStatus = await wxApi.preparePay(talerPayUri);
const balance = await wxApi.getBalance();
return { payStatus, balance };
}, [NotificationType.CoinWithdrawn]);
if (!hook) {
return <Loading />;
}
if (hook.hasError) {
return <LoadingError title="Could not load pay status" error={hook} />;
}
2021-09-27 18:06:50 +02:00
2022-01-20 17:12:28 +01:00
const foundBalance = hook.response.balance.balances.find(
2021-11-15 15:18:58 +01:00
(b) =>
Amounts.parseOrThrow(b.available).currency ===
2022-01-20 17:12:28 +01:00
Amounts.parseOrThrow(hook.response.payStatus.amountRaw).currency,
2021-11-15 15:18:58 +01:00
);
const foundAmount = foundBalance
? Amounts.parseOrThrow(foundBalance.available)
: undefined;
2021-11-16 17:59:53 +01:00
const onClick = async (): Promise<void> => {
2021-08-13 23:04:05 +02:00
try {
2022-01-20 17:12:28 +01:00
const res = await doPayment(hook.response.payStatus);
2021-08-13 23:04:05 +02:00
setPayResult(res);
} catch (e) {
console.error(e);
if (e instanceof Error) {
setPayErrMsg(e.message);
}
2021-08-13 23:04:05 +02:00
}
2021-11-15 15:18:58 +01:00
};
2021-08-13 23:04:05 +02:00
2021-11-15 15:18:58 +01:00
return (
<PaymentRequestView
2022-01-20 17:12:28 +01:00
uri={talerPayUri!}
payStatus={hook.response.payStatus}
2021-11-15 15:18:58 +01:00
payResult={payResult}
onClick={onClick}
2021-12-06 14:31:19 +01:00
goToWalletManualWithdraw={goToWalletManualWithdraw}
2021-11-15 15:18:58 +01:00
balance={foundAmount}
/>
);
2021-08-13 23:04:05 +02:00
}
export interface PaymentRequestViewProps {
payStatus: PreparePayResult;
2021-10-11 20:59:55 +02:00
payResult?: ConfirmPayResult;
2021-08-13 23:04:05 +02:00
onClick: () => void;
payErrMsg?: string;
2021-09-17 20:48:33 +02:00
uri: string;
2021-12-06 14:31:19 +01:00
goToWalletManualWithdraw: () => void;
2021-09-27 18:06:50 +02:00
balance: AmountJson | undefined;
2021-08-13 23:04:05 +02:00
}
2021-11-15 15:18:58 +01:00
export function PaymentRequestView({
uri,
payStatus,
payResult,
onClick,
2021-12-06 14:31:19 +01:00
goToWalletManualWithdraw,
2021-11-15 15:18:58 +01:00
balance,
2021-11-16 17:59:53 +01:00
}: PaymentRequestViewProps): VNode {
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;
useEffect(() => {
if (
payStatus.status === PreparePayResultType.AlreadyConfirmed &&
payStatus.paid
) {
const fu = payStatus.contractTerms.fulfillment_url;
if (fu) {
setTimeout(() => {
document.location.href = fu;
}, 3000);
}
}
});
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-11-29 18:11:32 +01:00
// let merchantName: VNode;
// if (contractTerms.merchant && contractTerms.merchant.name) {
// merchantName = <strong>{contractTerms.merchant.name}</strong>;
// } else {
// merchantName = <strong>(pub: {contractTerms.merchant_pub})</strong>;
// }
2021-11-16 17:59:53 +01:00
function Alternative(): VNode {
2021-11-15 15:18:58 +01:00
const [showQR, setShowQR] = useState<boolean>(false);
const privateUri =
payStatus.status !== PreparePayResultType.AlreadyConfirmed
? `${uri}&n=${payStatus.noncePriv}`
: uri;
2022-01-19 17:51:48 +01:00
if (!uri) return <Fragment />;
2021-11-15 15:18:58 +01:00
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>
);
2021-09-27 18:06:50 +02:00
}
2021-11-16 17:59:53 +01:00
function ButtonsSection(): VNode {
2021-10-11 20:59:55 +02:00
if (payResult) {
if (payResult.type === ConfirmPayResultType.Pending) {
2021-11-15 15:18:58 +01:00
return (
<section>
<div>
<p>Processing...</p>
</div>
</section>
);
2021-10-11 20:59:55 +02:00
}
2021-11-16 17:59:53 +01:00
return <Fragment />;
2021-10-11 20:59:55 +02:00
}
2021-11-15 15:18:58 +01:00
if (payStatus.status === PreparePayResultType.PaymentPossible) {
return (
<Fragment>
<section>
<ButtonSuccess upperCased onClick={onClick}>
{i18n.str`Pay`} {amountToString(payStatus.amountEffective)}
</ButtonSuccess>
</section>
<Alternative />
</Fragment>
);
2021-09-27 18:06:50 +02:00
}
if (payStatus.status === PreparePayResultType.InsufficientBalance) {
2021-11-15 15:18:58 +01:00
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>
2021-12-06 14:31:19 +01:00
<ButtonSuccess upperCased onClick={goToWalletManualWithdraw}>
2021-11-15 15:18:58 +01:00
{i18n.str`Withdraw digital cash`}
</ButtonSuccess>
</section>
<Alternative />
</Fragment>
);
2021-09-27 18:06:50 +02:00
}
if (payStatus.status === PreparePayResultType.AlreadyConfirmed) {
2021-11-15 15:18:58 +01:00
return (
<Fragment>
<section>
{payStatus.paid && contractTerms.fulfillment_message && (
<Part
title="Merchant message"
text={contractTerms.fulfillment_message}
kind="neutral"
/>
)}
</section>
{!payStatus.paid && <Alternative />}
</Fragment>
);
2021-09-27 18:06:50 +02:00
}
2021-11-15 15:18:58 +01:00
return <span />;
2021-09-27 18:06:50 +02:00
}
2021-11-15 15:18:58 +01:00
return (
<WalletAction>
<LogoHeader />
2021-09-17 20:48:33 +02:00
2021-11-15 15:18:58 +01:00
<h2>{i18n.str`Digital cash payment`}</h2>
{payStatus.status === PreparePayResultType.AlreadyConfirmed &&
(payStatus.paid ? (
payStatus.contractTerms.fulfillment_url ? (
<SuccessBox>
Already paid, you are going to be redirected to{" "}
<a href={payStatus.contractTerms.fulfillment_url}>
{payStatus.contractTerms.fulfillment_url}
</a>
</SuccessBox>
) : (
<SuccessBox> Already paid </SuccessBox>
)
2021-11-15 15:18:58 +01:00
) : (
<WarningBox> Already claimed </WarningBox>
))}
{payResult && payResult.type === ConfirmPayResultType.Done && (
<SuccessBox>
<h3>Payment complete</h3>
<p>
{!payResult.contractTerms.fulfillment_message
? "You will now be sent back to the merchant you came from."
: payResult.contractTerms.fulfillment_message}
</p>
</SuccessBox>
)}
<section>
{payStatus.status !== PreparePayResultType.InsufficientBalance &&
Amounts.isNonZero(totalFees) && (
<Part
big
title="Total to pay"
text={amountToString(payStatus.amountEffective)}
kind="negative"
/>
)}
<Part
big
title="Purchase amount"
text={amountToString(payStatus.amountRaw)}
kind="neutral"
/>
{Amounts.isNonZero(totalFees) && (
<Fragment>
<Part
big
title="Fee"
text={amountToString(totalFees)}
kind="negative"
/>
</Fragment>
)}
<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"
/>
)}
2022-01-31 18:56:12 +01:00
{contractTerms.products && contractTerms.products.length > 0 && (
2022-01-19 17:51:48 +01:00
<ProductList products={contractTerms.products} />
)}
2021-11-15 15:18:58 +01:00
</section>
<ButtonsSection />
</WalletAction>
);
2021-09-17 20:48:33 +02:00
}
2021-08-13 23:04:05 +02:00
2022-01-19 17:51:48 +01:00
function ProductList({ products }: { products: Product[] }): VNode {
return (
<Fragment>
<SmallLightText style={{ margin: ".5em" }}>
List of products
</SmallLightText>
<dl>
{products.map((p, i) => (
<div key={i} style={{ display: "flex", textAlign: "left" }}>
<div>
<img src={p.image} style={{ width: 32, height: 32 }} />
</div>
<div>
<dt>{p.description}</dt>
<dd>
{p.price} x {p.quantity} {p.unit ? `(${p.unit})` : ``}
</dd>
</div>
</div>
))}
</dl>
</Fragment>
);
}
2021-11-16 17:59:53 +01:00
function amountToString(text: AmountLike): string {
2021-11-15 15:18:58 +01:00
const aj = Amounts.jsonifyAmount(text);
const amount = Amounts.stringifyValue(aj, 2);
return `${amount} ${aj.currency}`;
2021-09-17 20:48:33 +02:00
}