2015-12-25 22:42:14 +01: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
|
2016-07-07 17:59:29 +02:00
|
|
|
TALER; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
|
2015-12-25 22:42:14 +01:00
|
|
|
*/
|
|
|
|
|
2016-01-05 15:42:46 +01:00
|
|
|
/**
|
|
|
|
* High-level wallet operations that should be indepentent from the underlying
|
|
|
|
* browser extension interface.
|
|
|
|
*/
|
|
|
|
|
2017-05-24 16:52:00 +02:00
|
|
|
/**
|
|
|
|
* Imports.
|
|
|
|
*/
|
2018-01-04 11:35:04 +01:00
|
|
|
import { CryptoApi } from "./crypto/cryptoApi";
|
2017-05-28 01:10:54 +02:00
|
|
|
import {
|
|
|
|
amountToPretty,
|
|
|
|
canonicalJson,
|
|
|
|
canonicalizeBaseUrl,
|
|
|
|
getTalerStampSec,
|
2018-01-04 11:08:39 +01:00
|
|
|
hash,
|
2018-01-04 11:35:04 +01:00
|
|
|
strcmp,
|
2017-05-28 01:10:54 +02:00
|
|
|
} from "./helpers";
|
|
|
|
import {
|
|
|
|
HttpRequestLibrary,
|
|
|
|
RequestException,
|
|
|
|
} from "./http";
|
2017-06-04 20:16:09 +02:00
|
|
|
import * as LibtoolVersion from "./libtoolVersion";
|
2017-05-28 01:10:54 +02:00
|
|
|
import {
|
|
|
|
AbortTransaction,
|
|
|
|
JoinLeftResult,
|
|
|
|
JoinResult,
|
|
|
|
QueryRoot,
|
|
|
|
} from "./query";
|
2018-01-03 14:42:06 +01:00
|
|
|
import { TimerGroup } from "./timer";
|
|
|
|
|
|
|
|
import { AmountJson } from "./amounts";
|
|
|
|
import * as Amounts from "./amounts";
|
|
|
|
|
2018-01-04 11:35:04 +01:00
|
|
|
import URI = require("urijs");
|
|
|
|
|
2018-01-17 03:49:54 +01:00
|
|
|
import axios from "axios";
|
|
|
|
|
2016-05-24 01:53:56 +02:00
|
|
|
import {
|
2017-05-28 01:10:54 +02:00
|
|
|
CoinRecord,
|
|
|
|
CoinStatus,
|
2018-01-04 11:35:04 +01:00
|
|
|
CoinsReturnRecord,
|
2017-05-28 01:10:54 +02:00
|
|
|
CurrencyRecord,
|
|
|
|
DenominationRecord,
|
|
|
|
DenominationStatus,
|
2016-11-15 15:07:17 +01:00
|
|
|
ExchangeRecord,
|
2017-05-28 01:10:54 +02:00
|
|
|
ExchangeWireFeesRecord,
|
2016-11-15 15:07:17 +01:00
|
|
|
PreCoinRecord,
|
2018-01-17 03:49:54 +01:00
|
|
|
ProposalDownloadRecord,
|
2017-08-30 17:08:54 +02:00
|
|
|
PurchaseRecord,
|
2017-12-09 03:37:21 +01:00
|
|
|
RefreshPreCoinRecord,
|
2016-11-15 15:07:17 +01:00
|
|
|
RefreshSessionRecord,
|
2018-01-03 14:42:06 +01:00
|
|
|
ReserveRecord,
|
2018-01-04 11:35:04 +01:00
|
|
|
Stores,
|
2018-01-03 14:42:06 +01:00
|
|
|
TipRecord,
|
|
|
|
WireFee,
|
|
|
|
} from "./dbTypes";
|
|
|
|
import {
|
|
|
|
Auditor,
|
|
|
|
ContractTerms,
|
|
|
|
Denomination,
|
|
|
|
ExchangeHandle,
|
2018-01-04 11:35:04 +01:00
|
|
|
KeysJson,
|
2018-01-03 14:42:06 +01:00
|
|
|
PayReq,
|
|
|
|
PaybackConfirmation,
|
2018-01-17 03:49:54 +01:00
|
|
|
Proposal,
|
2017-08-30 17:08:54 +02:00
|
|
|
RefundPermission,
|
2018-01-03 14:42:06 +01:00
|
|
|
TipPlanchetDetail,
|
|
|
|
TipResponse,
|
2018-01-17 03:49:54 +01:00
|
|
|
TipToken,
|
2018-01-04 11:35:04 +01:00
|
|
|
WireDetailJson,
|
2018-01-04 11:08:39 +01:00
|
|
|
isWireDetail,
|
2018-01-03 14:42:06 +01:00
|
|
|
} from "./talerTypes";
|
|
|
|
import {
|
2018-01-04 11:35:04 +01:00
|
|
|
Badge,
|
2018-01-03 14:42:06 +01:00
|
|
|
CheckPayResult,
|
|
|
|
CoinSelectionResult,
|
|
|
|
CoinWithDenom,
|
|
|
|
ConfirmPayResult,
|
|
|
|
ConfirmReserveRequest,
|
|
|
|
CreateReserveRequest,
|
|
|
|
CreateReserveResponse,
|
|
|
|
HistoryRecord,
|
2018-01-18 02:50:18 +01:00
|
|
|
NextUrlResult,
|
2018-01-03 14:42:06 +01:00
|
|
|
Notifier,
|
|
|
|
PayCoinInfo,
|
2016-11-16 01:59:39 +01:00
|
|
|
ReserveCreationInfo,
|
2017-08-14 04:16:12 +02:00
|
|
|
ReturnCoinsRequest,
|
|
|
|
SenderWireInfos,
|
2017-11-30 04:07:36 +01:00
|
|
|
TipStatus,
|
2016-11-13 08:16:12 +01:00
|
|
|
WalletBalance,
|
|
|
|
WalletBalanceEntry,
|
2017-05-01 04:05:16 +02:00
|
|
|
WireInfo,
|
2018-01-03 14:42:06 +01:00
|
|
|
} from "./walletTypes";
|
2015-12-13 23:47:30 +01:00
|
|
|
|
2017-05-24 16:56:46 +02:00
|
|
|
|
2017-12-12 21:54:14 +01:00
|
|
|
interface SpeculativePayData {
|
|
|
|
payCoinInfo: PayCoinInfo;
|
|
|
|
exchangeUrl: string;
|
|
|
|
proposalId: number;
|
2018-01-17 03:49:54 +01:00
|
|
|
proposal: ProposalDownloadRecord;
|
2017-12-12 21:54:14 +01:00
|
|
|
}
|
|
|
|
|
2017-08-14 04:16:12 +02:00
|
|
|
|
2017-06-05 03:36:33 +02:00
|
|
|
/**
|
|
|
|
* Wallet protocol version spoken with the exchange
|
|
|
|
* and merchant.
|
|
|
|
*
|
|
|
|
* Uses libtool's current:revision:age versioning.
|
|
|
|
*/
|
2017-12-09 03:37:21 +01:00
|
|
|
export const WALLET_PROTOCOL_VERSION = "2:0:0";
|
2017-06-04 18:46:32 +02:00
|
|
|
|
2017-03-24 16:59:23 +01:00
|
|
|
const builtinCurrencies: CurrencyRecord[] = [
|
|
|
|
{
|
|
|
|
auditors: [
|
|
|
|
{
|
2017-06-04 19:41:43 +02:00
|
|
|
auditorPub: "BW9DC48PHQY4NH011SHHX36DZZ3Q22Y6X7FZ1VD1CMZ2PTFZ6PN0",
|
2017-04-28 23:28:27 +02:00
|
|
|
baseUrl: "https://auditor.demo.taler.net/",
|
2017-03-24 16:59:23 +01:00
|
|
|
expirationStamp: (new Date(2027, 1)).getTime(),
|
|
|
|
},
|
2017-04-12 17:47:14 +02:00
|
|
|
],
|
|
|
|
exchanges: [],
|
2017-05-28 01:10:54 +02:00
|
|
|
fractionalDigits: 2,
|
|
|
|
name: "KUDOS",
|
2017-03-24 16:59:23 +01:00
|
|
|
},
|
|
|
|
];
|
|
|
|
|
2016-02-10 02:03:31 +01:00
|
|
|
|
2016-11-16 01:59:39 +01:00
|
|
|
function isWithdrawableDenom(d: DenominationRecord) {
|
2017-05-28 01:10:54 +02:00
|
|
|
const nowSec = (new Date()).getTime() / 1000;
|
|
|
|
const stampWithdrawSec = getTalerStampSec(d.stampExpireWithdraw);
|
|
|
|
if (stampWithdrawSec === null) {
|
2017-04-20 03:09:25 +02:00
|
|
|
return false;
|
|
|
|
}
|
2017-05-28 01:10:54 +02:00
|
|
|
const stampStartSec = getTalerStampSec(d.stampStart);
|
|
|
|
if (stampStartSec === null) {
|
2017-04-20 03:09:25 +02:00
|
|
|
return false;
|
|
|
|
}
|
2016-02-10 02:03:31 +01:00
|
|
|
// Withdraw if still possible to withdraw within a minute
|
2017-05-28 01:10:54 +02:00
|
|
|
if ((stampWithdrawSec + 60 > nowSec) && (nowSec >= stampStartSec)) {
|
2016-02-10 02:03:31 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-08-30 17:08:54 +02:00
|
|
|
interface SelectPayCoinsResult {
|
|
|
|
cds: CoinWithDenom[];
|
|
|
|
totalFees: AmountJson;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-05-28 16:27:34 +02:00
|
|
|
/**
|
2017-08-30 17:08:54 +02:00
|
|
|
* Get the amount that we lose when refreshing a coin of the given denomination
|
|
|
|
* with a certain amount left.
|
|
|
|
*
|
|
|
|
* If the amount left is zero, then the refresh cost
|
|
|
|
* is also considered to be zero. If a refresh isn't possible (e.g. due to lack of
|
|
|
|
* the right denominations), then the cost is the full amount left.
|
|
|
|
*
|
|
|
|
* Considers refresh fees, withdrawal fees after refresh and amounts too small
|
|
|
|
* to refresh.
|
2017-05-28 16:27:34 +02:00
|
|
|
*/
|
2017-10-15 19:28:35 +02:00
|
|
|
export function getTotalRefreshCost(denoms: DenominationRecord[],
|
|
|
|
refreshedDenom: DenominationRecord,
|
|
|
|
amountLeft: AmountJson): AmountJson {
|
2017-08-30 17:08:54 +02:00
|
|
|
const withdrawAmount = Amounts.sub(amountLeft, refreshedDenom.feeRefresh).amount;
|
|
|
|
const withdrawDenoms = getWithdrawDenomList(withdrawAmount, denoms);
|
2017-10-15 19:28:35 +02:00
|
|
|
const resultingAmount = Amounts.add(Amounts.getZero(withdrawAmount.currency),
|
|
|
|
...withdrawDenoms.map((d) => d.value)).amount;
|
2017-08-30 17:08:54 +02:00
|
|
|
const totalCost = Amounts.sub(amountLeft, resultingAmount).amount;
|
|
|
|
console.log("total refresh cost for", amountToPretty(amountLeft), "is", amountToPretty(totalCost));
|
|
|
|
return totalCost;
|
|
|
|
}
|
|
|
|
|
2016-11-14 03:01:42 +01:00
|
|
|
|
2017-05-28 16:27:34 +02:00
|
|
|
/**
|
|
|
|
* Select coins for a payment under the merchant's constraints.
|
2017-08-30 17:08:54 +02:00
|
|
|
*
|
|
|
|
* @param denoms all available denoms, used to compute refresh fees
|
2017-05-28 16:27:34 +02:00
|
|
|
*/
|
2017-08-30 17:08:54 +02:00
|
|
|
export function selectPayCoins(denoms: DenominationRecord[], cds: CoinWithDenom[], paymentAmount: AmountJson,
|
|
|
|
depositFeeLimit: AmountJson): SelectPayCoinsResult|undefined {
|
2017-05-28 01:10:54 +02:00
|
|
|
if (cds.length === 0) {
|
2016-11-14 03:01:42 +01:00
|
|
|
return undefined;
|
|
|
|
}
|
2017-08-30 17:08:54 +02:00
|
|
|
// Sort by ascending deposit fee and denomPub if deposit fee is the same
|
|
|
|
// (to guarantee deterministic results)
|
2017-10-15 19:28:35 +02:00
|
|
|
cds.sort((o1, o2) => Amounts.cmp(o1.denom.feeDeposit, o2.denom.feeDeposit) ||
|
|
|
|
strcmp(o1.denom.denomPub, o2.denom.denomPub));
|
2017-05-28 01:10:54 +02:00
|
|
|
const currency = cds[0].denom.value.currency;
|
|
|
|
const cdsResult: CoinWithDenom[] = [];
|
2017-08-30 17:08:54 +02:00
|
|
|
let accDepositFee: AmountJson = Amounts.getZero(currency);
|
2016-11-14 03:01:42 +01:00
|
|
|
let accAmount: AmountJson = Amounts.getZero(currency);
|
2017-05-28 01:10:54 +02:00
|
|
|
for (const {coin, denom} of cds) {
|
2016-11-18 00:09:43 +01:00
|
|
|
if (coin.suspended) {
|
|
|
|
continue;
|
|
|
|
}
|
2017-05-28 01:10:54 +02:00
|
|
|
if (coin.status !== CoinStatus.Fresh) {
|
2016-11-18 00:09:43 +01:00
|
|
|
continue;
|
|
|
|
}
|
2016-11-16 01:59:39 +01:00
|
|
|
if (Amounts.cmp(denom.feeDeposit, coin.currentAmount) >= 0) {
|
2016-11-14 03:01:42 +01:00
|
|
|
continue;
|
|
|
|
}
|
2017-05-28 01:10:54 +02:00
|
|
|
cdsResult.push({coin, denom});
|
2017-08-30 17:08:54 +02:00
|
|
|
accDepositFee = Amounts.add(denom.feeDeposit, accDepositFee).amount;
|
|
|
|
let leftAmount = Amounts.sub(coin.currentAmount, Amounts.sub(paymentAmount, accAmount).amount).amount;
|
2016-11-14 03:01:42 +01:00
|
|
|
accAmount = Amounts.add(coin.currentAmount, accAmount).amount;
|
2017-08-30 17:08:54 +02:00
|
|
|
const coversAmount = Amounts.cmp(accAmount, paymentAmount) >= 0;
|
|
|
|
const coversAmountWithFee = Amounts.cmp(accAmount,
|
2016-11-16 01:59:39 +01:00
|
|
|
Amounts.add(paymentAmount,
|
|
|
|
denom.feeDeposit).amount) >= 0;
|
2017-08-30 17:08:54 +02:00
|
|
|
const isBelowFee = Amounts.cmp(accDepositFee, depositFeeLimit) <= 0;
|
2017-08-14 04:16:12 +02:00
|
|
|
|
2017-08-30 17:08:54 +02:00
|
|
|
console.log("coin selection", { coversAmount, isBelowFee, accDepositFee, accAmount, paymentAmount });
|
2017-08-27 05:57:39 +02:00
|
|
|
|
2016-11-14 03:01:42 +01:00
|
|
|
if ((coversAmount && isBelowFee) || coversAmountWithFee) {
|
2017-10-15 19:28:35 +02:00
|
|
|
const depositFeeToCover = Amounts.sub(accDepositFee, depositFeeLimit).amount;
|
2017-08-30 17:08:54 +02:00
|
|
|
leftAmount = Amounts.sub(leftAmount, depositFeeToCover).amount;
|
|
|
|
console.log("deposit fee to cover", amountToPretty(depositFeeToCover));
|
|
|
|
|
|
|
|
let totalFees: AmountJson = Amounts.getZero(currency);
|
|
|
|
if (coversAmountWithFee && !isBelowFee) {
|
|
|
|
// these are the fees the customer has to pay
|
|
|
|
// because the merchant doesn't cover them
|
|
|
|
totalFees = Amounts.sub(depositFeeLimit, accDepositFee).amount;
|
|
|
|
}
|
|
|
|
totalFees = Amounts.add(totalFees, getTotalRefreshCost(denoms, denom, leftAmount)).amount;
|
|
|
|
return { cds: cdsResult, totalFees };
|
2016-11-14 03:01:42 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return undefined;
|
|
|
|
}
|
|
|
|
|
2015-12-17 22:56:24 +01:00
|
|
|
|
2016-02-11 18:17:02 +01:00
|
|
|
/**
|
|
|
|
* Get a list of denominations (with repetitions possible)
|
|
|
|
* whose total value is as close as possible to the available
|
|
|
|
* amount, but never larger.
|
|
|
|
*/
|
|
|
|
function getWithdrawDenomList(amountAvailable: AmountJson,
|
2016-11-16 01:59:39 +01:00
|
|
|
denoms: DenominationRecord[]): DenominationRecord[] {
|
2016-02-22 23:13:28 +01:00
|
|
|
let remaining = Amounts.copy(amountAvailable);
|
2016-11-16 01:59:39 +01:00
|
|
|
const ds: DenominationRecord[] = [];
|
2016-02-11 18:17:02 +01:00
|
|
|
|
|
|
|
denoms = denoms.filter(isWithdrawableDenom);
|
2016-02-22 23:13:28 +01:00
|
|
|
denoms.sort((d1, d2) => Amounts.cmp(d2.value, d1.value));
|
|
|
|
|
2016-02-11 18:17:02 +01:00
|
|
|
// This is an arbitrary number of coins
|
|
|
|
// we can withdraw in one go. It's not clear if this limit
|
|
|
|
// is useful ...
|
|
|
|
for (let i = 0; i < 1000; i++) {
|
|
|
|
let found = false;
|
2017-05-28 01:10:54 +02:00
|
|
|
for (const d of denoms) {
|
|
|
|
const cost = Amounts.add(d.value, d.feeWithdraw).amount;
|
2016-02-22 23:13:28 +01:00
|
|
|
if (Amounts.cmp(remaining, cost) < 0) {
|
2016-02-11 18:17:02 +01:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
found = true;
|
2016-02-22 23:13:28 +01:00
|
|
|
remaining = Amounts.sub(remaining, cost).amount;
|
2016-02-11 18:17:02 +01:00
|
|
|
ds.push(d);
|
2016-02-22 23:13:28 +01:00
|
|
|
break;
|
2016-02-11 18:17:02 +01:00
|
|
|
}
|
|
|
|
if (!found) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ds;
|
|
|
|
}
|
|
|
|
|
2017-05-28 01:10:54 +02:00
|
|
|
|
|
|
|
interface CoinsForPaymentArgs {
|
|
|
|
allowedAuditors: Auditor[];
|
|
|
|
allowedExchanges: ExchangeHandle[];
|
|
|
|
depositFeeLimit: AmountJson;
|
|
|
|
paymentAmount: AmountJson;
|
|
|
|
wireFeeAmortization: number;
|
|
|
|
wireFeeLimit: AmountJson;
|
|
|
|
wireFeeTime: number;
|
|
|
|
wireMethod: string;
|
2016-10-18 01:16:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-05-28 16:27:34 +02:00
|
|
|
/**
|
|
|
|
* The platform-independent wallet implementation.
|
|
|
|
*/
|
2016-01-10 20:07:42 +01:00
|
|
|
export class Wallet {
|
2017-06-05 02:00:03 +02:00
|
|
|
/**
|
|
|
|
* IndexedDB database used by the wallet.
|
|
|
|
*/
|
|
|
|
db: IDBDatabase;
|
2016-01-06 15:39:22 +01:00
|
|
|
private http: HttpRequestLibrary;
|
|
|
|
private badge: Badge;
|
2016-02-18 23:41:29 +01:00
|
|
|
private notifier: Notifier;
|
2017-05-28 16:27:34 +02:00
|
|
|
private cryptoApi: CryptoApi;
|
2016-11-17 01:23:53 +01:00
|
|
|
private processPreCoinConcurrent = 0;
|
2016-11-17 15:32:08 +01:00
|
|
|
private processPreCoinThrottle: {[url: string]: number} = {};
|
2017-06-05 02:00:03 +02:00
|
|
|
private timerGroup: TimerGroup;
|
2017-12-12 21:54:14 +01:00
|
|
|
private speculativePayData: SpeculativePayData | undefined;
|
2018-01-18 02:50:18 +01:00
|
|
|
private cachedNextUrl: { [fulfillmentUrl: string]: NextUrlResult } = {};
|
2016-11-17 01:23:53 +01:00
|
|
|
|
2016-05-24 02:05:19 +02:00
|
|
|
/**
|
|
|
|
* Set of identifiers for running operations.
|
|
|
|
*/
|
|
|
|
private runningOperations: Set<string> = new Set();
|
2016-02-11 18:17:02 +01:00
|
|
|
|
2016-10-13 02:23:24 +02:00
|
|
|
q(): QueryRoot {
|
|
|
|
return new QueryRoot(this.db);
|
|
|
|
}
|
|
|
|
|
2016-02-18 23:41:29 +01:00
|
|
|
constructor(db: IDBDatabase,
|
2016-10-13 02:23:24 +02:00
|
|
|
http: HttpRequestLibrary,
|
|
|
|
badge: Badge,
|
|
|
|
notifier: Notifier) {
|
2016-01-06 15:39:22 +01:00
|
|
|
this.db = db;
|
|
|
|
this.http = http;
|
|
|
|
this.badge = badge;
|
2016-02-18 23:41:29 +01:00
|
|
|
this.notifier = notifier;
|
2016-02-22 19:21:06 +01:00
|
|
|
this.cryptoApi = new CryptoApi();
|
2017-06-05 02:00:03 +02:00
|
|
|
this.timerGroup = new TimerGroup();
|
|
|
|
|
2017-12-10 21:34:56 +01:00
|
|
|
const init = async () => {
|
|
|
|
await this.fillDefaults().catch((e) => console.log(e));
|
|
|
|
await this.collectGarbage().catch((e) => console.log(e));
|
|
|
|
this.updateExchanges();
|
|
|
|
this.resumePendingFromDb();
|
|
|
|
this.timerGroup.every(1000 * 60 * 15, () => this.updateExchanges());
|
|
|
|
};
|
|
|
|
|
|
|
|
init();
|
2016-05-24 01:18:23 +02:00
|
|
|
}
|
|
|
|
|
2017-03-24 16:59:23 +01:00
|
|
|
private async fillDefaults() {
|
2017-05-28 01:10:54 +02:00
|
|
|
const onTrue = (r: QueryRoot) => {
|
2017-03-24 16:59:23 +01:00
|
|
|
console.log("defaults already applied");
|
|
|
|
};
|
2017-05-28 01:10:54 +02:00
|
|
|
const onFalse = (r: QueryRoot) => {
|
2017-03-24 16:59:23 +01:00
|
|
|
console.log("applying defaults");
|
|
|
|
r.put(Stores.config, {key: "currencyDefaultsApplied", value: true})
|
|
|
|
.putAll(Stores.currencies, builtinCurrencies)
|
|
|
|
.finish();
|
|
|
|
};
|
|
|
|
await (
|
|
|
|
this.q()
|
|
|
|
.iter(Stores.config)
|
2017-05-28 01:10:54 +02:00
|
|
|
.filter((x) => x.key === "currencyDefaultsApplied")
|
2017-03-24 16:59:23 +01:00
|
|
|
.first()
|
|
|
|
.cond((x) => x && x.value, onTrue, onFalse)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2016-05-24 01:18:23 +02:00
|
|
|
|
2016-05-24 02:05:19 +02:00
|
|
|
private startOperation(operationId: string) {
|
|
|
|
this.runningOperations.add(operationId);
|
|
|
|
this.badge.startBusy();
|
|
|
|
}
|
|
|
|
|
|
|
|
private stopOperation(operationId: string) {
|
|
|
|
this.runningOperations.delete(operationId);
|
2017-05-28 01:10:54 +02:00
|
|
|
if (this.runningOperations.size === 0) {
|
2016-05-24 02:05:19 +02:00
|
|
|
this.badge.stopBusy();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-20 01:37:00 +02:00
|
|
|
async updateExchanges(): Promise<void> {
|
2016-05-24 17:30:27 +02:00
|
|
|
console.log("updating exchanges");
|
|
|
|
|
2017-05-28 01:10:54 +02:00
|
|
|
const exchangesUrls = await this.q()
|
|
|
|
.iter(Stores.exchanges)
|
|
|
|
.map((e) => e.baseUrl)
|
|
|
|
.toArray();
|
2016-10-19 23:55:58 +02:00
|
|
|
|
2017-05-28 01:10:54 +02:00
|
|
|
for (const url of exchangesUrls) {
|
2016-10-19 23:55:58 +02:00
|
|
|
this.updateExchangeFromUrl(url)
|
|
|
|
.catch((e) => {
|
|
|
|
console.error("updating exchange failed", e);
|
|
|
|
});
|
|
|
|
}
|
2016-05-24 17:30:27 +02:00
|
|
|
}
|
|
|
|
|
2016-05-24 01:18:23 +02:00
|
|
|
/**
|
|
|
|
* Resume various pending operations that are pending
|
|
|
|
* by looking at the database.
|
|
|
|
*/
|
|
|
|
private resumePendingFromDb(): void {
|
|
|
|
console.log("resuming pending operations from db");
|
|
|
|
|
2016-10-13 02:23:24 +02:00
|
|
|
this.q()
|
2016-10-18 01:16:31 +02:00
|
|
|
.iter(Stores.reserves)
|
2017-12-10 23:02:00 +01:00
|
|
|
.forEach((reserve) => {
|
2016-10-13 02:23:24 +02:00
|
|
|
console.log("resuming reserve", reserve.reserve_pub);
|
|
|
|
this.processReserve(reserve);
|
|
|
|
});
|
|
|
|
|
|
|
|
this.q()
|
2016-10-18 01:16:31 +02:00
|
|
|
.iter(Stores.precoins)
|
2017-12-10 23:02:00 +01:00
|
|
|
.forEach((preCoin) => {
|
2016-10-13 02:23:24 +02:00
|
|
|
console.log("resuming precoin");
|
|
|
|
this.processPreCoin(preCoin);
|
|
|
|
});
|
2016-10-17 23:49:04 +02:00
|
|
|
|
|
|
|
this.q()
|
2016-10-18 01:16:31 +02:00
|
|
|
.iter(Stores.refresh)
|
2017-12-10 23:02:00 +01:00
|
|
|
.forEach((r: RefreshSessionRecord) => {
|
2016-10-17 23:49:04 +02:00
|
|
|
this.continueRefreshSession(r);
|
|
|
|
});
|
|
|
|
|
2017-08-14 04:16:12 +02:00
|
|
|
this.q()
|
|
|
|
.iter(Stores.coinsReturns)
|
2017-12-10 23:02:00 +01:00
|
|
|
.forEach((r: CoinsReturnRecord) => {
|
2017-08-14 04:16:12 +02:00
|
|
|
this.depositReturnedCoins(r);
|
|
|
|
});
|
|
|
|
|
2016-10-17 23:49:04 +02:00
|
|
|
// FIXME: optimize via index
|
|
|
|
this.q()
|
2016-10-18 01:16:31 +02:00
|
|
|
.iter(Stores.coins)
|
2017-12-10 23:02:00 +01:00
|
|
|
.forEach((c: CoinRecord) => {
|
2017-05-28 01:10:54 +02:00
|
|
|
if (c.status === CoinStatus.Dirty) {
|
2017-04-13 15:05:38 +02:00
|
|
|
console.log("resuming pending refresh for coin", c);
|
2016-10-17 23:49:04 +02:00
|
|
|
this.refresh(c.coinPub);
|
|
|
|
}
|
|
|
|
});
|
2016-01-05 14:20:13 +01:00
|
|
|
}
|
|
|
|
|
2016-02-11 18:17:02 +01:00
|
|
|
|
2017-08-14 04:16:12 +02:00
|
|
|
private async getCoinsForReturn(exchangeBaseUrl: string, amount: AmountJson): Promise<CoinWithDenom[] | undefined> {
|
|
|
|
const exchange = await this.q().get(Stores.exchanges, exchangeBaseUrl);
|
|
|
|
if (!exchange) {
|
|
|
|
throw Error(`Exchange ${exchangeBaseUrl} not known to the wallet`);
|
|
|
|
}
|
|
|
|
|
|
|
|
const coins: CoinRecord[] = await (
|
|
|
|
this.q()
|
|
|
|
.iterIndex(Stores.coins.exchangeBaseUrlIndex, exchange.baseUrl)
|
|
|
|
.toArray()
|
|
|
|
);
|
|
|
|
|
|
|
|
if (!coins || !coins.length) {
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
|
2017-08-30 17:08:54 +02:00
|
|
|
const denoms = await this.q().iterIndex(Stores.denominations.exchangeBaseUrlIndex, exchange.baseUrl).toArray();
|
|
|
|
|
2017-08-14 04:16:12 +02:00
|
|
|
// Denomination of the first coin, we assume that all other
|
|
|
|
// coins have the same currency
|
|
|
|
const firstDenom = await this.q().get(Stores.denominations,
|
|
|
|
[
|
|
|
|
exchange.baseUrl,
|
|
|
|
coins[0].denomPub,
|
|
|
|
]);
|
|
|
|
if (!firstDenom) {
|
|
|
|
throw Error("db inconsistent");
|
|
|
|
}
|
|
|
|
const currency = firstDenom.value.currency;
|
|
|
|
|
|
|
|
const cds: CoinWithDenom[] = [];
|
|
|
|
for (const coin of coins) {
|
|
|
|
const denom = await this.q().get(Stores.denominations,
|
|
|
|
[exchange.baseUrl, coin.denomPub]);
|
|
|
|
if (!denom) {
|
|
|
|
throw Error("db inconsistent");
|
|
|
|
}
|
|
|
|
if (denom.value.currency !== currency) {
|
|
|
|
console.warn(`same pubkey for different currencies at exchange ${exchange.baseUrl}`);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (coin.suspended) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (coin.status !== CoinStatus.Fresh) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
cds.push({coin, denom});
|
|
|
|
}
|
|
|
|
|
2017-08-27 05:57:39 +02:00
|
|
|
console.log("coin return: selecting from possible coins", { cds, amount } );
|
|
|
|
|
2017-08-30 17:08:54 +02:00
|
|
|
const res = selectPayCoins(denoms, cds, amount, amount);
|
|
|
|
if (res) {
|
|
|
|
return res.cds;
|
|
|
|
}
|
2017-10-15 19:28:35 +02:00
|
|
|
return undefined;
|
2017-08-14 04:16:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-01-06 15:39:22 +01:00
|
|
|
/**
|
2016-03-01 19:39:17 +01:00
|
|
|
* Get exchanges and associated coins that are still spendable,
|
2016-01-06 15:39:22 +01:00
|
|
|
* but only if the sum the coins' remaining value exceeds the payment amount.
|
|
|
|
*/
|
2017-08-30 17:08:54 +02:00
|
|
|
private async getCoinsForPayment(args: CoinsForPaymentArgs): Promise<CoinSelectionResult|undefined> {
|
2017-05-28 01:10:54 +02:00
|
|
|
const {
|
|
|
|
allowedAuditors,
|
|
|
|
allowedExchanges,
|
|
|
|
depositFeeLimit,
|
|
|
|
paymentAmount,
|
|
|
|
wireFeeAmortization,
|
|
|
|
wireFeeLimit,
|
|
|
|
wireFeeTime,
|
|
|
|
wireMethod,
|
|
|
|
} = args;
|
|
|
|
|
|
|
|
let remainingAmount = paymentAmount;
|
|
|
|
|
|
|
|
const exchanges = await this.q().iter(Stores.exchanges).toArray();
|
|
|
|
|
|
|
|
for (const exchange of exchanges) {
|
2017-04-26 14:11:35 +02:00
|
|
|
let isOkay: boolean = false;
|
|
|
|
|
|
|
|
// is the exchange explicitly allowed?
|
2017-05-28 01:10:54 +02:00
|
|
|
for (const allowedExchange of allowedExchanges) {
|
|
|
|
if (allowedExchange.master_pub === exchange.masterPublicKey) {
|
2017-04-26 14:11:35 +02:00
|
|
|
isOkay = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// is the exchange allowed because of one of its auditors?
|
|
|
|
if (!isOkay) {
|
2017-05-28 01:10:54 +02:00
|
|
|
for (const allowedAuditor of allowedAuditors) {
|
|
|
|
for (const auditor of exchange.auditors) {
|
|
|
|
if (auditor.auditor_pub === allowedAuditor.auditor_pub) {
|
2017-04-26 14:11:35 +02:00
|
|
|
isOkay = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (isOkay) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!isOkay) {
|
2016-11-14 02:52:29 +01:00
|
|
|
continue;
|
2016-05-24 17:30:27 +02:00
|
|
|
}
|
2017-04-26 14:11:35 +02:00
|
|
|
|
2017-05-28 01:10:54 +02:00
|
|
|
const coins: CoinRecord[] = await this.q()
|
2016-11-16 01:59:39 +01:00
|
|
|
.iterIndex(Stores.coins.exchangeBaseUrlIndex,
|
2017-04-26 14:11:35 +02:00
|
|
|
exchange.baseUrl)
|
2016-11-16 01:59:39 +01:00
|
|
|
.toArray();
|
2017-08-30 17:08:54 +02:00
|
|
|
const denoms = await this.q().iterIndex(Stores.denominations.exchangeBaseUrlIndex, exchange.baseUrl).toArray();
|
2017-05-28 01:10:54 +02:00
|
|
|
if (!coins || coins.length === 0) {
|
2016-11-14 02:52:29 +01:00
|
|
|
continue;
|
2016-01-06 15:39:22 +01:00
|
|
|
}
|
2017-08-14 04:16:12 +02:00
|
|
|
|
2016-11-14 02:52:29 +01:00
|
|
|
// Denomination of the first coin, we assume that all other
|
|
|
|
// coins have the same currency
|
2017-05-28 01:10:54 +02:00
|
|
|
const firstDenom = await this.q().get(Stores.denominations,
|
|
|
|
[
|
|
|
|
exchange.baseUrl,
|
|
|
|
coins[0].denomPub,
|
|
|
|
]);
|
2016-11-14 02:52:29 +01:00
|
|
|
if (!firstDenom) {
|
|
|
|
throw Error("db inconsistent");
|
2016-02-19 13:03:45 +01:00
|
|
|
}
|
2017-05-28 01:10:54 +02:00
|
|
|
const currency = firstDenom.value.currency;
|
|
|
|
const cds: CoinWithDenom[] = [];
|
|
|
|
for (const coin of coins) {
|
|
|
|
const denom = await this.q().get(Stores.denominations,
|
2017-04-26 14:11:35 +02:00
|
|
|
[exchange.baseUrl, coin.denomPub]);
|
2016-11-14 02:52:29 +01:00
|
|
|
if (!denom) {
|
|
|
|
throw Error("db inconsistent");
|
|
|
|
}
|
2017-05-28 01:10:54 +02:00
|
|
|
if (denom.value.currency !== currency) {
|
2016-11-14 02:52:29 +01:00
|
|
|
console.warn(`same pubkey for different currencies at exchange ${exchange.baseUrl}`);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (coin.suspended) {
|
|
|
|
continue;
|
|
|
|
}
|
2017-05-28 01:10:54 +02:00
|
|
|
if (coin.status !== CoinStatus.Fresh) {
|
2016-11-18 00:09:43 +01:00
|
|
|
continue;
|
|
|
|
}
|
2016-11-14 02:52:29 +01:00
|
|
|
cds.push({coin, denom});
|
2016-01-06 15:39:22 +01:00
|
|
|
}
|
2016-03-05 01:36:38 +01:00
|
|
|
|
2017-05-28 01:10:54 +02:00
|
|
|
const fees = await this.q().get(Stores.exchangeWireFees, exchange.baseUrl);
|
2017-04-27 04:06:48 +02:00
|
|
|
if (!fees) {
|
|
|
|
console.error("no fees found for exchange", exchange);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2018-01-17 05:33:06 +01:00
|
|
|
console.log("payment coins: wireFeeLimit", wireFeeLimit);
|
|
|
|
console.log("payment coins: wireFeeAmortization", wireFeeAmortization);
|
|
|
|
console.log("payment coins: fees", fees);
|
|
|
|
console.log("payment coins: wireMethod", wireMethod);
|
|
|
|
console.log("payment coins: wireFeeTime", wireFeeTime);
|
|
|
|
|
2017-08-30 17:08:54 +02:00
|
|
|
let totalFees = Amounts.getZero(currency);
|
2017-05-28 01:10:54 +02:00
|
|
|
let wireFee: AmountJson|undefined;
|
|
|
|
for (const fee of (fees.feesForType[wireMethod] || [])) {
|
2018-01-17 05:33:06 +01:00
|
|
|
if (fee.startStamp <= wireFeeTime && fee.endStamp >= wireFeeTime) {
|
2017-04-27 04:06:48 +02:00
|
|
|
wireFee = fee.wireFee;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-17 05:33:06 +01:00
|
|
|
console.log("payment coins: current wire fees", wireFee);
|
|
|
|
|
2017-04-27 04:06:48 +02:00
|
|
|
if (wireFee) {
|
2017-05-28 01:10:54 +02:00
|
|
|
const amortizedWireFee = Amounts.divide(wireFee, wireFeeAmortization);
|
2017-04-27 04:06:48 +02:00
|
|
|
if (Amounts.cmp(wireFeeLimit, amortizedWireFee) < 0) {
|
2017-08-30 17:08:54 +02:00
|
|
|
totalFees = Amounts.add(amortizedWireFee, totalFees).amount;
|
2017-05-28 01:10:54 +02:00
|
|
|
remainingAmount = Amounts.add(amortizedWireFee, remainingAmount).amount;
|
2017-04-27 04:06:48 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-30 17:08:54 +02:00
|
|
|
const res = selectPayCoins(denoms, cds, remainingAmount, depositFeeLimit);
|
2016-11-14 03:01:42 +01:00
|
|
|
if (res) {
|
2017-08-30 17:08:54 +02:00
|
|
|
totalFees = Amounts.add(totalFees, res.totalFees).amount;
|
2016-11-14 03:01:42 +01:00
|
|
|
return {
|
2017-08-30 17:08:54 +02:00
|
|
|
cds: res.cds,
|
2017-05-28 01:10:54 +02:00
|
|
|
exchangeUrl: exchange.baseUrl,
|
2018-01-17 05:33:06 +01:00
|
|
|
totalAmount: remainingAmount,
|
2017-08-30 17:08:54 +02:00
|
|
|
totalFees,
|
2017-05-28 01:10:54 +02:00
|
|
|
};
|
2016-03-05 01:36:38 +01:00
|
|
|
}
|
2016-11-14 02:52:29 +01:00
|
|
|
}
|
|
|
|
return undefined;
|
2016-01-06 15:39:22 +01:00
|
|
|
}
|
2015-12-13 23:47:30 +01:00
|
|
|
|
|
|
|
|
2016-02-10 02:03:31 +01:00
|
|
|
/**
|
|
|
|
* Record all information that is necessary to
|
2017-06-01 18:46:07 +02:00
|
|
|
* pay for a proposal in the wallet's database.
|
2016-02-10 02:03:31 +01:00
|
|
|
*/
|
2018-01-17 03:49:54 +01:00
|
|
|
private async recordConfirmPay(proposal: ProposalDownloadRecord,
|
2016-10-13 02:23:24 +02:00
|
|
|
payCoinInfo: PayCoinInfo,
|
2018-01-17 03:49:54 +01:00
|
|
|
chosenExchange: string): Promise<PurchaseRecord> {
|
2017-05-28 01:10:54 +02:00
|
|
|
const payReq: PayReq = {
|
2017-12-12 21:54:14 +01:00
|
|
|
coins: payCoinInfo.sigs,
|
2017-05-31 16:04:14 +02:00
|
|
|
merchant_pub: proposal.contractTerms.merchant_pub,
|
2018-01-04 13:22:23 +01:00
|
|
|
mode: "pay",
|
2017-05-31 16:04:14 +02:00
|
|
|
order_id: proposal.contractTerms.order_id,
|
2016-10-17 15:58:36 +02:00
|
|
|
};
|
2017-08-27 03:56:19 +02:00
|
|
|
const t: PurchaseRecord = {
|
2017-06-01 18:46:07 +02:00
|
|
|
contractTerms: proposal.contractTerms,
|
|
|
|
contractTermsHash: proposal.contractTermsHash,
|
2016-10-19 22:49:03 +02:00
|
|
|
finished: false,
|
2018-01-18 02:50:18 +01:00
|
|
|
lastSessionId: undefined,
|
2018-01-19 01:27:27 +01:00
|
|
|
lastSessionSig: undefined,
|
2017-05-31 16:04:14 +02:00
|
|
|
merchantSig: proposal.merchantSig,
|
2017-05-28 01:10:54 +02:00
|
|
|
payReq,
|
2017-08-27 03:56:19 +02:00
|
|
|
refundsDone: {},
|
|
|
|
refundsPending: {},
|
2017-05-28 01:10:54 +02:00
|
|
|
timestamp: (new Date()).getTime(),
|
2017-10-15 18:30:02 +02:00
|
|
|
timestamp_refund: 0,
|
2016-01-24 02:29:13 +01:00
|
|
|
};
|
|
|
|
|
2016-10-13 02:23:24 +02:00
|
|
|
await this.q()
|
2017-08-27 03:56:19 +02:00
|
|
|
.put(Stores.purchases, t)
|
2017-12-12 21:54:14 +01:00
|
|
|
.putAll(Stores.coins, payCoinInfo.updatedCoins)
|
2016-10-13 02:23:24 +02:00
|
|
|
.finish();
|
2017-12-12 16:39:55 +01:00
|
|
|
this.badge.showNotification();
|
2016-09-28 18:00:13 +02:00
|
|
|
this.notifier.notify();
|
2018-01-17 03:49:54 +01:00
|
|
|
return t;
|
2016-01-06 15:39:22 +01:00
|
|
|
}
|
2015-12-14 16:54:47 +01:00
|
|
|
|
2016-02-10 02:03:31 +01:00
|
|
|
|
2017-05-31 16:04:14 +02:00
|
|
|
/**
|
2018-01-17 03:49:54 +01:00
|
|
|
* Download a proposal and store it in the database.
|
|
|
|
* Returns an id for it to retrieve it later.
|
2017-05-31 16:04:14 +02:00
|
|
|
*/
|
2018-01-17 03:49:54 +01:00
|
|
|
async downloadProposal(url: string): Promise<number> {
|
2018-01-18 01:37:30 +01:00
|
|
|
|
|
|
|
const oldProposal = await this.q().getIndexed(Stores.proposals.urlIndex, url);
|
|
|
|
if (oldProposal) {
|
|
|
|
return oldProposal.id!;
|
|
|
|
}
|
|
|
|
|
2018-01-17 03:49:54 +01:00
|
|
|
const { priv, pub } = await this.cryptoApi.createEddsaKeypair();
|
|
|
|
const parsed_url = new URI(url);
|
2018-01-18 01:37:30 +01:00
|
|
|
const urlWithNonce = parsed_url.setQuery({ nonce: pub }).href();
|
|
|
|
console.log("downloading contract from '" + urlWithNonce + "'");
|
2018-01-17 03:49:54 +01:00
|
|
|
let resp;
|
|
|
|
try {
|
2018-01-18 01:37:30 +01:00
|
|
|
resp = await axios.get(urlWithNonce, { validateStatus: (s) => s === 200 });
|
2018-01-17 03:49:54 +01:00
|
|
|
} catch (e) {
|
|
|
|
console.log("contract download failed", e);
|
|
|
|
throw e;
|
|
|
|
}
|
|
|
|
console.log("got response", resp);
|
|
|
|
|
|
|
|
const proposal = Proposal.checked(resp.data);
|
|
|
|
|
|
|
|
const contractTermsHash = await this.hashContract(proposal.contract_terms);
|
|
|
|
|
|
|
|
const proposalRecord: ProposalDownloadRecord = {
|
|
|
|
contractTerms: proposal.contract_terms,
|
|
|
|
contractTermsHash,
|
|
|
|
merchantSig: proposal.sig,
|
|
|
|
noncePriv: priv,
|
|
|
|
timestamp: (new Date()).getTime(),
|
|
|
|
url,
|
|
|
|
};
|
|
|
|
|
|
|
|
const id = await this.q().putWithResult(Stores.proposals, proposalRecord);
|
2016-11-13 10:17:39 +01:00
|
|
|
this.notifier.notify();
|
|
|
|
if (typeof id !== "number") {
|
|
|
|
throw Error("db schema wrong");
|
|
|
|
}
|
|
|
|
return id;
|
|
|
|
}
|
|
|
|
|
2018-01-19 01:27:27 +01:00
|
|
|
async submitPay(contractTermsHash: string, sessionId: string | undefined): Promise<ConfirmPayResult> {
|
|
|
|
const purchase = await this.q().get(Stores.purchases, contractTermsHash);
|
|
|
|
if (!purchase) {
|
|
|
|
throw Error("Purchase not found: " + contractTermsHash);
|
|
|
|
}
|
2018-01-17 03:49:54 +01:00
|
|
|
let resp;
|
|
|
|
const payReq = { ...purchase.payReq, session_id: sessionId };
|
|
|
|
try {
|
|
|
|
const config = {
|
|
|
|
headers: { "Content-Type": "application/json;charset=UTF-8" },
|
|
|
|
timeout: 5000, /* 5 seconds */
|
|
|
|
validateStatus: (s: number) => s === 200,
|
|
|
|
};
|
|
|
|
resp = await axios.post(purchase.contractTerms.pay_url, payReq, config);
|
|
|
|
} catch (e) {
|
|
|
|
// Gives the user the option to retry / abort and refresh
|
|
|
|
console.log("payment failed", e);
|
|
|
|
throw e;
|
|
|
|
}
|
|
|
|
const merchantResp = resp.data;
|
|
|
|
console.log("got success from pay_url");
|
|
|
|
const fu = new URI(purchase.contractTerms.fulfillment_url);
|
|
|
|
fu.addSearch("order_id", purchase.contractTerms.order_id);
|
|
|
|
if (merchantResp.session_sig) {
|
2018-01-18 01:37:30 +01:00
|
|
|
purchase.lastSessionSig = merchantResp.session_sig;
|
2018-01-18 02:50:18 +01:00
|
|
|
purchase.lastSessionId = sessionId;
|
|
|
|
fu.addSearch("session_sig", merchantResp.session_sig);
|
2018-01-18 01:37:30 +01:00
|
|
|
await this.q().put(Stores.purchases, purchase).finish();
|
2018-01-17 03:49:54 +01:00
|
|
|
}
|
2018-01-23 16:19:03 +01:00
|
|
|
|
|
|
|
const merchantPub = purchase.contractTerms.merchant_pub;
|
|
|
|
const valid: boolean = await (
|
|
|
|
this.cryptoApi.isValidPaymentSignature(merchantResp.sig, contractTermsHash, merchantPub)
|
|
|
|
);
|
|
|
|
if (!valid) {
|
|
|
|
console.error("merchant payment signature invalid");
|
|
|
|
// FIXME: properly display error
|
|
|
|
throw Error("merchant payment signature invalid");
|
|
|
|
}
|
|
|
|
purchase.finished = true;
|
|
|
|
const modifiedCoins: CoinRecord[] = [];
|
|
|
|
for (const pc of purchase.payReq.coins) {
|
|
|
|
const c = await this.q().get<CoinRecord>(Stores.coins, pc.coin_pub);
|
|
|
|
if (!c) {
|
|
|
|
console.error("coin not found");
|
|
|
|
throw Error("coin used in payment not found");
|
|
|
|
}
|
|
|
|
c.status = CoinStatus.Dirty;
|
|
|
|
modifiedCoins.push(c);
|
|
|
|
}
|
|
|
|
|
|
|
|
await this.q()
|
|
|
|
.putAll(Stores.coins, modifiedCoins)
|
|
|
|
.put(Stores.purchases, purchase)
|
|
|
|
.finish();
|
|
|
|
for (const c of purchase.payReq.coins) {
|
|
|
|
this.refresh(c.coin_pub);
|
|
|
|
}
|
|
|
|
|
2018-01-17 03:49:54 +01:00
|
|
|
const nextUrl = fu.href();
|
2018-01-18 02:50:18 +01:00
|
|
|
this.cachedNextUrl[purchase.contractTerms.fulfillment_url] = { nextUrl, lastSessionId: sessionId };
|
2018-01-17 03:49:54 +01:00
|
|
|
return { nextUrl };
|
|
|
|
}
|
|
|
|
|
2016-11-13 10:17:39 +01:00
|
|
|
|
2016-02-10 02:03:31 +01:00
|
|
|
/**
|
|
|
|
* Add a contract to the wallet and sign coins,
|
|
|
|
* but do not send them yet.
|
|
|
|
*/
|
2018-01-17 03:49:54 +01:00
|
|
|
async confirmPay(proposalId: number, sessionId: string | undefined): Promise<ConfirmPayResult> {
|
|
|
|
console.log(`executing confirmPay with proposalId ${proposalId} and sessionId ${sessionId}`);
|
|
|
|
const proposal: ProposalDownloadRecord|undefined = await this.q().get(Stores.proposals, proposalId);
|
2017-05-31 16:04:14 +02:00
|
|
|
|
|
|
|
if (!proposal) {
|
|
|
|
throw Error(`proposal with id ${proposalId} not found`);
|
|
|
|
}
|
2016-02-22 21:52:53 +01:00
|
|
|
|
2018-01-17 03:49:54 +01:00
|
|
|
let purchase = await this.q().get(Stores.purchases, proposal.contractTermsHash);
|
2016-05-24 01:53:56 +02:00
|
|
|
|
2017-08-27 03:56:19 +02:00
|
|
|
if (purchase) {
|
2018-01-19 01:27:27 +01:00
|
|
|
return this.submitPay(purchase.contractTermsHash, sessionId);
|
2016-09-28 18:54:48 +02:00
|
|
|
}
|
|
|
|
|
2017-05-28 01:10:54 +02:00
|
|
|
const res = await this.getCoinsForPayment({
|
2017-05-31 16:04:14 +02:00
|
|
|
allowedAuditors: proposal.contractTerms.auditors,
|
|
|
|
allowedExchanges: proposal.contractTerms.exchanges,
|
|
|
|
depositFeeLimit: proposal.contractTerms.max_fee,
|
|
|
|
paymentAmount: proposal.contractTerms.amount,
|
|
|
|
wireFeeAmortization: proposal.contractTerms.wire_fee_amortization || 1,
|
|
|
|
wireFeeLimit: proposal.contractTerms.max_wire_fee || Amounts.getZero(proposal.contractTerms.amount.currency),
|
|
|
|
wireFeeTime: getTalerStampSec(proposal.contractTerms.timestamp) || 0,
|
|
|
|
wireMethod: proposal.contractTerms.wire_method,
|
2017-05-28 01:10:54 +02:00
|
|
|
});
|
2016-09-28 18:54:48 +02:00
|
|
|
|
2017-05-31 16:04:14 +02:00
|
|
|
console.log("max_fee", proposal.contractTerms.max_fee);
|
2016-11-20 04:15:49 +01:00
|
|
|
console.log("coin selection result", res);
|
|
|
|
|
2016-11-14 02:52:29 +01:00
|
|
|
if (!res) {
|
2018-01-17 03:49:54 +01:00
|
|
|
// Should not happen, since checkPay should be called first
|
2016-09-28 18:54:48 +02:00
|
|
|
console.log("not confirming payment, insufficient coins");
|
2018-01-17 03:49:54 +01:00
|
|
|
throw Error("insufficient balance");
|
2016-09-28 18:54:48 +02:00
|
|
|
}
|
|
|
|
|
2017-12-12 21:54:14 +01:00
|
|
|
const sd = await this.getSpeculativePayData(proposalId);
|
|
|
|
if (!sd) {
|
2018-01-17 05:33:06 +01:00
|
|
|
const { exchangeUrl, cds, totalAmount } = res;
|
|
|
|
const payCoinInfo = await this.cryptoApi.signDeposit(proposal.contractTerms, cds, totalAmount);
|
2018-01-17 03:49:54 +01:00
|
|
|
purchase = await this.recordConfirmPay(proposal, payCoinInfo, exchangeUrl);
|
2017-12-12 21:54:14 +01:00
|
|
|
} else {
|
2018-01-17 03:49:54 +01:00
|
|
|
purchase = await this.recordConfirmPay(sd.proposal, sd.payCoinInfo, sd.exchangeUrl);
|
2017-12-12 21:54:14 +01:00
|
|
|
}
|
|
|
|
|
2018-01-19 01:27:27 +01:00
|
|
|
return this.submitPay(purchase.contractTermsHash, sessionId);
|
2016-01-06 15:39:22 +01:00
|
|
|
}
|
2015-12-16 00:38:36 +01:00
|
|
|
|
2018-01-17 03:49:54 +01:00
|
|
|
|
2017-12-12 21:54:14 +01:00
|
|
|
/**
|
|
|
|
* Get the speculative pay data, but only if coins have not changed in between.
|
|
|
|
*/
|
|
|
|
async getSpeculativePayData(proposalId: number): Promise<SpeculativePayData | undefined> {
|
|
|
|
const sp = this.speculativePayData;
|
|
|
|
if (!sp) {
|
|
|
|
return;
|
|
|
|
}
|
2018-01-03 14:42:06 +01:00
|
|
|
if (sp.proposalId !== proposalId) {
|
2017-12-12 21:54:14 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
const coinKeys = sp.payCoinInfo.updatedCoins.map(x => x.coinPub);
|
|
|
|
const coins = await this.q().getMany(Stores.coins, coinKeys);
|
|
|
|
for (let i = 0; i < coins.length; i++) {
|
|
|
|
const specCoin = sp.payCoinInfo.originalCoins[i];
|
|
|
|
const currentCoin = coins[i];
|
|
|
|
|
|
|
|
// Coin does not exist anymore!
|
|
|
|
if (!currentCoin) {
|
|
|
|
return;
|
|
|
|
}
|
2018-01-03 14:42:06 +01:00
|
|
|
if (Amounts.cmp(specCoin.currentAmount, currentCoin.currentAmount) !== 0) {
|
|
|
|
return;
|
2017-12-12 21:54:14 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return sp;
|
|
|
|
}
|
2016-02-10 02:03:31 +01:00
|
|
|
|
2016-04-27 06:03:04 +02:00
|
|
|
/**
|
2017-05-29 16:27:53 +02:00
|
|
|
* Check if payment for an offer is possible, or if the offer has already
|
|
|
|
* been payed for.
|
2017-12-12 21:54:14 +01:00
|
|
|
*
|
|
|
|
* Also speculatively computes the signature for the payment to make the payment
|
|
|
|
* look faster to the user.
|
2016-04-27 06:03:04 +02:00
|
|
|
*/
|
2017-05-31 16:04:14 +02:00
|
|
|
async checkPay(proposalId: number): Promise<CheckPayResult> {
|
|
|
|
const proposal = await this.q().get(Stores.proposals, proposalId);
|
|
|
|
|
|
|
|
if (!proposal) {
|
|
|
|
throw Error(`proposal with id ${proposalId} not found`);
|
|
|
|
}
|
|
|
|
|
2016-05-24 01:53:56 +02:00
|
|
|
// First check if we already payed for it.
|
2017-08-27 03:56:19 +02:00
|
|
|
const purchase = await this.q().get(Stores.purchases, proposal.contractTermsHash);
|
|
|
|
if (purchase) {
|
2017-08-30 17:08:54 +02:00
|
|
|
return { status: "paid" };
|
2016-09-28 18:54:48 +02:00
|
|
|
}
|
2016-05-24 01:53:56 +02:00
|
|
|
|
2016-09-28 18:54:48 +02:00
|
|
|
// If not already payed, check if we could pay for it.
|
2017-05-28 01:10:54 +02:00
|
|
|
const res = await this.getCoinsForPayment({
|
2017-05-31 16:04:14 +02:00
|
|
|
allowedAuditors: proposal.contractTerms.auditors,
|
|
|
|
allowedExchanges: proposal.contractTerms.exchanges,
|
|
|
|
depositFeeLimit: proposal.contractTerms.max_fee,
|
|
|
|
paymentAmount: proposal.contractTerms.amount,
|
|
|
|
wireFeeAmortization: proposal.contractTerms.wire_fee_amortization || 1,
|
|
|
|
wireFeeLimit: proposal.contractTerms.max_wire_fee || Amounts.getZero(proposal.contractTerms.amount.currency),
|
|
|
|
wireFeeTime: getTalerStampSec(proposal.contractTerms.timestamp) || 0,
|
|
|
|
wireMethod: proposal.contractTerms.wire_method,
|
2017-05-28 01:10:54 +02:00
|
|
|
});
|
2016-05-24 01:53:56 +02:00
|
|
|
|
2016-11-14 02:52:29 +01:00
|
|
|
if (!res) {
|
2016-09-28 18:54:48 +02:00
|
|
|
console.log("not confirming payment, insufficient coins");
|
2017-08-30 17:08:54 +02:00
|
|
|
return { status: "insufficient-balance" };
|
2016-09-28 18:54:48 +02:00
|
|
|
}
|
2017-12-12 21:54:14 +01:00
|
|
|
|
|
|
|
// Only create speculative signature if we don't already have one for this proposal
|
2018-01-03 14:42:06 +01:00
|
|
|
if ((!this.speculativePayData) || (this.speculativePayData && this.speculativePayData.proposalId !== proposalId)) {
|
2018-01-17 05:33:06 +01:00
|
|
|
const { exchangeUrl, cds, totalAmount } = res;
|
|
|
|
const payCoinInfo = await this.cryptoApi.signDeposit(proposal.contractTerms, cds, totalAmount);
|
2017-12-12 21:54:14 +01:00
|
|
|
this.speculativePayData = {
|
|
|
|
exchangeUrl,
|
|
|
|
payCoinInfo,
|
|
|
|
proposal,
|
|
|
|
proposalId,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2017-08-30 17:08:54 +02:00
|
|
|
return { status: "payment-possible", coinSelection: res };
|
2016-04-27 06:03:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-02-10 02:03:31 +01:00
|
|
|
/**
|
2017-03-03 15:37:04 +01:00
|
|
|
* Retrieve information required to pay for a contract, where the
|
|
|
|
* contract is identified via the fulfillment url.
|
2016-02-10 02:03:31 +01:00
|
|
|
*/
|
2018-01-19 01:27:27 +01:00
|
|
|
async queryPaymentByFulfillmentUrl(url: string): Promise<PurchaseRecord | undefined> {
|
2017-03-03 15:37:04 +01:00
|
|
|
console.log("query for payment", url);
|
|
|
|
|
2017-08-27 03:56:19 +02:00
|
|
|
const t = await this.q().getIndexed(Stores.purchases.fulfillmentUrlIndex, url);
|
2017-02-13 00:44:44 +01:00
|
|
|
|
2016-09-28 18:54:48 +02:00
|
|
|
if (!t) {
|
2017-02-13 00:44:44 +01:00
|
|
|
console.log("query for payment failed");
|
2018-01-19 01:27:27 +01:00
|
|
|
return undefined;
|
2018-01-17 03:49:54 +01:00
|
|
|
}
|
|
|
|
console.log("query for payment succeeded:", t);
|
2018-01-19 01:27:27 +01:00
|
|
|
return t;
|
2018-01-17 03:49:54 +01:00
|
|
|
}
|
|
|
|
|
2016-02-09 21:56:06 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* First fetch information requred to withdraw from the reserve,
|
|
|
|
* then deplete the reserve, withdrawing coins until it is empty.
|
|
|
|
*/
|
2016-09-28 23:41:34 +02:00
|
|
|
private async processReserve(reserveRecord: ReserveRecord,
|
2016-10-13 02:23:24 +02:00
|
|
|
retryDelayMs: number = 250): Promise<void> {
|
2016-05-24 02:05:19 +02:00
|
|
|
const opId = "reserve-" + reserveRecord.reserve_pub;
|
|
|
|
this.startOperation(opId);
|
2016-09-28 18:54:48 +02:00
|
|
|
|
|
|
|
try {
|
2017-05-28 01:10:54 +02:00
|
|
|
const reserve = await this.updateReserve(reserveRecord.reserve_pub);
|
2017-10-15 18:30:02 +02:00
|
|
|
await this.depleteReserve(reserve);
|
2016-09-28 18:54:48 +02:00
|
|
|
} catch (e) {
|
|
|
|
// random, exponential backoff truncated at 3 minutes
|
2017-05-28 01:10:54 +02:00
|
|
|
const nextDelay = Math.min(2 * retryDelayMs + retryDelayMs * Math.random(), 3000 * 60);
|
2016-09-28 18:54:48 +02:00
|
|
|
console.warn(`Failed to deplete reserve, trying again in ${retryDelayMs} ms`);
|
2017-10-15 19:28:35 +02:00
|
|
|
this.timerGroup.after(retryDelayMs, () => this.processReserve(reserveRecord, nextDelay));
|
2016-09-28 18:54:48 +02:00
|
|
|
} finally {
|
|
|
|
this.stopOperation(opId);
|
|
|
|
}
|
2016-05-24 01:18:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-10-15 18:30:02 +02:00
|
|
|
/**
|
|
|
|
* Given a planchet, withdraw a coin from the exchange.
|
|
|
|
*/
|
2016-11-15 15:07:17 +01:00
|
|
|
private async processPreCoin(preCoin: PreCoinRecord,
|
2016-11-17 01:23:53 +01:00
|
|
|
retryDelayMs = 200): Promise<void> {
|
2017-10-15 18:30:02 +02:00
|
|
|
// Throttle concurrent executions of this function, so we don't withdraw too many coins at once.
|
2016-11-17 15:32:08 +01:00
|
|
|
if (this.processPreCoinConcurrent >= 4 || this.processPreCoinThrottle[preCoin.exchangeBaseUrl]) {
|
2016-11-17 01:23:53 +01:00
|
|
|
console.log("delaying processPreCoin");
|
2017-10-15 19:28:35 +02:00
|
|
|
this.timerGroup.after(retryDelayMs,
|
|
|
|
() => this.processPreCoin(preCoin, Math.min(retryDelayMs * 2, 5 * 60 * 1000)));
|
2016-10-19 22:59:24 +02:00
|
|
|
return;
|
|
|
|
}
|
2017-11-30 04:07:36 +01:00
|
|
|
console.log("executing processPreCoin", preCoin);
|
2016-11-17 01:23:53 +01:00
|
|
|
this.processPreCoinConcurrent++;
|
2016-09-28 18:54:48 +02:00
|
|
|
try {
|
2016-11-17 01:23:53 +01:00
|
|
|
const exchange = await this.q().get(Stores.exchanges,
|
|
|
|
preCoin.exchangeBaseUrl);
|
|
|
|
if (!exchange) {
|
2017-10-15 18:30:02 +02:00
|
|
|
console.error("db inconsistent: exchange for precoin not found");
|
2016-11-17 01:23:53 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
const denom = await this.q().get(Stores.denominations,
|
|
|
|
[preCoin.exchangeBaseUrl, preCoin.denomPub]);
|
|
|
|
if (!denom) {
|
|
|
|
console.error("db inconsistent: denom for precoin not found");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-09-28 18:54:48 +02:00
|
|
|
const coin = await this.withdrawExecute(preCoin);
|
2017-11-30 04:07:36 +01:00
|
|
|
console.log("processPreCoin: got coin", coin);
|
2016-10-19 22:59:24 +02:00
|
|
|
|
|
|
|
const mutateReserve = (r: ReserveRecord) => {
|
2016-10-20 01:37:00 +02:00
|
|
|
|
|
|
|
console.log(`before committing coin: current ${amountToPretty(r.current_amount!)}, precoin: ${amountToPretty(
|
|
|
|
r.precoin_amount)})}`);
|
|
|
|
|
2017-05-28 01:10:54 +02:00
|
|
|
const x = Amounts.sub(r.precoin_amount, preCoin.coinValue, denom.feeWithdraw);
|
2016-10-19 22:59:24 +02:00
|
|
|
if (x.saturated) {
|
2016-10-20 01:37:00 +02:00
|
|
|
console.error("database inconsistent");
|
2016-10-19 22:59:24 +02:00
|
|
|
throw AbortTransaction;
|
|
|
|
}
|
2016-10-20 01:37:00 +02:00
|
|
|
r.precoin_amount = x.amount;
|
2016-10-19 22:59:24 +02:00
|
|
|
return r;
|
|
|
|
};
|
|
|
|
|
|
|
|
await this.q()
|
|
|
|
.mutate(Stores.reserves, preCoin.reservePub, mutateReserve)
|
2017-11-30 04:07:36 +01:00
|
|
|
.delete(Stores.precoins, coin.coinPub)
|
2016-10-19 22:59:24 +02:00
|
|
|
.add(Stores.coins, coin)
|
|
|
|
.finish();
|
|
|
|
|
2017-11-30 04:07:36 +01:00
|
|
|
if (coin.status === CoinStatus.TainedByTip) {
|
2018-01-03 14:42:06 +01:00
|
|
|
const tip = await this.q().getIndexed(Stores.tips.coinPubIndex, coin.coinPub);
|
2017-11-30 04:07:36 +01:00
|
|
|
if (!tip) {
|
|
|
|
throw Error(`inconsistent DB: tip for coin pub ${coin.coinPub} not found.`);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (tip.accepted) {
|
2017-12-09 15:56:05 +01:00
|
|
|
console.log("untainting already accepted tip");
|
|
|
|
// Transactionally set coin to fresh.
|
2017-11-30 04:07:36 +01:00
|
|
|
const mutateCoin = (c: CoinRecord) => {
|
|
|
|
if (c.status === CoinStatus.TainedByTip) {
|
|
|
|
c.status = CoinStatus.Fresh;
|
|
|
|
}
|
|
|
|
return c;
|
2018-01-03 14:42:06 +01:00
|
|
|
};
|
|
|
|
await this.q().mutate(Stores.coins, coin.coinPub, mutateCoin);
|
2017-12-12 16:39:55 +01:00
|
|
|
// Show notifications only for accepted tips
|
|
|
|
this.badge.showNotification();
|
2017-11-30 04:07:36 +01:00
|
|
|
}
|
2017-12-12 16:39:55 +01:00
|
|
|
} else {
|
|
|
|
this.badge.showNotification();
|
2017-11-30 04:07:36 +01:00
|
|
|
}
|
|
|
|
|
2016-10-19 22:59:24 +02:00
|
|
|
this.notifier.notify();
|
2016-09-28 18:54:48 +02:00
|
|
|
} catch (e) {
|
|
|
|
console.error("Failed to withdraw coin from precoin, retrying in",
|
2016-10-13 02:23:24 +02:00
|
|
|
retryDelayMs,
|
|
|
|
"ms", e);
|
2016-09-28 18:54:48 +02:00
|
|
|
// exponential backoff truncated at one minute
|
2017-05-28 01:10:54 +02:00
|
|
|
const nextRetryDelayMs = Math.min(retryDelayMs * 2, 5 * 60 * 1000);
|
2017-10-15 19:28:35 +02:00
|
|
|
this.timerGroup.after(retryDelayMs, () => this.processPreCoin(preCoin, nextRetryDelayMs));
|
2017-05-28 01:10:54 +02:00
|
|
|
|
|
|
|
const currentThrottle = this.processPreCoinThrottle[preCoin.exchangeBaseUrl] || 0;
|
|
|
|
this.processPreCoinThrottle[preCoin.exchangeBaseUrl] = currentThrottle + 1;
|
2017-06-05 02:00:03 +02:00
|
|
|
this.timerGroup.after(retryDelayMs, () => {this.processPreCoinThrottle[preCoin.exchangeBaseUrl]--; });
|
2016-11-17 01:23:53 +01:00
|
|
|
} finally {
|
|
|
|
this.processPreCoinConcurrent--;
|
2016-09-28 18:54:48 +02:00
|
|
|
}
|
2016-01-24 19:57:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-12-10 21:34:56 +01:00
|
|
|
/**
|
|
|
|
* Update the timestamp of when an exchange was used.
|
|
|
|
*/
|
|
|
|
async updateExchangeUsedTime(exchangeBaseUrl: string): Promise<void> {
|
|
|
|
const now = (new Date()).getTime();
|
|
|
|
const update = (r: ExchangeRecord) => {
|
|
|
|
r.lastUsedTime = now;
|
|
|
|
return r;
|
|
|
|
};
|
|
|
|
await this.q().mutate(Stores.exchanges, exchangeBaseUrl, update).finish();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-02-09 21:56:06 +01:00
|
|
|
/**
|
|
|
|
* Create a reserve, but do not flag it as confirmed yet.
|
2017-04-28 23:28:27 +02:00
|
|
|
*
|
|
|
|
* Adds the corresponding exchange as a trusted exchange if it is neither
|
|
|
|
* audited nor trusted already.
|
2016-02-09 21:56:06 +01:00
|
|
|
*/
|
2016-09-28 18:54:48 +02:00
|
|
|
async createReserve(req: CreateReserveRequest): Promise<CreateReserveResponse> {
|
2017-05-28 01:10:54 +02:00
|
|
|
const keypair = await this.cryptoApi.createEddsaKeypair();
|
|
|
|
const now = (new Date()).getTime();
|
2016-09-28 18:54:48 +02:00
|
|
|
const canonExchange = canonicalizeBaseUrl(req.exchange);
|
|
|
|
|
2016-09-28 23:41:34 +02:00
|
|
|
const reserveRecord: ReserveRecord = {
|
2016-09-28 18:54:48 +02:00
|
|
|
created: now,
|
|
|
|
current_amount: null,
|
2017-05-28 01:10:54 +02:00
|
|
|
exchange_base_url: canonExchange,
|
|
|
|
hasPayback: false,
|
2016-10-20 01:37:00 +02:00
|
|
|
precoin_amount: Amounts.getZero(req.amount.currency),
|
2017-05-28 01:10:54 +02:00
|
|
|
requested_amount: req.amount,
|
|
|
|
reserve_priv: keypair.priv,
|
|
|
|
reserve_pub: keypair.pub,
|
2017-08-14 04:16:12 +02:00
|
|
|
senderWire: req.senderWire,
|
2017-10-15 18:30:02 +02:00
|
|
|
timestamp_confirmed: 0,
|
|
|
|
timestamp_depleted: 0,
|
2016-09-28 18:54:48 +02:00
|
|
|
};
|
2016-01-06 15:39:22 +01:00
|
|
|
|
2018-01-04 11:08:39 +01:00
|
|
|
const senderWire = req.senderWire;
|
|
|
|
if (isWireDetail(senderWire)) {
|
|
|
|
const rec = {
|
|
|
|
id: hash(senderWire),
|
|
|
|
senderWire,
|
|
|
|
};
|
2018-01-18 01:37:30 +01:00
|
|
|
await this.q().put(Stores.senderWires, rec).finish();
|
2018-01-04 11:08:39 +01:00
|
|
|
}
|
|
|
|
|
2017-12-10 21:34:56 +01:00
|
|
|
await this.updateExchangeUsedTime(req.exchange);
|
2017-05-28 01:10:54 +02:00
|
|
|
const exchangeInfo = await this.updateExchangeFromUrl(req.exchange);
|
|
|
|
const {isAudited, isTrusted} = await this.getExchangeTrust(exchangeInfo);
|
2017-04-28 23:28:27 +02:00
|
|
|
let currencyRecord = await this.q().get(Stores.currencies, exchangeInfo.currency);
|
|
|
|
if (!currencyRecord) {
|
|
|
|
currencyRecord = {
|
|
|
|
auditors: [],
|
2017-05-28 01:10:54 +02:00
|
|
|
exchanges: [],
|
|
|
|
fractionalDigits: 2,
|
|
|
|
name: exchangeInfo.currency,
|
|
|
|
};
|
2017-04-28 23:28:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!isAudited && !isTrusted) {
|
2017-06-04 20:25:28 +02:00
|
|
|
currencyRecord.exchanges.push({baseUrl: req.exchange, exchangePub: exchangeInfo.masterPublicKey});
|
2017-04-28 23:28:27 +02:00
|
|
|
}
|
|
|
|
|
2016-10-13 02:23:24 +02:00
|
|
|
await this.q()
|
2017-04-28 23:28:27 +02:00
|
|
|
.put(Stores.currencies, currencyRecord)
|
2016-10-18 01:16:31 +02:00
|
|
|
.put(Stores.reserves, reserveRecord)
|
2016-10-13 02:23:24 +02:00
|
|
|
.finish();
|
2016-02-11 18:17:02 +01:00
|
|
|
|
2017-05-28 01:10:54 +02:00
|
|
|
const r: CreateReserveResponse = {
|
2016-09-28 18:54:48 +02:00
|
|
|
exchange: canonExchange,
|
|
|
|
reservePub: keypair.pub,
|
|
|
|
};
|
|
|
|
return r;
|
2016-02-09 21:56:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Mark an existing reserve as confirmed. The wallet will start trying
|
|
|
|
* to withdraw from that reserve. This may not immediately succeed,
|
2016-03-01 19:39:17 +01:00
|
|
|
* since the exchange might not know about the reserve yet, even though the
|
2016-02-09 21:56:06 +01:00
|
|
|
* bank confirmed its creation.
|
|
|
|
*
|
|
|
|
* A confirmed reserve should be shown to the user in the UI, while
|
|
|
|
* an unconfirmed reserve should be hidden.
|
|
|
|
*/
|
2016-09-28 18:54:48 +02:00
|
|
|
async confirmReserve(req: ConfirmReserveRequest): Promise<void> {
|
2017-05-28 01:10:54 +02:00
|
|
|
const now = (new Date()).getTime();
|
|
|
|
const reserve: ReserveRecord|undefined = await (
|
2016-10-18 01:16:31 +02:00
|
|
|
this.q().get<ReserveRecord>(Stores.reserves,
|
2016-10-13 02:23:24 +02:00
|
|
|
req.reservePub));
|
|
|
|
if (!reserve) {
|
|
|
|
console.error("Unable to confirm reserve, not found in DB");
|
|
|
|
return;
|
|
|
|
}
|
2016-10-17 23:49:04 +02:00
|
|
|
console.log("reserve confirmed");
|
2017-10-15 18:30:02 +02:00
|
|
|
reserve.timestamp_confirmed = now;
|
2016-10-13 02:23:24 +02:00
|
|
|
await this.q()
|
2016-10-18 01:16:31 +02:00
|
|
|
.put(Stores.reserves, reserve)
|
2016-10-13 02:23:24 +02:00
|
|
|
.finish();
|
2016-10-19 22:49:03 +02:00
|
|
|
this.notifier.notify();
|
2016-09-28 19:09:10 +02:00
|
|
|
|
2016-09-28 23:41:34 +02:00
|
|
|
this.processReserve(reserve);
|
2015-12-16 05:53:55 +01:00
|
|
|
}
|
2016-01-05 01:10:31 +01:00
|
|
|
|
2016-01-24 19:57:09 +01:00
|
|
|
|
2016-11-15 15:07:17 +01:00
|
|
|
private async withdrawExecute(pc: PreCoinRecord): Promise<CoinRecord> {
|
2017-05-28 01:10:54 +02:00
|
|
|
const wd: any = {};
|
2016-09-28 18:54:48 +02:00
|
|
|
wd.denom_pub = pc.denomPub;
|
|
|
|
wd.reserve_pub = pc.reservePub;
|
|
|
|
wd.reserve_sig = pc.withdrawSig;
|
|
|
|
wd.coin_ev = pc.coinEv;
|
2017-11-30 04:07:36 +01:00
|
|
|
const reqUrl = (new URI("reserve/withdraw")).absoluteTo(pc.exchangeBaseUrl);
|
2017-05-28 01:10:54 +02:00
|
|
|
const resp = await this.http.postJson(reqUrl.href(), wd);
|
2016-09-28 18:54:48 +02:00
|
|
|
|
2017-05-28 01:10:54 +02:00
|
|
|
if (resp.status !== 200) {
|
2016-09-28 18:54:48 +02:00
|
|
|
throw new RequestException({
|
|
|
|
hint: "Withdrawal failed",
|
2017-05-28 01:10:54 +02:00
|
|
|
status: resp.status,
|
2016-01-06 15:39:22 +01:00
|
|
|
});
|
2016-09-28 18:54:48 +02:00
|
|
|
}
|
2017-05-28 01:10:54 +02:00
|
|
|
const r = JSON.parse(resp.responseText);
|
|
|
|
const denomSig = await this.cryptoApi.rsaUnblind(r.ev_sig,
|
2017-11-30 04:07:36 +01:00
|
|
|
pc.blindingKey,
|
|
|
|
pc.denomPub);
|
2017-05-28 01:10:54 +02:00
|
|
|
const coin: CoinRecord = {
|
2017-05-01 04:33:47 +02:00
|
|
|
blindingKey: pc.blindingKey,
|
2017-05-28 01:10:54 +02:00
|
|
|
coinPriv: pc.coinPriv,
|
|
|
|
coinPub: pc.coinPub,
|
2016-09-28 18:54:48 +02:00
|
|
|
currentAmount: pc.coinValue,
|
2017-05-28 01:10:54 +02:00
|
|
|
denomPub: pc.denomPub,
|
|
|
|
denomSig,
|
2016-09-28 18:54:48 +02:00
|
|
|
exchangeBaseUrl: pc.exchangeBaseUrl,
|
2017-05-28 01:10:54 +02:00
|
|
|
reservePub: pc.reservePub,
|
2017-12-09 15:56:05 +01:00
|
|
|
status: pc.isFromTip ? CoinStatus.TainedByTip : CoinStatus.Fresh,
|
2016-09-28 18:54:48 +02:00
|
|
|
};
|
|
|
|
return coin;
|
2016-01-06 15:39:22 +01:00
|
|
|
}
|
2015-12-13 23:47:30 +01:00
|
|
|
|
|
|
|
|
2016-01-06 15:39:22 +01:00
|
|
|
/**
|
|
|
|
* Withdraw coins from a reserve until it is empty.
|
2017-10-15 18:30:02 +02:00
|
|
|
*
|
|
|
|
* When finished, marks the reserve as depleted by setting
|
|
|
|
* the depleted timestamp.
|
2016-01-06 15:39:22 +01:00
|
|
|
*/
|
2017-10-15 18:30:02 +02:00
|
|
|
private async depleteReserve(reserve: ReserveRecord): Promise<void> {
|
2016-11-18 00:09:43 +01:00
|
|
|
console.log("depleting reserve");
|
2016-10-20 01:37:00 +02:00
|
|
|
if (!reserve.current_amount) {
|
|
|
|
throw Error("can't withdraw when amount is unknown");
|
|
|
|
}
|
2017-05-28 01:10:54 +02:00
|
|
|
const withdrawAmount = reserve.current_amount;
|
|
|
|
if (!withdrawAmount) {
|
2016-11-16 01:59:39 +01:00
|
|
|
throw Error("can't withdraw when amount is unknown");
|
|
|
|
}
|
2017-05-28 01:10:54 +02:00
|
|
|
const denomsForWithdraw = await this.getVerifiedWithdrawDenomList(reserve.exchange_base_url, withdrawAmount);
|
2017-10-15 18:30:02 +02:00
|
|
|
const smallestAmount = await this.getVerifiedSmallestWithdrawAmount(reserve.exchange_base_url);
|
2016-02-11 18:17:02 +01:00
|
|
|
|
2016-11-18 00:09:43 +01:00
|
|
|
console.log(`withdrawing ${denomsForWithdraw.length} coins`);
|
|
|
|
|
2017-05-28 01:10:54 +02:00
|
|
|
const ps = denomsForWithdraw.map(async(denom) => {
|
2016-10-20 01:37:00 +02:00
|
|
|
function mutateReserve(r: ReserveRecord): ReserveRecord {
|
2017-05-28 01:10:54 +02:00
|
|
|
const currentAmount = r.current_amount;
|
2016-10-20 01:37:00 +02:00
|
|
|
if (!currentAmount) {
|
|
|
|
throw Error("can't withdraw when amount is unknown");
|
|
|
|
}
|
|
|
|
r.precoin_amount = Amounts.add(r.precoin_amount,
|
|
|
|
denom.value,
|
2016-11-16 01:59:39 +01:00
|
|
|
denom.feeWithdraw).amount;
|
2017-05-28 01:10:54 +02:00
|
|
|
const result = Amounts.sub(currentAmount,
|
2016-10-20 01:37:00 +02:00
|
|
|
denom.value,
|
2016-11-16 01:59:39 +01:00
|
|
|
denom.feeWithdraw);
|
2016-10-20 01:37:00 +02:00
|
|
|
if (result.saturated) {
|
|
|
|
console.error("can't create precoin, saturated");
|
|
|
|
throw AbortTransaction;
|
|
|
|
}
|
|
|
|
r.current_amount = result.amount;
|
|
|
|
|
2017-10-15 18:30:02 +02:00
|
|
|
// Reserve is depleted if the amount left is too small to withdraw
|
|
|
|
if (Amounts.cmp(r.current_amount, smallestAmount) < 0) {
|
|
|
|
r.timestamp_depleted = (new Date()).getTime();
|
|
|
|
}
|
|
|
|
|
2016-10-20 01:37:00 +02:00
|
|
|
console.log(`after creating precoin: current ${amountToPretty(r.current_amount)}, precoin: ${amountToPretty(
|
|
|
|
r.precoin_amount)})}`);
|
|
|
|
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2017-05-28 01:10:54 +02:00
|
|
|
const preCoin = await this.cryptoApi
|
2016-10-19 22:59:24 +02:00
|
|
|
.createPreCoin(denom, reserve);
|
2016-10-20 01:37:00 +02:00
|
|
|
await this.q()
|
|
|
|
.put(Stores.precoins, preCoin)
|
|
|
|
.mutate(Stores.reserves, reserve.reserve_pub, mutateReserve);
|
2016-10-19 22:59:24 +02:00
|
|
|
await this.processPreCoin(preCoin);
|
|
|
|
});
|
2016-10-20 01:37:00 +02:00
|
|
|
|
2016-09-28 17:52:36 +02:00
|
|
|
await Promise.all(ps);
|
2016-01-06 15:39:22 +01:00
|
|
|
}
|
|
|
|
|
2016-01-24 19:57:09 +01:00
|
|
|
|
2016-02-11 18:17:02 +01:00
|
|
|
/**
|
|
|
|
* Update the information about a reserve that is stored in the wallet
|
2016-03-01 19:39:17 +01:00
|
|
|
* by quering the reserve's exchange.
|
2016-02-11 18:17:02 +01:00
|
|
|
*/
|
2017-05-01 04:05:16 +02:00
|
|
|
private async updateReserve(reservePub: string): Promise<ReserveRecord> {
|
2017-05-28 01:10:54 +02:00
|
|
|
const reserve = await this.q()
|
2016-10-18 01:16:31 +02:00
|
|
|
.get<ReserveRecord>(Stores.reserves, reservePub);
|
2016-10-13 02:23:24 +02:00
|
|
|
if (!reserve) {
|
|
|
|
throw Error("reserve not in db");
|
|
|
|
}
|
2017-05-28 01:10:54 +02:00
|
|
|
const reqUrl = new URI("reserve/status").absoluteTo(reserve.exchange_base_url);
|
|
|
|
reqUrl.query({reserve_pub: reservePub});
|
|
|
|
const resp = await this.http.get(reqUrl.href());
|
|
|
|
if (resp.status !== 200) {
|
2016-09-28 19:09:10 +02:00
|
|
|
throw Error();
|
|
|
|
}
|
2017-05-28 01:10:54 +02:00
|
|
|
const reserveInfo = JSON.parse(resp.responseText);
|
2016-09-28 19:09:10 +02:00
|
|
|
if (!reserveInfo) {
|
|
|
|
throw Error();
|
|
|
|
}
|
|
|
|
reserve.current_amount = reserveInfo.balance;
|
2016-10-13 02:23:24 +02:00
|
|
|
await this.q()
|
2016-10-18 01:16:31 +02:00
|
|
|
.put(Stores.reserves, reserve)
|
2016-10-13 02:23:24 +02:00
|
|
|
.finish();
|
2016-10-19 22:49:03 +02:00
|
|
|
this.notifier.notify();
|
2016-09-28 19:09:10 +02:00
|
|
|
return reserve;
|
2016-01-06 15:39:22 +01:00
|
|
|
}
|
|
|
|
|
2016-01-26 17:21:17 +01:00
|
|
|
|
2016-05-24 00:36:20 +02:00
|
|
|
/**
|
|
|
|
* Get the wire information for the exchange with the given base URL.
|
|
|
|
*/
|
2016-09-28 18:54:48 +02:00
|
|
|
async getWireInfo(exchangeBaseUrl: string): Promise<WireInfo> {
|
2016-05-24 00:36:20 +02:00
|
|
|
exchangeBaseUrl = canonicalizeBaseUrl(exchangeBaseUrl);
|
2017-05-28 01:10:54 +02:00
|
|
|
const reqUrl = new URI("wire").absoluteTo(exchangeBaseUrl);
|
|
|
|
const resp = await this.http.get(reqUrl.href());
|
2016-04-06 02:06:57 +02:00
|
|
|
|
2017-05-28 01:10:54 +02:00
|
|
|
if (resp.status !== 200) {
|
2016-09-28 18:54:48 +02:00
|
|
|
throw Error("/wire request failed");
|
|
|
|
}
|
|
|
|
|
2017-05-28 01:10:54 +02:00
|
|
|
const wiJson = JSON.parse(resp.responseText);
|
2016-09-28 18:54:48 +02:00
|
|
|
if (!wiJson) {
|
2017-05-28 01:10:54 +02:00
|
|
|
throw Error("/wire response malformed");
|
2016-09-28 18:54:48 +02:00
|
|
|
}
|
|
|
|
return wiJson;
|
2016-04-06 02:06:57 +02:00
|
|
|
}
|
|
|
|
|
2016-11-16 01:59:39 +01:00
|
|
|
async getPossibleDenoms(exchangeBaseUrl: string) {
|
|
|
|
return (
|
|
|
|
this.q().iterIndex(Stores.denominations.exchangeBaseUrlIndex,
|
|
|
|
exchangeBaseUrl)
|
2017-05-28 01:10:54 +02:00
|
|
|
.filter((d) => d.status === DenominationStatus.Unverified || d.status === DenominationStatus.VerifiedGood)
|
2016-11-16 01:59:39 +01:00
|
|
|
.toArray()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-10-15 18:30:02 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Compute the smallest withdrawable amount possible, based on verified denominations.
|
|
|
|
*
|
|
|
|
* Writes to the DB in order to record the result from verifying
|
|
|
|
* denominations.
|
|
|
|
*/
|
|
|
|
async getVerifiedSmallestWithdrawAmount(exchangeBaseUrl: string): Promise<AmountJson> {
|
|
|
|
const exchange = await this.q().get(Stores.exchanges, exchangeBaseUrl);
|
|
|
|
if (!exchange) {
|
|
|
|
throw Error(`exchange ${exchangeBaseUrl} not found`);
|
|
|
|
}
|
|
|
|
|
|
|
|
const possibleDenoms = await (
|
|
|
|
this.q().iterIndex(Stores.denominations.exchangeBaseUrlIndex,
|
|
|
|
exchange.baseUrl)
|
|
|
|
.filter((d) => d.status === DenominationStatus.Unverified || d.status === DenominationStatus.VerifiedGood)
|
|
|
|
.toArray()
|
|
|
|
);
|
|
|
|
possibleDenoms.sort((d1, d2) => {
|
2017-10-15 19:28:35 +02:00
|
|
|
const a1 = Amounts.add(d1.feeWithdraw, d1.value).amount;
|
|
|
|
const a2 = Amounts.add(d2.feeWithdraw, d2.value).amount;
|
2017-10-15 18:30:02 +02:00
|
|
|
return Amounts.cmp(a1, a2);
|
|
|
|
});
|
|
|
|
|
2017-10-15 19:28:35 +02:00
|
|
|
for (const denom of possibleDenoms) {
|
2017-10-15 18:30:02 +02:00
|
|
|
if (denom.status === DenominationStatus.VerifiedGood) {
|
|
|
|
return Amounts.add(denom.feeWithdraw, denom.value).amount;
|
|
|
|
}
|
|
|
|
console.log(`verifying denom ${denom.denomPub.substr(0, 15)}`);
|
|
|
|
const valid = await this.cryptoApi.isValidDenom(denom,
|
|
|
|
exchange.masterPublicKey);
|
|
|
|
if (!valid) {
|
|
|
|
denom.status = DenominationStatus.VerifiedBad;
|
|
|
|
} else {
|
|
|
|
denom.status = DenominationStatus.VerifiedGood;
|
|
|
|
}
|
|
|
|
await this.q().put(Stores.denominations, denom).finish();
|
|
|
|
if (valid) {
|
|
|
|
return Amounts.add(denom.feeWithdraw, denom.value).amount;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return Amounts.getZero(exchange.currency);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-11-16 01:59:39 +01:00
|
|
|
/**
|
|
|
|
* Get a list of denominations to withdraw from the given exchange for the
|
|
|
|
* given amount, making sure that all denominations' signatures are verified.
|
|
|
|
*
|
|
|
|
* Writes to the DB in order to record the result from verifying
|
|
|
|
* denominations.
|
|
|
|
*/
|
|
|
|
async getVerifiedWithdrawDenomList(exchangeBaseUrl: string,
|
|
|
|
amount: AmountJson): Promise<DenominationRecord[]> {
|
|
|
|
const exchange = await this.q().get(Stores.exchanges, exchangeBaseUrl);
|
|
|
|
if (!exchange) {
|
|
|
|
throw Error(`exchange ${exchangeBaseUrl} not found`);
|
|
|
|
}
|
|
|
|
|
|
|
|
const possibleDenoms = await (
|
|
|
|
this.q().iterIndex(Stores.denominations.exchangeBaseUrlIndex,
|
|
|
|
exchange.baseUrl)
|
2017-05-28 01:10:54 +02:00
|
|
|
.filter((d) => d.status === DenominationStatus.Unverified || d.status === DenominationStatus.VerifiedGood)
|
2016-11-16 01:59:39 +01:00
|
|
|
.toArray()
|
|
|
|
);
|
|
|
|
|
|
|
|
let allValid = false;
|
|
|
|
|
|
|
|
let selectedDenoms: DenominationRecord[];
|
|
|
|
|
|
|
|
do {
|
|
|
|
allValid = true;
|
2017-05-28 01:10:54 +02:00
|
|
|
const nextPossibleDenoms = [];
|
2016-11-16 01:59:39 +01:00
|
|
|
selectedDenoms = getWithdrawDenomList(amount, possibleDenoms);
|
2017-05-28 01:10:54 +02:00
|
|
|
for (const denom of selectedDenoms || []) {
|
|
|
|
if (denom.status === DenominationStatus.Unverified) {
|
2016-11-16 01:59:39 +01:00
|
|
|
console.log(`verifying denom ${denom.denomPub.substr(0, 15)}`);
|
2017-05-28 01:10:54 +02:00
|
|
|
const valid = await this.cryptoApi.isValidDenom(denom,
|
2016-11-16 01:59:39 +01:00
|
|
|
exchange.masterPublicKey);
|
|
|
|
if (!valid) {
|
|
|
|
denom.status = DenominationStatus.VerifiedBad;
|
|
|
|
allValid = false;
|
|
|
|
} else {
|
|
|
|
denom.status = DenominationStatus.VerifiedGood;
|
|
|
|
nextPossibleDenoms.push(denom);
|
|
|
|
}
|
|
|
|
await this.q().put(Stores.denominations, denom).finish();
|
|
|
|
} else {
|
|
|
|
nextPossibleDenoms.push(denom);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} while (selectedDenoms.length > 0 && !allValid);
|
|
|
|
|
|
|
|
return selectedDenoms;
|
|
|
|
}
|
|
|
|
|
2017-04-28 23:28:27 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if and how an exchange is trusted and/or audited.
|
|
|
|
*/
|
|
|
|
async getExchangeTrust(exchangeInfo: ExchangeRecord): Promise<{isTrusted: boolean, isAudited: boolean}> {
|
|
|
|
let isTrusted = false;
|
|
|
|
let isAudited = false;
|
2017-05-28 01:10:54 +02:00
|
|
|
const currencyRecord = await this.q().get(Stores.currencies, exchangeInfo.currency);
|
2017-04-28 23:28:27 +02:00
|
|
|
if (currencyRecord) {
|
2017-05-28 01:10:54 +02:00
|
|
|
for (const trustedExchange of currencyRecord.exchanges) {
|
2017-06-04 20:25:28 +02:00
|
|
|
if (trustedExchange.exchangePub === exchangeInfo.masterPublicKey) {
|
2017-04-28 23:28:27 +02:00
|
|
|
isTrusted = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2017-05-28 01:10:54 +02:00
|
|
|
for (const trustedAuditor of currencyRecord.auditors) {
|
|
|
|
for (const exchangeAuditor of exchangeInfo.auditors) {
|
2017-06-04 20:25:28 +02:00
|
|
|
if (trustedAuditor.auditorPub === exchangeAuditor.auditor_pub) {
|
2017-04-28 23:28:27 +02:00
|
|
|
isAudited = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return {isTrusted, isAudited};
|
|
|
|
}
|
|
|
|
|
2016-09-28 18:54:48 +02:00
|
|
|
async getReserveCreationInfo(baseUrl: string,
|
2016-10-13 02:23:24 +02:00
|
|
|
amount: AmountJson): Promise<ReserveCreationInfo> {
|
2017-05-28 01:10:54 +02:00
|
|
|
const exchangeInfo = await this.updateExchangeFromUrl(baseUrl);
|
2016-04-06 02:06:57 +02:00
|
|
|
|
2017-05-28 01:10:54 +02:00
|
|
|
const selectedDenoms = await this.getVerifiedWithdrawDenomList(baseUrl,
|
2016-11-16 01:59:39 +01:00
|
|
|
amount);
|
2016-09-28 18:54:48 +02:00
|
|
|
let acc = Amounts.getZero(amount.currency);
|
2017-05-28 01:10:54 +02:00
|
|
|
for (const d of selectedDenoms) {
|
2016-11-16 01:59:39 +01:00
|
|
|
acc = Amounts.add(acc, d.feeWithdraw).amount;
|
2016-09-28 18:54:48 +02:00
|
|
|
}
|
2017-05-28 01:10:54 +02:00
|
|
|
const actualCoinCost = selectedDenoms
|
2016-11-16 01:59:39 +01:00
|
|
|
.map((d: DenominationRecord) => Amounts.add(d.value,
|
|
|
|
d.feeWithdraw).amount)
|
2016-09-28 18:54:48 +02:00
|
|
|
.reduce((a, b) => Amounts.add(a, b).amount);
|
|
|
|
|
2017-05-28 01:10:54 +02:00
|
|
|
const wireInfo = await this.getWireInfo(baseUrl);
|
2016-09-28 18:54:48 +02:00
|
|
|
|
2017-05-28 01:10:54 +02:00
|
|
|
const wireFees = await this.q().get(Stores.exchangeWireFees, baseUrl);
|
2017-04-28 23:28:27 +02:00
|
|
|
if (!wireFees) {
|
|
|
|
// should never happen unless DB is inconsistent
|
|
|
|
throw Error(`no wire fees found for exchange ${baseUrl}`);
|
|
|
|
}
|
|
|
|
|
2017-05-28 01:10:54 +02:00
|
|
|
const {isTrusted, isAudited} = await this.getExchangeTrust(exchangeInfo);
|
2017-04-28 23:28:27 +02:00
|
|
|
|
2017-05-28 01:10:54 +02:00
|
|
|
let earliestDepositExpiration = Infinity;
|
|
|
|
for (const denom of selectedDenoms) {
|
|
|
|
const expireDeposit = getTalerStampSec(denom.stampExpireDeposit)!;
|
2017-04-28 23:42:14 +02:00
|
|
|
if (expireDeposit < earliestDepositExpiration) {
|
|
|
|
earliestDepositExpiration = expireDeposit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-04 18:46:32 +02:00
|
|
|
const possibleDenoms = await (
|
|
|
|
this.q().iterIndex(Stores.denominations.exchangeBaseUrlIndex, baseUrl)
|
|
|
|
.filter((d) => d.isOffered)
|
|
|
|
.toArray()
|
|
|
|
) || [];
|
|
|
|
|
2017-06-04 19:41:43 +02:00
|
|
|
const trustedAuditorPubs = [];
|
2017-06-04 18:46:32 +02:00
|
|
|
const currencyRecord = await this.q().get<CurrencyRecord>(Stores.currencies, amount.currency);
|
2017-06-04 19:41:43 +02:00
|
|
|
if (currencyRecord) {
|
|
|
|
trustedAuditorPubs.push(...currencyRecord.auditors.map((a) => a.auditorPub));
|
2017-06-04 18:46:32 +02:00
|
|
|
}
|
|
|
|
|
2017-06-04 20:16:09 +02:00
|
|
|
let versionMatch;
|
|
|
|
if (exchangeInfo.protocolVersion) {
|
|
|
|
versionMatch = LibtoolVersion.compare(WALLET_PROTOCOL_VERSION, exchangeInfo.protocolVersion);
|
|
|
|
|
2017-10-15 19:28:35 +02:00
|
|
|
if (versionMatch && !versionMatch.compatible && versionMatch.currentCmp === -1) {
|
2017-06-04 20:16:09 +02:00
|
|
|
console.log("wallet version might be outdated, checking for updates");
|
|
|
|
chrome.runtime.requestUpdateCheck((status, details) => {
|
|
|
|
console.log("update check status:", status);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-05-28 01:10:54 +02:00
|
|
|
const ret: ReserveCreationInfo = {
|
|
|
|
earliestDepositExpiration,
|
2016-09-28 18:54:48 +02:00
|
|
|
exchangeInfo,
|
2018-01-03 14:42:06 +01:00
|
|
|
exchangeVersion: exchangeInfo.protocolVersion || "unknown",
|
2017-04-28 23:28:27 +02:00
|
|
|
isAudited,
|
|
|
|
isTrusted,
|
2017-06-04 18:46:32 +02:00
|
|
|
numOfferedDenoms: possibleDenoms.length,
|
2016-09-28 18:54:48 +02:00
|
|
|
overhead: Amounts.sub(amount, actualCoinCost).amount,
|
2017-05-28 01:10:54 +02:00
|
|
|
selectedDenoms,
|
2017-06-04 18:46:32 +02:00
|
|
|
trustedAuditorPubs,
|
2017-10-15 19:28:35 +02:00
|
|
|
versionMatch,
|
2018-01-03 14:42:06 +01:00
|
|
|
walletVersion: WALLET_PROTOCOL_VERSION,
|
2017-05-28 01:10:54 +02:00
|
|
|
wireFees,
|
|
|
|
wireInfo,
|
|
|
|
withdrawFee: acc,
|
2016-09-28 18:54:48 +02:00
|
|
|
};
|
|
|
|
return ret;
|
2016-02-18 22:50:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-01-06 15:39:22 +01:00
|
|
|
/**
|
2016-03-01 19:39:17 +01:00
|
|
|
* Update or add exchange DB entry by fetching the /keys information.
|
2016-01-06 15:39:22 +01:00
|
|
|
* Optionally link the reserve entry to the new or existing
|
2016-03-01 19:39:17 +01:00
|
|
|
* exchange entry in then DB.
|
2016-01-06 15:39:22 +01:00
|
|
|
*/
|
2016-11-15 15:07:17 +01:00
|
|
|
async updateExchangeFromUrl(baseUrl: string): Promise<ExchangeRecord> {
|
2016-02-18 22:50:17 +01:00
|
|
|
baseUrl = canonicalizeBaseUrl(baseUrl);
|
2017-05-28 01:10:54 +02:00
|
|
|
const keysUrl = new URI("keys").absoluteTo(baseUrl);
|
|
|
|
const wireUrl = new URI("wire").absoluteTo(baseUrl);
|
|
|
|
const keysResp = await this.http.get(keysUrl.href());
|
|
|
|
if (keysResp.status !== 200) {
|
2016-09-28 18:54:48 +02:00
|
|
|
throw Error("/keys request failed");
|
|
|
|
}
|
2017-05-28 01:10:54 +02:00
|
|
|
const wireResp = await this.http.get(wireUrl.href());
|
|
|
|
if (wireResp.status !== 200) {
|
2017-04-27 03:09:29 +02:00
|
|
|
throw Error("/wire request failed");
|
|
|
|
}
|
2017-05-28 01:10:54 +02:00
|
|
|
const exchangeKeysJson = KeysJson.checked(JSON.parse(keysResp.responseText));
|
|
|
|
const wireRespJson = JSON.parse(wireResp.responseText);
|
2017-04-27 03:09:29 +02:00
|
|
|
if (typeof wireRespJson !== "object") {
|
|
|
|
throw Error("/wire response is not an object");
|
|
|
|
}
|
|
|
|
console.log("exchange wire", wireRespJson);
|
2017-05-28 01:10:54 +02:00
|
|
|
const wireMethodDetails: WireDetailJson[] = [];
|
|
|
|
for (const methodName in wireRespJson) {
|
2017-04-27 03:09:29 +02:00
|
|
|
wireMethodDetails.push(WireDetailJson.checked(wireRespJson[methodName]));
|
|
|
|
}
|
|
|
|
return this.updateExchangeFromJson(baseUrl, exchangeKeysJson, wireMethodDetails);
|
2016-05-24 17:30:27 +02:00
|
|
|
}
|
2016-02-18 22:50:17 +01:00
|
|
|
|
2016-11-16 01:59:39 +01:00
|
|
|
|
2016-11-15 15:07:17 +01:00
|
|
|
private async suspendCoins(exchangeInfo: ExchangeRecord): Promise<void> {
|
2017-05-28 01:10:54 +02:00
|
|
|
const resultSuspendedCoins = await (
|
2016-10-13 02:23:24 +02:00
|
|
|
this.q()
|
2016-10-18 01:36:47 +02:00
|
|
|
.iterIndex(Stores.coins.exchangeBaseUrlIndex, exchangeInfo.baseUrl)
|
2016-11-16 01:59:39 +01:00
|
|
|
.indexJoinLeft(Stores.denominations.exchangeBaseUrlIndex,
|
|
|
|
(e) => e.exchangeBaseUrl)
|
2017-12-10 23:02:00 +01:00
|
|
|
.fold((cd: JoinLeftResult<CoinRecord, DenominationRecord>,
|
2018-01-03 14:42:06 +01:00
|
|
|
suspendedCoins: CoinRecord[]) => {
|
2016-11-20 04:15:49 +01:00
|
|
|
if ((!cd.right) || (!cd.right.isOffered)) {
|
2016-11-16 01:59:39 +01:00
|
|
|
return Array.prototype.concat(suspendedCoins, [cd.left]);
|
2016-10-13 02:23:24 +02:00
|
|
|
}
|
|
|
|
return Array.prototype.concat(suspendedCoins);
|
|
|
|
}, []));
|
|
|
|
|
2017-05-28 01:10:54 +02:00
|
|
|
const q = this.q();
|
2017-12-10 23:02:00 +01:00
|
|
|
resultSuspendedCoins.map((c: CoinRecord) => {
|
2016-09-28 18:00:13 +02:00
|
|
|
console.log("suspending coin", c);
|
|
|
|
c.suspended = true;
|
2016-10-18 01:16:31 +02:00
|
|
|
q.put(Stores.coins, c);
|
2017-12-12 16:39:55 +01:00
|
|
|
this.badge.showNotification();
|
2017-08-30 17:08:54 +02:00
|
|
|
this.notifier.notify();
|
2016-09-28 18:00:13 +02:00
|
|
|
});
|
|
|
|
await q.finish();
|
|
|
|
}
|
2016-02-18 22:50:17 +01:00
|
|
|
|
2016-09-28 18:00:13 +02:00
|
|
|
|
|
|
|
private async updateExchangeFromJson(baseUrl: string,
|
2017-04-27 03:09:29 +02:00
|
|
|
exchangeKeysJson: KeysJson,
|
|
|
|
wireMethodDetails: WireDetailJson[]): Promise<ExchangeRecord> {
|
|
|
|
|
|
|
|
// FIXME: all this should probably be commited atomically
|
2016-09-12 17:41:12 +02:00
|
|
|
const updateTimeSec = getTalerStampSec(exchangeKeysJson.list_issue_date);
|
|
|
|
if (updateTimeSec === null) {
|
2016-05-24 17:30:27 +02:00
|
|
|
throw Error("invalid update time");
|
|
|
|
}
|
|
|
|
|
2017-05-28 01:10:54 +02:00
|
|
|
if (exchangeKeysJson.denoms.length === 0) {
|
2017-04-28 23:28:27 +02:00
|
|
|
throw Error("exchange doesn't offer any denominations");
|
|
|
|
}
|
|
|
|
|
2016-11-16 01:59:39 +01:00
|
|
|
const r = await this.q().get<ExchangeRecord>(Stores.exchanges, baseUrl);
|
2016-09-28 18:00:13 +02:00
|
|
|
|
2016-11-15 15:07:17 +01:00
|
|
|
let exchangeInfo: ExchangeRecord;
|
2016-09-28 18:00:13 +02:00
|
|
|
|
|
|
|
if (!r) {
|
|
|
|
exchangeInfo = {
|
2017-05-28 01:10:54 +02:00
|
|
|
auditors: exchangeKeysJson.auditors,
|
2016-09-28 18:00:13 +02:00
|
|
|
baseUrl,
|
2017-05-28 01:10:54 +02:00
|
|
|
currency: exchangeKeysJson.denoms[0].value.currency,
|
2016-11-16 01:59:39 +01:00
|
|
|
lastUpdateTime: updateTimeSec,
|
2017-12-10 21:34:56 +01:00
|
|
|
lastUsedTime: 0,
|
2016-09-28 18:00:13 +02:00
|
|
|
masterPublicKey: exchangeKeysJson.master_public_key,
|
|
|
|
};
|
|
|
|
console.log("making fresh exchange");
|
|
|
|
} else {
|
2016-11-16 01:59:39 +01:00
|
|
|
if (updateTimeSec < r.lastUpdateTime) {
|
2016-09-28 18:00:13 +02:00
|
|
|
console.log("outdated /keys, not updating");
|
2017-05-28 01:10:54 +02:00
|
|
|
return r;
|
2016-05-24 17:30:27 +02:00
|
|
|
}
|
2016-09-28 18:00:13 +02:00
|
|
|
exchangeInfo = r;
|
2016-11-16 01:59:39 +01:00
|
|
|
exchangeInfo.lastUpdateTime = updateTimeSec;
|
2016-09-28 18:00:13 +02:00
|
|
|
console.log("updating old exchange");
|
|
|
|
}
|
2016-05-24 17:30:27 +02:00
|
|
|
|
2017-05-28 01:10:54 +02:00
|
|
|
const updatedExchangeInfo = await this.updateExchangeInfo(exchangeInfo,
|
2017-06-04 20:16:09 +02:00
|
|
|
exchangeKeysJson);
|
2016-09-28 18:00:13 +02:00
|
|
|
await this.suspendCoins(updatedExchangeInfo);
|
2017-06-04 20:16:09 +02:00
|
|
|
updatedExchangeInfo.protocolVersion = exchangeKeysJson.version;
|
2016-09-28 18:00:13 +02:00
|
|
|
|
2016-10-13 02:23:24 +02:00
|
|
|
await this.q()
|
2016-10-18 01:16:31 +02:00
|
|
|
.put(Stores.exchanges, updatedExchangeInfo)
|
2016-10-13 02:23:24 +02:00
|
|
|
.finish();
|
2016-09-28 18:00:13 +02:00
|
|
|
|
2017-04-27 03:09:29 +02:00
|
|
|
let oldWireFees = await this.q().get(Stores.exchangeWireFees, baseUrl);
|
|
|
|
if (!oldWireFees) {
|
|
|
|
oldWireFees = {
|
|
|
|
exchangeBaseUrl: baseUrl,
|
|
|
|
feesForType: {},
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2017-05-28 01:10:54 +02:00
|
|
|
for (const detail of wireMethodDetails) {
|
2017-04-27 03:09:29 +02:00
|
|
|
let latestFeeStamp = 0;
|
2017-05-28 01:10:54 +02:00
|
|
|
const fees = oldWireFees.feesForType[detail.type] || [];
|
2017-04-27 03:09:29 +02:00
|
|
|
oldWireFees.feesForType[detail.type] = fees;
|
2017-05-28 01:10:54 +02:00
|
|
|
for (const oldFee of fees) {
|
2017-04-27 03:09:29 +02:00
|
|
|
if (oldFee.endStamp > latestFeeStamp) {
|
|
|
|
latestFeeStamp = oldFee.endStamp;
|
|
|
|
}
|
|
|
|
}
|
2017-05-28 01:10:54 +02:00
|
|
|
for (const fee of detail.fees) {
|
|
|
|
const start = getTalerStampSec(fee.start_date);
|
|
|
|
if (start === null) {
|
2017-04-27 03:09:29 +02:00
|
|
|
console.error("invalid start stamp in fee", fee);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (start < latestFeeStamp) {
|
|
|
|
continue;
|
|
|
|
}
|
2017-05-28 01:10:54 +02:00
|
|
|
const end = getTalerStampSec(fee.end_date);
|
|
|
|
if (end === null) {
|
2017-04-27 03:09:29 +02:00
|
|
|
console.error("invalid end stamp in fee", fee);
|
|
|
|
continue;
|
|
|
|
}
|
2017-05-28 01:10:54 +02:00
|
|
|
const wf: WireFee = {
|
2017-04-27 03:09:29 +02:00
|
|
|
closingFee: fee.closing_fee,
|
2017-05-28 01:10:54 +02:00
|
|
|
endStamp: end,
|
2017-04-27 03:09:29 +02:00
|
|
|
sig: fee.sig,
|
|
|
|
startStamp: start,
|
2017-05-28 01:10:54 +02:00
|
|
|
wireFee: fee.wire_fee,
|
|
|
|
};
|
|
|
|
const valid: boolean = await this.cryptoApi.isValidWireFee(detail.type, wf, exchangeInfo.masterPublicKey);
|
2017-04-27 03:09:29 +02:00
|
|
|
if (!valid) {
|
|
|
|
console.error("fee signature invalid", fee);
|
2017-04-27 04:06:48 +02:00
|
|
|
throw Error("fee signature invalid");
|
2017-04-27 03:09:29 +02:00
|
|
|
}
|
|
|
|
fees.push(wf);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
await this.q().put(Stores.exchangeWireFees, oldWireFees);
|
|
|
|
|
2017-05-01 04:05:16 +02:00
|
|
|
if (exchangeKeysJson.payback) {
|
2017-05-28 01:10:54 +02:00
|
|
|
for (const payback of exchangeKeysJson.payback) {
|
|
|
|
const denom = await this.q().getIndexed(Stores.denominations.denomPubHashIndex, payback.h_denom_pub);
|
2017-05-01 04:05:16 +02:00
|
|
|
if (!denom) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
console.log(`cashing back denom`, denom);
|
2017-05-28 01:10:54 +02:00
|
|
|
const coins = await this.q().iterIndex(Stores.coins.denomPubIndex, denom.denomPub).toArray();
|
|
|
|
for (const coin of coins) {
|
2017-05-01 04:05:16 +02:00
|
|
|
this.payback(coin.coinPub);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-28 18:00:13 +02:00
|
|
|
return updatedExchangeInfo;
|
2016-05-24 17:30:27 +02:00
|
|
|
}
|
2016-02-18 22:50:17 +01:00
|
|
|
|
2016-02-19 00:49:22 +01:00
|
|
|
|
2016-11-15 15:07:17 +01:00
|
|
|
private async updateExchangeInfo(exchangeInfo: ExchangeRecord,
|
|
|
|
newKeys: KeysJson): Promise<ExchangeRecord> {
|
2017-05-28 01:10:54 +02:00
|
|
|
if (exchangeInfo.masterPublicKey !== newKeys.master_public_key) {
|
2016-05-24 17:30:27 +02:00
|
|
|
throw Error("public keys do not match");
|
|
|
|
}
|
|
|
|
|
2016-11-16 01:59:39 +01:00
|
|
|
const existingDenoms: {[denomPub: string]: DenominationRecord} = await (
|
|
|
|
this.q().iterIndex(Stores.denominations.exchangeBaseUrlIndex,
|
|
|
|
exchangeInfo.baseUrl)
|
2017-12-10 23:02:00 +01:00
|
|
|
.fold((x: DenominationRecord,
|
2018-01-03 14:42:06 +01:00
|
|
|
acc: typeof existingDenoms) => (acc[x.denomPub] = x, acc), {})
|
2016-11-16 01:59:39 +01:00
|
|
|
);
|
2016-05-24 17:30:27 +02:00
|
|
|
|
2016-11-16 01:59:39 +01:00
|
|
|
const newDenoms: typeof existingDenoms = {};
|
2016-11-20 04:15:49 +01:00
|
|
|
const newAndUnseenDenoms: typeof existingDenoms = {};
|
2016-05-24 17:30:27 +02:00
|
|
|
|
2017-05-28 01:10:54 +02:00
|
|
|
for (const d of newKeys.denoms) {
|
|
|
|
const dr = await this.denominationRecordFromKeys(exchangeInfo.baseUrl, d);
|
2016-11-16 01:59:39 +01:00
|
|
|
if (!(d.denom_pub in existingDenoms)) {
|
2016-11-20 04:15:49 +01:00
|
|
|
newAndUnseenDenoms[dr.denomPub] = dr;
|
2016-09-28 19:09:10 +02:00
|
|
|
}
|
2016-11-20 04:15:49 +01:00
|
|
|
newDenoms[dr.denomPub] = dr;
|
2016-11-16 01:59:39 +01:00
|
|
|
}
|
2016-05-24 17:30:27 +02:00
|
|
|
|
2017-05-28 01:10:54 +02:00
|
|
|
for (const oldDenomPub in existingDenoms) {
|
2016-11-16 01:59:39 +01:00
|
|
|
if (!(oldDenomPub in newDenoms)) {
|
2017-05-28 01:10:54 +02:00
|
|
|
const d = existingDenoms[oldDenomPub];
|
2016-11-16 01:59:39 +01:00
|
|
|
d.isOffered = false;
|
|
|
|
}
|
|
|
|
}
|
2016-09-28 19:09:10 +02:00
|
|
|
|
2016-11-16 01:59:39 +01:00
|
|
|
await this.q()
|
|
|
|
.putAll(Stores.denominations,
|
2016-11-20 04:15:49 +01:00
|
|
|
Object.keys(newAndUnseenDenoms).map((d) => newAndUnseenDenoms[d]))
|
2016-11-19 21:31:36 +01:00
|
|
|
.putAll(Stores.denominations,
|
|
|
|
Object.keys(existingDenoms).map((d) => existingDenoms[d]))
|
2016-11-16 01:59:39 +01:00
|
|
|
.finish();
|
2016-09-28 19:09:10 +02:00
|
|
|
return exchangeInfo;
|
2016-01-06 15:39:22 +01:00
|
|
|
}
|
2016-01-05 01:10:31 +01:00
|
|
|
|
|
|
|
|
2016-02-11 18:17:02 +01:00
|
|
|
/**
|
2017-08-14 04:16:12 +02:00
|
|
|
* Get detailed balance information, sliced by exchange and by currency.
|
2016-02-11 18:17:02 +01:00
|
|
|
*/
|
2016-10-19 18:40:29 +02:00
|
|
|
async getBalances(): Promise<WalletBalance> {
|
2017-08-14 04:16:12 +02:00
|
|
|
/**
|
|
|
|
* Add amount to a balance field, both for
|
|
|
|
* the slicing by exchange and currency.
|
|
|
|
*/
|
2017-10-15 19:28:35 +02:00
|
|
|
function addTo(balance: WalletBalance,
|
|
|
|
field: keyof WalletBalanceEntry,
|
|
|
|
amount: AmountJson,
|
|
|
|
exchange: string): void {
|
2017-08-14 04:16:12 +02:00
|
|
|
const z = Amounts.getZero(amount.currency);
|
|
|
|
const balanceIdentity = {available: z, paybackAmount: z, pendingIncoming: z, pendingPayment: z};
|
|
|
|
let entryCurr = balance.byCurrency[amount.currency];
|
|
|
|
if (!entryCurr) {
|
|
|
|
balance.byCurrency[amount.currency] = entryCurr = { ...balanceIdentity };
|
|
|
|
}
|
|
|
|
let entryEx = balance.byExchange[exchange];
|
|
|
|
if (!entryEx) {
|
|
|
|
balance.byExchange[exchange] = entryEx = { ...balanceIdentity };
|
2016-10-19 18:40:29 +02:00
|
|
|
}
|
2017-08-14 04:16:12 +02:00
|
|
|
entryCurr[field] = Amounts.add(entryCurr[field], amount).amount;
|
|
|
|
entryEx[field] = Amounts.add(entryEx[field], amount).amount;
|
2016-10-19 18:40:29 +02:00
|
|
|
}
|
|
|
|
|
2016-11-15 15:07:17 +01:00
|
|
|
function collectBalances(c: CoinRecord, balance: WalletBalance) {
|
2016-05-24 17:30:27 +02:00
|
|
|
if (c.suspended) {
|
2016-10-19 18:40:29 +02:00
|
|
|
return balance;
|
|
|
|
}
|
2017-08-30 17:08:54 +02:00
|
|
|
if (c.status === CoinStatus.Fresh) {
|
|
|
|
addTo(balance, "available", c.currentAmount, c.exchangeBaseUrl);
|
|
|
|
return balance;
|
|
|
|
}
|
|
|
|
if (c.status === CoinStatus.Dirty) {
|
|
|
|
addTo(balance, "pendingIncoming", c.currentAmount, c.exchangeBaseUrl);
|
2017-04-13 16:08:41 +02:00
|
|
|
return balance;
|
|
|
|
}
|
2016-10-19 18:40:29 +02:00
|
|
|
return balance;
|
|
|
|
}
|
|
|
|
|
|
|
|
function collectPendingWithdraw(r: ReserveRecord, balance: WalletBalance) {
|
2017-10-15 18:30:02 +02:00
|
|
|
if (!r.timestamp_confirmed) {
|
2016-10-19 18:40:29 +02:00
|
|
|
return balance;
|
2016-05-24 17:30:27 +02:00
|
|
|
}
|
2016-10-19 18:40:29 +02:00
|
|
|
let amount = r.current_amount;
|
|
|
|
if (!amount) {
|
|
|
|
amount = r.requested_amount;
|
2016-01-06 15:39:22 +01:00
|
|
|
}
|
2016-10-20 01:37:00 +02:00
|
|
|
amount = Amounts.add(amount, r.precoin_amount).amount;
|
2016-10-19 18:40:29 +02:00
|
|
|
if (Amounts.cmp(smallestWithdraw[r.exchange_base_url], amount) < 0) {
|
2017-08-14 04:16:12 +02:00
|
|
|
addTo(balance, "pendingIncoming", amount, r.exchange_base_url);
|
2016-10-19 18:40:29 +02:00
|
|
|
}
|
|
|
|
return balance;
|
2016-01-05 01:10:31 +01:00
|
|
|
}
|
2015-12-13 23:47:30 +01:00
|
|
|
|
2017-05-01 04:05:16 +02:00
|
|
|
function collectPaybacks(r: ReserveRecord, balance: WalletBalance) {
|
|
|
|
if (!r.hasPayback) {
|
|
|
|
return balance;
|
|
|
|
}
|
|
|
|
if (Amounts.cmp(smallestWithdraw[r.exchange_base_url], r.current_amount!) < 0) {
|
2017-08-14 04:16:12 +02:00
|
|
|
addTo(balance, "paybackAmount", r.current_amount!, r.exchange_base_url);
|
2017-05-01 04:05:16 +02:00
|
|
|
}
|
|
|
|
return balance;
|
|
|
|
}
|
|
|
|
|
2016-11-16 01:59:39 +01:00
|
|
|
function collectPendingRefresh(r: RefreshSessionRecord,
|
|
|
|
balance: WalletBalance) {
|
2017-03-10 15:27:36 +01:00
|
|
|
// Don't count finished refreshes, since the refresh already resulted
|
|
|
|
// in coins being added to the wallet.
|
2017-03-10 15:25:54 +01:00
|
|
|
if (r.finished) {
|
2016-10-19 18:40:29 +02:00
|
|
|
return balance;
|
|
|
|
}
|
2017-08-14 04:16:12 +02:00
|
|
|
addTo(balance, "pendingIncoming", r.valueOutput, r.exchangeBaseUrl);
|
2016-10-19 18:40:29 +02:00
|
|
|
|
|
|
|
return balance;
|
|
|
|
}
|
|
|
|
|
2017-08-27 03:56:19 +02:00
|
|
|
function collectPayments(t: PurchaseRecord, balance: WalletBalance) {
|
2016-10-19 22:49:03 +02:00
|
|
|
if (t.finished) {
|
|
|
|
return balance;
|
|
|
|
}
|
2018-01-04 13:22:23 +01:00
|
|
|
for (const c of t.payReq.coins) {
|
|
|
|
addTo(balance, "pendingIncoming", c.contribution, c.exchange_url);
|
|
|
|
}
|
2016-10-19 22:49:03 +02:00
|
|
|
return balance;
|
|
|
|
}
|
|
|
|
|
2016-11-16 01:59:39 +01:00
|
|
|
function collectSmallestWithdraw(e: JoinResult<ExchangeRecord, DenominationRecord>,
|
|
|
|
sw: any) {
|
|
|
|
let min = sw[e.left.baseUrl];
|
2017-05-28 01:10:54 +02:00
|
|
|
const v = Amounts.add(e.right.value, e.right.feeWithdraw).amount;
|
2016-11-16 01:59:39 +01:00
|
|
|
if (!min) {
|
|
|
|
min = v;
|
|
|
|
} else if (Amounts.cmp(v, min) < 0) {
|
|
|
|
min = v;
|
2016-10-19 18:40:29 +02:00
|
|
|
}
|
2016-11-16 01:59:39 +01:00
|
|
|
sw[e.left.baseUrl] = min;
|
2016-10-19 18:40:29 +02:00
|
|
|
return sw;
|
|
|
|
}
|
|
|
|
|
2017-10-15 19:28:35 +02:00
|
|
|
const balanceStore = {
|
2017-08-14 04:16:12 +02:00
|
|
|
byCurrency: {},
|
2017-10-15 19:28:35 +02:00
|
|
|
byExchange: {},
|
2017-08-14 04:16:12 +02:00
|
|
|
};
|
2016-10-19 18:40:29 +02:00
|
|
|
// Mapping from exchange pub to smallest
|
|
|
|
// possible amount we can withdraw
|
|
|
|
let smallestWithdraw: {[baseUrl: string]: AmountJson} = {};
|
|
|
|
|
|
|
|
smallestWithdraw = await (this.q()
|
|
|
|
.iter(Stores.exchanges)
|
2016-11-16 01:59:39 +01:00
|
|
|
.indexJoin(Stores.denominations.exchangeBaseUrlIndex,
|
|
|
|
(x) => x.baseUrl)
|
2017-12-10 23:02:00 +01:00
|
|
|
.fold(collectSmallestWithdraw, {}));
|
2016-10-19 18:40:29 +02:00
|
|
|
|
2017-05-28 01:10:54 +02:00
|
|
|
const tx = this.q();
|
2016-10-19 23:40:45 +02:00
|
|
|
tx.iter(Stores.coins)
|
2017-12-10 23:02:00 +01:00
|
|
|
.fold(collectBalances, balanceStore);
|
2016-10-19 23:40:45 +02:00
|
|
|
tx.iter(Stores.refresh)
|
2017-12-10 23:02:00 +01:00
|
|
|
.fold(collectPendingRefresh, balanceStore);
|
2016-10-19 23:40:45 +02:00
|
|
|
tx.iter(Stores.reserves)
|
2017-12-10 23:02:00 +01:00
|
|
|
.fold(collectPendingWithdraw, balanceStore);
|
2017-05-01 04:05:16 +02:00
|
|
|
tx.iter(Stores.reserves)
|
2017-12-10 23:02:00 +01:00
|
|
|
.fold(collectPaybacks, balanceStore);
|
2017-08-27 03:56:19 +02:00
|
|
|
tx.iter(Stores.purchases)
|
2017-12-10 23:02:00 +01:00
|
|
|
.fold(collectPayments, balanceStore);
|
2016-10-19 23:40:45 +02:00
|
|
|
await tx.finish();
|
2017-10-15 19:28:35 +02:00
|
|
|
return balanceStore;
|
2016-10-13 02:23:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-11-15 15:07:17 +01:00
|
|
|
async createRefreshSession(oldCoinPub: string): Promise<RefreshSessionRecord|undefined> {
|
2017-05-28 01:10:54 +02:00
|
|
|
const coin = await this.q().get<CoinRecord>(Stores.coins, oldCoinPub);
|
2016-10-13 02:23:24 +02:00
|
|
|
|
|
|
|
if (!coin) {
|
2016-10-17 23:49:04 +02:00
|
|
|
throw Error("coin not found");
|
2016-10-13 02:23:24 +02:00
|
|
|
}
|
|
|
|
|
2017-05-28 01:10:54 +02:00
|
|
|
if (coin.currentAmount.value === 0 && coin.currentAmount.fraction === 0) {
|
2017-04-13 15:05:38 +02:00
|
|
|
return undefined;
|
|
|
|
}
|
|
|
|
|
2017-05-28 01:10:54 +02:00
|
|
|
const exchange = await this.updateExchangeFromUrl(coin.exchangeBaseUrl);
|
2016-10-18 02:11:41 +02:00
|
|
|
|
2016-10-13 02:23:24 +02:00
|
|
|
if (!exchange) {
|
|
|
|
throw Error("db inconsistent");
|
|
|
|
}
|
|
|
|
|
2017-05-28 01:10:54 +02:00
|
|
|
const oldDenom = await this.q().get(Stores.denominations,
|
2016-11-16 01:59:39 +01:00
|
|
|
[exchange.baseUrl, coin.denomPub]);
|
2016-10-13 02:23:24 +02:00
|
|
|
|
|
|
|
if (!oldDenom) {
|
|
|
|
throw Error("db inconsistent");
|
|
|
|
}
|
|
|
|
|
2017-05-28 01:10:54 +02:00
|
|
|
const availableDenoms: DenominationRecord[] = await (
|
2016-11-16 01:59:39 +01:00
|
|
|
this.q()
|
|
|
|
.iterIndex(Stores.denominations.exchangeBaseUrlIndex,
|
|
|
|
exchange.baseUrl)
|
|
|
|
.toArray()
|
|
|
|
);
|
2016-10-13 02:23:24 +02:00
|
|
|
|
2017-05-28 01:10:54 +02:00
|
|
|
const availableAmount = Amounts.sub(coin.currentAmount,
|
2016-11-16 01:59:39 +01:00
|
|
|
oldDenom.feeRefresh).amount;
|
2016-10-14 02:13:06 +02:00
|
|
|
|
2017-05-28 01:10:54 +02:00
|
|
|
const newCoinDenoms = getWithdrawDenomList(availableAmount,
|
2016-10-13 02:23:24 +02:00
|
|
|
availableDenoms);
|
|
|
|
|
2017-04-13 15:05:38 +02:00
|
|
|
console.log("refreshing coin", coin);
|
2016-10-13 02:23:24 +02:00
|
|
|
console.log("refreshing into", newCoinDenoms);
|
|
|
|
|
2017-05-28 01:10:54 +02:00
|
|
|
if (newCoinDenoms.length === 0) {
|
2017-04-13 15:05:38 +02:00
|
|
|
console.log(`not refreshing, available amount ${amountToPretty(availableAmount)} too small`);
|
2017-08-30 17:08:54 +02:00
|
|
|
coin.status = CoinStatus.Useless;
|
|
|
|
await this.q().put(Stores.coins, coin);
|
|
|
|
this.notifier.notify();
|
2016-10-17 23:49:04 +02:00
|
|
|
return undefined;
|
2016-10-17 15:58:36 +02:00
|
|
|
}
|
|
|
|
|
2016-10-13 02:23:24 +02:00
|
|
|
|
2017-05-28 01:10:54 +02:00
|
|
|
const refreshSession: RefreshSessionRecord = await (
|
2016-10-14 02:13:06 +02:00
|
|
|
this.cryptoApi.createRefreshSession(exchange.baseUrl,
|
2016-10-17 15:58:36 +02:00
|
|
|
3,
|
|
|
|
coin,
|
|
|
|
newCoinDenoms,
|
2016-11-16 01:59:39 +01:00
|
|
|
oldDenom.feeRefresh));
|
2016-10-17 15:58:36 +02:00
|
|
|
|
2016-11-15 15:07:17 +01:00
|
|
|
function mutateCoin(c: CoinRecord): CoinRecord {
|
2017-05-28 01:10:54 +02:00
|
|
|
const r = Amounts.sub(c.currentAmount,
|
2016-10-19 23:55:58 +02:00
|
|
|
refreshSession.valueWithFee);
|
|
|
|
if (r.saturated) {
|
|
|
|
// Something else must have written the coin value
|
|
|
|
throw AbortTransaction;
|
|
|
|
}
|
|
|
|
c.currentAmount = r.amount;
|
2017-04-13 16:08:41 +02:00
|
|
|
c.status = CoinStatus.Refreshed;
|
2016-10-19 23:55:58 +02:00
|
|
|
return c;
|
|
|
|
}
|
2016-10-17 15:58:36 +02:00
|
|
|
|
2017-04-13 15:05:38 +02:00
|
|
|
// Store refresh session and subtract refreshed amount from
|
|
|
|
// coin in the same transaction.
|
2017-08-27 05:42:46 +02:00
|
|
|
const query = this.q();
|
|
|
|
query.put(Stores.refresh, refreshSession, "refreshKey")
|
|
|
|
.mutate(Stores.coins, coin.coinPub, mutateCoin);
|
|
|
|
await query.finish();
|
2017-08-30 17:08:54 +02:00
|
|
|
this.notifier.notify();
|
2017-08-27 05:42:46 +02:00
|
|
|
|
|
|
|
const key = query.key("refreshKey");
|
|
|
|
if (!key || typeof key !== "number") {
|
|
|
|
throw Error("insert failed");
|
|
|
|
}
|
|
|
|
|
|
|
|
refreshSession.id = key;
|
2016-10-17 15:58:36 +02:00
|
|
|
|
2016-10-17 23:49:04 +02:00
|
|
|
return refreshSession;
|
|
|
|
}
|
2016-10-13 02:23:24 +02:00
|
|
|
|
2016-10-17 23:49:04 +02:00
|
|
|
|
|
|
|
async refresh(oldCoinPub: string): Promise<void> {
|
2017-08-27 05:42:46 +02:00
|
|
|
|
|
|
|
const oldRefreshSessions = await this.q().iter(Stores.refresh).toArray();
|
|
|
|
for (const session of oldRefreshSessions) {
|
|
|
|
console.log("got old session for", oldCoinPub, session);
|
|
|
|
this.continueRefreshSession(session);
|
2016-10-17 15:58:36 +02:00
|
|
|
}
|
2017-08-30 17:08:54 +02:00
|
|
|
const coin = await this.q().get(Stores.coins, oldCoinPub);
|
|
|
|
if (!coin) {
|
|
|
|
console.warn("can't refresh, coin not in database");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (coin.status === CoinStatus.Useless || coin.status === CoinStatus.Fresh) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
const refreshSession = await this.createRefreshSession(oldCoinPub);
|
2016-10-17 23:49:04 +02:00
|
|
|
if (!refreshSession) {
|
|
|
|
// refreshing not necessary
|
2017-04-13 15:05:38 +02:00
|
|
|
console.log("not refreshing", oldCoinPub);
|
2016-10-17 23:49:04 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
this.continueRefreshSession(refreshSession);
|
|
|
|
}
|
|
|
|
|
2016-11-15 15:07:17 +01:00
|
|
|
async continueRefreshSession(refreshSession: RefreshSessionRecord) {
|
2016-10-17 23:49:04 +02:00
|
|
|
if (refreshSession.finished) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (typeof refreshSession.norevealIndex !== "number") {
|
|
|
|
await this.refreshMelt(refreshSession);
|
2017-08-27 05:42:46 +02:00
|
|
|
const r = await this.q().get<RefreshSessionRecord>(Stores.refresh, refreshSession.id);
|
2016-10-17 23:49:04 +02:00
|
|
|
if (!r) {
|
|
|
|
throw Error("refresh session does not exist anymore");
|
|
|
|
}
|
|
|
|
refreshSession = r;
|
|
|
|
}
|
|
|
|
|
|
|
|
await this.refreshReveal(refreshSession);
|
2016-10-17 15:58:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-11-15 15:07:17 +01:00
|
|
|
async refreshMelt(refreshSession: RefreshSessionRecord): Promise<void> {
|
2017-05-28 01:10:54 +02:00
|
|
|
if (refreshSession.norevealIndex !== undefined) {
|
2016-10-17 15:58:36 +02:00
|
|
|
console.error("won't melt again");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-05-28 01:10:54 +02:00
|
|
|
const coin = await this.q().get<CoinRecord>(Stores.coins,
|
2016-11-15 15:07:17 +01:00
|
|
|
refreshSession.meltCoinPub);
|
2016-10-17 15:58:36 +02:00
|
|
|
if (!coin) {
|
|
|
|
console.error("can't melt coin, it does not exist");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-05-28 01:10:54 +02:00
|
|
|
const reqUrl = new URI("refresh/melt").absoluteTo(refreshSession.exchangeBaseUrl);
|
2017-12-09 03:37:21 +01:00
|
|
|
const meltReq = {
|
2016-10-14 02:13:06 +02:00
|
|
|
coin_pub: coin.coinPub,
|
2017-05-28 01:10:54 +02:00
|
|
|
confirm_sig: refreshSession.confirmSig,
|
2016-10-14 02:13:06 +02:00
|
|
|
denom_pub: coin.denomPub,
|
|
|
|
denom_sig: coin.denomSig,
|
2017-12-09 03:37:21 +01:00
|
|
|
rc: refreshSession.hash,
|
2016-10-14 02:13:06 +02:00
|
|
|
value_with_fee: refreshSession.valueWithFee,
|
|
|
|
};
|
2017-12-09 03:37:21 +01:00
|
|
|
console.log("melt request:", meltReq);
|
|
|
|
const resp = await this.http.postJson(reqUrl.href(), meltReq);
|
2016-10-13 02:36:33 +02:00
|
|
|
|
|
|
|
console.log("melt response:", resp.responseText);
|
2016-09-28 18:00:13 +02:00
|
|
|
|
2017-05-28 01:10:54 +02:00
|
|
|
if (resp.status !== 200) {
|
2016-10-14 02:13:06 +02:00
|
|
|
console.error(resp.responseText);
|
|
|
|
throw Error("refresh failed");
|
|
|
|
}
|
|
|
|
|
2017-05-28 01:10:54 +02:00
|
|
|
const respJson = JSON.parse(resp.responseText);
|
2016-10-14 02:13:06 +02:00
|
|
|
|
|
|
|
if (!respJson) {
|
|
|
|
throw Error("exchange responded with garbage");
|
|
|
|
}
|
|
|
|
|
2017-05-28 01:10:54 +02:00
|
|
|
const norevealIndex = respJson.noreveal_index;
|
2016-10-14 02:13:06 +02:00
|
|
|
|
2017-05-28 01:10:54 +02:00
|
|
|
if (typeof norevealIndex !== "number") {
|
2016-10-14 02:13:06 +02:00
|
|
|
throw Error("invalid response");
|
|
|
|
}
|
|
|
|
|
|
|
|
refreshSession.norevealIndex = norevealIndex;
|
|
|
|
|
2016-10-18 01:16:31 +02:00
|
|
|
await this.q().put(Stores.refresh, refreshSession).finish();
|
2017-08-30 17:08:54 +02:00
|
|
|
this.notifier.notify();
|
2016-01-05 01:10:31 +01:00
|
|
|
}
|
2016-01-24 02:29:13 +01:00
|
|
|
|
2016-10-17 15:58:36 +02:00
|
|
|
|
2016-11-15 15:07:17 +01:00
|
|
|
async refreshReveal(refreshSession: RefreshSessionRecord): Promise<void> {
|
2017-05-28 01:10:54 +02:00
|
|
|
const norevealIndex = refreshSession.norevealIndex;
|
|
|
|
if (norevealIndex === undefined) {
|
2016-10-14 02:13:06 +02:00
|
|
|
throw Error("can't reveal without melting first");
|
|
|
|
}
|
2017-05-28 01:10:54 +02:00
|
|
|
const privs = Array.from(refreshSession.transferPrivs);
|
2016-10-14 02:13:06 +02:00
|
|
|
privs.splice(norevealIndex, 1);
|
|
|
|
|
2017-12-09 03:37:21 +01:00
|
|
|
const preCoins = refreshSession.preCoinsForGammas[norevealIndex];
|
|
|
|
if (!preCoins) {
|
|
|
|
throw Error("refresh index error");
|
|
|
|
}
|
|
|
|
|
|
|
|
const evs = preCoins.map((x: RefreshPreCoinRecord) => x.coinEv);
|
|
|
|
|
2017-05-28 01:10:54 +02:00
|
|
|
const req = {
|
2017-12-09 03:37:21 +01:00
|
|
|
coin_evs: evs,
|
|
|
|
new_denoms_h: refreshSession.newDenomHashes,
|
|
|
|
rc: refreshSession.hash,
|
2017-05-28 01:10:54 +02:00
|
|
|
transfer_privs: privs,
|
2017-12-09 03:37:21 +01:00
|
|
|
transfer_pub: refreshSession.transferPubs[norevealIndex],
|
2016-10-14 02:13:06 +02:00
|
|
|
};
|
|
|
|
|
2017-05-28 01:10:54 +02:00
|
|
|
const reqUrl = new URI("refresh/reveal") .absoluteTo(refreshSession.exchangeBaseUrl);
|
2016-10-14 02:13:06 +02:00
|
|
|
console.log("reveal request:", req);
|
2017-05-28 01:10:54 +02:00
|
|
|
const resp = await this.http.postJson(reqUrl.href(), req);
|
2016-10-14 02:13:06 +02:00
|
|
|
|
|
|
|
console.log("session:", refreshSession);
|
|
|
|
console.log("reveal response:", resp);
|
2016-10-17 15:58:36 +02:00
|
|
|
|
2017-05-28 01:10:54 +02:00
|
|
|
if (resp.status !== 200) {
|
2016-10-17 15:58:36 +02:00
|
|
|
console.log("error: /refresh/reveal returned status " + resp.status);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-05-28 01:10:54 +02:00
|
|
|
const respJson = JSON.parse(resp.responseText);
|
2016-10-17 15:58:36 +02:00
|
|
|
|
|
|
|
if (!respJson.ev_sigs || !Array.isArray(respJson.ev_sigs)) {
|
|
|
|
console.log("/refresh/reveal did not contain ev_sigs");
|
|
|
|
}
|
|
|
|
|
2017-05-28 01:10:54 +02:00
|
|
|
const exchange = await this.q().get<ExchangeRecord>(Stores.exchanges,
|
2016-11-15 15:07:17 +01:00
|
|
|
refreshSession.exchangeBaseUrl);
|
2016-10-17 15:58:36 +02:00
|
|
|
if (!exchange) {
|
|
|
|
console.error(`exchange ${refreshSession.exchangeBaseUrl} not found`);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-05-28 01:10:54 +02:00
|
|
|
const coins: CoinRecord[] = [];
|
2016-10-17 23:49:04 +02:00
|
|
|
|
2016-10-17 15:58:36 +02:00
|
|
|
for (let i = 0; i < respJson.ev_sigs.length; i++) {
|
2017-05-28 01:10:54 +02:00
|
|
|
const denom = await (
|
2016-11-16 01:59:39 +01:00
|
|
|
this.q()
|
|
|
|
.get(Stores.denominations,
|
|
|
|
[
|
|
|
|
refreshSession.exchangeBaseUrl,
|
2017-05-28 01:10:54 +02:00
|
|
|
refreshSession.newDenoms[i],
|
2016-11-16 01:59:39 +01:00
|
|
|
]));
|
2016-10-17 15:58:36 +02:00
|
|
|
if (!denom) {
|
|
|
|
console.error("denom not found");
|
|
|
|
continue;
|
|
|
|
}
|
2017-05-28 01:10:54 +02:00
|
|
|
const pc = refreshSession.preCoinsForGammas[refreshSession.norevealIndex!][i];
|
|
|
|
const denomSig = await this.cryptoApi.rsaUnblind(respJson.ev_sigs[i].ev_sig,
|
2016-10-17 15:58:36 +02:00
|
|
|
pc.blindingKey,
|
2016-11-16 01:59:39 +01:00
|
|
|
denom.denomPub);
|
2017-05-28 01:10:54 +02:00
|
|
|
const coin: CoinRecord = {
|
2017-05-01 04:33:47 +02:00
|
|
|
blindingKey: pc.blindingKey,
|
2016-10-17 15:58:36 +02:00
|
|
|
coinPriv: pc.privateKey,
|
2017-05-28 01:10:54 +02:00
|
|
|
coinPub: pc.publicKey,
|
2016-10-17 15:58:36 +02:00
|
|
|
currentAmount: denom.value,
|
2017-05-28 01:10:54 +02:00
|
|
|
denomPub: denom.denomPub,
|
|
|
|
denomSig,
|
2016-10-17 15:58:36 +02:00
|
|
|
exchangeBaseUrl: refreshSession.exchangeBaseUrl,
|
2017-05-28 01:10:54 +02:00
|
|
|
reservePub: undefined,
|
2017-04-13 16:08:41 +02:00
|
|
|
status: CoinStatus.Fresh,
|
2016-10-17 15:58:36 +02:00
|
|
|
};
|
|
|
|
|
2016-10-17 23:49:04 +02:00
|
|
|
coins.push(coin);
|
2016-10-17 15:58:36 +02:00
|
|
|
}
|
2016-10-17 23:49:04 +02:00
|
|
|
|
|
|
|
refreshSession.finished = true;
|
|
|
|
|
|
|
|
await this.q()
|
2016-10-18 01:16:31 +02:00
|
|
|
.putAll(Stores.coins, coins)
|
|
|
|
.put(Stores.refresh, refreshSession)
|
2016-10-17 23:49:04 +02:00
|
|
|
.finish();
|
2017-08-30 17:08:54 +02:00
|
|
|
this.notifier.notify();
|
2016-10-14 02:13:06 +02:00
|
|
|
}
|
|
|
|
|
2016-01-26 17:21:17 +01:00
|
|
|
|
2016-02-11 18:17:02 +01:00
|
|
|
/**
|
|
|
|
* Retrive the full event history for this wallet.
|
|
|
|
*/
|
2016-11-16 01:59:39 +01:00
|
|
|
async getHistory(): Promise<{history: HistoryRecord[]}> {
|
2017-10-15 18:30:02 +02:00
|
|
|
const history: HistoryRecord[] = [];
|
|
|
|
|
|
|
|
// FIXME: do pagination instead of generating the full history
|
|
|
|
|
2018-01-17 03:49:54 +01:00
|
|
|
const proposals = await this.q().iter<ProposalDownloadRecord>(Stores.proposals).toArray();
|
2017-10-15 19:28:35 +02:00
|
|
|
for (const p of proposals) {
|
2017-10-15 18:30:02 +02:00
|
|
|
history.push({
|
|
|
|
detail: {
|
|
|
|
contractTermsHash: p.contractTermsHash,
|
|
|
|
merchantName: p.contractTerms.merchant.name,
|
|
|
|
},
|
2017-10-15 19:28:35 +02:00
|
|
|
timestamp: p.timestamp,
|
|
|
|
type: "offer-contract",
|
2017-10-15 18:30:02 +02:00
|
|
|
});
|
2016-01-24 02:29:13 +01:00
|
|
|
}
|
2016-01-26 17:21:17 +01:00
|
|
|
|
2017-10-15 18:30:02 +02:00
|
|
|
const purchases = await this.q().iter<PurchaseRecord>(Stores.purchases).toArray();
|
2017-10-15 19:28:35 +02:00
|
|
|
for (const p of purchases) {
|
2017-10-15 18:30:02 +02:00
|
|
|
history.push({
|
|
|
|
detail: {
|
|
|
|
amount: p.contractTerms.amount,
|
|
|
|
contractTermsHash: p.contractTermsHash,
|
|
|
|
fulfillmentUrl: p.contractTerms.fulfillment_url,
|
|
|
|
merchantName: p.contractTerms.merchant.name,
|
|
|
|
},
|
2017-10-15 19:28:35 +02:00
|
|
|
timestamp: p.timestamp,
|
|
|
|
type: "pay",
|
2017-10-15 18:30:02 +02:00
|
|
|
});
|
|
|
|
if (p.timestamp_refund) {
|
|
|
|
const amountsPending = Object.keys(p.refundsPending).map((x) => p.refundsPending[x].refund_amount);
|
|
|
|
const amountsDone = Object.keys(p.refundsDone).map((x) => p.refundsDone[x].refund_amount);
|
|
|
|
const amounts: AmountJson[] = amountsPending.concat(amountsDone);
|
|
|
|
const amount = Amounts.add(Amounts.getZero(p.contractTerms.amount.currency), ...amounts).amount;
|
|
|
|
|
|
|
|
history.push({
|
|
|
|
detail: {
|
|
|
|
contractTermsHash: p.contractTermsHash,
|
|
|
|
fulfillmentUrl: p.contractTerms.fulfillment_url,
|
|
|
|
merchantName: p.contractTerms.merchant.name,
|
2017-10-15 19:28:35 +02:00
|
|
|
refundAmount: amount,
|
2017-10-15 18:30:02 +02:00
|
|
|
},
|
2017-10-15 19:28:35 +02:00
|
|
|
timestamp: p.timestamp_refund,
|
|
|
|
type: "refund",
|
2017-10-15 18:30:02 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
2016-09-28 17:52:36 +02:00
|
|
|
|
2017-10-15 18:30:02 +02:00
|
|
|
const reserves: ReserveRecord[] = await this.q().iter<ReserveRecord>(Stores.reserves).toArray();
|
2017-10-15 19:28:35 +02:00
|
|
|
for (const r of reserves) {
|
2017-10-15 18:30:02 +02:00
|
|
|
history.push({
|
|
|
|
detail: {
|
|
|
|
exchangeBaseUrl: r.exchange_base_url,
|
|
|
|
requestedAmount: r.requested_amount,
|
|
|
|
reservePub: r.reserve_pub,
|
|
|
|
},
|
2017-10-15 19:28:35 +02:00
|
|
|
timestamp: r.created,
|
|
|
|
type: "create-reserve",
|
2017-10-15 18:30:02 +02:00
|
|
|
});
|
|
|
|
if (r.timestamp_depleted) {
|
|
|
|
history.push({
|
|
|
|
detail: {
|
|
|
|
exchangeBaseUrl: r.exchange_base_url,
|
|
|
|
requestedAmount: r.requested_amount,
|
|
|
|
reservePub: r.reserve_pub,
|
|
|
|
},
|
2017-10-15 19:28:35 +02:00
|
|
|
timestamp: r.timestamp_depleted,
|
|
|
|
type: "depleted-reserve",
|
2017-10-15 18:30:02 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-12 15:38:03 +01:00
|
|
|
const tips: TipRecord[] = await this.q().iter<TipRecord>(Stores.tips).toArray();
|
|
|
|
for (const tip of tips) {
|
|
|
|
history.push({
|
|
|
|
detail: {
|
2017-12-12 16:51:13 +01:00
|
|
|
accepted: tip.accepted,
|
2018-01-03 14:42:06 +01:00
|
|
|
amount: tip.amount,
|
|
|
|
merchantDomain: tip.merchantDomain,
|
2017-12-12 15:38:03 +01:00
|
|
|
tipId: tip.tipId,
|
|
|
|
},
|
|
|
|
timestamp: tip.timestamp,
|
|
|
|
type: "tip",
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-10-15 18:30:02 +02:00
|
|
|
history.sort((h1, h2) => Math.sign(h1.timestamp - h2.timestamp));
|
2017-10-15 19:28:35 +02:00
|
|
|
|
2016-10-13 02:23:24 +02:00
|
|
|
return {history};
|
2016-10-12 02:55:53 +02:00
|
|
|
}
|
|
|
|
|
2016-11-16 01:59:39 +01:00
|
|
|
async getDenoms(exchangeUrl: string): Promise<DenominationRecord[]> {
|
2017-05-28 01:10:54 +02:00
|
|
|
const denoms = await this.q().iterIndex(Stores.denominations.exchangeBaseUrlIndex, exchangeUrl).toArray();
|
2016-11-16 01:59:39 +01:00
|
|
|
return denoms;
|
|
|
|
}
|
2016-11-13 10:17:39 +01:00
|
|
|
|
2018-01-17 03:49:54 +01:00
|
|
|
async getProposal(proposalId: number): Promise<ProposalDownloadRecord|undefined> {
|
2017-05-31 16:04:14 +02:00
|
|
|
const proposal = await this.q().get(Stores.proposals, proposalId);
|
|
|
|
return proposal;
|
2016-11-13 10:17:39 +01:00
|
|
|
}
|
|
|
|
|
2016-11-15 15:07:17 +01:00
|
|
|
async getExchanges(): Promise<ExchangeRecord[]> {
|
2016-10-13 02:23:24 +02:00
|
|
|
return this.q()
|
2016-11-15 15:07:17 +01:00
|
|
|
.iter<ExchangeRecord>(Stores.exchanges)
|
2016-10-13 02:23:24 +02:00
|
|
|
.toArray();
|
2016-01-24 02:29:13 +01:00
|
|
|
}
|
2016-02-23 14:07:53 +01:00
|
|
|
|
2017-03-24 17:54:22 +01:00
|
|
|
async getCurrencies(): Promise<CurrencyRecord[]> {
|
|
|
|
return this.q()
|
|
|
|
.iter<CurrencyRecord>(Stores.currencies)
|
|
|
|
.toArray();
|
|
|
|
}
|
|
|
|
|
|
|
|
async updateCurrency(currencyRecord: CurrencyRecord): Promise<void> {
|
|
|
|
console.log("updating currency to", currencyRecord);
|
|
|
|
await this.q()
|
|
|
|
.put(Stores.currencies, currencyRecord)
|
|
|
|
.finish();
|
|
|
|
this.notifier.notify();
|
|
|
|
}
|
|
|
|
|
2016-10-13 02:23:24 +02:00
|
|
|
async getReserves(exchangeBaseUrl: string): Promise<ReserveRecord[]> {
|
|
|
|
return this.q()
|
2016-10-18 01:16:31 +02:00
|
|
|
.iter<ReserveRecord>(Stores.reserves)
|
2016-10-13 02:23:24 +02:00
|
|
|
.filter((r: ReserveRecord) => r.exchange_base_url === exchangeBaseUrl)
|
|
|
|
.toArray();
|
2016-10-12 02:55:53 +02:00
|
|
|
}
|
|
|
|
|
2016-11-15 15:07:17 +01:00
|
|
|
async getCoins(exchangeBaseUrl: string): Promise<CoinRecord[]> {
|
2016-10-13 02:23:24 +02:00
|
|
|
return this.q()
|
2016-11-15 15:07:17 +01:00
|
|
|
.iter<CoinRecord>(Stores.coins)
|
|
|
|
.filter((c: CoinRecord) => c.exchangeBaseUrl === exchangeBaseUrl)
|
2016-10-13 02:23:24 +02:00
|
|
|
.toArray();
|
2016-10-12 02:55:53 +02:00
|
|
|
}
|
|
|
|
|
2016-11-15 15:07:17 +01:00
|
|
|
async getPreCoins(exchangeBaseUrl: string): Promise<PreCoinRecord[]> {
|
2016-10-13 02:23:24 +02:00
|
|
|
return this.q()
|
2016-11-15 15:07:17 +01:00
|
|
|
.iter<PreCoinRecord>(Stores.precoins)
|
|
|
|
.filter((c: PreCoinRecord) => c.exchangeBaseUrl === exchangeBaseUrl)
|
2016-10-13 02:23:24 +02:00
|
|
|
.toArray();
|
2016-10-12 02:55:53 +02:00
|
|
|
}
|
|
|
|
|
2017-06-01 18:46:07 +02:00
|
|
|
async hashContract(contract: ContractTerms): Promise<string> {
|
2016-09-28 23:41:34 +02:00
|
|
|
return this.cryptoApi.hashString(canonicalJson(contract));
|
|
|
|
}
|
|
|
|
|
2016-10-17 15:58:36 +02:00
|
|
|
|
2017-04-28 23:28:27 +02:00
|
|
|
async getCurrencyRecord(currency: string): Promise<CurrencyRecord|undefined> {
|
|
|
|
return this.q().get(Stores.currencies, currency);
|
|
|
|
}
|
|
|
|
|
2017-02-13 09:53:34 +01:00
|
|
|
|
2017-05-01 04:05:16 +02:00
|
|
|
async payback(coinPub: string): Promise<void> {
|
|
|
|
let coin = await this.q().get(Stores.coins, coinPub);
|
|
|
|
if (!coin) {
|
|
|
|
throw Error(`Coin ${coinPub} not found, can't request payback`);
|
|
|
|
}
|
2017-05-28 01:10:54 +02:00
|
|
|
const reservePub = coin.reservePub;
|
2017-05-01 04:33:47 +02:00
|
|
|
if (!reservePub) {
|
|
|
|
throw Error(`Can't request payback for a refreshed coin`);
|
2017-05-01 04:05:16 +02:00
|
|
|
}
|
2017-05-28 01:10:54 +02:00
|
|
|
const reserve = await this.q().get(Stores.reserves, reservePub);
|
2017-05-01 04:05:16 +02:00
|
|
|
if (!reserve) {
|
|
|
|
throw Error(`Reserve of coin ${coinPub} not found`);
|
|
|
|
}
|
|
|
|
switch (coin.status) {
|
|
|
|
case CoinStatus.Refreshed:
|
|
|
|
throw Error(`Can't do payback for coin ${coinPub} since it's refreshed`);
|
|
|
|
case CoinStatus.PaybackDone:
|
|
|
|
console.log(`Coin ${coinPub} already payed back`);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
coin.status = CoinStatus.PaybackPending;
|
|
|
|
// Even if we didn't get the payback yet, we suspend withdrawal, since
|
|
|
|
// technically we might update reserve status before we get the response
|
|
|
|
// from the reserve for the payback request.
|
|
|
|
reserve.hasPayback = true;
|
|
|
|
await this.q().put(Stores.coins, coin).put(Stores.reserves, reserve);
|
2017-08-30 17:08:54 +02:00
|
|
|
this.notifier.notify();
|
2017-05-01 04:05:16 +02:00
|
|
|
|
2017-05-28 01:10:54 +02:00
|
|
|
const paybackRequest = await this.cryptoApi.createPaybackRequest(coin);
|
|
|
|
const reqUrl = new URI("payback").absoluteTo(coin.exchangeBaseUrl);
|
|
|
|
const resp = await this.http.postJson(reqUrl.href(), paybackRequest);
|
|
|
|
if (resp.status !== 200) {
|
2017-05-01 04:05:16 +02:00
|
|
|
throw Error();
|
|
|
|
}
|
2017-05-28 01:10:54 +02:00
|
|
|
const paybackConfirmation = PaybackConfirmation.checked(JSON.parse(resp.responseText));
|
|
|
|
if (paybackConfirmation.reserve_pub !== coin.reservePub) {
|
2017-05-01 04:05:16 +02:00
|
|
|
throw Error(`Coin's reserve doesn't match reserve on payback`);
|
|
|
|
}
|
|
|
|
coin = await this.q().get(Stores.coins, coinPub);
|
|
|
|
if (!coin) {
|
|
|
|
throw Error(`Coin ${coinPub} not found, can't confirm payback`);
|
|
|
|
}
|
|
|
|
coin.status = CoinStatus.PaybackDone;
|
|
|
|
await this.q().put(Stores.coins, coin);
|
2017-08-30 17:08:54 +02:00
|
|
|
this.notifier.notify();
|
2017-05-01 04:33:47 +02:00
|
|
|
await this.updateReserve(reservePub!);
|
2017-05-01 04:05:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
async denominationRecordFromKeys(exchangeBaseUrl: string, denomIn: Denomination): Promise<DenominationRecord> {
|
2017-05-28 01:10:54 +02:00
|
|
|
const denomPubHash = await this.cryptoApi.hashDenomPub(denomIn.denom_pub);
|
|
|
|
const d: DenominationRecord = {
|
2017-05-01 04:05:16 +02:00
|
|
|
denomPub: denomIn.denom_pub,
|
2017-05-28 01:10:54 +02:00
|
|
|
denomPubHash,
|
|
|
|
exchangeBaseUrl,
|
2017-05-01 04:05:16 +02:00
|
|
|
feeDeposit: denomIn.fee_deposit,
|
|
|
|
feeRefresh: denomIn.fee_refresh,
|
2017-05-28 01:10:54 +02:00
|
|
|
feeRefund: denomIn.fee_refund,
|
2017-05-01 04:05:16 +02:00
|
|
|
feeWithdraw: denomIn.fee_withdraw,
|
2017-05-28 01:10:54 +02:00
|
|
|
isOffered: true,
|
|
|
|
masterSig: denomIn.master_sig,
|
2017-05-01 04:05:16 +02:00
|
|
|
stampExpireDeposit: denomIn.stamp_expire_deposit,
|
|
|
|
stampExpireLegal: denomIn.stamp_expire_legal,
|
|
|
|
stampExpireWithdraw: denomIn.stamp_expire_withdraw,
|
|
|
|
stampStart: denomIn.stamp_start,
|
|
|
|
status: DenominationStatus.Unverified,
|
|
|
|
value: denomIn.value,
|
|
|
|
};
|
|
|
|
return d;
|
|
|
|
}
|
|
|
|
|
|
|
|
async withdrawPaybackReserve(reservePub: string): Promise<void> {
|
2017-05-28 01:10:54 +02:00
|
|
|
const reserve = await this.q().get(Stores.reserves, reservePub);
|
2017-05-01 04:05:16 +02:00
|
|
|
if (!reserve) {
|
|
|
|
throw Error(`Reserve ${reservePub} does not exist`);
|
|
|
|
}
|
|
|
|
reserve.hasPayback = false;
|
|
|
|
await this.q().put(Stores.reserves, reserve);
|
|
|
|
this.depleteReserve(reserve);
|
|
|
|
}
|
|
|
|
|
|
|
|
async getPaybackReserves(): Promise<ReserveRecord[]> {
|
2017-05-28 01:10:54 +02:00
|
|
|
return await this.q().iter(Stores.reserves).filter((r) => r.hasPayback).toArray();
|
2017-05-01 04:05:16 +02:00
|
|
|
}
|
|
|
|
|
2017-06-05 02:00:03 +02:00
|
|
|
/**
|
|
|
|
* Stop ongoing processing.
|
|
|
|
*/
|
|
|
|
stop() {
|
|
|
|
this.timerGroup.stopCurrentAndFutureTimers();
|
|
|
|
}
|
2017-08-14 04:16:12 +02:00
|
|
|
|
|
|
|
async getSenderWireInfos(): Promise<SenderWireInfos> {
|
|
|
|
const m: { [url: string]: Set<string> } = {};
|
|
|
|
await this.q().iter(Stores.exchangeWireFees).map((x) => {
|
|
|
|
const s = m[x.exchangeBaseUrl] = m[x.exchangeBaseUrl] || new Set();
|
|
|
|
Object.keys(x.feesForType).map((k) => s.add(k));
|
|
|
|
}).run();
|
|
|
|
console.log(m);
|
|
|
|
const exchangeWireTypes: { [url: string]: string[] } = {};
|
|
|
|
Object.keys(m).map((e) => { exchangeWireTypes[e] = Array.from(m[e]); });
|
|
|
|
|
|
|
|
const senderWiresSet = new Set();
|
2018-01-04 11:08:39 +01:00
|
|
|
await this.q().iter(Stores.senderWires).map((x) => {
|
2017-08-14 04:16:12 +02:00
|
|
|
if (x.senderWire) {
|
2017-08-27 04:35:24 +02:00
|
|
|
senderWiresSet.add(canonicalJson(x.senderWire));
|
2017-08-14 04:16:12 +02:00
|
|
|
}
|
|
|
|
}).run();
|
|
|
|
const senderWires = Array.from(senderWiresSet).map((x) => JSON.parse(x));
|
|
|
|
|
|
|
|
return {
|
|
|
|
exchangeWireTypes,
|
|
|
|
senderWires,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Trigger paying coins back into the user's account.
|
|
|
|
*/
|
|
|
|
async returnCoins(req: ReturnCoinsRequest): Promise<void> {
|
|
|
|
console.log("got returnCoins request", req);
|
|
|
|
const wireType = (req.senderWire as any).type;
|
|
|
|
console.log("wireType", wireType);
|
|
|
|
if (!wireType || typeof wireType !== "string") {
|
|
|
|
console.error(`wire type must be a non-empty string, not ${wireType}`);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
const stampSecNow = Math.floor((new Date()).getTime() / 1000);
|
|
|
|
const exchange = await this.q().get(Stores.exchanges, req.exchange);
|
|
|
|
if (!exchange) {
|
|
|
|
console.error(`Exchange ${req.exchange} not known to the wallet`);
|
|
|
|
return;
|
|
|
|
}
|
2017-08-27 05:42:46 +02:00
|
|
|
console.log("selecting coins for return:", req);
|
2017-08-14 04:16:12 +02:00
|
|
|
const cds = await this.getCoinsForReturn(req.exchange, req.amount);
|
|
|
|
console.log(cds);
|
|
|
|
|
|
|
|
if (!cds) {
|
|
|
|
throw Error("coin return impossible, can't select coins");
|
|
|
|
}
|
|
|
|
|
|
|
|
const { priv, pub } = await this.cryptoApi.createEddsaKeypair();
|
|
|
|
|
|
|
|
const wireHash = await this.cryptoApi.hashString(canonicalJson(req.senderWire));
|
|
|
|
|
|
|
|
const contractTerms: ContractTerms = {
|
|
|
|
H_wire: wireHash,
|
|
|
|
amount: req.amount,
|
|
|
|
auditors: [],
|
2017-10-15 19:28:35 +02:00
|
|
|
exchanges: [ { master_pub: exchange.masterPublicKey, url: exchange.baseUrl } ],
|
|
|
|
extra: {},
|
|
|
|
fulfillment_url: "",
|
2017-08-14 04:16:12 +02:00
|
|
|
locations: [],
|
|
|
|
max_fee: req.amount,
|
|
|
|
merchant: {},
|
|
|
|
merchant_pub: pub,
|
2017-10-15 19:28:35 +02:00
|
|
|
order_id: "none",
|
|
|
|
pay_deadline: `/Date(${stampSecNow + 60 * 5})/`,
|
|
|
|
pay_url: "",
|
2017-08-14 04:16:12 +02:00
|
|
|
products: [],
|
|
|
|
refund_deadline: `/Date(${stampSecNow + 60 * 5})/`,
|
|
|
|
timestamp: `/Date(${stampSecNow})/`,
|
2017-10-15 19:28:35 +02:00
|
|
|
wire_method: wireType,
|
2017-08-14 04:16:12 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
const contractTermsHash = await this.cryptoApi.hashString(canonicalJson(contractTerms));
|
|
|
|
|
2018-01-17 05:33:06 +01:00
|
|
|
const payCoinInfo = await this.cryptoApi.signDeposit(contractTerms, cds, contractTerms.amount);
|
2017-08-14 04:16:12 +02:00
|
|
|
|
|
|
|
console.log("pci", payCoinInfo);
|
|
|
|
|
2017-12-12 21:54:14 +01:00
|
|
|
const coins = payCoinInfo.sigs.map((s) => ({ coinPaySig: s }));
|
2017-08-14 04:16:12 +02:00
|
|
|
|
|
|
|
const coinsReturnRecord: CoinsReturnRecord = {
|
|
|
|
coins,
|
|
|
|
contractTerms,
|
|
|
|
contractTermsHash,
|
2017-10-15 19:28:35 +02:00
|
|
|
exchange: exchange.baseUrl,
|
2017-08-14 04:16:12 +02:00
|
|
|
merchantPriv: priv,
|
|
|
|
wire: req.senderWire,
|
2017-10-15 19:28:35 +02:00
|
|
|
};
|
2017-08-14 04:16:12 +02:00
|
|
|
|
|
|
|
await this.q()
|
|
|
|
.put(Stores.coinsReturns, coinsReturnRecord)
|
2017-12-12 21:54:14 +01:00
|
|
|
.putAll(Stores.coins, payCoinInfo.updatedCoins)
|
2017-08-14 04:16:12 +02:00
|
|
|
.finish();
|
2017-12-12 16:39:55 +01:00
|
|
|
this.badge.showNotification();
|
2017-08-30 17:08:54 +02:00
|
|
|
this.notifier.notify();
|
2017-08-14 04:16:12 +02:00
|
|
|
|
|
|
|
this.depositReturnedCoins(coinsReturnRecord);
|
|
|
|
}
|
|
|
|
|
|
|
|
async depositReturnedCoins(coinsReturnRecord: CoinsReturnRecord): Promise<void> {
|
|
|
|
for (const c of coinsReturnRecord.coins) {
|
|
|
|
if (c.depositedSig) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
const req = {
|
|
|
|
H_wire: coinsReturnRecord.contractTerms.H_wire,
|
|
|
|
coin_pub: c.coinPaySig.coin_pub,
|
2017-10-15 19:28:35 +02:00
|
|
|
coin_sig: c.coinPaySig.coin_sig,
|
2018-01-01 18:56:22 +01:00
|
|
|
contribution: c.coinPaySig.contribution,
|
2018-01-03 14:42:06 +01:00
|
|
|
denom_pub: c.coinPaySig.denom_pub,
|
2017-10-15 19:28:35 +02:00
|
|
|
h_contract_terms: coinsReturnRecord.contractTermsHash,
|
|
|
|
merchant_pub: coinsReturnRecord.contractTerms.merchant_pub,
|
2017-08-14 04:16:12 +02:00
|
|
|
pay_deadline: coinsReturnRecord.contractTerms.pay_deadline,
|
|
|
|
refund_deadline: coinsReturnRecord.contractTerms.refund_deadline,
|
2017-10-15 19:28:35 +02:00
|
|
|
timestamp: coinsReturnRecord.contractTerms.timestamp,
|
|
|
|
ub_sig: c.coinPaySig.ub_sig,
|
|
|
|
wire: coinsReturnRecord.wire,
|
|
|
|
wire_transfer_deadline: coinsReturnRecord.contractTerms.pay_deadline,
|
2017-08-14 04:16:12 +02:00
|
|
|
};
|
|
|
|
console.log("req", req);
|
|
|
|
const reqUrl = (new URI("deposit")).absoluteTo(coinsReturnRecord.exchange);
|
|
|
|
const resp = await this.http.postJson(reqUrl.href(), req);
|
|
|
|
if (resp.status !== 200) {
|
|
|
|
console.error("deposit failed due to status code", resp);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
const respJson = JSON.parse(resp.responseText);
|
|
|
|
if (respJson.status !== "DEPOSIT_OK") {
|
|
|
|
console.error("deposit failed", resp);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!respJson.sig) {
|
|
|
|
console.error("invalid 'sig' field", resp);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// FIXME: verify signature
|
|
|
|
|
|
|
|
// For every successful deposit, we replace the old record with an updated one
|
|
|
|
const currentCrr = await this.q().get(Stores.coinsReturns, coinsReturnRecord.contractTermsHash);
|
|
|
|
if (!currentCrr) {
|
|
|
|
console.error("database inconsistent");
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
for (const nc of currentCrr.coins) {
|
|
|
|
if (nc.coinPaySig.coin_pub === c.coinPaySig.coin_pub) {
|
|
|
|
nc.depositedSig = respJson.sig;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
await this.q().put(Stores.coinsReturns, currentCrr);
|
2017-08-30 17:08:54 +02:00
|
|
|
this.notifier.notify();
|
2017-08-14 04:16:12 +02:00
|
|
|
}
|
|
|
|
}
|
2017-08-27 03:56:19 +02:00
|
|
|
|
2018-01-22 01:12:08 +01:00
|
|
|
/**
|
|
|
|
* Accept a refund, return the contract hash for the contract
|
|
|
|
* that was involved in the refund.
|
|
|
|
*/
|
2018-01-17 03:49:54 +01:00
|
|
|
async acceptRefund(refundUrl: string): Promise<string> {
|
|
|
|
console.log("processing refund");
|
|
|
|
let resp;
|
|
|
|
try {
|
|
|
|
const config = {
|
|
|
|
validateStatus: (s: number) => s === 200,
|
|
|
|
};
|
|
|
|
resp = await axios.get(refundUrl, config);
|
|
|
|
} catch (e) {
|
|
|
|
console.log("error downloading refund permission", e);
|
|
|
|
throw e;
|
|
|
|
}
|
|
|
|
|
|
|
|
// FIXME: validate schema
|
2018-01-18 01:37:30 +01:00
|
|
|
const refundPermissions = resp.data.refund_permissions;
|
2018-01-17 03:49:54 +01:00
|
|
|
|
2017-08-27 03:56:19 +02:00
|
|
|
if (!refundPermissions.length) {
|
|
|
|
console.warn("got empty refund list");
|
2018-01-17 03:49:54 +01:00
|
|
|
throw Error("empty refund");
|
2017-08-27 03:56:19 +02:00
|
|
|
}
|
|
|
|
const hc = refundPermissions[0].h_contract_terms;
|
|
|
|
if (!hc) {
|
|
|
|
throw Error("h_contract_terms missing in refund permission");
|
|
|
|
}
|
|
|
|
const m = refundPermissions[0].merchant_pub;
|
|
|
|
if (!hc) {
|
|
|
|
throw Error("merchant_pub missing in refund permission");
|
|
|
|
}
|
|
|
|
for (const perm of refundPermissions) {
|
|
|
|
if (perm.h_contract_terms !== hc) {
|
|
|
|
throw Error("h_contract_terms different in refund permission");
|
|
|
|
}
|
|
|
|
if (perm.merchant_pub !== m) {
|
|
|
|
throw Error("merchant_pub different in refund permission");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add refund to purchase if not already added.
|
|
|
|
*/
|
|
|
|
function f(t: PurchaseRecord|undefined): PurchaseRecord|undefined {
|
|
|
|
if (!t) {
|
|
|
|
console.error("purchase not found, not adding refunds");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-10-15 18:30:02 +02:00
|
|
|
t.timestamp_refund = (new Date()).getTime();
|
|
|
|
|
2017-08-27 03:56:19 +02:00
|
|
|
for (const perm of refundPermissions) {
|
|
|
|
if (!t.refundsPending[perm.merchant_sig] && !t.refundsDone[perm.merchant_sig]) {
|
|
|
|
t.refundsPending[perm.merchant_sig] = perm;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return t;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add the refund permissions to the purchase within a DB transaction
|
|
|
|
await this.q().mutate(Stores.purchases, hc, f).finish();
|
|
|
|
this.notifier.notify();
|
|
|
|
|
|
|
|
// Start submitting it but don't wait for it here.
|
|
|
|
this.submitRefunds(hc);
|
2018-01-17 03:49:54 +01:00
|
|
|
|
|
|
|
return refundPermissions[0].h_contract_terms;
|
2017-08-27 03:56:19 +02:00
|
|
|
}
|
|
|
|
|
2018-01-22 01:12:08 +01:00
|
|
|
|
|
|
|
private async submitRefunds(contractTermsHash: string): Promise<void> {
|
2017-08-27 03:56:19 +02:00
|
|
|
const purchase = await this.q().get(Stores.purchases, contractTermsHash);
|
|
|
|
if (!purchase) {
|
|
|
|
console.error("not submitting refunds, contract terms not found:", contractTermsHash);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
const pendingKeys = Object.keys(purchase.refundsPending);
|
|
|
|
if (pendingKeys.length === 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
for (const pk of pendingKeys) {
|
|
|
|
const perm = purchase.refundsPending[pk];
|
|
|
|
console.log("sending refund permission", perm);
|
2018-01-04 13:22:23 +01:00
|
|
|
// FIXME: not correct once we support multiple exchanges per payment
|
|
|
|
const exchangeUrl = purchase.payReq.coins[0].exchange_url;
|
|
|
|
const reqUrl = (new URI("refund")).absoluteTo(exchangeUrl);
|
2017-08-27 03:56:19 +02:00
|
|
|
const resp = await this.http.postJson(reqUrl.href(), perm);
|
|
|
|
if (resp.status !== 200) {
|
|
|
|
console.error("refund failed", resp);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Transactionally mark successful refunds as done
|
|
|
|
const transformPurchase = (t: PurchaseRecord|undefined): PurchaseRecord|undefined => {
|
|
|
|
if (!t) {
|
|
|
|
console.warn("purchase not found, not updating refund");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (t.refundsPending[pk]) {
|
|
|
|
t.refundsDone[pk] = t.refundsPending[pk];
|
|
|
|
delete t.refundsPending[pk];
|
|
|
|
}
|
|
|
|
return t;
|
|
|
|
};
|
|
|
|
const transformCoin = (c: CoinRecord|undefined): CoinRecord|undefined => {
|
|
|
|
if (!c) {
|
|
|
|
console.warn("coin not found, can't apply refund");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
c.status = CoinStatus.Dirty;
|
|
|
|
c.currentAmount = Amounts.add(c.currentAmount, perm.refund_amount).amount;
|
|
|
|
c.currentAmount = Amounts.sub(c.currentAmount, perm.refund_fee).amount;
|
|
|
|
|
|
|
|
return c;
|
|
|
|
};
|
|
|
|
|
|
|
|
await this.q()
|
|
|
|
.mutate(Stores.purchases, contractTermsHash, transformPurchase)
|
|
|
|
.mutate(Stores.coins, perm.coin_pub, transformCoin)
|
|
|
|
.finish();
|
|
|
|
this.refresh(perm.coin_pub);
|
|
|
|
}
|
|
|
|
|
2017-12-12 16:39:55 +01:00
|
|
|
this.badge.showNotification();
|
2017-08-27 03:56:19 +02:00
|
|
|
this.notifier.notify();
|
|
|
|
}
|
|
|
|
|
|
|
|
async getPurchase(contractTermsHash: string): Promise<PurchaseRecord|undefined> {
|
|
|
|
return this.q().get(Stores.purchases, contractTermsHash);
|
|
|
|
}
|
2017-08-30 17:08:54 +02:00
|
|
|
|
|
|
|
async getFullRefundFees(refundPermissions: RefundPermission[]): Promise<AmountJson> {
|
|
|
|
if (refundPermissions.length === 0) {
|
|
|
|
throw Error("no refunds given");
|
|
|
|
}
|
2017-10-15 19:28:35 +02:00
|
|
|
const coin0 = await this.q().get(Stores.coins, refundPermissions[0].coin_pub);
|
2017-08-30 17:08:54 +02:00
|
|
|
if (!coin0) {
|
|
|
|
throw Error("coin not found");
|
|
|
|
}
|
|
|
|
let feeAcc = Amounts.getZero(refundPermissions[0].refund_amount.currency);
|
|
|
|
|
|
|
|
const denoms = await this.q().iterIndex(Stores.denominations.exchangeBaseUrlIndex, coin0.exchangeBaseUrl).toArray();
|
|
|
|
for (const rp of refundPermissions) {
|
|
|
|
const coin = await this.q().get(Stores.coins, rp.coin_pub);
|
|
|
|
if (!coin) {
|
|
|
|
throw Error("coin not found");
|
|
|
|
}
|
|
|
|
const denom = await this.q().get(Stores.denominations, [coin0.exchangeBaseUrl, coin.denomPub]);
|
|
|
|
if (!denom) {
|
|
|
|
throw Error(`denom not found (${coin.denomPub})`);
|
|
|
|
}
|
|
|
|
// FIXME: this assumes that the refund already happened.
|
|
|
|
// When it hasn't, the refresh cost is inaccurate. To fix this,
|
|
|
|
// we need introduce a flag to tell if a coin was refunded or
|
|
|
|
// refreshed normally (and what about incremental refunds?)
|
|
|
|
const refreshCost = getTotalRefreshCost(denoms, denom, Amounts.sub(rp.refund_amount, rp.refund_fee).amount);
|
|
|
|
feeAcc = Amounts.add(feeAcc, refreshCost, rp.refund_fee).amount;
|
|
|
|
}
|
|
|
|
return feeAcc;
|
|
|
|
}
|
2017-11-30 04:07:36 +01:00
|
|
|
|
|
|
|
/**
|
2018-01-19 01:27:27 +01:00
|
|
|
* Workaround for merchant bug (#5258)
|
2017-11-30 04:07:36 +01:00
|
|
|
*/
|
2018-01-19 01:27:27 +01:00
|
|
|
private tipPickupWorkaround: { [tipId: string]: boolean } = {};
|
2017-11-30 04:07:36 +01:00
|
|
|
|
2018-01-19 01:27:27 +01:00
|
|
|
async processTip(tipToken: TipToken): Promise<TipRecord> {
|
2018-01-17 03:49:54 +01:00
|
|
|
console.log("got tip token", tipToken);
|
|
|
|
|
|
|
|
const deadlineSec = getTalerStampSec(tipToken.expiration);
|
|
|
|
if (!deadlineSec) {
|
|
|
|
throw Error("tipping failed (invalid expiration)");
|
|
|
|
}
|
|
|
|
|
2018-01-19 01:27:27 +01:00
|
|
|
const merchantDomain = new URI(tipToken.pickup_url).origin();
|
|
|
|
let tipRecord = await this.q().get(Stores.tips, [tipToken.tip_id, merchantDomain]);
|
2018-01-17 03:49:54 +01:00
|
|
|
|
2018-01-19 01:27:27 +01:00
|
|
|
if (tipRecord && tipRecord.pickedUp) {
|
|
|
|
return tipRecord;
|
2018-01-17 03:49:54 +01:00
|
|
|
}
|
2018-01-19 01:27:27 +01:00
|
|
|
await this.updateExchangeFromUrl(tipToken.exchange_url);
|
|
|
|
const denomsForWithdraw = await this.getVerifiedWithdrawDenomList(tipToken.exchange_url, tipToken.amount);
|
|
|
|
const planchets = await Promise.all(denomsForWithdraw.map(d => this.cryptoApi.createTipPlanchet(d)));
|
|
|
|
const coinPubs: string[] = planchets.map(x => x.coinPub);
|
|
|
|
const now = (new Date()).getTime();
|
|
|
|
tipRecord = {
|
|
|
|
accepted: false,
|
|
|
|
amount: tipToken.amount,
|
|
|
|
coinPubs,
|
|
|
|
deadline: deadlineSec,
|
|
|
|
exchangeUrl: tipToken.exchange_url,
|
|
|
|
merchantDomain,
|
|
|
|
nextUrl: tipToken.next_url,
|
|
|
|
pickedUp: false,
|
|
|
|
planchets,
|
|
|
|
timestamp: now,
|
|
|
|
tipId: tipToken.tip_id,
|
|
|
|
};
|
|
|
|
|
|
|
|
// Planchets in the form that the merchant expects
|
|
|
|
const planchetsDetail: TipPlanchetDetail[] = tipRecord.planchets.map((p) => ({
|
|
|
|
coin_ev: p.coinEv,
|
|
|
|
denom_pub_hash: p.denomPubHash,
|
|
|
|
}));
|
2018-01-17 03:49:54 +01:00
|
|
|
|
|
|
|
let merchantResp;
|
|
|
|
|
2018-01-19 01:27:27 +01:00
|
|
|
await this.q().put(Stores.tips, tipRecord).finish();
|
|
|
|
|
|
|
|
if (this.tipPickupWorkaround[tipRecord.tipId]) {
|
|
|
|
// Be careful to not accidentally download twice (#5258)
|
|
|
|
return tipRecord;
|
|
|
|
}
|
|
|
|
|
2018-01-17 03:49:54 +01:00
|
|
|
try {
|
|
|
|
const config = {
|
|
|
|
validateStatus: (s: number) => s === 200,
|
|
|
|
};
|
2018-01-19 01:27:27 +01:00
|
|
|
const req = { planchets: planchetsDetail, tip_id: tipToken.tip_id };
|
2018-01-17 03:49:54 +01:00
|
|
|
merchantResp = await axios.post(tipToken.pickup_url, req, config);
|
|
|
|
} catch (e) {
|
|
|
|
console.log("tipping failed", e);
|
|
|
|
throw e;
|
|
|
|
}
|
|
|
|
|
2018-01-19 01:27:27 +01:00
|
|
|
this.tipPickupWorkaround[tipToken.tip_id] = true;
|
2018-01-17 03:49:54 +01:00
|
|
|
|
2018-01-19 01:27:27 +01:00
|
|
|
const response = TipResponse.checked(merchantResp.data);
|
2018-01-17 03:49:54 +01:00
|
|
|
|
2017-11-30 04:07:36 +01:00
|
|
|
if (response.reserve_sigs.length !== tipRecord.planchets.length) {
|
|
|
|
throw Error("number of tip responses does not match requested planchets");
|
|
|
|
}
|
|
|
|
|
|
|
|
for (let i = 0; i < tipRecord.planchets.length; i++) {
|
2018-01-03 14:42:06 +01:00
|
|
|
const planchet = tipRecord.planchets[i];
|
|
|
|
const preCoin = {
|
|
|
|
blindingKey: planchet.blindingKey,
|
2017-11-30 04:07:36 +01:00
|
|
|
coinEv: planchet.coinEv,
|
2018-01-03 14:42:06 +01:00
|
|
|
coinPriv: planchet.coinPriv,
|
|
|
|
coinPub: planchet.coinPub,
|
2017-11-30 04:07:36 +01:00
|
|
|
coinValue: planchet.coinValue,
|
|
|
|
denomPub: planchet.denomPub,
|
|
|
|
exchangeBaseUrl: tipRecord.exchangeUrl,
|
|
|
|
isFromTip: true,
|
2018-01-03 14:42:06 +01:00
|
|
|
reservePub: response.reserve_pub,
|
|
|
|
withdrawSig: response.reserve_sigs[i].reserve_sig,
|
2017-11-30 04:07:36 +01:00
|
|
|
};
|
|
|
|
await this.q().put(Stores.precoins, preCoin);
|
|
|
|
this.processPreCoin(preCoin);
|
|
|
|
}
|
2018-01-19 01:27:27 +01:00
|
|
|
|
|
|
|
tipRecord.pickedUp = true;
|
|
|
|
|
|
|
|
await this.q().put(Stores.tips, tipRecord).finish();
|
|
|
|
|
|
|
|
return tipRecord;
|
2017-11-30 04:07:36 +01:00
|
|
|
}
|
|
|
|
|
2018-01-19 01:27:27 +01:00
|
|
|
|
2017-11-30 04:07:36 +01:00
|
|
|
/**
|
|
|
|
* Start using the coins from a tip.
|
|
|
|
*/
|
2018-01-19 01:27:27 +01:00
|
|
|
async acceptTip(tipToken: TipToken): Promise<void> {
|
|
|
|
const tipId = tipToken.tip_id;
|
|
|
|
const merchantDomain = new URI(tipToken.pickup_url).origin();
|
2017-11-30 04:07:36 +01:00
|
|
|
const tipRecord = await this.q().get(Stores.tips, [tipId, merchantDomain]);
|
|
|
|
if (!tipRecord) {
|
|
|
|
throw Error("tip not found");
|
|
|
|
}
|
|
|
|
tipRecord.accepted = true;
|
|
|
|
|
|
|
|
// Create one transactional query, within this transaction
|
|
|
|
// both the tip will be marked as accepted and coins
|
|
|
|
// already withdrawn will be untainted.
|
|
|
|
const q = this.q();
|
|
|
|
|
|
|
|
q.put(Stores.tips, tipRecord);
|
|
|
|
|
|
|
|
const updateCoin = (c: CoinRecord) => {
|
|
|
|
if (c.status === CoinStatus.TainedByTip) {
|
|
|
|
c.status = CoinStatus.Fresh;
|
|
|
|
}
|
|
|
|
return c;
|
|
|
|
};
|
|
|
|
|
|
|
|
for (const coinPub of tipRecord.coinPubs) {
|
|
|
|
q.mutate(Stores.coins, coinPub, updateCoin);
|
|
|
|
}
|
|
|
|
|
|
|
|
await q.finish();
|
2017-12-12 16:39:55 +01:00
|
|
|
this.badge.showNotification();
|
2017-11-30 04:07:36 +01:00
|
|
|
this.notifier.notify();
|
|
|
|
}
|
|
|
|
|
2018-01-19 01:27:27 +01:00
|
|
|
|
|
|
|
async getTipStatus(tipToken: TipToken): Promise<TipStatus> {
|
|
|
|
const tipRecord = await this.processTip(tipToken);
|
2017-11-30 04:07:36 +01:00
|
|
|
const rci = await this.getReserveCreationInfo(tipRecord.exchangeUrl, tipRecord.amount);
|
|
|
|
const tipStatus: TipStatus = {
|
|
|
|
rci,
|
|
|
|
tip: tipRecord,
|
|
|
|
};
|
|
|
|
return tipStatus;
|
|
|
|
}
|
2017-12-10 21:34:56 +01:00
|
|
|
|
2018-01-17 03:49:54 +01:00
|
|
|
|
2018-01-18 01:37:30 +01:00
|
|
|
/**
|
|
|
|
* Synchronously get the paid URL for a resource from the plain fulfillment
|
|
|
|
* URL. Returns undefined if the fulfillment URL is not a resource that was
|
|
|
|
* payed for, or if it is not cached anymore. Use the asynchronous
|
|
|
|
* queryPaymentByFulfillmentUrl to avoid false negatives.
|
|
|
|
*/
|
2018-01-18 02:50:18 +01:00
|
|
|
getNextUrlFromResourceUrl(resourceUrl: string): NextUrlResult | undefined {
|
2018-01-18 01:37:30 +01:00
|
|
|
return this.cachedNextUrl[resourceUrl];
|
2018-01-17 03:49:54 +01:00
|
|
|
}
|
|
|
|
|
2017-12-10 21:34:56 +01:00
|
|
|
/**
|
|
|
|
* Remove unreferenced / expired data from the wallet's database
|
|
|
|
* based on the current system time.
|
|
|
|
*/
|
|
|
|
async collectGarbage() {
|
|
|
|
const nowMilli = (new Date()).getTime();
|
|
|
|
const nowSec = Math.floor(nowMilli / 1000);
|
|
|
|
|
|
|
|
const gcReserve = (r: ReserveRecord, n: number) => {
|
|
|
|
// This rule to purge reserves is a bit over-eager, since we still might
|
|
|
|
// receive an emergency payback from the exchange. In this case we need
|
|
|
|
// to wait for the exchange to wire the money back or change this rule to
|
|
|
|
// wait until all coins from the reserve were spent.
|
|
|
|
if (r.timestamp_depleted) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
};
|
|
|
|
await this.q().deleteIf(Stores.reserves, gcReserve).finish();
|
|
|
|
|
2018-01-17 03:49:54 +01:00
|
|
|
const gcProposal = (d: ProposalDownloadRecord, n: number) => {
|
2017-12-10 21:34:56 +01:00
|
|
|
// Delete proposal after 60 minutes or 5 minutes before pay deadline,
|
|
|
|
// whatever comes first.
|
2018-01-03 14:42:06 +01:00
|
|
|
const deadlinePayMilli = getTalerStampSec(d.contractTerms.pay_deadline)! * 1000;
|
|
|
|
const deadlineExpireMilli = nowMilli + (1000 * 60 * 60);
|
2017-12-10 21:34:56 +01:00
|
|
|
return d.timestamp < Math.min(deadlinePayMilli, deadlineExpireMilli);
|
|
|
|
};
|
|
|
|
await this.q().deleteIf(Stores.proposals, gcProposal).finish();
|
|
|
|
|
|
|
|
const activeExchanges: string[] = [];
|
|
|
|
const gcExchange = (d: ExchangeRecord, n: number) => {
|
|
|
|
// Delete if if unused and last update more than 20 minutes ago
|
|
|
|
if (!d.lastUsedTime && nowMilli > d.lastUpdateTime + (1000 * 60 * 20)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
activeExchanges.push(d.baseUrl);
|
|
|
|
return false;
|
2018-01-03 14:42:06 +01:00
|
|
|
};
|
2017-12-10 21:34:56 +01:00
|
|
|
|
|
|
|
await this.q().deleteIf(Stores.exchanges, gcExchange).finish();
|
|
|
|
|
|
|
|
const gcDenominations = (d: DenominationRecord, n: number) => {
|
|
|
|
if (nowSec > getTalerStampSec(d.stampExpireDeposit)!) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (activeExchanges.indexOf(d.exchangeBaseUrl) < 0) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
};
|
|
|
|
await this.q().deleteIf(Stores.denominations, gcDenominations).finish();
|
|
|
|
|
|
|
|
const gcWireFees = (r: ExchangeWireFeesRecord, n: number) => {
|
|
|
|
if (activeExchanges.indexOf(r.exchangeBaseUrl) < 0) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
};
|
|
|
|
await this.q().deleteIf(Stores.exchangeWireFees, gcWireFees).finish();
|
|
|
|
|
|
|
|
|
|
|
|
// FIXME(#5210) also GC coins
|
|
|
|
}
|
2017-12-12 16:39:55 +01:00
|
|
|
|
|
|
|
clearNotification(): void {
|
|
|
|
this.badge.clearNotification();
|
|
|
|
}
|
2016-10-18 01:16:31 +02:00
|
|
|
}
|