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

615 lines
17 KiB
TypeScript
Raw Normal View History

2022-03-30 19:22:42 +02:00
/* eslint-disable @typescript-eslint/no-unused-vars */
/* eslint-disable @typescript-eslint/no-non-null-assertion */
/*
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-11-15 15:18:58 +01:00
import {
AmountJson,
Amounts,
ConfirmPayResult,
ConfirmPayResultDone,
ConfirmPayResultType,
ContractTerms,
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,
2022-04-21 19:23:53 +02:00
TalerErrorCode,
2021-11-15 15:18:58 +01:00
} from "@gnu-taler/taler-util";
import { TalerError } 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-04-11 16:33:55 +02:00
import { Amount } from "../components/Amount.js";
2022-03-29 04:41:07 +02:00
import { ErrorMessage } from "../components/ErrorMessage.js";
2022-04-21 19:23:53 +02:00
import { ErrorTalerOperation } from "../components/ErrorTalerOperation.js";
2022-03-29 04:41:07 +02:00
import { Loading } from "../components/Loading.js";
import { LoadingError } from "../components/LoadingError.js";
import { LogoHeader } from "../components/LogoHeader.js";
import { Part } from "../components/Part.js";
import { QR } from "../components/QR.js";
2021-11-15 15:18:58 +01:00
import {
ButtonSuccess,
2022-03-17 19:00:34 +01:00
Link,
2021-11-15 15:18:58 +01:00
LinkSuccess,
2022-01-19 17:51:48 +01:00
SmallLightText,
SubTitle,
2021-11-15 15:18:58 +01:00
SuccessBox,
WalletAction,
WarningBox,
2022-03-29 04:41:07 +02:00
} from "../components/styled/index.js";
import { useTranslationContext } from "../context/translation.js";
2022-04-21 19:23:53 +02:00
import {
HookError,
useAsyncAsHook,
useAsyncAsHook2,
} from "../hooks/useAsyncAsHook.js";
2022-04-22 21:10:21 +02:00
import { ButtonHandler } from "../mui/handlers.js";
2022-03-29 04:41:07 +02:00
import * as wxApi from "../wxApi.js";
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
}
2022-04-21 19:23:53 +02:00
type State = Loading | Ready | Confirmed;
interface Loading {
status: "loading";
hook: HookError | undefined;
}
interface Ready {
status: "ready";
hook: undefined;
uri: string;
amount: AmountJson;
totalFees: AmountJson;
payStatus: PreparePayResult;
balance: AmountJson | undefined;
payHandler: ButtonHandler;
payResult: undefined;
}
interface Confirmed {
status: "confirmed";
hook: undefined;
uri: string;
amount: AmountJson;
totalFees: AmountJson;
payStatus: PreparePayResult;
balance: AmountJson | undefined;
payResult: ConfirmPayResult;
payHandler: ButtonHandler;
}
export function useComponentState(
talerPayUri: string | undefined,
api: typeof wxApi,
): State {
2021-11-15 15:18:58 +01:00
const [payResult, setPayResult] = useState<ConfirmPayResult | undefined>(
undefined,
);
2022-04-21 19:23:53 +02:00
const [payErrMsg, setPayErrMsg] = useState<TalerError | undefined>(undefined);
2022-04-21 19:23:53 +02:00
const hook = useAsyncAsHook2(async () => {
if (!talerPayUri) throw Error("ERROR_NO-URI-FOR-PAYMENT");
const payStatus = await api.preparePay(talerPayUri);
const balance = await api.getBalance();
return { payStatus, balance, uri: talerPayUri };
});
2022-01-20 17:12:28 +01:00
2022-04-06 17:20:00 +02:00
useEffect(() => {
2022-04-21 19:23:53 +02:00
api.onUpdateNotification([NotificationType.CoinWithdrawn], () => {
hook?.retry();
});
});
const hookResponse = !hook || hook.hasError ? undefined : hook.response;
useEffect(() => {
if (!hookResponse) return;
const { payStatus } = hookResponse;
2022-04-06 17:20:00 +02:00
if (
payStatus &&
payStatus.status === PreparePayResultType.AlreadyConfirmed &&
payStatus.paid
) {
const fu = payStatus.contractTerms.fulfillment_url;
if (fu) {
setTimeout(() => {
document.location.href = fu;
}, 3000);
}
}
2022-04-21 19:23:53 +02:00
}, [hookResponse]);
2022-01-20 17:12:28 +01:00
2022-04-21 19:23:53 +02:00
if (!hook || hook.hasError) {
return {
status: "loading",
hook,
};
2022-01-20 17:12:28 +01:00
}
2022-04-21 19:23:53 +02:00
const { payStatus } = hook.response;
const amount = Amounts.parseOrThrow(payStatus.amountRaw);
2021-09-27 18:06:50 +02:00
2022-01-20 17:12:28 +01:00
const foundBalance = hook.response.balance.balances.find(
2022-04-21 19:23:53 +02:00
(b) => Amounts.parseOrThrow(b.available).currency === amount.currency,
2021-11-15 15:18:58 +01:00
);
const foundAmount = foundBalance
? Amounts.parseOrThrow(foundBalance.available)
: undefined;
2022-04-21 19:23:53 +02:00
async function doPayment(): Promise<void> {
2021-08-13 23:04:05 +02:00
try {
2022-04-21 19:23:53 +02:00
if (payStatus.status !== "payment-possible") {
throw TalerError.fromUncheckedDetail({
code: TalerErrorCode.GENERIC_CLIENT_INTERNAL_ERROR,
hint: `payment is not possible: ${payStatus.status}`,
});
}
const res = await api.confirmPay(payStatus.proposalId, undefined);
if (res.type !== ConfirmPayResultType.Done) {
throw TalerError.fromUncheckedDetail({
code: TalerErrorCode.GENERIC_CLIENT_INTERNAL_ERROR,
hint: `could not confirm payment`,
payResult: res,
});
}
const fu = res.contractTerms.fulfillment_url;
if (fu) {
if (typeof window !== "undefined") {
document.location.href = fu;
} else {
console.log(`should redirect to ${fu}`);
}
}
2021-08-13 23:04:05 +02:00
setPayResult(res);
} catch (e) {
2022-04-21 19:23:53 +02:00
if (e instanceof TalerError) {
setPayErrMsg(e);
}
2021-08-13 23:04:05 +02:00
}
2022-04-21 19:23:53 +02:00
}
const payDisabled =
payErrMsg ||
!foundAmount ||
payStatus.status === PreparePayResultType.InsufficientBalance;
const payHandler: ButtonHandler = {
onClick: payDisabled ? undefined : doPayment,
error: payErrMsg,
};
let totalFees = Amounts.getZero(amount.currency);
if (payStatus.status === PreparePayResultType.PaymentPossible) {
const amountEffective: AmountJson = Amounts.parseOrThrow(
payStatus.amountEffective,
);
totalFees = Amounts.sub(amountEffective, amount).amount;
}
if (!payResult) {
return {
status: "ready",
hook: undefined,
uri: hook.response.uri,
amount,
totalFees,
balance: foundAmount,
payHandler,
payStatus: hook.response.payStatus,
payResult,
};
}
return {
status: "confirmed",
hook: undefined,
uri: hook.response.uri,
amount,
totalFees,
balance: foundAmount,
payStatus: hook.response.payStatus,
payResult,
payHandler: {},
2021-11-15 15:18:58 +01:00
};
2022-04-21 19:23:53 +02:00
}
export function PayPage({
talerPayUri,
goToWalletManualWithdraw,
goBack,
}: Props): VNode {
const { i18n } = useTranslationContext();
const state = useComponentState(talerPayUri, wxApi);
2021-08-13 23:04:05 +02:00
2022-04-21 19:23:53 +02:00
if (state.status === "loading") {
if (!state.hook) return <Loading />;
return (
<LoadingError
title={<i18n.Translate>Could not load pay status</i18n.Translate>}
error={state.hook}
/>
);
}
2021-11-15 15:18:58 +01:00
return (
2022-04-21 19:23:53 +02:00
<View
state={state}
goBack={goBack}
2021-12-06 14:31:19 +01:00
goToWalletManualWithdraw={goToWalletManualWithdraw}
2021-11-15 15:18:58 +01:00
/>
);
2021-08-13 23:04:05 +02:00
}
2022-04-21 19:23:53 +02:00
export function View({
state,
goBack,
2021-12-06 14:31:19 +01:00
goToWalletManualWithdraw,
2022-04-21 19:23:53 +02:00
}: {
state: Ready | Confirmed;
goToWalletManualWithdraw: (currency?: string) => void;
goBack: () => void;
}): VNode {
const { i18n } = useTranslationContext();
2022-04-21 19:23:53 +02:00
const contractTerms: ContractTerms = state.payStatus.contractTerms;
if (!contractTerms) {
return (
2022-02-23 19:18:37 +01:00
<ErrorMessage
title={
<i18n.Translate>
2022-02-23 19:18:37 +01:00
Could not load contract terms from merchant or wallet backend.
</i18n.Translate>
2022-02-23 19:18:37 +01:00
}
/>
);
}
2021-11-15 15:18:58 +01:00
return (
<WalletAction>
<LogoHeader />
2021-09-17 20:48:33 +02:00
<SubTitle>
<i18n.Translate>Digital cash payment</i18n.Translate>
</SubTitle>
2022-04-21 19:23:53 +02:00
<ShowImportantMessage state={state} />
2021-11-15 15:18:58 +01:00
<section>
2022-04-21 19:23:53 +02:00
{state.payStatus.status !== PreparePayResultType.InsufficientBalance &&
Amounts.isNonZero(state.totalFees) && (
2021-11-15 15:18:58 +01:00
<Part
big
title={<i18n.Translate>Total to pay</i18n.Translate>}
2022-04-21 19:23:53 +02:00
text={<Amount value={state.payStatus.amountEffective} />}
2021-11-15 15:18:58 +01:00
kind="negative"
/>
)}
<Part
big
title={<i18n.Translate>Purchase amount</i18n.Translate>}
2022-04-21 19:23:53 +02:00
text={<Amount value={state.payStatus.amountRaw} />}
2021-11-15 15:18:58 +01:00
kind="neutral"
/>
2022-04-21 19:23:53 +02:00
{Amounts.isNonZero(state.totalFees) && (
2021-11-15 15:18:58 +01:00
<Fragment>
<Part
big
title={<i18n.Translate>Fee</i18n.Translate>}
2022-04-21 19:23:53 +02:00
text={<Amount value={state.totalFees} />}
2021-11-15 15:18:58 +01:00
kind="negative"
/>
</Fragment>
)}
<Part
title={<i18n.Translate>Merchant</i18n.Translate>}
2021-11-15 15:18:58 +01:00
text={contractTerms.merchant.name}
kind="neutral"
/>
2022-02-23 19:18:37 +01:00
<Part
title={<i18n.Translate>Purchase</i18n.Translate>}
2022-02-23 19:18:37 +01:00
text={contractTerms.summary}
kind="neutral"
/>
2021-11-15 15:18:58 +01:00
{contractTerms.order_id && (
<Part
title={<i18n.Translate>Receipt</i18n.Translate>}
2021-11-15 15:18:58 +01:00
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>
2022-04-21 19:23:53 +02:00
<ButtonsSection
state={state}
goToWalletManualWithdraw={goToWalletManualWithdraw}
/>
2022-03-17 19:00:34 +01:00
<section>
2022-04-21 19:23:53 +02:00
<Link upperCased onClick={goBack}>
2022-03-17 19:00:34 +01:00
<i18n.Translate>Cancel</i18n.Translate>
</Link>
</section>
2021-11-15 15:18:58 +01:00
</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 {
const { i18n } = useTranslationContext();
2022-01-19 17:51:48 +01:00
return (
<Fragment>
<SmallLightText style={{ margin: ".5em" }}>
<i18n.Translate>List of products</i18n.Translate>
2022-01-19 17:51:48 +01:00
</SmallLightText>
<dl>
{products.map((p, i) => {
if (p.price) {
const pPrice = Amounts.parseOrThrow(p.price);
return (
<div key={i} style={{ display: "flex", textAlign: "left" }}>
<div>
<img
src={p.image ? p.image : undefined}
style={{ width: 32, height: 32 }}
/>
</div>
<div>
<dt>
{p.quantity ?? 1} x {p.description}{" "}
<span style={{ color: "gray" }}>
{Amounts.stringify(pPrice)}
</span>
</dt>
<dd>
<b>
{Amounts.stringify(
Amounts.mult(pPrice, p.quantity ?? 1).amount,
)}
</b>
</dd>
</div>
</div>
);
}
return (
<div key={i} style={{ display: "flex", textAlign: "left" }}>
<div>
<img src={p.image} style={{ width: 32, height: 32 }} />
</div>
<div>
<dt>
{p.quantity ?? 1} x {p.description}
</dt>
<dd>
<i18n.Translate>Total</i18n.Translate>
2022-02-23 19:18:37 +01:00
{` `}
{p.price ? (
`${Amounts.stringifyValue(
Amounts.mult(
Amounts.parseOrThrow(p.price),
p.quantity ?? 1,
).amount,
)} ${p}`
) : (
<i18n.Translate>free</i18n.Translate>
2022-02-23 19:18:37 +01:00
)}
</dd>
</div>
2022-01-19 17:51:48 +01:00
</div>
);
})}
2022-01-19 17:51:48 +01:00
</dl>
</Fragment>
);
}
2022-04-21 19:23:53 +02:00
function ShowImportantMessage({ state }: { state: Ready | Confirmed }): VNode {
const { i18n } = useTranslationContext();
const { payStatus } = state;
if (payStatus.status === PreparePayResultType.AlreadyConfirmed) {
if (payStatus.paid) {
if (payStatus.contractTerms.fulfillment_url) {
return (
<SuccessBox>
<i18n.Translate>
Already paid, you are going to be redirected to{" "}
<a href={payStatus.contractTerms.fulfillment_url}>
{payStatus.contractTerms.fulfillment_url}
</a>
</i18n.Translate>
</SuccessBox>
);
}
return (
<SuccessBox>
<i18n.Translate>Already paid</i18n.Translate>
</SuccessBox>
);
}
return (
<WarningBox>
<i18n.Translate>Already claimed</i18n.Translate>
</WarningBox>
);
}
if (state.status == "confirmed") {
const { payResult, payHandler } = state;
if (payHandler.error) {
return <ErrorTalerOperation error={payHandler.error.errorDetail} />;
}
if (payResult.type === ConfirmPayResultType.Done) {
return (
<SuccessBox>
<h3>
<i18n.Translate>Payment complete</i18n.Translate>
</h3>
<p>
{!payResult.contractTerms.fulfillment_message ? (
payResult.contractTerms.fulfillment_url ? (
<i18n.Translate>
You are going to be redirected to $
{payResult.contractTerms.fulfillment_url}
</i18n.Translate>
) : (
<i18n.Translate>You can close this page.</i18n.Translate>
)
) : (
payResult.contractTerms.fulfillment_message
)}
</p>
</SuccessBox>
);
}
}
return <Fragment />;
}
function PayWithMobile({ state }: { state: Ready }): VNode {
const { i18n } = useTranslationContext();
const [showQR, setShowQR] = useState<boolean>(false);
const privateUri =
state.payStatus.status !== PreparePayResultType.AlreadyConfirmed
? `${state.uri}&n=${state.payStatus.noncePriv}`
: state.uri;
return (
<section>
<LinkSuccess upperCased onClick={() => setShowQR((qr) => !qr)}>
{!showQR ? (
<i18n.Translate>Pay with a mobile phone</i18n.Translate>
) : (
<i18n.Translate>Hide QR</i18n.Translate>
)}
</LinkSuccess>
{showQR && (
<div>
<QR text={privateUri} />
<i18n.Translate>
Scan the QR code or
<a href={privateUri}>
<i18n.Translate>click here</i18n.Translate>
</a>
</i18n.Translate>
</div>
)}
</section>
);
}
function ButtonsSection({
state,
goToWalletManualWithdraw,
}: {
state: Ready | Confirmed;
goToWalletManualWithdraw: (currency: string) => void;
}): VNode {
const { i18n } = useTranslationContext();
if (state.status === "ready") {
const { payStatus } = state;
if (payStatus.status === PreparePayResultType.PaymentPossible) {
return (
<Fragment>
<section>
<ButtonSuccess upperCased onClick={state.payHandler.onClick}>
<i18n.Translate>
Pay {<Amount value={payStatus.amountEffective} />}
</i18n.Translate>
</ButtonSuccess>
</section>
<PayWithMobile state={state} />
</Fragment>
);
}
if (payStatus.status === PreparePayResultType.InsufficientBalance) {
return (
<Fragment>
<section>
{state.balance ? (
<WarningBox>
<i18n.Translate>
Your balance of {<Amount value={state.balance} />} is not
enough to pay for this purchase
</i18n.Translate>
</WarningBox>
) : (
<WarningBox>
<i18n.Translate>
Your balance is not enough to pay for this purchase.
</i18n.Translate>
</WarningBox>
)}
</section>
<section>
<ButtonSuccess
upperCased
onClick={() => goToWalletManualWithdraw(state.amount.currency)}
>
<i18n.Translate>Withdraw digital cash</i18n.Translate>
</ButtonSuccess>
</section>
<PayWithMobile state={state} />
</Fragment>
);
}
if (payStatus.status === PreparePayResultType.AlreadyConfirmed) {
return (
<Fragment>
<section>
{payStatus.paid &&
state.payStatus.contractTerms.fulfillment_message && (
<Part
title={<i18n.Translate>Merchant message</i18n.Translate>}
text={state.payStatus.contractTerms.fulfillment_message}
kind="neutral"
/>
)}
</section>
{!payStatus.paid && <PayWithMobile state={state} />}
</Fragment>
);
}
}
if (state.status === "confirmed") {
if (state.payResult.type === ConfirmPayResultType.Pending) {
return (
<section>
<div>
<p>
<i18n.Translate>Processing</i18n.Translate>...
</p>
</div>
</section>
);
}
}
return <Fragment />;
}