Merge remote-tracking branch 'matiu/feature/virtual-methods-to-pull-data-from-bitcoind' into feature/p2p-import

This commit is contained in:
Manuel Araoz 2014-01-08 16:32:11 -03:00
commit ec0c78d914
5 changed files with 160 additions and 86 deletions

View File

@ -4,68 +4,27 @@
* Module dependencies.
*/
var mongoose = require('mongoose'),
Schema = mongoose.Schema;
var async = require('async');
var Transaction = require('./Transaction');
Schema = mongoose.Schema,
async = require('async'),
RpcClient = require('bitcore/RpcClient').class(),
config = require('../../config/config')
;
/**
* Block Schema
*/
var BlockSchema = new Schema({
// For now we keep this as short as possible
// More fields will be propably added as we move
// forward with the UX
hash: {
type: String,
index: true,
unique: true,
},
size: Number,
height: Number,
confirmations: Number,
version: Number,
merkleroot: String,
tx: [ String ],
time: Date,
nonce: Number,
bits: String,
difficulty: Number,
chainwork: String,
previousblockhash: {
type: String,
index: true,
unique: true,
},
nextblockhash: {
type: String,
index: true,
unique: true,
},
});
BlockSchema.methods.explodeTransactions = function(next) {
// console.log('exploding %s', this.hash, typeof this.tx);
async.forEach( this.tx,
function(tx, callback) {
// console.log('procesing TX %s', tx);
Transaction.create({ txid: tx }, function(err) {
if (err && ! err.toString().match(/E11000/)) {
return callback();
}
if (err) {
return callback(err);
}
return callback();
});
},
function(err) {
if (err) return next(err);
return next();
}
);
};
/**
* Validations
@ -94,4 +53,38 @@ BlockSchema.statics.fromHash = function(hash, cb) {
}).exec(cb);
};
BlockSchema.statics.fromHashWithInfo = function(hash, cb) {
this.fromHash(hash, function(err, block) {
if (err) return cb(err);
block.getInfo(function(err) { return cb(err,block); } );
});
};
// TODO: Can we store the rpc instance in the Block object?
BlockSchema.methods.getInfo = function (next) {
var that = this;
var rpc = new RpcClient(config.bitcoind);
rpc.getBlock(this.hash, function(err, blockInfo) {
if (err) return next(err);
/*
* Not sure this is the right way to do it.
* Any other way to lazy load a property in a mongoose object?
*/
that.info = blockInfo.result;
//console.log("THAT", that);
return next(null, that.info);
});
};
module.exports = mongoose.model('Block', BlockSchema);

View File

@ -4,35 +4,20 @@
* Module dependencies.
*/
var mongoose = require('mongoose'),
Schema = mongoose.Schema;
Schema = mongoose.Schema,
async = require('async');
/**
*/
var TransactionSchema = new Schema({
// For now we keep this as short as possible
// More fields will be propably added as we move
// forward with the UX
txid: {
type: String,
index: true,
unique: true,
},
version: Number,
locktime: Number,
vin: {
type: Array,
default: [],
},
vout: {
type: Array,
default: [],
},
blockhash: {
type: String,
index: true,
default: null,
},
confirmations: Number,
time: Number,
blocktime: Number,
});
/**
@ -52,13 +37,61 @@ TransactionSchema.statics.fromID = function(txid, cb) {
}).exec(cb);
};
/*
* virtual
*/
TransactionSchema.statics.fromIDWithInfo = function(txid, cb) {
this.fromHash(hash, function(err, tx) {
if (err) return cb(err);
tx.getInfo(function(err) { return cb(err,tx); } );
});
};
TransactionSchema.statics.createFromArray = function(txs, next) {
var that = this;
if (!txs) return next();
// console.log('exploding ', txs);
async.forEach( txs,
function(tx, callback) {
// console.log('procesing TX %s', tx);
that.create({ txid: tx }, function(err) {
if (err && ! err.toString().match(/E11000/)) {
return callback();
}
if (err) {
return callback(err);
}
return callback();
});
},
function(err) {
if (err) return next(err);
return next();
}
);
};
TransactionSchema.methods.getInfo = function (next) {
var that = this;
var rpc = new RpcClient(config.bitcoind);
rpc.getRawTransaction(this.txid, function(err, txInfo) {
if (err) return next(err);
that.info = txInfo.result;
//console.log("THAT", that);
return next(null, that.info);
});
};
// ugly? new object every call?
TransactionSchema.virtual('date').get(function () {
return new Date(this.time);
});
module.exports = mongoose.model('Transaction', TransactionSchema);

View File

@ -1,5 +1,10 @@
require('classtool');
/* We dont sync any contents from TXs, only their IDs are stored */
var isSyncTxEnabled = 0;
function spec(b) {
var mongoose = require('mongoose');
var util = require('util');
@ -8,9 +13,9 @@ function spec(b) {
var networks = require('bitcore/networks');
var async = require('async');
var config = require('./config/config');
var Block = require('./app/models/Block');
var Transaction=require('./app/models/Transaction');
var config = require('../config/config');
var Block = require('../app/models/Block');
var Transaction=require('../app/models/Transaction');
function Sync(config) {
this.network = config.networkName == 'testnet' ? networks.testnet : networks.livenet;
@ -46,7 +51,7 @@ function spec(b) {
}
if (inBlock) {
inBlock.explodeTransactions(function (err) {
Transaction.createFromArray( blockInfo.result.tx,function (err) {
return that.getNextBlock(blockInfo.result.nextblockhash, cb);
});
}
@ -82,6 +87,8 @@ function spec(b) {
}
// This is not currently used. Transactions are represented by txid only
// in mongodb
Sync.prototype.syncTXs = function (reindex, cb) {
var that = this;
@ -145,7 +152,7 @@ function spec(b) {
mongoose.connect(config.db);
var db = mongoose.connection;
this.rpc = new RpcClient(config.bitcoind);
this.rpc = new RpcClient(config.bitcoind);
var that = this;
@ -157,14 +164,14 @@ function spec(b) {
function(cb){
if (opts.destroy) {
console.log("Deleting Blocks...");
return Block.remove().exec(cb);
return db.collections['blocks'].drop(cb);
}
return cb();
},
function(cb){
if (opts.destroy) {
console.log("Deleting TXs...");
return Transaction.remove().exec(cb);
return db.collections['transactions'].drop(cb);
}
return cb();
},
@ -186,7 +193,7 @@ function spec(b) {
}
},
function(cb) {
if (! opts.skip_txs) {
if ( isSyncTxEnabled && ! opts.skip_txs) {
that.syncTXs(opts.reindex, function(err) {
if (err) {
return cb(err);

41
test/model/block.js Normal file
View File

@ -0,0 +1,41 @@
#!/usr/bin/env node
process.env.NODE_ENV = process.env.NODE_ENV || 'development';
var TESTING_BLOCK = '0000000000b6288775bbd326bedf324ca8717a15191da58391535408205aada4';
var
mongoose= require('mongoose'),
assert = require('assert'),
config = require('../../config/config'),
Block = require('../../app/models/Block');
mongoose.connect(config.db);
var db = mongoose.connection;
describe('getInfo', function(){
var block_hash = TESTING_BLOCK;
db.on('error', console.error.bind(console, 'connection error:'));
db.once('open', function (){
var block2 = Block.fromHashWithInfo(block_hash, function(err, b2) {
if (err) done(err);
console.log("Block obj:");
console.log(b2);
console.log("Block.info:");
console.log(b2.info);
db.close();
done();
});
});
});

View File

@ -6,7 +6,7 @@ require('buffertools').extend();
var SYNC_VERSION = '0.1';
var program = require('commander');
var Sync = require('../Sync').class();
var Sync = require('../lib/Sync').class();
program
.version(SYNC_VERSION)