wallet-core/src/webex/wxApi.ts

353 lines
8.5 KiB
TypeScript
Raw Normal View History

2016-02-19 04:23:00 +01:00
/*
This file is part of TALER
(C) 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
2016-07-07 17:59:29 +02:00
TALER; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
2016-02-19 04:23:00 +01:00
*/
/**
* Interface to the wallet through WebExtension messaging.
*/
/**
* Imports.
*/
import { AmountJson } from "../util/amounts";
2016-10-12 02:55:53 +02:00
import {
2016-11-15 15:07:17 +01:00
CoinRecord,
2017-05-28 01:10:54 +02:00
CurrencyRecord,
DenominationRecord,
ExchangeRecord,
ReserveRecord,
} from "../types/dbTypes";
import {
2018-09-20 02:56:13 +02:00
BenchmarkResult,
ConfirmPayResult,
2019-12-09 19:59:08 +01:00
ExchangeWithdrawDetails,
SenderWireInfos,
2017-11-30 04:07:36 +01:00
TipStatus,
WalletBalance,
2019-08-31 13:27:12 +02:00
PurchaseDetails,
WalletDiagnostics,
2020-04-06 20:02:01 +02:00
WithdrawDetails,
PreparePayResult,
AcceptWithdrawalResponse,
ExtendedPermissionsResponse,
} from "../types/walletTypes";
2017-10-15 19:28:35 +02:00
import { MessageMap, MessageType } from "./messages";
2017-06-05 03:20:28 +02:00
/**
* Response with information about available version upgrades.
*/
export interface UpgradeResponse {
/**
* Is a reset required because of a new DB version
* that can't be atomatically upgraded?
*/
dbResetRequired: boolean;
/**
* Current database version.
*/
currentDbVersion: string;
/**
* Old db version (if applicable).
*/
oldDbVersion: string;
}
2018-04-09 00:41:14 +02:00
/**
* Error thrown when the function from the backend (via RPC) threw an error.
*/
export class WalletApiError extends Error {
constructor(message: string, public detail: any) {
super(message);
// restore prototype chain
Object.setPrototypeOf(this, new.target.prototype);
}
}
2018-01-23 17:05:58 +01:00
async function callBackend<T extends MessageType>(
type: T,
detail: MessageMap[T]["request"],
): Promise<MessageMap[T]["response"]> {
return new Promise<MessageMap[T]["response"]>((resolve, reject) => {
2020-03-30 12:39:32 +02:00
chrome.runtime.sendMessage({ type, detail }, (resp) => {
2019-12-28 16:21:21 +01:00
if (chrome.runtime.lastError) {
console.log("Error calling backend");
reject(
new Error(
`Error contacting backend: chrome.runtime.lastError.message`,
),
);
2019-12-28 16:21:21 +01:00
}
if (typeof resp === "object" && resp && resp.error) {
console.warn("response error:", resp);
2019-08-31 13:27:12 +02:00
const e = new WalletApiError(resp.error.message, resp.error);
reject(e);
} else {
resolve(resp);
}
2016-10-12 02:55:53 +02:00
});
});
}
2017-05-30 18:33:28 +02:00
/**
* Query the wallet for the coins that would be used to withdraw
* from a given reserve.
*/
export function getReserveCreationInfo(
baseUrl: string,
amount: AmountJson,
): Promise<ExchangeWithdrawDetails> {
2017-05-30 18:33:28 +02:00
return callBackend("reserve-creation-info", { baseUrl, amount });
}
/**
* Get all exchanges the wallet knows about.
*/
2017-05-30 18:33:28 +02:00
export function getExchanges(): Promise<ExchangeRecord[]> {
return callBackend("get-exchanges", {});
2016-10-12 02:55:53 +02:00
}
/**
* Get all currencies the exchange knows about.
*/
2017-05-30 18:33:28 +02:00
export function getCurrencies(): Promise<CurrencyRecord[]> {
return callBackend("get-currencies", {});
2017-03-24 17:54:22 +01:00
}
/**
* Get information about a specific exchange.
*/
2017-05-30 18:33:28 +02:00
export function getExchangeInfo(baseUrl: string): Promise<ExchangeRecord> {
return callBackend("exchange-info", { baseUrl });
}
/**
* Replace an existing currency record with the one given. The currency to
* replace is specified inside the currency record.
*/
2017-05-30 18:33:28 +02:00
export function updateCurrency(currencyRecord: CurrencyRecord): Promise<void> {
return callBackend("update-currency", { currencyRecord });
2017-03-24 17:54:22 +01:00
}
/**
* Get all reserves the wallet has at an exchange.
*/
2017-05-30 18:33:28 +02:00
export function getReserves(exchangeBaseUrl: string): Promise<ReserveRecord[]> {
return callBackend("get-reserves", { exchangeBaseUrl });
2016-10-12 02:55:53 +02:00
}
/**
* Get all coins withdrawn from the given exchange.
*/
2017-05-30 18:33:28 +02:00
export function getCoins(exchangeBaseUrl: string): Promise<CoinRecord[]> {
return callBackend("get-coins", { exchangeBaseUrl });
2016-10-12 02:55:53 +02:00
}
/**
* Get all denoms offered by the given exchange.
*/
export function getDenoms(
exchangeBaseUrl: string,
): Promise<DenominationRecord[]> {
2017-05-30 18:33:28 +02:00
return callBackend("get-denoms", { exchangeBaseUrl });
}
/**
* Start refreshing a coin.
*/
2017-05-30 18:33:28 +02:00
export function refresh(coinPub: string): Promise<void> {
return callBackend("refresh-coin", { coinPub });
}
/**
* Pay for a proposal.
*/
export function confirmPay(
proposalId: string,
sessionId: string | undefined,
): Promise<ConfirmPayResult> {
return callBackend("confirm-pay", { proposalId, sessionId });
2017-05-30 18:33:28 +02:00
}
/**
* Mark a reserve as confirmed.
*/
export function confirmReserve(reservePub: string): Promise<void> {
return callBackend("confirm-reserve", { reservePub });
}
2017-06-05 03:20:28 +02:00
/**
* Check upgrade information
*/
export function checkUpgrade(): Promise<UpgradeResponse> {
return callBackend("check-upgrade", {});
2017-06-05 03:20:28 +02:00
}
/**
* Create a reserve.
*/
export function createReserve(args: {
amount: AmountJson;
exchange: string;
senderWire?: string;
}): Promise<any> {
return callBackend("create-reserve", args);
}
2017-06-05 03:20:28 +02:00
/**
* Reset database
*/
export function resetDb(): Promise<void> {
return callBackend("reset-db", {});
2017-06-05 03:20:28 +02:00
}
/**
* Get balances for all currencies/exchanges.
*/
export function getBalance(): Promise<WalletBalance> {
return callBackend("balances", {});
}
/**
* Get possible sender wire infos for getting money
* wired from an exchange.
*/
export function getSenderWireInfos(): Promise<SenderWireInfos> {
return callBackend("get-sender-wire-infos", {});
}
/**
* Return coins to a bank account.
*/
export function returnCoins(args: {
amount: AmountJson;
exchange: string;
senderWire: object;
}): Promise<void> {
return callBackend("return-coins", args);
}
2017-10-15 19:28:35 +02:00
/**
* Look up a purchase in the wallet database from
* the contract terms hash.
*/
export function getPurchaseDetails(
contractTermsHash: string,
): Promise<PurchaseDetails> {
2019-08-31 13:27:12 +02:00
return callBackend("get-purchase-details", { contractTermsHash });
2017-08-27 03:56:19 +02:00
}
/**
* Get the status of processing a tip.
*/
2019-08-30 17:27:59 +02:00
export function getTipStatus(talerTipUri: string): Promise<TipStatus> {
return callBackend("get-tip-status", { talerTipUri });
2017-11-30 04:07:36 +01:00
}
/**
* Mark a tip as accepted by the user.
*/
2019-08-30 17:27:59 +02:00
export function acceptTip(talerTipUri: string): Promise<void> {
return callBackend("accept-tip", { talerTipUri });
2017-11-30 04:07:36 +01:00
}
2018-01-22 01:12:08 +01:00
/**
* Download a refund and accept it.
*/
2019-08-31 13:27:12 +02:00
export function applyRefund(refundUrl: string): Promise<string> {
2018-01-22 01:12:08 +01:00
return callBackend("accept-refund", { refundUrl });
}
/**
* Abort a failed payment and try to get a refund.
*/
2020-04-06 20:02:01 +02:00
export function abortFailedPayment(contractTermsHash: string): Promise<void> {
return callBackend("abort-failed-payment", { contractTermsHash });
}
2018-09-20 02:56:13 +02:00
/**
* Abort a failed payment and try to get a refund.
*/
export function benchmarkCrypto(repetitions: number): Promise<BenchmarkResult> {
return callBackend("benchmark-crypto", { repetitions });
}
/**
* Get details about a withdraw operation.
*/
export function getWithdrawDetails(
talerWithdrawUri: string,
maybeSelectedExchange: string | undefined,
2020-04-06 20:02:01 +02:00
): Promise<WithdrawDetails> {
return callBackend("get-withdraw-details", {
talerWithdrawUri,
maybeSelectedExchange,
});
}
/**
* Get details about a pay operation.
*/
2020-04-06 20:02:01 +02:00
export function preparePay(talerPayUri: string): Promise<PreparePayResult> {
return callBackend("prepare-pay", { talerPayUri });
}
/**
* Get details about a withdraw operation.
*/
export function acceptWithdrawal(
talerWithdrawUri: string,
selectedExchange: string,
2020-04-06 20:02:01 +02:00
): Promise<AcceptWithdrawalResponse> {
return callBackend("accept-withdrawal", {
talerWithdrawUri,
selectedExchange,
});
2019-08-30 17:27:59 +02:00
}
/**
* Get diagnostics information
*/
export function getDiagnostics(): Promise<WalletDiagnostics> {
return callBackend("get-diagnostics", {});
}
/**
* Get diagnostics information
*/
export function setExtendedPermissions(value: boolean): Promise<ExtendedPermissionsResponse> {
return callBackend("set-extended-permissions", { value });
}
/**
* Get diagnostics information
*/
export function getExtendedPermissions(): Promise<ExtendedPermissionsResponse> {
return callBackend("get-extended-permissions", {});
}
export function onUpdateNotification(f: () => void): () => void {
const port = chrome.runtime.connect({ name: "notifications" });
const listener = (): void => {
f();
};
port.onMessage.addListener(listener);
return () => {
port.onMessage.removeListener(listener);
};
}