@cityofzion/neo-js
Version:
Running NEO blockchain full node with Node.js and MongoDB.
74 lines • 2.7 kB
JavaScript
;
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : new P(function (resolve) { resolve(result.value); }).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
Object.defineProperty(exports, "__esModule", { value: true });
const schemas_1 = require("./schemas");
const utils_1 = require("./utils");
class BlockMetaDao {
constructor(mongoose, collectionName) {
this.model = this.getModel(mongoose, collectionName);
}
count() {
return __awaiter(this, void 0, void 0, function* () {
return yield this.model.countDocuments({}).exec();
});
}
getHighest() {
return __awaiter(this, void 0, void 0, function* () {
return yield this.model
.findOne()
.sort({ height: -1 })
.exec();
});
}
getHighestHeight() {
return __awaiter(this, void 0, void 0, function* () {
try {
const doc = yield this.getHighest();
return doc.height;
}
catch (err) {
return 0;
}
});
}
save(data) {
return __awaiter(this, void 0, void 0, function* () {
return yield this.model(data).save();
});
}
removeByHeight(height) {
return __awaiter(this, void 0, void 0, function* () {
return yield this.model.deleteMany({ height }).exec();
});
}
analyze(startHeight, endHeight) {
return __awaiter(this, void 0, void 0, function* () {
return yield this.model
.find({
height: {
$gte: startHeight,
$lte: endHeight,
},
}, 'height apiLevel')
.exec();
});
}
reviewIndex(key, keyObj) {
return __awaiter(this, void 0, void 0, function* () {
return yield utils_1.MongodbUtils.reviewIndex(this.model, key, keyObj);
});
}
getModel(mongoose, collectionName) {
const schema = schemas_1.blockMetaSchema;
return mongoose.models[collectionName] || mongoose.model(collectionName, schema);
}
}
exports.BlockMetaDao = BlockMetaDao;
//# sourceMappingURL=block-meta-dao.js.map