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-02-10 02:03:31 +01:00
|
|
|
import * as native from "./emscriptif";
|
2016-02-18 23:41:29 +01:00
|
|
|
import {AmountJson, CreateReserveResponse, IMintInfo, Denomination, Notifier} from "./types";
|
2016-02-10 02:03:31 +01:00
|
|
|
import {HttpResponse, RequestException} from "./http";
|
2016-01-10 20:07:42 +01:00
|
|
|
import {Query} from "./query";
|
2016-02-10 02:03:31 +01:00
|
|
|
import {Checkable} from "./checkable";
|
2016-02-11 11:29:57 +01:00
|
|
|
import {canonicalizeBaseUrl} from "./helpers";
|
2016-02-18 22:50:17 +01:00
|
|
|
import {ReserveCreationInfo} from "./types";
|
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
|
|
|
|
2016-02-10 02:03:31 +01:00
|
|
|
export interface CoinWithDenom {
|
|
|
|
coin: Coin;
|
|
|
|
denom: Denomination;
|
|
|
|
}
|
|
|
|
|
2016-02-18 22:50:17 +01:00
|
|
|
|
|
|
|
@Checkable.Class
|
|
|
|
export class KeysJson {
|
|
|
|
@Checkable.List(Checkable.Value(Denomination))
|
2016-02-10 02:03:31 +01:00
|
|
|
denoms: Denomination[];
|
|
|
|
|
2016-02-18 22:50:17 +01:00
|
|
|
@Checkable.String
|
|
|
|
master_public_key: string;
|
|
|
|
|
|
|
|
@Checkable.Any
|
|
|
|
auditors: any[];
|
|
|
|
|
|
|
|
@Checkable.String
|
|
|
|
list_issue_date: string;
|
|
|
|
|
|
|
|
@Checkable.Any
|
|
|
|
signkeys: any;
|
|
|
|
|
|
|
|
@Checkable.String
|
|
|
|
eddsa_pub: string;
|
|
|
|
|
|
|
|
@Checkable.String
|
|
|
|
eddsa_sig: string;
|
|
|
|
|
|
|
|
static checked: (obj: any) => KeysJson;
|
2016-02-10 02:03:31 +01:00
|
|
|
}
|
|
|
|
|
2016-02-18 22:50:17 +01:00
|
|
|
|
2016-02-10 02:03:31 +01:00
|
|
|
export interface PreCoin {
|
|
|
|
coinPub: string;
|
|
|
|
coinPriv: string;
|
|
|
|
reservePub: string;
|
|
|
|
denomPub: string;
|
|
|
|
blindingKey: string;
|
|
|
|
withdrawSig: string;
|
|
|
|
coinEv: string;
|
|
|
|
mintBaseUrl: string;
|
|
|
|
coinValue: AmountJson;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface Coin {
|
|
|
|
coinPub: string;
|
|
|
|
coinPriv: string;
|
|
|
|
denomPub: string;
|
|
|
|
denomSig: string;
|
|
|
|
currentAmount: AmountJson;
|
|
|
|
mintBaseUrl: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-02-18 22:50:17 +01:00
|
|
|
function isValidDenom(denom: Denomination,
|
|
|
|
masterPub: string): boolean {
|
|
|
|
let p = new native.DenominationKeyValidityPS({
|
|
|
|
master: native.EddsaPublicKey.fromCrock(masterPub),
|
|
|
|
denom_hash: native.RsaPublicKey.fromCrock(denom.denom_pub).encode().hash(),
|
|
|
|
expire_legal: native.AbsoluteTimeNbo.fromTalerString(denom.stamp_expire_legal),
|
|
|
|
expire_spend: native.AbsoluteTimeNbo.fromTalerString(denom.stamp_expire_deposit),
|
|
|
|
expire_withdraw: native.AbsoluteTimeNbo.fromTalerString(denom.stamp_expire_withdraw),
|
|
|
|
start: native.AbsoluteTimeNbo.fromTalerString(denom.stamp_start),
|
|
|
|
value: (new native.Amount(denom.value)).toNbo(),
|
|
|
|
fee_deposit: (new native.Amount(denom.fee_deposit)).toNbo(),
|
|
|
|
fee_refresh: (new native.Amount(denom.fee_refresh)).toNbo(),
|
|
|
|
fee_withdraw: (new native.Amount(denom.fee_withdraw)).toNbo(),
|
|
|
|
});
|
|
|
|
|
|
|
|
let nativeSig = new native.EddsaSignature();
|
|
|
|
nativeSig.loadCrock(denom.master_sig);
|
|
|
|
|
|
|
|
let nativePub = native.EddsaPublicKey.fromCrock(masterPub);
|
|
|
|
|
|
|
|
return native.eddsaVerify(native.SignaturePurpose.MASTER_DENOMINATION_KEY_VALIDITY,
|
|
|
|
p.toPurpose(),
|
|
|
|
nativeSig,
|
|
|
|
nativePub);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
class MintInfo implements IMintInfo {
|
|
|
|
baseUrl: string;
|
|
|
|
masterPublicKey: string;
|
|
|
|
denoms: Denomination[];
|
|
|
|
|
|
|
|
constructor(obj: {baseUrl: string} & any) {
|
|
|
|
this.baseUrl = obj.baseUrl;
|
|
|
|
|
|
|
|
if (obj.denoms) {
|
|
|
|
this.denoms = Array.from(<Denomination[]>obj.denoms);
|
|
|
|
} else {
|
|
|
|
this.denoms = [];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (typeof obj.masterPublicKey === "string") {
|
|
|
|
this.masterPublicKey = obj.masterPublicKey;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static fresh(baseUrl: string): MintInfo {
|
|
|
|
return new MintInfo({baseUrl});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Merge new key information into the mint info.
|
|
|
|
* If the new key information is invalid (missing fields,
|
|
|
|
* invalid signatures), an exception is thrown, but the
|
|
|
|
* mint info is updated with the new information up until
|
|
|
|
* the first error.
|
|
|
|
*/
|
|
|
|
mergeKeys(newKeys: KeysJson) {
|
|
|
|
if (!this.masterPublicKey) {
|
|
|
|
this.masterPublicKey = newKeys.master_public_key;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.masterPublicKey != newKeys.master_public_key) {
|
|
|
|
throw Error("public keys do not match");
|
|
|
|
}
|
|
|
|
|
|
|
|
for (let newDenom of newKeys.denoms) {
|
|
|
|
let found = false;
|
|
|
|
for (let oldDenom of this.denoms) {
|
|
|
|
if (oldDenom.denom_pub === newDenom.denom_pub) {
|
|
|
|
let a = Object.assign({}, oldDenom);
|
|
|
|
let b = Object.assign({}, newDenom);
|
|
|
|
// pub hash is only there for convenience in the wallet
|
|
|
|
delete a["pub_hash"];
|
|
|
|
delete b["pub_hash"];
|
|
|
|
if (!_.isEqual(a, b)) {
|
|
|
|
console.log("old/new:");
|
|
|
|
console.dir(a);
|
|
|
|
console.dir(b);
|
|
|
|
throw Error("denomination modified");
|
|
|
|
}
|
|
|
|
// TODO: check if info still matches
|
|
|
|
found = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (found) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
console.log("validating denomination");
|
|
|
|
|
|
|
|
if (!isValidDenom(newDenom, this.masterPublicKey)) {
|
|
|
|
throw Error("signature on denomination invalid");
|
|
|
|
}
|
|
|
|
|
|
|
|
let d: Denomination = Object.assign({}, newDenom);
|
|
|
|
d.pub_hash = native.RsaPublicKey.fromCrock(d.denom_pub)
|
|
|
|
.encode()
|
|
|
|
.hash()
|
|
|
|
.toCrock();
|
|
|
|
this.denoms.push(d);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-02-10 02:03:31 +01:00
|
|
|
@Checkable.Class
|
|
|
|
export class CreateReserveRequest {
|
|
|
|
/**
|
|
|
|
* The initial amount for the reserve.
|
|
|
|
*/
|
|
|
|
@Checkable.Value(AmountJson)
|
|
|
|
amount: AmountJson;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Mint URL where the bank should create the reserve.
|
|
|
|
*/
|
|
|
|
@Checkable.String
|
|
|
|
mint: string;
|
|
|
|
|
|
|
|
static checked: (obj: any) => CreateReserveRequest;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Checkable.Class
|
|
|
|
export class ConfirmReserveRequest {
|
|
|
|
/**
|
|
|
|
* Public key of then reserve that should be marked
|
|
|
|
* as confirmed.
|
|
|
|
*/
|
|
|
|
@Checkable.String
|
|
|
|
reservePub: string;
|
|
|
|
|
|
|
|
static checked: (obj: any) => ConfirmReserveRequest;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Checkable.Class
|
2016-02-18 22:50:17 +01:00
|
|
|
export class MintHandle {
|
2016-02-10 02:03:31 +01:00
|
|
|
@Checkable.String
|
|
|
|
master_pub: string;
|
|
|
|
|
|
|
|
@Checkable.String
|
|
|
|
url: string;
|
|
|
|
|
2016-02-18 22:50:17 +01:00
|
|
|
static checked: (obj: any) => MintHandle;
|
2016-02-10 02:03:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Checkable.Class
|
|
|
|
export class Contract {
|
|
|
|
@Checkable.String
|
|
|
|
H_wire: string;
|
|
|
|
|
|
|
|
@Checkable.Value(AmountJson)
|
|
|
|
amount: AmountJson;
|
|
|
|
|
|
|
|
@Checkable.List(Checkable.AnyObject)
|
|
|
|
auditors: any[];
|
|
|
|
|
|
|
|
@Checkable.String
|
|
|
|
expiry: string;
|
|
|
|
|
|
|
|
@Checkable.Any
|
|
|
|
locations: any;
|
|
|
|
|
|
|
|
@Checkable.Value(AmountJson)
|
|
|
|
max_fee: AmountJson;
|
|
|
|
|
|
|
|
@Checkable.Any
|
|
|
|
merchant: any;
|
|
|
|
|
|
|
|
@Checkable.String
|
|
|
|
merchant_pub: string;
|
|
|
|
|
2016-02-18 22:50:17 +01:00
|
|
|
@Checkable.List(Checkable.Value(MintHandle))
|
|
|
|
mints: MintHandle[];
|
2016-02-10 02:03:31 +01:00
|
|
|
|
|
|
|
@Checkable.List(Checkable.AnyObject)
|
|
|
|
products: any[];
|
|
|
|
|
|
|
|
@Checkable.String
|
|
|
|
refund_deadline: string;
|
|
|
|
|
|
|
|
@Checkable.String
|
|
|
|
timestamp: string;
|
|
|
|
|
|
|
|
@Checkable.Number
|
|
|
|
transaction_id: number;
|
|
|
|
|
|
|
|
@Checkable.String
|
|
|
|
fulfillment_url: string;
|
|
|
|
|
2016-02-17 17:51:25 +01:00
|
|
|
@Checkable.Optional(Checkable.String)
|
|
|
|
repurchase_correlation_id: string;
|
|
|
|
|
2016-02-10 02:03:31 +01:00
|
|
|
static checked: (obj: any) => Contract;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Checkable.Class
|
2016-02-11 18:17:02 +01:00
|
|
|
export class Offer {
|
2016-02-10 02:03:31 +01:00
|
|
|
@Checkable.Value(Contract)
|
|
|
|
contract: Contract;
|
|
|
|
|
|
|
|
@Checkable.String
|
|
|
|
merchant_sig: string;
|
|
|
|
|
|
|
|
@Checkable.String
|
|
|
|
H_contract: string;
|
|
|
|
|
|
|
|
static checked: (obj: any) => Offer;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-12-17 13:30:34 +01:00
|
|
|
interface ConfirmPayRequest {
|
2015-12-17 22:56:24 +01:00
|
|
|
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
|
|
|
|
2016-02-09 21:56:06 +01:00
|
|
|
interface CoinPaySig {
|
2015-12-17 22:56:24 +01:00
|
|
|
coin_sig: string;
|
|
|
|
coin_pub: string;
|
|
|
|
ub_sig: string;
|
|
|
|
denom_pub: string;
|
2016-02-01 15:10:20 +01:00
|
|
|
f: AmountJson;
|
2015-12-17 22:56:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-01-05 01:10:31 +01:00
|
|
|
interface Transaction {
|
|
|
|
contractHash: string;
|
|
|
|
contract: any;
|
|
|
|
payReq: any;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
interface Reserve {
|
|
|
|
mint_base_url: string
|
|
|
|
reserve_priv: string;
|
|
|
|
reserve_pub: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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-02-09 21:56:06 +01:00
|
|
|
type PayCoinInfo = Array<{ updatedCoin: Coin, sig: CoinPaySig }>;
|
2015-12-17 22:56:24 +01:00
|
|
|
|
|
|
|
|
2016-02-10 02:03:31 +01:00
|
|
|
function getTalerStampSec(stamp: string) {
|
|
|
|
const m = stamp.match(/\/?Date\(([0-9]*)\)\/?/);
|
|
|
|
if (!m) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
return parseInt(m[1]);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function isWithdrawableDenom(d: Denomination) {
|
|
|
|
const now_sec = (new Date).getTime() / 1000;
|
|
|
|
const stamp_withdraw_sec = getTalerStampSec(d.stamp_expire_withdraw);
|
|
|
|
// Withdraw if still possible to withdraw within a minute
|
|
|
|
if (stamp_withdraw_sec + 60 > now_sec) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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-02-11 18:17:02 +01:00
|
|
|
/**
|
|
|
|
* Rank two denomination by how desireable it is to withdraw them,
|
|
|
|
* based on their fees and value.
|
|
|
|
*/
|
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.
|
2016-02-10 02:03:31 +01:00
|
|
|
let v1 = new native.Amount(denom1.value);
|
|
|
|
let v2 = new native.Amount(denom2.value);
|
2016-01-06 15:39:22 +01:00
|
|
|
return (-1) * v1.cmp(v2);
|
|
|
|
}
|
2015-12-17 22:56:24 +01:00
|
|
|
|
|
|
|
|
2016-02-18 22:50:17 +01:00
|
|
|
function mergeMintKeys(oldKeys: KeysJson, newKeys: KeysJson) {
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-02-11 18:17:02 +01:00
|
|
|
/**
|
|
|
|
* Create a pre-coin of the given denomination to be withdrawn from then given
|
|
|
|
* reserve.
|
|
|
|
*/
|
|
|
|
function createPreCoin(denom: Denomination, reserve: Reserve): PreCoin {
|
|
|
|
let reservePriv = new native.EddsaPrivateKey();
|
|
|
|
reservePriv.loadCrock(reserve.reserve_priv);
|
|
|
|
let reservePub = new native.EddsaPublicKey();
|
|
|
|
reservePub.loadCrock(reserve.reserve_pub);
|
|
|
|
let denomPub = native.RsaPublicKey.fromCrock(denom.denom_pub);
|
|
|
|
let coinPriv = native.EddsaPrivateKey.create();
|
|
|
|
let coinPub = coinPriv.getPublicKey();
|
|
|
|
let blindingFactor = native.RsaBlindingKey.create(1024);
|
|
|
|
let pubHash: native.HashCode = coinPub.hash();
|
|
|
|
let ev: native.ByteArray = native.rsaBlind(pubHash,
|
|
|
|
blindingFactor,
|
|
|
|
denomPub);
|
|
|
|
|
|
|
|
if (!denom.fee_withdraw) {
|
|
|
|
throw Error("Field fee_withdraw missing");
|
|
|
|
}
|
|
|
|
|
|
|
|
let amountWithFee = new native.Amount(denom.value);
|
|
|
|
amountWithFee.add(new native.Amount(denom.fee_withdraw));
|
|
|
|
let withdrawFee = new native.Amount(denom.fee_withdraw);
|
|
|
|
|
|
|
|
// Signature
|
|
|
|
let withdrawRequest = new native.WithdrawRequestPS({
|
|
|
|
reserve_pub: reservePub,
|
|
|
|
amount_with_fee: amountWithFee.toNbo(),
|
|
|
|
withdraw_fee: withdrawFee.toNbo(),
|
|
|
|
h_denomination_pub: denomPub.encode().hash(),
|
|
|
|
h_coin_envelope: ev.hash()
|
|
|
|
});
|
|
|
|
|
|
|
|
var sig = native.eddsaSign(withdrawRequest.toPurpose(), reservePriv);
|
|
|
|
|
|
|
|
let preCoin: PreCoin = {
|
|
|
|
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
|
|
|
|
};
|
|
|
|
return preCoin;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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,
|
|
|
|
denoms: Denomination[]): Denomination[] {
|
|
|
|
let remaining = new native.Amount(amountAvailable);
|
|
|
|
let ds: Denomination[] = [];
|
|
|
|
|
|
|
|
denoms = denoms.filter(isWithdrawableDenom);
|
|
|
|
denoms.sort(rankDenom);
|
|
|
|
|
|
|
|
// 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;
|
|
|
|
for (let d of denoms) {
|
|
|
|
let cost = new native.Amount(d.value);
|
|
|
|
cost.add(new native.Amount(d.fee_withdraw));
|
|
|
|
if (remaining.cmp(cost) < 0) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
found = true;
|
|
|
|
remaining.sub(cost);
|
|
|
|
ds.push(d);
|
|
|
|
}
|
|
|
|
if (!found) {
|
|
|
|
console.log("did not find coins for remaining ", remaining.toJson());
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ds;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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-02-18 23:41:29 +01:00
|
|
|
private notifier: Notifier;
|
2016-01-05 14:20:13 +01:00
|
|
|
|
2016-02-11 18:17:02 +01:00
|
|
|
|
2016-02-18 23:41:29 +01:00
|
|
|
constructor(db: IDBDatabase,
|
|
|
|
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-01-05 14:20:13 +01:00
|
|
|
}
|
|
|
|
|
2016-02-11 18:17:02 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Generate updated coins (to store in the database)
|
|
|
|
* and deposit permissions for each given coin.
|
|
|
|
*/
|
2016-02-10 02:03:31 +01:00
|
|
|
private static signDeposit(offer: Offer,
|
|
|
|
cds: CoinWithDenom[]): PayCoinInfo {
|
2016-01-06 15:39:22 +01:00
|
|
|
let ret = [];
|
2016-02-10 02:03:31 +01:00
|
|
|
let amountSpent = native.Amount.getZero(cds[0].coin.currentAmount.currency);
|
|
|
|
let amountRemaining = new native.Amount(offer.contract.amount);
|
2016-01-06 15:39:22 +01:00
|
|
|
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-02-10 02:03:31 +01:00
|
|
|
if (amountRemaining.cmp(new native.Amount(cd.coin.currentAmount)) < 0) {
|
|
|
|
coinSpend = new native.Amount(amountRemaining.toJson());
|
2016-01-06 15:39:22 +01:00
|
|
|
} else {
|
2016-02-10 02:03:31 +01:00
|
|
|
coinSpend = new native.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);
|
|
|
|
|
2016-02-10 02:03:31 +01:00
|
|
|
let newAmount = new native.Amount(cd.coin.currentAmount);
|
2016-01-06 15:39:22 +01:00
|
|
|
newAmount.sub(coinSpend);
|
|
|
|
cd.coin.currentAmount = newAmount.toJson();
|
|
|
|
|
2016-02-11 18:17:02 +01:00
|
|
|
let d = new native.DepositRequestPS({
|
2016-02-10 02:03:31 +01:00
|
|
|
h_contract: native.HashCode.fromCrock(offer.H_contract),
|
|
|
|
h_wire: native.HashCode.fromCrock(offer.contract.H_wire),
|
2016-01-06 15:39:22 +01:00
|
|
|
amount_with_fee: coinSpend.toNbo(),
|
2016-02-10 02:03:31 +01:00
|
|
|
coin_pub: native.EddsaPublicKey.fromCrock(cd.coin.coinPub),
|
|
|
|
deposit_fee: new native.Amount(cd.denom.fee_deposit).toNbo(),
|
|
|
|
merchant: native.EddsaPublicKey.fromCrock(offer.contract.merchant_pub),
|
|
|
|
refund_deadline: native.AbsoluteTimeNbo.fromTalerString(offer.contract.refund_deadline),
|
|
|
|
timestamp: native.AbsoluteTimeNbo.fromTalerString(offer.contract.timestamp),
|
|
|
|
transaction_id: native.UInt64.fromNumber(offer.contract.transaction_id),
|
2016-02-11 18:17:02 +01:00
|
|
|
});
|
2015-12-20 20:05:06 +01:00
|
|
|
|
2016-02-10 02:03:31 +01:00
|
|
|
let coinSig = native.eddsaSign(d.toPurpose(),
|
|
|
|
native.EddsaPrivateKey.fromCrock(cd.coin.coinPriv))
|
|
|
|
.toCrock();
|
2015-12-20 20:05:06 +01:00
|
|
|
|
2016-02-09 21:56:06 +01:00
|
|
|
let s: CoinPaySig = {
|
2016-01-06 15:39:22 +01:00
|
|
|
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.
|
|
|
|
*/
|
2016-02-10 02:03:31 +01:00
|
|
|
private getPossibleMintCoins(paymentAmount: AmountJson,
|
|
|
|
depositFeeLimit: AmountJson,
|
2016-02-18 22:50:17 +01:00
|
|
|
allowedMints: MintHandle[]): Promise<MintCoins> {
|
2016-02-17 18:59:27 +01:00
|
|
|
// Mapping from mint base URL to list of coins together with their
|
|
|
|
// denomination
|
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 = {};
|
|
|
|
|
2016-02-17 18:59:27 +01:00
|
|
|
if (Object.keys(m).length == 0) {
|
|
|
|
console.log("not suitable mints found");
|
|
|
|
}
|
|
|
|
|
|
|
|
console.dir(m);
|
|
|
|
|
|
|
|
// We try to find the first mint where we have
|
|
|
|
// enough coins to cover the paymentAmount with fees
|
|
|
|
// under depositFeeLimit
|
|
|
|
|
2016-01-06 15:39:22 +01:00
|
|
|
nextMint:
|
|
|
|
for (let key in m) {
|
|
|
|
let coins = m[key].map((x) => ({
|
2016-02-10 02:03:31 +01:00
|
|
|
a: new native.Amount(x.denom.fee_deposit),
|
2016-01-06 15:39:22 +01:00
|
|
|
c: x
|
|
|
|
}));
|
|
|
|
// Sort by ascending deposit fee
|
|
|
|
coins.sort((o1, o2) => o1.a.cmp(o2.a));
|
2016-02-10 02:03:31 +01:00
|
|
|
let maxFee = new native.Amount(depositFeeLimit);
|
|
|
|
let minAmount = new native.Amount(paymentAmount);
|
|
|
|
let accFee = new native.Amount(coins[0].c.denom.fee_deposit);
|
|
|
|
let accAmount = native.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++) {
|
2016-02-10 02:03:31 +01:00
|
|
|
let coinAmount = new native.Amount(coins[i].c.coin.currentAmount);
|
2016-01-06 15:39:22 +01:00
|
|
|
let coinFee = coins[i].a;
|
|
|
|
if (coinAmount.cmp(coinFee) <= 0) {
|
|
|
|
continue nextCoin;
|
|
|
|
}
|
|
|
|
accFee.add(coinFee);
|
|
|
|
accAmount.add(coinAmount);
|
|
|
|
if (accFee.cmp(maxFee) >= 0) {
|
2016-02-17 18:59:27 +01:00
|
|
|
// FIXME: if the fees are too high, we have
|
|
|
|
// to cover them ourselves ....
|
2016-01-06 15:39:22 +01:00
|
|
|
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-02-10 02:03:31 +01:00
|
|
|
/**
|
|
|
|
* Record all information that is necessary to
|
|
|
|
* pay for a contract in the wallet's database.
|
|
|
|
*/
|
|
|
|
private recordConfirmPay(offer: Offer,
|
|
|
|
payCoinInfo: PayCoinInfo,
|
|
|
|
chosenMint: string): Promise<void> {
|
2016-01-06 15:39:22 +01:00
|
|
|
let payReq = {};
|
2016-02-01 15:10:20 +01:00
|
|
|
payReq["amount"] = offer.contract.amount;
|
|
|
|
payReq["coins"] = payCoinInfo.map((x) => x.sig);
|
2016-01-06 15:39:22 +01:00
|
|
|
payReq["H_contract"] = offer.H_contract;
|
2016-02-01 15:10:20 +01:00
|
|
|
payReq["max_fee"] = offer.contract.max_fee;
|
|
|
|
payReq["merchant_sig"] = offer.merchant_sig;
|
2016-01-06 15:39:22 +01:00
|
|
|
payReq["mint"] = URI(chosenMint).href();
|
2016-02-01 15:10:20 +01:00
|
|
|
payReq["refund_deadline"] = offer.contract.refund_deadline;
|
2016-01-06 15:39:22 +01:00
|
|
|
payReq["timestamp"] = offer.contract.timestamp;
|
2016-02-01 15:10:20 +01:00
|
|
|
payReq["transaction_id"] = offer.contract.transaction_id;
|
2016-01-06 15:39:22 +01:00
|
|
|
let t: Transaction = {
|
|
|
|
contractHash: offer.H_contract,
|
|
|
|
contract: offer.contract,
|
2016-01-26 17:21:17 +01:00
|
|
|
payReq: payReq,
|
2016-01-06 15:39:22 +01:00
|
|
|
};
|
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,
|
2016-02-01 15:10:20 +01:00
|
|
|
contractHash: offer.H_contract,
|
|
|
|
fulfillmentUrl: offer.contract.fulfillment_url
|
2016-01-24 02:29:13 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
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))
|
2016-02-18 23:41:29 +01:00
|
|
|
.finish()
|
|
|
|
.then(() => { this.notifier.notify(); });
|
2016-01-06 15:39:22 +01:00
|
|
|
}
|
2015-12-14 16:54:47 +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.
|
|
|
|
*/
|
2016-01-26 17:21:17 +01:00
|
|
|
confirmPay(offer: Offer): Promise<any> {
|
2016-02-15 15:53:59 +01:00
|
|
|
console.log("executing confirmPay");
|
2016-01-06 15:39:22 +01:00
|
|
|
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) {
|
2016-02-15 15:53:59 +01:00
|
|
|
console.log("not confirming payment, insufficient coins");
|
2016-02-01 15:10:20 +01:00
|
|
|
return {
|
2016-02-10 02:03:31 +01:00
|
|
|
error: "coins-insufficient",
|
2016-02-01 15:10:20 +01:00
|
|
|
};
|
2016-01-06 15:39:22 +01:00
|
|
|
}
|
2016-02-15 15:53:59 +01:00
|
|
|
console.log("about to record ...");
|
2016-01-06 15:39:22 +01:00
|
|
|
let mintUrl = Object.keys(mcs)[0];
|
|
|
|
let ds = Wallet.signDeposit(offer, mcs[mintUrl]);
|
2016-02-10 02:03:31 +01:00
|
|
|
return this.recordConfirmPay(offer, ds, mintUrl)
|
|
|
|
.then((() => ({})));
|
2016-01-06 15:39:22 +01:00
|
|
|
});
|
|
|
|
}
|
2015-12-16 00:38:36 +01:00
|
|
|
|
2016-02-10 02:03:31 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Retrieve all necessary information for looking up the contract
|
|
|
|
* with the given hash.
|
|
|
|
*/
|
|
|
|
executePayment(H_contract): Promise<any> {
|
2016-01-06 15:39:22 +01:00
|
|
|
return Promise.resolve().then(() => {
|
|
|
|
return Query(this.db)
|
|
|
|
.get("transactions", H_contract)
|
|
|
|
.then((t) => {
|
|
|
|
if (!t) {
|
2016-02-01 15:10:20 +01:00
|
|
|
return {
|
|
|
|
success: false,
|
|
|
|
contractFound: false,
|
|
|
|
}
|
2016-01-06 15:39:22 +01:00
|
|
|
}
|
2016-02-01 15:10:20 +01:00
|
|
|
let resp = {
|
|
|
|
success: true,
|
2016-01-26 17:21:17 +01:00
|
|
|
payReq: t.payReq,
|
|
|
|
contract: t.contract,
|
2016-01-06 15:39:22 +01:00
|
|
|
};
|
|
|
|
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-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-02-10 02:03:31 +01:00
|
|
|
private initReserve(reserveRecord) {
|
2016-01-24 19:57:09 +01:00
|
|
|
this.updateMintFromUrl(reserveRecord.mint_base_url)
|
|
|
|
.then((mint) =>
|
|
|
|
this.updateReserve(reserveRecord.reserve_pub, mint)
|
|
|
|
.then((reserve) => this.depleteReserve(reserve,
|
|
|
|
mint)))
|
|
|
|
.then(() => {
|
|
|
|
let depleted = {
|
|
|
|
type: "depleted-reserve",
|
|
|
|
timestamp: (new Date).getTime(),
|
|
|
|
detail: {
|
|
|
|
reservePub: reserveRecord.reserve_pub,
|
|
|
|
}
|
|
|
|
};
|
|
|
|
return Query(this.db).put("history", depleted).finish();
|
|
|
|
})
|
|
|
|
.catch((e) => {
|
2016-02-18 22:50:17 +01:00
|
|
|
console.error("Failed to deplete reserve");
|
|
|
|
console.error(e);
|
2016-01-24 19:57:09 +01:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-02-09 21:56:06 +01:00
|
|
|
/**
|
|
|
|
* Create a reserve, but do not flag it as confirmed yet.
|
|
|
|
*/
|
|
|
|
createReserve(req: CreateReserveRequest): Promise<CreateReserveResponse> {
|
2016-02-10 02:03:31 +01:00
|
|
|
const reservePriv = native.EddsaPrivateKey.create();
|
2016-02-09 21:56:06 +01:00
|
|
|
const reservePub = reservePriv.getPublicKey();
|
|
|
|
|
|
|
|
const now = (new Date).getTime();
|
|
|
|
const canonMint = canonicalizeBaseUrl(req.mint);
|
|
|
|
|
|
|
|
const reserveRecord = {
|
|
|
|
reserve_pub: reservePub.toCrock(),
|
|
|
|
reserve_priv: reservePriv.toCrock(),
|
|
|
|
mint_base_url: canonMint,
|
|
|
|
created: now,
|
|
|
|
last_query: null,
|
|
|
|
current_amount: null,
|
|
|
|
requested_amount: req.amount,
|
|
|
|
confirmed: false,
|
|
|
|
};
|
|
|
|
|
2016-01-06 15:39:22 +01:00
|
|
|
|
2016-02-09 21:56:06 +01:00
|
|
|
const historyEntry = {
|
|
|
|
type: "create-reserve",
|
|
|
|
timestamp: now,
|
|
|
|
detail: {
|
|
|
|
requestedAmount: req.amount,
|
|
|
|
reservePub: reserveRecord.reserve_pub,
|
|
|
|
}
|
|
|
|
};
|
2016-02-11 18:17:02 +01:00
|
|
|
|
2016-02-09 21:56:06 +01:00
|
|
|
return Query(this.db)
|
|
|
|
.put("reserves", reserveRecord)
|
|
|
|
.put("history", historyEntry)
|
|
|
|
.finish()
|
|
|
|
.then(() => {
|
|
|
|
let r: CreateReserveResponse = {
|
|
|
|
mint: canonMint,
|
|
|
|
reservePub: reservePub.toCrock(),
|
|
|
|
};
|
|
|
|
return r;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Mark an existing reserve as confirmed. The wallet will start trying
|
|
|
|
* to withdraw from that reserve. This may not immediately succeed,
|
|
|
|
* since the mint might not know about the reserve yet, even though the
|
|
|
|
* bank confirmed its creation.
|
|
|
|
*
|
|
|
|
* A confirmed reserve should be shown to the user in the UI, while
|
|
|
|
* an unconfirmed reserve should be hidden.
|
|
|
|
*/
|
|
|
|
confirmReserve(req: ConfirmReserveRequest): Promise<void> {
|
|
|
|
const now = (new Date).getTime();
|
|
|
|
const historyEntry = {
|
|
|
|
type: "confirm-reserve",
|
|
|
|
timestamp: now,
|
|
|
|
detail: {
|
|
|
|
reservePub: req.reservePub,
|
|
|
|
}
|
|
|
|
};
|
|
|
|
return Query(this.db)
|
|
|
|
.get("reserves", req.reservePub)
|
|
|
|
.then((r) => {
|
|
|
|
r.confirmed = true;
|
|
|
|
return Query(this.db)
|
|
|
|
.put("reserves", r)
|
|
|
|
.put("history", historyEntry)
|
|
|
|
.finish()
|
|
|
|
.then(() => {
|
|
|
|
// Do this in the background
|
|
|
|
this.initReserve(r);
|
|
|
|
});
|
|
|
|
});
|
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-02-10 02:03:31 +01:00
|
|
|
private 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);
|
2016-02-10 02:03:31 +01:00
|
|
|
let denomSig = native.rsaUnblind(native.RsaSignature.fromCrock(r.ev_sig),
|
|
|
|
native.RsaBlindingKey.fromCrock(pc.blindingKey),
|
|
|
|
native.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-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-02-18 23:41:29 +01:00
|
|
|
.finish()
|
|
|
|
.then(() => { this.notifier.notify(); });
|
2015-12-14 16:54:47 +01:00
|
|
|
}
|
|
|
|
|
2016-01-26 17:21:17 +01:00
|
|
|
|
2016-02-11 18:17:02 +01:00
|
|
|
/**
|
|
|
|
* Withdraw one coins of the given denomination from the given reserve.
|
|
|
|
*/
|
|
|
|
private withdraw(denom: Denomination, reserve: Reserve): Promise<void> {
|
2016-02-17 17:51:25 +01:00
|
|
|
console.log("creating pre coin at", new Date());
|
2016-02-11 18:17:02 +01:00
|
|
|
let preCoin = createPreCoin(denom, reserve);
|
|
|
|
return Query(this.db)
|
|
|
|
.put("precoins", preCoin)
|
|
|
|
.finish()
|
|
|
|
.then(() => this.withdrawExecute(preCoin))
|
|
|
|
.then((c) => this.storeCoin(c));
|
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.
|
|
|
|
*/
|
2016-02-18 22:50:17 +01:00
|
|
|
private depleteReserve(reserve, mint: MintInfo): Promise<void> {
|
|
|
|
let denomsAvailable: Denomination[] = copy(mint.denoms);
|
2016-02-11 18:17:02 +01:00
|
|
|
let denomsForWithdraw = getWithdrawDenomList(reserve.current_amount,
|
|
|
|
denomsAvailable);
|
|
|
|
|
|
|
|
let ps = denomsForWithdraw.map((denom) => {
|
|
|
|
console.log("withdrawing", JSON.stringify(denom));
|
|
|
|
// Do the withdraw asynchronously, so crypto is interleaved
|
|
|
|
// with requests
|
|
|
|
return this.withdraw(denom, reserve);
|
2016-01-24 19:57:09 +01:00
|
|
|
});
|
2016-02-11 18:17:02 +01:00
|
|
|
|
|
|
|
return Promise.all(ps).then(() => void 0);
|
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
|
|
|
|
* by quering the reserve's mint.
|
|
|
|
*/
|
2016-02-18 22:50:17 +01:00
|
|
|
private updateReserve(reservePub: string, mint: MintInfo): Promise<Reserve> {
|
2016-01-06 15:39:22 +01:00
|
|
|
return Query(this.db)
|
2016-01-24 19:57:09 +01:00
|
|
|
.get("reserves", reservePub)
|
2016-01-06 15:39:22 +01:00
|
|
|
.then((reserve) => {
|
|
|
|
let reqUrl = URI("reserve/status").absoluteTo(mint.baseUrl);
|
2016-01-24 19:57:09 +01:00
|
|
|
reqUrl.query({'reserve_pub': reservePub});
|
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
|
|
|
}
|
|
|
|
|
2016-01-26 17:21:17 +01:00
|
|
|
|
2016-02-18 22:50:17 +01:00
|
|
|
getReserveCreationInfo(baseUrl: string,
|
|
|
|
amount: AmountJson): Promise<ReserveCreationInfo> {
|
|
|
|
return this.updateMintFromUrl(baseUrl)
|
|
|
|
.then((mintInfo: IMintInfo) => {
|
|
|
|
let selectedDenoms = getWithdrawDenomList(amount,
|
|
|
|
mintInfo.denoms);
|
|
|
|
|
|
|
|
let acc = native.Amount.getZero(amount.currency);
|
|
|
|
for (let d of selectedDenoms) {
|
|
|
|
acc.add(new native.Amount(d.fee_withdraw));
|
|
|
|
}
|
|
|
|
let ret: ReserveCreationInfo = {
|
|
|
|
mintInfo,
|
|
|
|
selectedDenoms,
|
|
|
|
withdrawFee: acc.toJson(),
|
|
|
|
};
|
|
|
|
return ret;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
2016-02-18 22:50:17 +01:00
|
|
|
updateMintFromUrl(baseUrl): Promise<MintInfo> {
|
|
|
|
baseUrl = canonicalizeBaseUrl(baseUrl);
|
2016-01-06 15:39:22 +01:00
|
|
|
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");
|
|
|
|
}
|
2016-02-18 22:50:17 +01:00
|
|
|
let mintKeysJson = KeysJson.checked(JSON.parse(resp.responseText));
|
|
|
|
|
|
|
|
return Query(this.db).get("mints", baseUrl).then((r) => {
|
|
|
|
let mint;
|
|
|
|
|
|
|
|
console.log("got mints result");
|
|
|
|
console.dir(r);
|
|
|
|
|
|
|
|
if (!r) {
|
|
|
|
mint = MintInfo.fresh(baseUrl);
|
|
|
|
console.log("making fresh mint");
|
|
|
|
} else {
|
|
|
|
mint = new MintInfo(r);
|
|
|
|
console.log("using old mint");
|
|
|
|
}
|
|
|
|
|
|
|
|
mint.mergeKeys(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-02-11 18:17:02 +01:00
|
|
|
/**
|
|
|
|
* Retrieve a mapping from currency name to the amount
|
|
|
|
* that is currenctly available for spending in the wallet.
|
|
|
|
*/
|
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-02-01 15:10:20 +01:00
|
|
|
let acc: AmountJson = byCurrency[c.currentAmount.currency];
|
2016-01-06 15:39:22 +01:00
|
|
|
if (!acc) {
|
2016-02-10 02:03:31 +01:00
|
|
|
acc = native.Amount.getZero(c.currentAmount.currency).toJson();
|
2016-01-06 15:39:22 +01:00
|
|
|
}
|
2016-02-10 02:03:31 +01:00
|
|
|
let am = new native.Amount(c.currentAmount);
|
|
|
|
am.add(new native.Amount(acc));
|
2016-01-06 15:39:22 +01:00
|
|
|
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
|
|
|
|
2016-01-26 17:21:17 +01:00
|
|
|
|
2016-02-11 18:17:02 +01:00
|
|
|
/**
|
|
|
|
* Retrive the full event history for this wallet.
|
|
|
|
*/
|
|
|
|
getHistory(): Promise<any[]> {
|
2016-01-24 02:29:13 +01:00
|
|
|
function collect(x, acc) {
|
|
|
|
acc.push(x);
|
|
|
|
return acc;
|
|
|
|
}
|
2016-01-26 17:21:17 +01:00
|
|
|
|
2016-01-24 02:29:13 +01:00
|
|
|
return Query(this.db)
|
|
|
|
.iter("history", {indexName: "timestamp"})
|
|
|
|
.reduce(collect, [])
|
|
|
|
}
|
2016-02-01 15:10:20 +01:00
|
|
|
}
|