-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.js
202 lines (179 loc) · 6.46 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
const { app, BrowserWindow } = require('electron')
// Keep a global reference of the window object, if you don't, the window will
// be closed automatically when the JavaScript object is garbage collected.
let win
function createWindow () {
webPreferences: {
nodeIntegration: false
}
// Create the browser window.
win = new BrowserWindow({ width: 1200, height: 700, resizable: false, icon: 'dist/img/crowd.png'})
// and load the index.html of the app.
win.loadFile('index.html')
// Open the DevTools.
win.webContents.openDevTools()
// Emitted when the window is closed.
win.on('closed', () => {
// Dereference the window object, usually you would store windows
// in an array if your app supports multi windows, this is the time
// when you should delete the corresponding element.
win = null
})
}
// This method will be called when Electron has finished
// initialization and is ready to create browser windows.
// Some APIs can only be used after this event occurs.
app.on('ready', createWindow)
// Quit when all windows are closed.
app.on('window-all-closed', () => {
// On macOS it is common for applications and their menu bar
// to stay active until the user quits explicitly with Cmd + Q
if (process.platform !== 'darwin') {
app.quit()
}
})
app.on('activate', () => {
// On macOS it's common to re-create a window in the app when the
// dock icon is clicked and there are no other windows open.
if (win === null) {
createWindow()
}
})
// In this file you can include the rest of your app's specific main process
// code. You can also put them in separate files and require them here.
const {ipcMain} = require('electron')
// https://electronjs.org/docs/api/ipc-main
ipcMain.on('synchronous-addSensedData', (event, arg) => {
// console.log(arg)
addSensedData(arg).then(dataHash =>{
event.returnValue = dataHash;
})
})
ipcMain.on('synchronous-catSensedData', (event, arg) => {
// console.log(arg)
catSensedData(arg).then(fileBuffer =>{
event.returnValue = fileBuffer;
})
})
// save data
async function addSensedData(sensedData){
const filesAdded = await node.files.add({
content: Buffer.from(sensedData)
})
// console.log('Added file:', filesAdded[0].path, filesAdded[0].hash)
return filesAdded[0].hash;
}
// retrieve data
async function catSensedData(ipfsHash){
const fileBuffer = await node.files.cat(ipfsHash);
// console.log('Added file contents:', fileBuffer.toString())
return fileBuffer.toString();
}
// IPFS & solc
const fs = require('fs')
const solc = require('solc')
const IPFS = require('ipfs')
const node = new IPFS()
node.on('ready', async () => {
const version = await node.version();
console.log('Version:', version.version);
});
var Web3 = require("web3");
var web3 = new Web3();
web3.setProvider(new Web3.providers.HttpProvider("http://localhost:8545"));
if (typeof localStorage === "undefined" || localStorage === null) {
var LocalStorage = require('node-localstorage').LocalStorage;
localStorage = new LocalStorage('./scratch');
}
function compileContract(contract_name){
let source = fs.readFileSync("./dist/contracts/" + contract_name + ".sol", 'utf8')
console.log('=> compiling contract ' + contract_name);
let compiledContract;
try{
compiledContract = solc.compile(source);
}catch(err){
console.log(err);
return -1;
}
for (let contractName in compiledContract.contracts) {
var bytecode = compiledContract.contracts[contractName].bytecode;
var abi = compiledContract.contracts[contractName].interface;
}
contract_info = {"abi": abi, "bytecode": bytecode};
return contract_info;
}
function deployManagerContract(){
let contract_info = compileContract('taskManagement');
let bytecode = contract_info.bytecode;
localStorage.setItem('_abi',contract_info.abi);
let abi = JSON.parse(contract_info.abi);
web3.eth.estimateGas({data: bytecode}).then(function(gasEstimate){
web3.eth.getAccounts().then(function(accounts){
let myContract = new web3.eth.Contract(abi,null,{from: accounts[0], gas: gasEstimate});
myContract.deploy({data: bytecode})
.send({from: accounts[0], gas: gasEstimate},function(error, transactionHash){
console.log("=> hash: " + transactionHash)
})
.then(function(newContractInstance){
console.log("=> address: " + newContractInstance.options.address) // instance with the new contract address
localStorage.setItem('_address', newContractInstance.options.address);
});
})
});
}
if(!(localStorage.getItem('_abi') && localStorage.getItem('_address'))){
deployManagerContract();
}
ipcMain.on('synchronous-taskManager', (event, arg) => {
taskManager().then(result =>{
event.returnValue = result;
})
})
async function taskManager(){
contract_info = {"abi": localStorage.getItem('_abi'), "address": localStorage.getItem('_address')};
return contract_info;
}
ipcMain.on('synchronous-compileTask', (event, arg) => {
// console.log(arg)
compileTask(arg).then(res =>{
event.returnValue = res;
})
})
async function compileTask(args){ // json string
var compileData = JSON.parse(args);
let source = fs.readFileSync("./dist/contracts/sensingTaskTemplate.sol", 'utf8')
source = source.replace(/@condition/, compileData['condition']);
delete compileData['condition'];
var variables = '';
var inputs = '';
var additionConditions = '';
var initialization = ''
for(var key in compileData){
var temp = compileData[key];
variables += temp['type'] + ' ' + temp['property'] + ' ' + key + ';\n ';
if(temp['type'] == 'bytes32'){
initialization += key + ' = "' + temp['value'] + '";\n ';
}else{
initialization += key + ' = ' + temp['value'] + ';\n ';
}
inputs += ', ' + temp['type'] + ' _' + key;
additionConditions += 'require(_' + key + ' == ' + key + ');\n ';
}
source = source.replace(/@variables/, variables);
source = source.replace(/@initialization/, initialization);
source = source.replace(/@inputs/, inputs);
source = source.replace(/@additionalCondition/, additionConditions);
let compiledContract;
try{
compiledContract = solc.compile(source);
}catch(err){
console.log(err);
return -1; // compile failed
}
for (let contractName in compiledContract.contracts) {
var bytecode = compiledContract.contracts[contractName].bytecode;
var abi = compiledContract.contracts[contractName].interface;
}
contract_info = {"abi": abi, "bytecode": bytecode};
return JSON.stringify(contract_info);
}