Files
paperclip-wallet/modules/database.js
2018-12-25 12:09:14 +01:00

65 lines
1.7 KiB
JavaScript

const {app, ipcMain} = require('electron');
const storage = require('electron-storage');
const datastore = require('nedb');
const path = require('path');
const dbPath = path.join(app.getPath('userData'), 'storage.db');
const db = new datastore({ filename: dbPath });
db.loadDatabase(function (err) {
// Now commands will be executed
});
// index the block field
db.ensureIndex({ fieldName: 'block' }, function (err) {
// If there was an error, err is not null
});
// index the txhash field
db.ensureIndex({ fieldName: 'txhash', unique: true }, function (err) {
// If there was an error, err is not null
});
ipcMain.on('storeTransaction', (event, arg) => {
db.update({ txhash: arg.txhash }, arg, { upsert: true }, function (err, numReplaced, upsert) {
// do nothing for now
});
});
ipcMain.on('getTransactions', (event, arg) => {
db.find({}).sort({ block: 1 }).exec(function (err, docs) {
ResultData = [];
for (i = 0; i < Math.min(docs.length, 500); i++) {
ResultData.push([
docs[i].block,
docs[i].timestamp,
docs[i].fromaddr,
docs[i].toaddr,
docs[i].value
]);
}
// return the transactions data
event.returnValue = ResultData;
});
});
ipcMain.on('getJSONFile', (event, arg) => {
storage.get(arg, (err, data) => {
if (err) {
event.returnValue = null;
} else {
event.returnValue = data;
}
});
});
ipcMain.on('setJSONFile', (event, arg) => {
storage.set(arg.file, arg.data, (err) => {
if (err) {
event.returnValue = { success: false, error: err };
} else {
event.returnValue = { success: true, error: null };
}
});
});