insight-ui-zcash/lib/Sync.js

96 lines
2.1 KiB
JavaScript
Raw Normal View History

2014-01-10 11:02:33 -08:00
'use strict';
2014-01-07 10:21:59 -08:00
2014-01-10 11:02:33 -08:00
require('classtool');
2014-01-10 11:02:33 -08:00
function spec() {
2014-01-10 16:42:39 -08:00
var mongoose = require('mongoose');
var config = require('../config/config');
var Block = require('../app/models/Block');
var Transaction = require('../app/models/Transaction');
2014-01-16 12:25:52 -08:00
var sockets = require('../app/controllers/socket.js');
2014-01-15 12:36:49 -08:00
function Sync() {
2014-01-15 12:36:49 -08:00
this.tx_count = 0;
}
Sync.prototype.storeBlock = function(block, cb) {
2014-01-14 14:42:38 -08:00
var that = this;
2014-01-15 12:36:49 -08:00
2014-01-16 08:01:32 -08:00
Block.customCreate(block, function(err, block, inserted_txs){
2014-01-17 11:36:34 -08:00
if (err) return cb(err);
2014-01-15 12:36:49 -08:00
2014-01-16 08:01:32 -08:00
if (block && that.opts.broadcast_blocks) {
sockets.broadcast_block(block);
2014-01-14 14:42:38 -08:00
}
2014-01-16 08:01:32 -08:00
if (inserted_txs && that.opts.broadcast_txs) {
inserted_txs.forEach(function(tx) {
sockets.broadcast_tx(tx);
2014-01-15 12:36:49 -08:00
});
}
2014-01-14 13:09:45 -08:00
2014-01-16 08:01:32 -08:00
if (inserted_txs)
that.tx_count += inserted_txs.length;
2014-01-14 13:09:45 -08:00
2014-01-15 12:36:49 -08:00
return cb();
2014-01-11 20:29:25 -08:00
});
};
2014-01-16 08:01:32 -08:00
Sync.prototype.storeTxs = function(txs, inTime, cb) {
var that = this;
2014-01-16 08:01:32 -08:00
var time = inTime ? inTime : Math.round(new Date().getTime() / 1000);
2014-01-16 08:01:32 -08:00
Transaction.createFromArray(txs, time, function(err, inserted_txs) {
if (!err && inserted_txs && that.opts.broadcast_txs) {
inserted_txs.forEach(function(tx) {
sockets.broadcast_tx(tx);
});
}
return cb(err);
});
};
2014-01-16 12:00:11 -08:00
Sync.prototype.init = function(opts, cb) {
var that = this;
2014-01-16 12:00:11 -08:00
that.opts = opts;
2014-01-16 12:00:11 -08:00
if (!(opts && opts.skip_db_connection)) {
2014-01-16 16:08:50 -08:00
if (!mongoose.connection) {
mongoose.connect(config.db, {server: {auto_reconnect: true}} );
}
2014-01-16 12:00:11 -08:00
this.db = mongoose.connection;
2014-01-16 12:00:11 -08:00
this.db.on('error', function(err) {
console.log('connection error:' + err);
2014-01-16 16:08:50 -08:00
mongoose.disconnect();
});
2014-01-14 11:45:25 -08:00
2014-01-16 12:00:11 -08:00
this.db.on('disconnect', function(err) {
console.log('disconnect:' + err);
mongoose.connect(config.db, {server: {auto_reconnect: true}} );
});
2014-01-14 11:45:25 -08:00
2014-01-16 12:00:11 -08:00
return that.db.once('open', cb);
}
2014-01-16 12:00:11 -08:00
else return cb();
};
Sync.prototype.close = function() {
2014-01-16 12:00:11 -08:00
if (!(this.opts && this.opts.skip_db_connection)) {
this.db.close();
}
};
return Sync;
2014-01-10 11:02:33 -08:00
}
2014-01-07 10:21:59 -08:00
module.defineClass(spec);
2014-01-10 11:02:33 -08:00