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
|
|
|
|
TALER; see the file COPYING. If not, If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*/
|
|
|
|
|
2016-01-05 15:42:46 +01:00
|
|
|
/**
|
|
|
|
* High-level wallet operations that should be indepentent from the underlying
|
|
|
|
* browser extension interface.
|
|
|
|
* @module Wallet
|
|
|
|
* @author Florian Dold
|
|
|
|
*/
|
|
|
|
|
2016-01-10 20:07:42 +01:00
|
|
|
import {Amount} from "./emscriptif"
|
|
|
|
import {AmountJson_interface} from "./types";
|
|
|
|
import {CoinWithDenom} from "./types";
|
|
|
|
import {DepositRequestPS_Args} from "./emscriptif";
|
|
|
|
import {HashCode} from "./emscriptif";
|
|
|
|
import {EddsaPublicKey} from "./emscriptif";
|
|
|
|
import {Coin} from "./types";
|
|
|
|
import {AbsoluteTimeNbo} from "./emscriptif";
|
|
|
|
import {UInt64} from "./emscriptif";
|
|
|
|
import {DepositRequestPS} from "./emscriptif";
|
|
|
|
import {eddsaSign} from "./emscriptif";
|
|
|
|
import {EddsaPrivateKey} from "./emscriptif";
|
|
|
|
import {ConfirmReserveRequest} from "./types";
|
|
|
|
import {ConfirmReserveResponse} from "./types";
|
|
|
|
import {RsaPublicKey} from "./emscriptif";
|
|
|
|
import {Denomination} from "./types";
|
|
|
|
import {RsaBlindingKey} from "./emscriptif";
|
|
|
|
import {ByteArray} from "./emscriptif";
|
|
|
|
import {rsaBlind} from "./emscriptif";
|
|
|
|
import {WithdrawRequestPS} from "./emscriptif";
|
|
|
|
import {PreCoin} from "./types";
|
|
|
|
import {rsaUnblind} from "./emscriptif";
|
|
|
|
import {RsaSignature} from "./emscriptif";
|
|
|
|
import {Mint} from "./types";
|
|
|
|
import {Checkable} from "./checkable";
|
|
|
|
import {HttpResponse} from "./http";
|
|
|
|
import {RequestException} from "./http";
|
|
|
|
import {Query} from "./query";
|
2016-01-05 15:42:46 +01:00
|
|
|
|
2016-01-05 18:37:21 +01:00
|
|
|
"use strict";
|
2015-12-13 23:47:30 +01:00
|
|
|
|
2016-01-05 18:37:21 +01:00
|
|
|
@Checkable.Class
|
|
|
|
class AmountJson {
|
|
|
|
@Checkable.Number
|
|
|
|
value: number;
|
|
|
|
|
|
|
|
@Checkable.Number
|
|
|
|
fraction: number;
|
|
|
|
|
|
|
|
@Checkable.String
|
|
|
|
currency: string;
|
|
|
|
|
|
|
|
static check: (v: any) => AmountJson;
|
|
|
|
}
|
|
|
|
|
2016-01-05 20:09:15 +01:00
|
|
|
|
|
|
|
@Checkable.Class
|
|
|
|
class CoinPaySig {
|
|
|
|
@Checkable.String
|
|
|
|
coin_sig: string;
|
|
|
|
|
|
|
|
@Checkable.String
|
|
|
|
coin_pub: string;
|
|
|
|
|
|
|
|
@Checkable.String
|
|
|
|
ub_sig: string;
|
|
|
|
|
|
|
|
@Checkable.String
|
|
|
|
denom_pub: string;
|
|
|
|
|
|
|
|
@Checkable.Value(AmountJson)
|
|
|
|
f: AmountJson;
|
|
|
|
|
|
|
|
static check: (v: any) => CoinPaySig;
|
|
|
|
}
|
|
|
|
|
2015-12-13 23:47:30 +01:00
|
|
|
|
2015-12-17 13:30:34 +01:00
|
|
|
interface ConfirmPayRequest {
|
2015-12-17 22:56:24 +01:00
|
|
|
merchantPageUrl: string;
|
|
|
|
offer: Offer;
|
|
|
|
}
|
|
|
|
|
|
|
|
interface MintCoins {
|
2016-01-10 20:07:42 +01:00
|
|
|
[mintUrl: string]: CoinWithDenom[];
|
2015-12-17 22:56:24 +01:00
|
|
|
}
|
|
|
|
|
2016-01-05 01:10:31 +01:00
|
|
|
|
|
|
|
interface MintInfo {
|
|
|
|
master_pub: string;
|
|
|
|
url: string;
|
|
|
|
}
|
|
|
|
|
2015-12-17 22:56:24 +01:00
|
|
|
interface Offer {
|
|
|
|
contract: Contract;
|
|
|
|
sig: string;
|
|
|
|
H_contract: string;
|
2015-12-20 20:05:06 +01:00
|
|
|
pay_url: string;
|
|
|
|
exec_url: string;
|
2015-12-17 22:56:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
interface Contract {
|
|
|
|
H_wire: string;
|
2016-01-05 18:37:21 +01:00
|
|
|
amount: AmountJson_interface;
|
2015-12-17 22:56:24 +01:00
|
|
|
auditors: string[];
|
|
|
|
expiry: string,
|
|
|
|
locations: string[];
|
2016-01-05 18:37:21 +01:00
|
|
|
max_fee: AmountJson_interface;
|
2015-12-17 22:56:24 +01:00
|
|
|
merchant: any;
|
|
|
|
merchant_pub: string;
|
|
|
|
mints: MintInfo[];
|
|
|
|
products: string[];
|
|
|
|
refund_deadline: string;
|
|
|
|
timestamp: string;
|
|
|
|
transaction_id: number;
|
|
|
|
}
|
|
|
|
|
2016-01-05 20:09:15 +01:00
|
|
|
|
|
|
|
interface CoinPaySig_interface {
|
2015-12-17 22:56:24 +01:00
|
|
|
coin_sig: string;
|
|
|
|
coin_pub: string;
|
|
|
|
ub_sig: string;
|
|
|
|
denom_pub: string;
|
2016-01-05 18:37:21 +01:00
|
|
|
f: AmountJson_interface;
|
2015-12-17 22:56:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-01-05 01:10:31 +01:00
|
|
|
interface Transaction {
|
|
|
|
contractHash: string;
|
|
|
|
contract: any;
|
|
|
|
payUrl: string;
|
|
|
|
payReq: any;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
interface Reserve {
|
|
|
|
mint_base_url: string
|
|
|
|
reserve_priv: string;
|
|
|
|
reserve_pub: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-01-06 15:39:22 +01:00
|
|
|
interface PaymentResponse {
|
|
|
|
payUrl: string;
|
|
|
|
payReq: any;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-01-10 20:07:42 +01:00
|
|
|
export interface Badge {
|
|
|
|
setText(s: string): void;
|
|
|
|
setColor(c: string): void;
|
2016-01-06 15:39:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-01-10 20:07:42 +01:00
|
|
|
type PayCoinInfo = Array<{ updatedCoin: Coin, sig: CoinPaySig_interface }>;
|
2015-12-17 22:56:24 +01:00
|
|
|
|
|
|
|
|
2016-01-05 01:10:31 +01:00
|
|
|
/**
|
|
|
|
* See http://api.taler.net/wallet.html#general
|
|
|
|
*/
|
|
|
|
function canonicalizeBaseUrl(url) {
|
|
|
|
let x = new URI(url);
|
|
|
|
if (!x.protocol()) {
|
|
|
|
x.protocol("https");
|
|
|
|
}
|
|
|
|
x.path(x.path() + "/").normalizePath();
|
|
|
|
x.fragment();
|
|
|
|
x.query();
|
|
|
|
return x.href()
|
|
|
|
}
|
|
|
|
|
2016-01-24 02:29:13 +01:00
|
|
|
function parsePrettyAmount(pretty: string): AmountJson_interface {
|
|
|
|
const res = /([0-9]+)(.[0-9]+)?\s*(\w+)/.exec(pretty);
|
|
|
|
if (!res) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
return {
|
|
|
|
value: parseInt(res[1], 10),
|
|
|
|
fraction: res[2] ? (parseFloat(`0.${res[2]}`) * 1e-6) : 0,
|
|
|
|
currency: res[3]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-06 15:58:18 +01:00
|
|
|
|
2016-01-06 15:39:22 +01:00
|
|
|
interface HttpRequestLibrary {
|
2016-01-06 15:58:18 +01:00
|
|
|
req(method: string,
|
|
|
|
url: string|uri.URI,
|
|
|
|
options?: any): Promise<HttpResponse>;
|
|
|
|
|
|
|
|
get(url: string|uri.URI): Promise<HttpResponse>;
|
2016-01-05 01:10:31 +01:00
|
|
|
|
2016-01-06 15:58:18 +01:00
|
|
|
postJson(url: string|uri.URI, body): Promise<HttpResponse>;
|
|
|
|
|
|
|
|
postForm(url: string|uri.URI, form): Promise<HttpResponse>;
|
2016-01-06 15:39:22 +01:00
|
|
|
}
|
2015-12-17 22:56:24 +01:00
|
|
|
|
|
|
|
|
2016-01-06 15:39:22 +01:00
|
|
|
function copy(o) {
|
|
|
|
return JSON.parse(JSON.stringify(o));
|
2015-12-17 22:56:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-01-06 15:39:22 +01:00
|
|
|
function rankDenom(denom1: any, denom2: any) {
|
|
|
|
// Slow ... we should find a better way than to convert it evert time.
|
|
|
|
let v1 = new Amount(denom1.value);
|
|
|
|
let v2 = new Amount(denom2.value);
|
|
|
|
return (-1) * v1.cmp(v2);
|
|
|
|
}
|
2015-12-17 22:56:24 +01:00
|
|
|
|
|
|
|
|
2016-01-10 20:07:42 +01:00
|
|
|
export class Wallet {
|
2016-01-06 15:39:22 +01:00
|
|
|
private db: IDBDatabase;
|
|
|
|
private http: HttpRequestLibrary;
|
|
|
|
private badge: Badge;
|
2016-01-05 14:20:13 +01:00
|
|
|
|
2016-01-06 15:39:22 +01:00
|
|
|
constructor(db: IDBDatabase, http: HttpRequestLibrary, badge: Badge) {
|
|
|
|
this.db = db;
|
|
|
|
this.http = http;
|
|
|
|
this.badge = badge;
|
2016-01-05 14:20:13 +01:00
|
|
|
}
|
|
|
|
|
2016-01-06 15:39:22 +01:00
|
|
|
static signDeposit(offer: Offer,
|
2016-01-10 20:07:42 +01:00
|
|
|
cds: CoinWithDenom[]): PayCoinInfo {
|
2016-01-06 15:39:22 +01:00
|
|
|
let ret = [];
|
|
|
|
let amountSpent = Amount.getZero(cds[0].coin.currentAmount.currency);
|
|
|
|
let amountRemaining = new Amount(offer.contract.amount);
|
|
|
|
cds = copy(cds);
|
|
|
|
for (let cd of cds) {
|
|
|
|
let coinSpend;
|
|
|
|
|
|
|
|
if (amountRemaining.value == 0 && amountRemaining.fraction == 0) {
|
|
|
|
break;
|
2016-01-05 14:20:13 +01:00
|
|
|
}
|
2015-12-17 13:30:34 +01:00
|
|
|
|
2016-01-06 15:39:22 +01:00
|
|
|
if (amountRemaining.cmp(new Amount(cd.coin.currentAmount)) < 0) {
|
|
|
|
coinSpend = new Amount(amountRemaining.toJson());
|
|
|
|
} else {
|
|
|
|
coinSpend = new Amount(cd.coin.currentAmount);
|
2015-12-17 22:56:24 +01:00
|
|
|
}
|
2015-12-13 23:47:30 +01:00
|
|
|
|
2016-01-06 15:39:22 +01:00
|
|
|
amountSpent.add(coinSpend);
|
|
|
|
amountRemaining.sub(coinSpend);
|
|
|
|
|
|
|
|
let newAmount = new Amount(cd.coin.currentAmount);
|
|
|
|
newAmount.sub(coinSpend);
|
|
|
|
cd.coin.currentAmount = newAmount.toJson();
|
|
|
|
|
|
|
|
let args: DepositRequestPS_Args = {
|
|
|
|
h_contract: HashCode.fromCrock(offer.H_contract),
|
|
|
|
h_wire: HashCode.fromCrock(offer.contract.H_wire),
|
|
|
|
amount_with_fee: coinSpend.toNbo(),
|
|
|
|
coin_pub: EddsaPublicKey.fromCrock(cd.coin.coinPub),
|
|
|
|
deposit_fee: new Amount(cd.denom.fee_deposit).toNbo(),
|
|
|
|
merchant: EddsaPublicKey.fromCrock(offer.contract.merchant_pub),
|
|
|
|
refund_deadline: AbsoluteTimeNbo.fromTalerString(offer.contract.refund_deadline),
|
|
|
|
timestamp: AbsoluteTimeNbo.fromTalerString(offer.contract.timestamp),
|
|
|
|
transaction_id: UInt64.fromNumber(offer.contract.transaction_id),
|
|
|
|
};
|
2015-12-17 22:56:24 +01:00
|
|
|
|
2016-01-06 15:39:22 +01:00
|
|
|
let d = new DepositRequestPS(args);
|
2015-12-20 20:05:06 +01:00
|
|
|
|
2016-01-06 15:39:22 +01:00
|
|
|
let coinSig = eddsaSign(d.toPurpose(),
|
|
|
|
EddsaPrivateKey.fromCrock(cd.coin.coinPriv))
|
|
|
|
.toCrock();
|
2015-12-20 20:05:06 +01:00
|
|
|
|
2016-01-06 15:39:22 +01:00
|
|
|
let s: CoinPaySig_interface = {
|
|
|
|
coin_sig: coinSig,
|
|
|
|
coin_pub: cd.coin.coinPub,
|
|
|
|
ub_sig: cd.coin.denomSig,
|
|
|
|
denom_pub: cd.coin.denomPub,
|
|
|
|
f: coinSpend.toJson(),
|
2015-12-13 23:47:30 +01:00
|
|
|
};
|
2016-01-06 15:39:22 +01:00
|
|
|
ret.push({sig: s, updatedCoin: cd.coin});
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
2016-01-05 14:20:13 +01:00
|
|
|
|
|
|
|
|
2016-01-06 15:39:22 +01:00
|
|
|
/**
|
|
|
|
* Get mints and associated coins that are still spendable,
|
|
|
|
* but only if the sum the coins' remaining value exceeds the payment amount.
|
|
|
|
* @param paymentAmount
|
|
|
|
* @param depositFeeLimit
|
|
|
|
* @param allowedMints
|
|
|
|
*/
|
|
|
|
getPossibleMintCoins(paymentAmount: AmountJson_interface,
|
|
|
|
depositFeeLimit: AmountJson_interface,
|
|
|
|
allowedMints: MintInfo[]): Promise<MintCoins> {
|
2016-01-05 14:20:13 +01:00
|
|
|
|
2015-12-13 23:47:30 +01:00
|
|
|
|
2016-01-06 15:39:22 +01:00
|
|
|
let m: MintCoins = {};
|
2015-12-13 23:47:30 +01:00
|
|
|
|
2016-01-06 15:39:22 +01:00
|
|
|
function storeMintCoin(mc) {
|
|
|
|
let mint = mc[0];
|
|
|
|
let coin = mc[1];
|
|
|
|
let cd = {
|
|
|
|
coin: coin,
|
|
|
|
denom: mint.keys.denoms.find((e) => e.denom_pub === coin.denomPub)
|
|
|
|
};
|
|
|
|
if (!cd.denom) {
|
|
|
|
throw Error("denom not found (database inconsistent)");
|
|
|
|
}
|
|
|
|
let x = m[mint.baseUrl];
|
|
|
|
if (!x) {
|
|
|
|
m[mint.baseUrl] = [cd];
|
|
|
|
} else {
|
|
|
|
x.push(cd);
|
|
|
|
}
|
|
|
|
}
|
2015-12-13 23:47:30 +01:00
|
|
|
|
2016-01-06 15:39:22 +01:00
|
|
|
let ps = allowedMints.map((info) => {
|
|
|
|
return Query(this.db)
|
2016-01-24 02:29:13 +01:00
|
|
|
.iter("mints", {indexName: "pubKey", only: info.master_pub})
|
2016-01-06 15:39:22 +01:00
|
|
|
.indexJoin("coins", "mintBaseUrl", (mint) => mint.baseUrl)
|
|
|
|
.reduce(storeMintCoin);
|
|
|
|
});
|
2015-12-13 23:47:30 +01:00
|
|
|
|
2016-01-06 15:39:22 +01:00
|
|
|
return Promise.all(ps).then(() => {
|
|
|
|
let ret: MintCoins = {};
|
|
|
|
|
|
|
|
nextMint:
|
|
|
|
for (let key in m) {
|
|
|
|
let coins = m[key].map((x) => ({
|
|
|
|
a: new Amount(x.denom.fee_deposit),
|
|
|
|
c: x
|
|
|
|
}));
|
|
|
|
// Sort by ascending deposit fee
|
|
|
|
coins.sort((o1, o2) => o1.a.cmp(o2.a));
|
|
|
|
let maxFee = new Amount(depositFeeLimit);
|
|
|
|
let minAmount = new Amount(paymentAmount);
|
|
|
|
let accFee = new Amount(coins[0].c.denom.fee_deposit);
|
|
|
|
let accAmount = Amount.getZero(coins[0].c.coin.currentAmount.currency);
|
2016-01-10 20:07:42 +01:00
|
|
|
let usableCoins: CoinWithDenom[] = [];
|
2016-01-06 15:39:22 +01:00
|
|
|
nextCoin:
|
|
|
|
for (let i = 0; i < coins.length; i++) {
|
|
|
|
let coinAmount = new Amount(coins[i].c.coin.currentAmount);
|
|
|
|
let coinFee = coins[i].a;
|
|
|
|
if (coinAmount.cmp(coinFee) <= 0) {
|
|
|
|
continue nextCoin;
|
|
|
|
}
|
|
|
|
accFee.add(coinFee);
|
|
|
|
accAmount.add(coinAmount);
|
|
|
|
if (accFee.cmp(maxFee) >= 0) {
|
|
|
|
console.log("too much fees");
|
|
|
|
continue nextMint;
|
|
|
|
}
|
|
|
|
usableCoins.push(coins[i].c);
|
|
|
|
if (accAmount.cmp(minAmount) >= 0) {
|
|
|
|
ret[key] = usableCoins;
|
|
|
|
continue nextMint;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
});
|
|
|
|
}
|
2015-12-13 23:47:30 +01:00
|
|
|
|
|
|
|
|
2016-01-06 15:39:22 +01:00
|
|
|
executePay(offer: Offer,
|
|
|
|
payCoinInfo: PayCoinInfo,
|
|
|
|
merchantBaseUrl: string,
|
|
|
|
chosenMint: string): Promise<void> {
|
|
|
|
let payReq = {};
|
|
|
|
payReq["H_wire"] = offer.contract.H_wire;
|
|
|
|
payReq["H_contract"] = offer.H_contract;
|
|
|
|
payReq["transaction_id"] = offer.contract.transaction_id;
|
|
|
|
payReq["refund_deadline"] = offer.contract.refund_deadline;
|
|
|
|
payReq["mint"] = URI(chosenMint).href();
|
|
|
|
payReq["coins"] = payCoinInfo.map((x) => x.sig);
|
|
|
|
payReq["timestamp"] = offer.contract.timestamp;
|
|
|
|
let payUrl = URI(offer.pay_url).absoluteTo(merchantBaseUrl);
|
|
|
|
let t: Transaction = {
|
|
|
|
contractHash: offer.H_contract,
|
|
|
|
contract: offer.contract,
|
|
|
|
payUrl: payUrl.href(),
|
|
|
|
payReq: payReq
|
|
|
|
};
|
2015-12-14 16:54:47 +01:00
|
|
|
|
2016-01-24 02:29:13 +01:00
|
|
|
|
|
|
|
let historyEntry = {
|
|
|
|
type: "pay",
|
|
|
|
timestamp: (new Date).getTime(),
|
|
|
|
detail: {
|
|
|
|
merchantName: offer.contract.merchant.name,
|
|
|
|
amount: offer.contract.amount,
|
|
|
|
contractHash: offer.H_contract
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-01-06 15:39:22 +01:00
|
|
|
return Query(this.db)
|
|
|
|
.put("transactions", t)
|
2016-01-24 02:29:13 +01:00
|
|
|
.put("history", historyEntry)
|
2016-01-06 15:39:22 +01:00
|
|
|
.putAll("coins", payCoinInfo.map((pci) => pci.updatedCoin))
|
|
|
|
.finish();
|
|
|
|
}
|
2015-12-14 16:54:47 +01:00
|
|
|
|
2016-01-06 15:39:22 +01:00
|
|
|
confirmPay(offer: Offer, merchantPageUrl: string): Promise<any> {
|
|
|
|
return Promise.resolve().then(() => {
|
|
|
|
return this.getPossibleMintCoins(offer.contract.amount,
|
|
|
|
offer.contract.max_fee,
|
|
|
|
offer.contract.mints)
|
|
|
|
}).then((mcs) => {
|
|
|
|
if (Object.keys(mcs).length == 0) {
|
|
|
|
throw Error("Not enough coins.");
|
|
|
|
}
|
|
|
|
let mintUrl = Object.keys(mcs)[0];
|
|
|
|
let ds = Wallet.signDeposit(offer, mcs[mintUrl]);
|
|
|
|
return this.executePay(offer, ds, merchantPageUrl, mintUrl);
|
|
|
|
});
|
|
|
|
}
|
2015-12-16 00:38:36 +01:00
|
|
|
|
2016-01-06 15:39:22 +01:00
|
|
|
doPayment(H_contract): Promise<PaymentResponse> {
|
|
|
|
return Promise.resolve().then(() => {
|
|
|
|
return Query(this.db)
|
|
|
|
.get("transactions", H_contract)
|
|
|
|
.then((t) => {
|
|
|
|
if (!t) {
|
|
|
|
throw Error("contract not found");
|
|
|
|
}
|
|
|
|
let resp: PaymentResponse = {
|
|
|
|
payUrl: t.payUrl,
|
|
|
|
payReq: t.payReq
|
|
|
|
};
|
|
|
|
return resp;
|
2016-01-05 01:10:31 +01:00
|
|
|
});
|
|
|
|
});
|
2016-01-06 15:39:22 +01:00
|
|
|
}
|
2015-12-16 00:38:36 +01:00
|
|
|
|
2016-01-06 15:39:22 +01:00
|
|
|
confirmReserve(req: ConfirmReserveRequest): Promise<ConfirmReserveResponse> {
|
|
|
|
let reservePriv = EddsaPrivateKey.create();
|
|
|
|
let reservePub = reservePriv.getPublicKey();
|
|
|
|
let form = new FormData();
|
2016-01-24 02:29:13 +01:00
|
|
|
let now: number = (new Date).getTime();
|
2016-01-06 15:39:22 +01:00
|
|
|
form.append(req.field_amount, req.amount_str);
|
|
|
|
form.append(req.field_reserve_pub, reservePub.toCrock());
|
|
|
|
form.append(req.field_mint, req.mint);
|
|
|
|
// TODO: set bank-specified fields.
|
|
|
|
let mintBaseUrl = canonicalizeBaseUrl(req.mint);
|
2016-01-24 02:29:13 +01:00
|
|
|
let requestedAmount = parsePrettyAmount(req.amount_str);
|
|
|
|
|
|
|
|
if (!requestedAmount) {
|
|
|
|
throw Error(`unrecognized amount ${req.amount_str}.`);
|
|
|
|
}
|
2016-01-06 15:39:22 +01:00
|
|
|
|
2016-01-06 15:58:18 +01:00
|
|
|
return this.http.postForm(req.post_url, form)
|
2016-01-06 15:39:22 +01:00
|
|
|
.then((hresp) => {
|
2016-01-24 03:30:54 +01:00
|
|
|
// TODO: look at response status code and handle errors appropriately
|
|
|
|
let json = JSON.parse(hresp.responseText);
|
|
|
|
if (!json) {
|
|
|
|
return {
|
|
|
|
success: false
|
|
|
|
};
|
|
|
|
}
|
2016-01-06 15:39:22 +01:00
|
|
|
let resp: ConfirmReserveResponse = {
|
|
|
|
success: undefined,
|
2016-01-24 03:30:54 +01:00
|
|
|
backlink: json.redirect_url,
|
2016-01-06 15:39:22 +01:00
|
|
|
};
|
|
|
|
let reserveRecord = {
|
|
|
|
reserve_pub: reservePub.toCrock(),
|
|
|
|
reserve_priv: reservePriv.toCrock(),
|
|
|
|
mint_base_url: mintBaseUrl,
|
|
|
|
created: now,
|
|
|
|
last_query: null,
|
|
|
|
current_amount: null,
|
|
|
|
// XXX: set to actual amount
|
2016-01-24 02:29:13 +01:00
|
|
|
requested_amount: null
|
2016-01-06 15:39:22 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
if (hresp.status != 200) {
|
|
|
|
resp.success = false;
|
|
|
|
return resp;
|
|
|
|
}
|
2015-12-16 00:38:36 +01:00
|
|
|
|
2016-01-24 02:29:13 +01:00
|
|
|
let historyEntry = {
|
|
|
|
type: "create-reserve",
|
|
|
|
timestamp: now,
|
|
|
|
detail: {
|
|
|
|
requestedAmount,
|
|
|
|
reservePub: reserveRecord.reserve_pub,
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-01-06 15:39:22 +01:00
|
|
|
resp.success = true;
|
2016-01-24 03:30:54 +01:00
|
|
|
|
2016-01-06 15:39:22 +01:00
|
|
|
return Query(this.db)
|
|
|
|
.put("reserves", reserveRecord)
|
2016-01-24 02:29:13 +01:00
|
|
|
.put("history", historyEntry)
|
2016-01-06 15:39:22 +01:00
|
|
|
.finish()
|
|
|
|
.then(() => {
|
|
|
|
// Do this in the background
|
|
|
|
this.updateMintFromUrl(reserveRecord.mint_base_url)
|
|
|
|
.then((mint) =>
|
|
|
|
this.updateReserve(reservePub, mint)
|
|
|
|
.then((reserve) => this.depleteReserve(reserve,
|
2016-01-11 02:56:32 +01:00
|
|
|
mint)))
|
|
|
|
.catch((e) => {
|
|
|
|
console.error("Failed to deplete reserve", e.stack);
|
|
|
|
});
|
2016-01-06 15:39:22 +01:00
|
|
|
return resp;
|
|
|
|
});
|
|
|
|
});
|
2015-12-16 05:53:55 +01:00
|
|
|
}
|
2016-01-05 01:10:31 +01:00
|
|
|
|
2016-01-10 20:07:42 +01:00
|
|
|
withdrawPrepare(denom: Denomination,
|
|
|
|
reserve: Reserve): Promise<PreCoin> {
|
2016-01-06 15:39:22 +01:00
|
|
|
let reservePriv = new EddsaPrivateKey();
|
|
|
|
reservePriv.loadCrock(reserve.reserve_priv);
|
|
|
|
let reservePub = new EddsaPublicKey();
|
|
|
|
reservePub.loadCrock(reserve.reserve_pub);
|
|
|
|
let denomPub = RsaPublicKey.fromCrock(denom.denom_pub);
|
|
|
|
let coinPriv = EddsaPrivateKey.create();
|
|
|
|
let coinPub = coinPriv.getPublicKey();
|
|
|
|
let blindingFactor = RsaBlindingKey.create(1024);
|
|
|
|
let pubHash: HashCode = coinPub.hash();
|
|
|
|
let ev: ByteArray = rsaBlind(pubHash, blindingFactor, denomPub);
|
|
|
|
|
|
|
|
if (!denom.fee_withdraw) {
|
|
|
|
throw Error("Field fee_withdraw missing");
|
|
|
|
}
|
2016-01-05 01:10:31 +01:00
|
|
|
|
2016-01-06 15:39:22 +01:00
|
|
|
let amountWithFee = new Amount(denom.value);
|
|
|
|
amountWithFee.add(new Amount(denom.fee_withdraw));
|
|
|
|
let withdrawFee = new Amount(denom.fee_withdraw);
|
|
|
|
|
|
|
|
// Signature
|
|
|
|
let withdrawRequest = new WithdrawRequestPS({
|
|
|
|
reserve_pub: reservePub,
|
|
|
|
amount_with_fee: amountWithFee.toNbo(),
|
|
|
|
withdraw_fee: withdrawFee.toNbo(),
|
|
|
|
h_denomination_pub: denomPub.encode().hash(),
|
|
|
|
h_coin_envelope: ev.hash()
|
|
|
|
});
|
2015-12-16 05:53:55 +01:00
|
|
|
|
2016-01-06 15:39:22 +01:00
|
|
|
var sig = eddsaSign(withdrawRequest.toPurpose(), reservePriv);
|
|
|
|
|
2016-01-10 20:07:42 +01:00
|
|
|
let preCoin: PreCoin = {
|
2016-01-06 15:39:22 +01:00
|
|
|
reservePub: reservePub.toCrock(),
|
|
|
|
blindingKey: blindingFactor.toCrock(),
|
|
|
|
coinPub: coinPub.toCrock(),
|
|
|
|
coinPriv: coinPriv.toCrock(),
|
|
|
|
denomPub: denomPub.encode().toCrock(),
|
|
|
|
mintBaseUrl: reserve.mint_base_url,
|
|
|
|
withdrawSig: sig.toCrock(),
|
|
|
|
coinEv: ev.toCrock(),
|
|
|
|
coinValue: denom.value
|
|
|
|
};
|
2015-12-16 05:53:55 +01:00
|
|
|
|
2016-01-06 15:39:22 +01:00
|
|
|
return Query(this.db).put("precoins", preCoin).finish().then(() => preCoin);
|
|
|
|
}
|
2015-12-16 00:38:36 +01:00
|
|
|
|
|
|
|
|
2016-01-10 20:07:42 +01:00
|
|
|
withdrawExecute(pc: PreCoin): Promise<Coin> {
|
2016-01-06 15:39:22 +01:00
|
|
|
return Query(this.db)
|
|
|
|
.get("reserves", pc.reservePub)
|
|
|
|
.then((r) => {
|
|
|
|
let wd: any = {};
|
|
|
|
wd.denom_pub = pc.denomPub;
|
|
|
|
wd.reserve_pub = pc.reservePub;
|
|
|
|
wd.reserve_sig = pc.withdrawSig;
|
|
|
|
wd.coin_ev = pc.coinEv;
|
|
|
|
let reqUrl = URI("reserve/withdraw").absoluteTo(r.mint_base_url);
|
2016-01-06 15:58:18 +01:00
|
|
|
return this.http.postJson(reqUrl, wd);
|
2016-01-06 15:39:22 +01:00
|
|
|
})
|
|
|
|
.then(resp => {
|
|
|
|
if (resp.status != 200) {
|
|
|
|
throw new RequestException({
|
|
|
|
hint: "Withdrawal failed",
|
|
|
|
status: resp.status
|
|
|
|
});
|
|
|
|
}
|
|
|
|
let r = JSON.parse(resp.responseText);
|
|
|
|
let denomSig = rsaUnblind(RsaSignature.fromCrock(r.ev_sig),
|
|
|
|
RsaBlindingKey.fromCrock(pc.blindingKey),
|
|
|
|
RsaPublicKey.fromCrock(pc.denomPub));
|
2016-01-10 20:07:42 +01:00
|
|
|
let coin: Coin = {
|
2016-01-06 15:39:22 +01:00
|
|
|
coinPub: pc.coinPub,
|
|
|
|
coinPriv: pc.coinPriv,
|
|
|
|
denomPub: pc.denomPub,
|
|
|
|
denomSig: denomSig.encode().toCrock(),
|
|
|
|
currentAmount: pc.coinValue,
|
|
|
|
mintBaseUrl: pc.mintBaseUrl,
|
|
|
|
};
|
|
|
|
return coin;
|
|
|
|
});
|
|
|
|
}
|
2015-12-13 23:47:30 +01:00
|
|
|
|
|
|
|
|
2016-01-06 15:39:22 +01:00
|
|
|
updateBadge() {
|
|
|
|
function countNonEmpty(c, n) {
|
|
|
|
if (c.currentAmount.fraction != 0 || c.currentAmount.value != 0) {
|
|
|
|
return n + 1;
|
2015-12-13 23:47:30 +01:00
|
|
|
}
|
2016-01-06 15:39:22 +01:00
|
|
|
return n;
|
2015-12-13 23:47:30 +01:00
|
|
|
}
|
2016-01-06 15:39:22 +01:00
|
|
|
|
|
|
|
function doBadge(n) {
|
2016-01-06 15:58:18 +01:00
|
|
|
this.badge.setText(n.toString());
|
|
|
|
this.badge.setColor("#0F0");
|
2015-12-13 23:47:30 +01:00
|
|
|
}
|
2016-01-06 15:39:22 +01:00
|
|
|
|
|
|
|
Query(this.db)
|
|
|
|
.iter("coins")
|
|
|
|
.reduce(countNonEmpty, 0)
|
2016-01-06 16:31:07 +01:00
|
|
|
.then(doBadge.bind(this));
|
2015-12-13 23:47:30 +01:00
|
|
|
}
|
|
|
|
|
2016-01-24 02:29:13 +01:00
|
|
|
storeCoin(coin: Coin): Promise<void> {
|
|
|
|
let historyEntry = {
|
|
|
|
type: "withdraw",
|
|
|
|
timestamp: (new Date).getTime(),
|
|
|
|
detail: {
|
|
|
|
coinPub: coin.coinPub,
|
|
|
|
}
|
|
|
|
};
|
|
|
|
return Query(this.db)
|
2016-01-06 15:39:22 +01:00
|
|
|
.delete("precoins", coin.coinPub)
|
|
|
|
.add("coins", coin)
|
2016-01-24 02:29:13 +01:00
|
|
|
.add("history", historyEntry)
|
2016-01-06 15:39:22 +01:00
|
|
|
.finish()
|
|
|
|
.then(() => {
|
|
|
|
this.updateBadge();
|
|
|
|
});
|
2015-12-14 16:54:47 +01:00
|
|
|
}
|
|
|
|
|
2016-01-06 15:39:22 +01:00
|
|
|
withdraw(denom, reserve): Promise<void> {
|
|
|
|
return this.withdrawPrepare(denom, reserve)
|
|
|
|
.then((pc) => this.withdrawExecute(pc))
|
|
|
|
.then((c) => this.storeCoin(c));
|
|
|
|
}
|
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.
|
|
|
|
*/
|
|
|
|
depleteReserve(reserve, mint): void {
|
|
|
|
let denoms = copy(mint.keys.denoms);
|
|
|
|
let remaining = new Amount(reserve.current_amount);
|
|
|
|
denoms.sort(rankDenom);
|
|
|
|
let workList = [];
|
|
|
|
for (let i = 0; i < 1000; i++) {
|
|
|
|
let found = false;
|
|
|
|
for (let d of denoms) {
|
|
|
|
let cost = new Amount(d.value);
|
|
|
|
cost.add(new Amount(d.fee_withdraw));
|
|
|
|
if (remaining.cmp(cost) < 0) {
|
|
|
|
continue;
|
2015-12-13 23:47:30 +01:00
|
|
|
}
|
2016-01-06 15:39:22 +01:00
|
|
|
found = true;
|
|
|
|
remaining.sub(cost);
|
|
|
|
workList.push(d);
|
|
|
|
}
|
|
|
|
if (!found) {
|
|
|
|
console.log("did not find coins for remaining ", remaining.toJson());
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Do the request one by one.
|
|
|
|
let next = () => {
|
|
|
|
if (workList.length == 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
let d = workList.pop();
|
|
|
|
this.withdraw(d, reserve)
|
2016-01-24 02:29:13 +01:00
|
|
|
.then(() => next())
|
|
|
|
.catch((e) => {
|
|
|
|
console.log("Failed to withdraw coin", e.stack);
|
|
|
|
});
|
2016-01-06 15:39:22 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
// Asynchronous recursion
|
|
|
|
next();
|
|
|
|
}
|
|
|
|
|
|
|
|
updateReserve(reservePub: EddsaPublicKey,
|
|
|
|
mint): Promise<Reserve> {
|
|
|
|
let reservePubStr = reservePub.toCrock();
|
|
|
|
return Query(this.db)
|
|
|
|
.get("reserves", reservePubStr)
|
|
|
|
.then((reserve) => {
|
|
|
|
let reqUrl = URI("reserve/status").absoluteTo(mint.baseUrl);
|
|
|
|
reqUrl.query({'reserve_pub': reservePubStr});
|
2016-01-06 15:58:18 +01:00
|
|
|
return this.http.get(reqUrl).then(resp => {
|
2016-01-06 15:39:22 +01:00
|
|
|
if (resp.status != 200) {
|
|
|
|
throw Error();
|
|
|
|
}
|
|
|
|
let reserveInfo = JSON.parse(resp.responseText);
|
|
|
|
if (!reserveInfo) {
|
|
|
|
throw Error();
|
|
|
|
}
|
2016-01-24 02:29:13 +01:00
|
|
|
let oldAmount = reserve.current_amount;
|
|
|
|
let newAmount = reserveInfo.balance;
|
2016-01-06 15:39:22 +01:00
|
|
|
reserve.current_amount = reserveInfo.balance;
|
2016-01-24 02:29:13 +01:00
|
|
|
let historyEntry = {
|
|
|
|
type: "reserve-update",
|
|
|
|
timestamp: (new Date).getTime(),
|
|
|
|
detail: {
|
|
|
|
reservePub,
|
|
|
|
oldAmount,
|
|
|
|
newAmount
|
|
|
|
}
|
|
|
|
};
|
2016-01-06 15:39:22 +01:00
|
|
|
return Query(this.db)
|
|
|
|
.put("reserves", reserve)
|
|
|
|
.finish()
|
|
|
|
.then(() => reserve);
|
|
|
|
});
|
2015-12-13 23:47:30 +01:00
|
|
|
});
|
2016-01-06 15:39:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Update or add mint DB entry by fetching the /keys information.
|
|
|
|
* Optionally link the reserve entry to the new or existing
|
|
|
|
* mint entry in then DB.
|
|
|
|
*/
|
|
|
|
updateMintFromUrl(baseUrl) {
|
|
|
|
let reqUrl = URI("keys").absoluteTo(baseUrl);
|
2016-01-06 15:58:18 +01:00
|
|
|
return this.http.get(reqUrl).then((resp) => {
|
2016-01-06 15:39:22 +01:00
|
|
|
if (resp.status != 200) {
|
|
|
|
throw Error("/keys request failed");
|
|
|
|
}
|
|
|
|
let mintKeysJson = JSON.parse(resp.responseText);
|
|
|
|
if (!mintKeysJson) {
|
|
|
|
throw new RequestException({url: reqUrl, hint: "keys invalid"});
|
|
|
|
}
|
2016-01-10 20:07:42 +01:00
|
|
|
let mint: Mint = {
|
2016-01-06 15:39:22 +01:00
|
|
|
baseUrl: baseUrl,
|
|
|
|
keys: mintKeysJson
|
|
|
|
};
|
|
|
|
return Query(this.db).put("mints", mint).finish().then(() => mint);
|
2016-01-05 01:10:31 +01:00
|
|
|
});
|
2016-01-06 15:39:22 +01:00
|
|
|
}
|
2016-01-05 01:10:31 +01:00
|
|
|
|
|
|
|
|
2016-01-06 15:39:22 +01:00
|
|
|
getBalances(): Promise<any> {
|
2016-01-10 20:07:42 +01:00
|
|
|
function collectBalances(c: Coin, byCurrency) {
|
2016-01-06 15:39:22 +01:00
|
|
|
let acc: AmountJson_interface = byCurrency[c.currentAmount.currency];
|
|
|
|
if (!acc) {
|
|
|
|
acc = Amount.getZero(c.currentAmount.currency).toJson();
|
|
|
|
}
|
|
|
|
let am = new Amount(c.currentAmount);
|
|
|
|
am.add(new Amount(acc));
|
|
|
|
byCurrency[c.currentAmount.currency] = am.toJson();
|
|
|
|
return byCurrency;
|
2016-01-05 01:10:31 +01:00
|
|
|
}
|
2015-12-13 23:47:30 +01:00
|
|
|
|
2016-01-06 15:39:22 +01:00
|
|
|
return Query(this.db)
|
|
|
|
.iter("coins")
|
|
|
|
.reduce(collectBalances, {});
|
2016-01-05 01:10:31 +01:00
|
|
|
}
|
2016-01-24 02:29:13 +01:00
|
|
|
|
|
|
|
getHistory() {
|
|
|
|
function collect(x, acc) {
|
|
|
|
acc.push(x);
|
|
|
|
return acc;
|
|
|
|
}
|
|
|
|
return Query(this.db)
|
|
|
|
.iter("history", {indexName: "timestamp"})
|
|
|
|
.reduce(collect, [])
|
|
|
|
}
|
2015-12-16 08:01:43 +01:00
|
|
|
}
|