-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathVote.js
More file actions
255 lines (222 loc) · 6.08 KB
/
Vote.js
File metadata and controls
255 lines (222 loc) · 6.08 KB
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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
'use strict';
let axios = require('axios')
let Web3 = require('web3');
const SignerProvider = require('ethjs-provider-signer');
var TruffleContract = require("truffle-contract");
class Vote {
constructor(param) {
if (param.providerURL === undefined) {
throw "No provider URL"
}
if (param.signer === undefined && param.signerURL === undefined) {
throw "Need either a signer or a signerURL"
}
this.providerURL = param.providerURL
this.wallet = param.wallet
this.signer = param.signer
this.signerURL = param.signerURL
this.contract = TruffleContract(require("./contract.json"))
this._setProvider()
}
_setProvider() {
let provider
if(typeof web3 !== 'undefined') {
console.log("provider found");
web3 = new Web3(web3.currentProvider);
provider = web3.currentProvider;
if (web3.eth.accounts.length > 0) {
console.log("set default account");
web3.eth.defaultAccount = web3.eth.accounts[0];
}
this.contract.defaults({
from: web3.eth.defaultAccount
})
console.log("web3.eth.defaultAccount", web3.eth.defaultAccount);
console.log("web3.eth.accounts", web3.eth.accounts);
}
else if (this.wallet !== undefined) {
console.log("signer provided. use node from providerURL and local signer");
provider = new SignerProvider(this.providerURL, {
signTransaction: (rawTx, cb) => {
let promiseSigner = Promise.reject("no signer provide")
if(this.signer !== undefined) {
promiseSigner = this.signer(rawTx)
}
else if(this.signerURL !== undefined) {
promiseSigner = this._signer(rawTx)
}
promiseSigner
.then(signedTx => {
cb(null, signedTx)
})
.catch(error => {
console.log("error", error)
})
}
});
this.contract.defaults({
from: this.wallet.public, //@todo: will be better if no public address on the client. when done, merge with next else
})
}
else {
console.log("no provider found. use node from providerURL and no signer");
let web3 = new Web3(new Web3.providers.HttpProvider(this.providerURL));
provider = web3.currentProvider;
}
this.contract.setProvider(provider);
}
_signer(rawTx) {
return axios.post(this.signerURL, rawTx)
.then(response => {
return response.data.signedTx
})
.catch(error => {
console.log(error)
})
}
/*
* Load a already deployed contract
* - Return: Promise<Void>
*/
load(address) {
return this.contract.at(address)
.then(_instance => {
this.instance = _instance
})
}
/*
* Create a new vote
* - Parameters
* question: String. Ex: "Who is the best?"
* - Return: Promise<Void>
*/
create(question) {
return this.contract.new(question)
.then(_instance => {
this.instance = _instance
// console.log("contract address", this.instance.address);
})
}
/*
* Add a proposal
* - Parameters
* proposal: String. Ex: "Thomas"
* - Return: Promise<Void>
*/
addProposal(proposal) {
return this.instance.addProposal(proposal)
}
/*
* Vote for a propsal
* - Parameters
* voterHash: byte32. Hash that represent a voter
* proposal: Integer. Index of the proposal. Ex: 0
* - Return: Promise<Void>
*/
vote(voterHash, proposal) {
return this.instance.vote(voterHash, proposal)
}
/*****************************************************************************
* Getter
****************************************************************************/
/*
* Get the question of the vote
* - Return: Promise<String>
*/
get question() {
return this.instance.question()
}
get numberOfVote() {
return this.instance.numberOfVote()
.then(_data => {
return _data.valueOf()
})
}
get proposalsCount() {
return this.instance.proposalsCount()
.then(_data => {
return _data.valueOf()
})
}
get allProposals() {
return this.proposalsCount
.then(proposalsCount => {
let promises = []
for(let i=0; i<proposalsCount; i++) {
let promiseProposal = this.proposals(i)
let promiseVote = this.numberOfVoteForProposal(i)
let promise = Promise.all([promiseProposal, promiseVote])
.then(data => {
let proposalData = data[0]
proposalData["numberOfVote"] = data[1]
return proposalData
})
promises.push(promise)
}
return Promise.all(promises)
})
}
proposals(index) {
return this.instance.proposals(index)
.then(_data => {
return {
"name": _data[0].valueOf()
}
})
}
numberOfVoteForProposal(index) {
return this.instance.numberOfVoteForProposal(index)
.then(_data => {
return parseInt(_data.valueOf())
})
}
get numberOfVotePerProposal() {
return this.instance.numberOfVotePerProposal()
.then(_data => {
return _data.map(data => {
return parseInt(data.valueOf())
})
})
}
get votersHashCount() {
return this.instance.votersHashCount()
.then(_data => {
return _data.valueOf()
})
}
votersHash(index) {
return this.instance.votersHash(index)
.then(_data => {
return _data.valueOf()
})
}
voters(voterHash) {
return this.instance.voters(voterHash)
.then(_data => {
return {
"voterHash": voterHash,
"voted": _data[0].valueOf(),
"proposalVoted": parseInt(_data[1].valueOf()),
"votersHashIndex": parseInt(_data[2].valueOf())
}
})
}
get allVoters() {
return this.votersHashCount
.then(votersHashCount => {
let promises = []
for(let i=0; i<votersHashCount; i++) {
let promise = this.votersHash(i)
promises.push(promise)
}
return Promise.all(promises)
})
.then(votersHash => {
let promises = votersHash.map(voterHash => {
return this.voters(voterHash)
})
return Promise.all(promises)
})
}
}
module.exports = Vote