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
|
|
|
*/
|
|
|
|
|
2016-10-12 02:55:53 +02:00
|
|
|
import {
|
|
|
|
AmountJson,
|
|
|
|
Coin,
|
|
|
|
PreCoin,
|
|
|
|
ReserveCreationInfo,
|
|
|
|
IExchangeInfo,
|
2016-10-13 02:23:24 +02:00
|
|
|
ReserveRecord
|
2016-10-12 02:55:53 +02:00
|
|
|
} from "./types";
|
2016-02-19 04:23:00 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Interface to the wallet through WebExtension messaging.
|
2016-03-01 19:46:20 +01:00
|
|
|
* @author Florian Dold
|
2016-02-19 04:23:00 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
export function getReserveCreationInfo(baseUrl: string,
|
2016-10-12 02:55:53 +02:00
|
|
|
amount: AmountJson): Promise<ReserveCreationInfo> {
|
|
|
|
let m = { type: "reserve-creation-info", detail: { baseUrl, amount } };
|
2016-02-19 04:23:00 +01:00
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
chrome.runtime.sendMessage(m, (resp) => {
|
|
|
|
if (resp.error) {
|
|
|
|
console.error("error response", resp);
|
|
|
|
let e = Error("call to reserve-creation-info failed");
|
|
|
|
(e as any).errorResponse = resp;
|
|
|
|
reject(e);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
resolve(resp);
|
|
|
|
});
|
|
|
|
});
|
2016-03-01 19:46:20 +01:00
|
|
|
}
|
2016-10-12 02:55:53 +02:00
|
|
|
|
|
|
|
export async function callBackend(type: string, detail?: any): Promise<any> {
|
|
|
|
return new Promise<IExchangeInfo[]>((resolve, reject) => {
|
|
|
|
chrome.runtime.sendMessage({ type, detail }, (resp) => {
|
|
|
|
resolve(resp);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
export async function getExchanges(): Promise<IExchangeInfo[]> {
|
|
|
|
return await callBackend("get-exchanges");
|
|
|
|
}
|
|
|
|
|
2016-10-13 02:23:24 +02:00
|
|
|
export async function getReserves(exchangeBaseUrl: string): Promise<ReserveRecord[]> {
|
2016-10-12 02:55:53 +02:00
|
|
|
return await callBackend("get-reserves", { exchangeBaseUrl });
|
|
|
|
}
|
|
|
|
|
|
|
|
export async function getCoins(exchangeBaseUrl: string): Promise<Coin[]> {
|
|
|
|
return await callBackend("get-coins", { exchangeBaseUrl });
|
|
|
|
}
|
|
|
|
|
|
|
|
export async function getPreCoins(exchangeBaseUrl: string): Promise<PreCoin[]> {
|
|
|
|
return await callBackend("get-precoins", { exchangeBaseUrl });
|
2016-10-13 02:36:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
export async function refresh(coinPub: string): Promise<void> {
|
|
|
|
return await callBackend("refresh-coin", { coinPub });
|
2016-11-13 08:16:12 +01:00
|
|
|
}
|