-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapi.js
250 lines (188 loc) · 9.05 KB
/
api.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
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
var BigNumber = require('bignumber.js');
var common = require('./common.js');
////////////////////////////////////////////////////////////////////////////////
module.exports.register = function ( privateKey, ipfsLink, callback ) {
var commuterzInstance = common.getCommuterzInstance();
var txData = commuterzInstance.register.getData(ipfsLink);
return common.signAndSend( privateKey,
txData,
commuterzInstance.address,
0,
callback );
};
////////////////////////////////////////////////////////////////////////////////
module.exports.getUserBalance = function ( ethereumAddress, callback ) {
var account = ethereumAddress;
common.getTokenInstance(function(err,result){
tokenInstance = result;
if( err ) return callback(err, result);
tokenInstance.balanceOf(account, function(err,result){
callback(err,parseInt(result.toString(10)));
});
});
};
////////////////////////////////////////////////////////////////////////////////
module.exports.getUserIPFSLink = function ( ethereumAddress, callback ) {
var account = ethereumAddress;
var commuterzInstance = common.getCommuterzInstance();
return commuterzInstance.getUserIPFSLink(account, function(err,result){
callback(err,result);
});
};
////////////////////////////////////////////////////////////////////////////////
module.exports.isRegistered = function ( ethereumAddress, callback ) {
module.exports.getUserIPFSLink( ethereumAddress, function(err,result){
if( err ) return callback(err,result);
callback(err,result.toString() !== "" );
});
};
////////////////////////////////////////////////////////////////////////////////
module.exports.approveTokensToContract = function ( privateKey, rideCost, callback ) {
common.getTokenInstance(function(err,result){
tokenInstance = result;
if( err ) return callback(err, result);
var txData = tokenInstance.approve.getData(common.getCommuterzAddress().toString(), rideCost);
return common.signAndSend( privateKey,
txData,
tokenInstance.address,
0,
callback );
});
};
////////////////////////////////////////////////////////////////////////////////
module.exports.getNextRideId = function ( ethereumAddress, callback ) {
var account = ethereumAddress;
common.getCommuterzInstance().getRideId(account, callback );
};
////////////////////////////////////////////////////////////////////////////////
module.exports.userRequestARide = function (privateKey, rideCost, callback ) {
var txData = common.getCommuterzInstance().passangerRideRequest.getData(rideCost );
return common.signAndSend( privateKey,
txData,
common.getCommuterzInstance().address,
0,
callback );
};
////////////////////////////////////////////////////////////////////////////////
module.exports.txStatus = function ( txhash, callback ) {
var web3 = common.getWeb3();
web3.eth.getTransactionReceipt(txhash, function(err,result){
if( err ) return callback(err,false);
if( result === null ) return callback(err,false);
// else
if( parseInt(result.gasUsed.toString(10)) >= common.getGasLimit() ) {
return callback( "tx failed", true );
}
else {
return callback( err, true );
}
});
};
////////////////////////////////////////////////////////////////////////////////
module.exports.userApproveARideByDriver = function (privateKey, rideId, callback ) {
var txData = common.getCommuterzInstance().driverAcceptRequest.getData(rideId);
return common.signAndSend( privateKey,
txData,
common.getCommuterzInstance().address,
0,
callback );
};
////////////////////////////////////////////////////////////////////////////////
module.exports.userEndsRideByDriver = function (privateKey, rideId, callback ) {
var txData = common.getCommuterzInstance().endRide.getData(rideId);
return common.signAndSend( privateKey,
txData,
common.getCommuterzInstance().address,
0,
callback );
};
////////////////////////////////////////////////////////////////////////////////
module.exports.userRate = function (privateKey, rideId, rating, callback ) {
var txData = common.getCommuterzInstance().rate.getData(rideId,rating);
return common.signAndSend( privateKey,
txData,
common.getCommuterzInstance().address,
0,
callback );
};
////////////////////////////////////////////////////////////////////////////////
module.exports.debugShop = function (privateKey, callback ) {
var txData = common.getCommuterzInstance().debugShop.getData();
return common.signAndSend( privateKey,
txData,
common.getCommuterzInstance().address,
0,
callback );
};
////////////////////////////////////////////////////////////////////////////////
module.exports.debugGamePrize = function (privateKey, seed, amount, callback ) {
var txData = common.getCommuterzInstance().debugGamePrize.getData(seed,amount);
return common.signAndSend( privateKey,
txData,
common.getCommuterzInstance().address,
0,
callback );
};
////////////////////////////////////////////////////////////////////////////////
module.exports.privateKeyToAddress = function( privateKey ) {
return common.privateKeyToAddress(privateKey);
};
////////////////////////////////////////////////////////////////////////////////
module.exports.getPrivateKey = function( password, salt ) {
return common.getPrivateKey(password,salt);
};
////////////////////////////////////////////////////////////////////////////////
module.exports.getSomeEtherInRegistration = function( destAccount, callback ) {
var key = common.getPrivateKey("commuterz","");
console.log(common.privateKeyToAddress(key));
return common.signAndSend( key,
"0x00",
destAccount,
new BigNumber(10).pow(18), // 1 ether
callback );
};
////////////////////////////////////////////////////////////////////////////////
module.exports.getNumUsers = function ( callback ) {
return common.getCommuterzInstance().numUsers(callback);
};
/*
////////////////////////////////////////////////////////////////////////////////
module.exports.getGameBalance = function ( callback ) {
common.getGameInstance( function( err, instance ){
if( err ) return callback(err, null);
common.getTokenInstance( function(err,token){
if( err ) return callback(err,null);
return token.balanceOf(instance.address, callback);
});
});
};
////////////////////////////////////////////////////////////////////////////////
module.exports.runGame = function ( callback ) {
var ownerPrivateKey = common.getPrivateKey("commuterz","");
var txData = common.getCommuterzInstance().doGame.getData();
return common.signAndSend( ownerPrivateKey,
txData,
common.getCommuterzInstance().address,
0,
callback );
};
////////////////////////////////////////////////////////////////////////////////
module.exports.getGameWinner = function ( callback ) {
common.getGameInstance( function( err, instance ){
if( err ) return callback(err, null);
instance.winner(callback);
});
};
////////////////////////////////////////////////////////////////////////////////
module.exports.winnerCollectPrize = function ( winnerPrivateKey, callback ) {
common.getGameInstance( function( err, instance ){
if( err ) return callback(err, null);
var txData = instance.winner.getData();
return common.signAndSend( winnerPrivateKey,
txData,
instance.address,
0,
callback );
});
};
*/