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.
|
|
|
|
*/
|
2019-12-12 20:53:15 +01:00
|
|
|
import * as i18n from "../i18n";
|
2019-08-29 23:12:55 +02:00
|
|
|
|
2019-12-12 20:53:15 +01:00
|
|
|
import { PreparePayResult } from "../../types/walletTypes";
|
2019-08-29 23:12:55 +02:00
|
|
|
|
2019-09-05 16:23:54 +02:00
|
|
|
import { renderAmount, ProgressButton, registerMountPage } from "../renderHtml";
|
2019-08-29 23:12:55 +02:00
|
|
|
import * as wxApi from "../wxApi";
|
|
|
|
|
|
|
|
import React, { useState, useEffect } from "react";
|
|
|
|
|
2019-12-02 00:42:40 +01:00
|
|
|
import * as Amounts from "../../util/amounts";
|
2019-08-29 23:12:55 +02:00
|
|
|
|
|
|
|
function TalerPayDialog({ talerPayUri }: { talerPayUri: string }) {
|
|
|
|
const [payStatus, setPayStatus] = useState<PreparePayResult | undefined>();
|
|
|
|
const [payErrMsg, setPayErrMsg] = useState<string | undefined>("");
|
|
|
|
const [numTries, setNumTries] = useState(0);
|
2019-08-31 11:49:36 +02:00
|
|
|
const [loading, setLoading] = useState(false);
|
2019-08-29 23:12:55 +02:00
|
|
|
let totalFees: Amounts.AmountJson | undefined = undefined;
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
const doFetch = async () => {
|
|
|
|
const p = await wxApi.preparePay(talerPayUri);
|
|
|
|
setPayStatus(p);
|
|
|
|
};
|
|
|
|
doFetch();
|
2019-08-31 17:41:31 +02:00
|
|
|
}, [numTries]);
|
2019-08-29 23:12:55 +02:00
|
|
|
|
|
|
|
if (!payStatus) {
|
|
|
|
return <span>Loading payment information ...</span>;
|
|
|
|
}
|
|
|
|
|
2019-11-01 18:39:23 +01:00
|
|
|
let insufficientBalance = false;
|
|
|
|
if (payStatus.status == "insufficient-balance") {
|
|
|
|
insufficientBalance = true;
|
|
|
|
}
|
|
|
|
|
2019-08-29 23:12:55 +02:00
|
|
|
if (payStatus.status === "error") {
|
|
|
|
return <span>Error: {payStatus.error}</span>;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (payStatus.status === "payment-possible") {
|
|
|
|
totalFees = payStatus.totalFees;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (payStatus.status === "paid" && numTries === 0) {
|
|
|
|
return (
|
|
|
|
<span>
|
|
|
|
You have already paid for this article. Click{" "}
|
|
|
|
<a href={payStatus.nextUrl}>here</a> to view it again.
|
|
|
|
</span>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-12-19 20:42:49 +01:00
|
|
|
const contractTerms = payStatus.contractTermsRaw;
|
2019-08-29 23:12:55 +02:00
|
|
|
|
|
|
|
if (!contractTerms) {
|
|
|
|
return (
|
|
|
|
<span>
|
|
|
|
Error: did not get contract terms from merchant or wallet backend.
|
|
|
|
</span>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
let merchantName: React.ReactElement;
|
|
|
|
if (contractTerms.merchant && contractTerms.merchant.name) {
|
|
|
|
merchantName = <strong>{contractTerms.merchant.name}</strong>;
|
|
|
|
} else {
|
|
|
|
merchantName = <strong>(pub: {contractTerms.merchant_pub})</strong>;
|
|
|
|
}
|
|
|
|
|
|
|
|
const amount = (
|
|
|
|
<strong>{renderAmount(Amounts.parseOrThrow(contractTerms.amount))}</strong>
|
|
|
|
);
|
|
|
|
|
|
|
|
const doPayment = async () => {
|
2019-09-06 11:06:28 +02:00
|
|
|
if (payStatus.status !== "payment-possible") {
|
2019-11-01 18:39:23 +01:00
|
|
|
throw Error(`invalid state: ${payStatus.status}`);
|
2019-09-06 11:06:28 +02:00
|
|
|
}
|
|
|
|
const proposalId = payStatus.proposalId;
|
2019-08-29 23:12:55 +02:00
|
|
|
setNumTries(numTries + 1);
|
|
|
|
try {
|
2019-08-31 11:49:36 +02:00
|
|
|
setLoading(true);
|
2019-09-06 11:06:28 +02:00
|
|
|
const res = await wxApi.confirmPay(proposalId, undefined);
|
2019-08-29 23:12:55 +02:00
|
|
|
document.location.href = res.nextUrl;
|
|
|
|
} catch (e) {
|
|
|
|
console.error(e);
|
|
|
|
setPayErrMsg(e.message);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
<p>
|
|
|
|
<i18n.Translate wrap="p">
|
|
|
|
The merchant <span>{merchantName}</span> offers you to purchase:
|
|
|
|
</i18n.Translate>
|
|
|
|
<div style={{ textAlign: "center" }}>
|
|
|
|
<strong>{contractTerms.summary}</strong>
|
|
|
|
</div>
|
|
|
|
{totalFees ? (
|
|
|
|
<i18n.Translate wrap="p">
|
|
|
|
The total price is <span>{amount} </span>
|
|
|
|
(plus <span>{renderAmount(totalFees)}</span> fees).
|
|
|
|
</i18n.Translate>
|
|
|
|
) : (
|
|
|
|
<i18n.Translate wrap="p">
|
|
|
|
The total price is <span>{amount}</span>.
|
|
|
|
</i18n.Translate>
|
|
|
|
)}
|
|
|
|
</p>
|
|
|
|
|
2019-11-01 18:39:23 +01:00
|
|
|
{insufficientBalance ? (
|
|
|
|
<div>
|
|
|
|
<p style={{color: "red", fontWeight: "bold"}}>Unable to pay: Your balance is insufficient.</p>
|
|
|
|
</div>
|
|
|
|
) : null}
|
|
|
|
|
2019-08-29 23:12:55 +02:00
|
|
|
{payErrMsg ? (
|
|
|
|
<div>
|
|
|
|
<p>Payment failed: {payErrMsg}</p>
|
|
|
|
<button
|
|
|
|
className="pure-button button-success"
|
|
|
|
onClick={() => doPayment()}
|
|
|
|
>
|
|
|
|
{i18n.str`Retry`}
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
) : (
|
|
|
|
<div>
|
2019-08-31 11:49:36 +02:00
|
|
|
<ProgressButton
|
|
|
|
loading={loading}
|
2019-11-01 18:39:23 +01:00
|
|
|
disabled={insufficientBalance}
|
2019-08-31 11:49:36 +02:00
|
|
|
onClick={() => doPayment()}>
|
2019-08-29 23:12:55 +02:00
|
|
|
{i18n.str`Confirm payment`}
|
2019-08-31 11:49:36 +02:00
|
|
|
</ProgressButton>
|
2019-08-29 23:12:55 +02:00
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-09-05 16:23:54 +02:00
|
|
|
registerMountPage(() => {
|
2019-12-02 00:42:40 +01:00
|
|
|
const url = new URL(document.location.href);
|
|
|
|
const talerPayUri = url.searchParams.get("talerPayUri");
|
|
|
|
if (!talerPayUri) {
|
|
|
|
throw Error("invalid parameter");
|
|
|
|
}
|
2019-09-05 16:23:54 +02:00
|
|
|
return <TalerPayDialog talerPayUri={talerPayUri} />;
|
2019-08-29 23:12:55 +02:00
|
|
|
});
|