diff options
author | Florian Dold <florian.dold@gmail.com> | 2017-04-26 14:11:35 +0200 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2017-04-26 14:11:35 +0200 |
commit | 3c563c78d47318ca65d3cc41c50b8d665635fcf7 (patch) | |
tree | 6f12b20f2fb2f2dbc21a1795fde2a1d069547784 /src | |
parent | a787cf2f6ca939c8166070bd1addd43f66b0bce6 (diff) |
consider auditors when selecting exchange for payment
Diffstat (limited to 'src')
-rw-r--r-- | src/types.ts | 13 | ||||
-rw-r--r-- | src/wallet.ts | 54 |
2 files changed, 56 insertions, 11 deletions
diff --git a/src/types.ts b/src/types.ts index 87b77b8ac..e0baa169b 100644 --- a/src/types.ts +++ b/src/types.ts @@ -216,9 +216,22 @@ export class Denomination { } +export interface Auditor { + // official name + name: string; + + // Auditor's public key + auditor_pub: string; + + // Base URL of the auditor + url: string; +} + + export interface ExchangeRecord { baseUrl: string; masterPublicKey: string; + auditors: Auditor[]; /** * Timestamp for last update. diff --git a/src/wallet.ts b/src/wallet.ts index 51046159b..e8b655ffd 100644 --- a/src/wallet.ts +++ b/src/wallet.ts @@ -38,6 +38,7 @@ import { ReserveCreationInfo, ReserveRecord, CurrencyRecord, + Auditor, AuditorRecord, WalletBalance, WalletBalanceEntry, @@ -557,17 +558,45 @@ export class Wallet { */ private async getCoinsForPayment(paymentAmount: AmountJson, depositFeeLimit: AmountJson, - allowedExchanges: ExchangeHandle[]): Promise<CoinSelectionResult> { + allowedExchanges: ExchangeHandle[], + allowedAuditors: Auditor[]): Promise<CoinSelectionResult> { - for (let exchangeHandle of allowedExchanges) { - let exchange = await this.q().get(Stores.exchanges, exchangeHandle.url); - if (!exchange) { - console.error("db inconsistent"); + let exchanges = await this.q().iter(Stores.exchanges).toArray(); + + for (let exchange of exchanges) { + let isOkay: boolean = false; + + + // is the exchange explicitly allowed? + for (let allowedExchange of allowedExchanges) { + if (allowedExchange.master_pub == exchange.masterPublicKey) { + isOkay = true; + break; + } + } + + // is the exchange allowed because of one of its auditors? + if (!isOkay) { + for (let allowedAuditor of allowedAuditors) { + for (let auditor of exchange.auditors) { + if (auditor.auditor_pub == allowedAuditor.auditor_pub) { + isOkay = true; + break; + } + } + if (isOkay) { + break; + } + } + } + + if (!isOkay) { continue; } + let coins: CoinRecord[] = await this.q() .iterIndex(Stores.coins.exchangeBaseUrlIndex, - exchangeHandle.url) + exchange.baseUrl) .toArray(); if (!coins || coins.length == 0) { continue; @@ -576,7 +605,7 @@ export class Wallet { // coins have the same currency let firstDenom = await this.q().get(Stores.denominations, [ - exchangeHandle.url, + exchange.baseUrl, coins[0].denomPub ]); if (!firstDenom) { @@ -587,7 +616,7 @@ export class Wallet { for (let i = 0; i < coins.length; i++) { let coin = coins[i]; let denom = await this.q().get(Stores.denominations, - [exchangeHandle.url, coin.denomPub]); + [exchange.baseUrl, coin.denomPub]); if (!denom) { throw Error("db inconsistent"); } @@ -607,7 +636,7 @@ export class Wallet { let res = selectCoins(cds, paymentAmount, depositFeeLimit); if (res) { return { - exchangeUrl: exchangeHandle.url, + exchangeUrl: exchange.baseUrl, cds: res, } } @@ -694,7 +723,8 @@ export class Wallet { let res = await this.getCoinsForPayment(offer.contract.amount, offer.contract.max_fee, - offer.contract.exchanges); + offer.contract.exchanges, + offer.contract.auditors); console.log("max_fee", offer.contract.max_fee); console.log("coin selection result", res); @@ -729,7 +759,8 @@ export class Wallet { // If not already payed, check if we could pay for it. let res = await this.getCoinsForPayment(offer.contract.amount, offer.contract.max_fee, - offer.contract.exchanges); + offer.contract.exchanges, + offer.contract.auditors); if (!res) { console.log("not confirming payment, insufficient coins"); @@ -1273,6 +1304,7 @@ export class Wallet { baseUrl, lastUpdateTime: updateTimeSec, masterPublicKey: exchangeKeysJson.master_public_key, + auditors: exchangeKeysJson.auditors, }; console.log("making fresh exchange"); } else { |