wallet-core/src/webex/wxApi.ts

211 lines
5.1 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.
*/
2016-10-12 02:55:53 +02:00
import {
AmountJson,
CheckPayResult,
2016-11-15 15:07:17 +01:00
CoinRecord,
2017-05-29 16:58:03 +02:00
ConfirmPayResult,
2017-05-28 01:10:54 +02:00
CurrencyRecord,
DenominationRecord,
ExchangeRecord,
OfferRecord,
2016-11-15 15:07:17 +01:00
PreCoinRecord,
2016-10-12 02:55:53 +02:00
ReserveCreationInfo,
2017-05-28 01:10:54 +02:00
ReserveRecord,
} from "../types";
2016-02-19 04:23:00 +01:00
async function callBackend(type: string, detail?: any): Promise<any> {
return new Promise<any>((resolve, reject) => {
2016-10-12 02:55:53 +02:00
chrome.runtime.sendMessage({ type, detail }, (resp) => {
if (resp && resp.error) {
reject(resp);
} 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<ReserveCreationInfo> {
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 currency.
*/
2017-05-30 18:33:28 +02:00
export function getCurrency(name: string): Promise<CurrencyRecord|null> {
return callBackend("currency-info", {name});
}
/**
* 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 reserves for which a payback is available.
*/
2017-05-30 18:33:28 +02:00
export function getPaybackReserves(): Promise<ReserveRecord[]> {
return callBackend("get-payback-reserves");
}
/**
* Withdraw the payback that is available for a reserve.
*/
2017-05-30 18:33:28 +02:00
export function withdrawPaybackReserve(reservePub: string): Promise<ReserveRecord[]> {
return callBackend("withdraw-payback-reserve", { reservePub });
}
/**
* 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 precoins withdrawn from the given exchange.
*/
2017-05-30 18:33:28 +02:00
export function getPreCoins(exchangeBaseUrl: string): Promise<PreCoinRecord[]> {
return callBackend("get-precoins", { exchangeBaseUrl });
2016-10-13 02:36:33 +02:00
}
/**
* Get all denoms offered by the given exchange.
*/
2017-05-30 18:33:28 +02:00
export function getDenoms(exchangeBaseUrl: string): Promise<DenominationRecord[]> {
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 });
}
/**
* Request payback for a coin. Only works for non-refreshed coins.
*/
2017-05-30 18:33:28 +02:00
export function payback(coinPub: string): Promise<void> {
return callBackend("payback-coin", { coinPub });
}
/**
* Get an offer stored in the wallet by its offer id.
* Note that the numeric offer id is not to be confused with
* the string order_id from the contract terms.
*/
2017-05-30 18:33:28 +02:00
export function getOffer(offerId: number) {
return callBackend("get-offer", { offerId });
}
/**
* Check if payment is possible or already done.
*/
2017-05-30 18:33:28 +02:00
export function checkPay(offer: OfferRecord): Promise<CheckPayResult> {
return callBackend("check-pay", { offer });
}
/**
* Pay for an offer.
*/
2017-05-30 18:33:28 +02:00
export function confirmPay(offer: OfferRecord): Promise<ConfirmPayResult> {
return callBackend("confirm-pay", { offer });
}
/**
* Hash a contract. Throws if its not a valid contract.
*/
export function hashContract(contract: object): Promise<string> {
return callBackend("confirm-pay", { contract });
}
/**
* Save an offer in the wallet.
*/
export function saveOffer(offer: object): Promise<void> {
return callBackend("save-offer", { offer });
}
/**
* Mark a reserve as confirmed.
*/
export function confirmReserve(reservePub: string): Promise<void> {
return callBackend("confirm-reserve", { reservePub });
}