forked from Ami-Solution/etherbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.js
414 lines (381 loc) · 13.9 KB
/
server.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
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
"use strict";
const util = require('./public/dist/util.js');
const Ether = function(){
const Web3 = require('web3');
const Tx = require('ethereumjs-tx');
this.setChain = function(chain){
switch(chain){
case 'mainnet':
return {'node':'https://mainnet.infura.io/'+ process.env.INFURA_KEY, 'id':1};
break;
case 'ropsten':
return {'node':'https://ropsten.infura.io/'+ process.env.INFURA_KEY, 'id':3};
break;
case 'rinkeby':
return {'node':'https://rinkeby.infura.io/'+ process.env.INFURA_KEY, 'id':4};
break;
case 'kovan':
return {'node':'https://kovan.infura.io/'+ process.env.INFURA_KEY, 'id':42};
break;
default:
return {'node':'https://mainnet.infura.io/'+ process.env.INFURA_KEY, 'id':1};
break;
}
}
this.validateAddress = function(address){
var valid = true;
if(String(address) == ''){
valid = false;
}
else if(
String(address).length != 42
|| !String(address).match(/^[0-9a-zA-Z]/)
|| !(String(address).slice(0,2)=='0x')
){
valid = false;
}
return valid;
}
this.validatePrivKey = function(secret){
var valid = true;
if(String(secret) == ''){
valid = false;
}
else if(
String(secret).length != 64
|| !String(secret).match(/^[0-9a-z]/)
){
valid = false;
}
return valid;
}
this.getBalance = function(chain,address){
const web3 = new Web3(new Web3.providers.HttpProvider(this.setChain(chain).node));
return new Promise((resolve, reject) => {
if(this.validateAddress(address)){
resolve(web3.fromWei(web3.eth.getBalance(address), "ether").toNumber() + ' Ether');
}
else{
reject('Invalid address.');
}
});
}
this.transfer = function(chain,sendFrom,sendTo,amount,secret){
const web3 = new Web3(new Web3.providers.HttpProvider(this.setChain(chain).node));
return new Promise((resolve, reject) => {
if(!this.validateAddress(sendFrom)){
reject('Sender address is invalid.')
}
if(!this.validateAddress(sendTo)){
reject('Destination address is invalid.')
}
if(typeof(amount)!=='number' || amount<0){
reject('Invalid amount.')
}
if(!this.validatePrivKey(secret)){
reject('Invalid secret.')
}
web3.eth.getTransactionCount(sendFrom, (err,txCount) => {
var privateKey = new Buffer(secret, 'hex')
var rawTx = {
nonce: web3.toHex(txCount),
gasPrice: web3.toHex(web3.toWei('4', 'gwei')),
gasLimit: web3.toHex(21000),
to: sendTo,
value: web3.toHex(web3.toWei(amount, 'ether')),
data:null,
chainId: this.setChain('ropsten').id
}
var tx = new Tx(rawTx);
tx.sign(privateKey);
var signedTx = tx.serialize();
web3.eth.sendRawTransaction('0x' + signedTx.toString('hex'),(err, txHash)=>{
if(err) {
reject(err);
} else {
resolve(txHash);
}
});
});
});
}
}
const Linebot = function(app) {
const linebot = require('linebot');
const Database = require('nedb');
const db={};
db.botstatus = new Database({
filename: '.database/botstatus',
autoload: true
});
this.bot = linebot({
channelId: process.env.CHANNEL_ID,
channelSecret: process.env.CHANNEL_SECRET,
channelAccessToken: process.env.CHANNEL_ACCESS_TOKEN,
verify: true
});
app.post('/', this.bot.parser());
this.onMessageEvent = function (callback){
this.bot.on('message',event => {
this.setMessageTemplate(event);
callback(event);
});
this.bot.on('postback',event => {
this.setMessageTemplate(event);
callback(event);
});
}
this.setMessageTemplate = function(event){
event.replyText = function(message){
event.reply([{
"type": "text",
"text": message
}]).then(data => {
console.log('Success', data);
}).catch(error => {
console.log('Failed', error);
});
}
event.replyButton = function(/*title,message,button,postback,...*/){
var obj = {
"type": "template",
"altText": arguments[0],
"template": {
"type": "buttons",
"thumbnailImageUrl": null,
"imageAspectRatio": "rectangle",
"imageSize": "cover",
"imageBackgroundColor": "#FFFFFF",
"title": arguments[0],
"text": arguments[1],
"actions": [
{
"type": "postback",
"label": arguments[2],
"data": arguments[3],
}
]
}
}
for (var i = 0; i < 3; i++) {
if(arguments.length > 2*i+4){
obj.template.actions[i+1]={
"type": "postback",
"label": arguments[2*i+4],
"data": arguments[2*i+5]
};
}
}
event.reply([obj]).then(data => {
console.log('Success', data);
}).catch(error => {
console.log('Failed', error);
});
}
event.replyFlex = function(title,src,message,button,uri){
event.reply([{
"type": "flex",
"altText": title,
"contents": {
"type": "bubble",
"header": {
"type": "box",
"layout": "vertical",
"contents": [
{
"type": "text",
"text": title
}
]
},
"hero": {
"type": "image",
"url": src,
"size": "full",
"aspectRatio": "2:1"
},
"body": {
"type": "box",
"layout": "vertical",
"contents": [
{
"type": "text",
"text": message,
"wrap": true
}
]
},
"footer": {
"type": "box",
"layout": "horizontal",
"contents": [
{
"type": "button",
"style": "primary",
"action": {
"type": "uri",
"label": button,
"uri": uri
}
}
]
}
}
}]).then(data => {
console.log('Success', data);
}).catch(error => {
console.log('Failed', error);
try{throw new Error('Success');}catch(e){console.log(e);}
});
}
}
this.readDatabase = function(lineID,callback){
return new Promise((resolve, reject) => {
db.botstatus.findOne({ lineid: lineID }, (err, obj) =>{
if(err == null && obj!=null){
resolve(obj.status);
}
else if(err == null && obj==null){
resolve('action=null');
}
else{
reject(err);
}
});
});
}
this.writeDatabase = function(lineID,status){
db.botstatus.findOne({ lineid: lineID }, (err, obj) => {
if(obj==null){
db.botstatus.insert({'lineid':lineID,'status':status});
}
else{
db.botstatus.update({ 'lineid': lineID }, { $set: { status: status } }, { multi: true });
}
});
}
}
const Route = function(app){
app.use(express.static('public'));
app.get("/redirect/accountinfo", (req, res) => {
res.sendFile(__dirname + '/redirect/accountinfo.html');
});
app.get("/accountinfo", (req, res) => {
res.sendFile(__dirname + '/public/accountinfo.html');
});
app.get("/redirect/transfer", (req, res) => {
res.sendFile(__dirname + '/redirect/transfer.html');
});
app.get("/transfer", (req, res) => {
res.sendFile(__dirname + '/public/transfer.html');
});
app.get("/redirect/invoice", (req, res) => {
res.sendFile(__dirname + '/redirect/invoice.html');
});
app.get("/invoice", (req, res) => {
res.sendFile(__dirname + '/public/invoice.html');
});
}
var Main = function(app){
const route = new Route(app);
const bot = new Linebot(app);
const ether = new Ether();
bot.getAction = function(event,message){
try{
if(typeof(message['action']) == 'undefined' || message['action']==''){
throw 'No Action Detected.';
}
switch(message['action']){
case 'getBalance':
bot.writeDatabase(event.source.userId,'action=showbalance&listen=chain');
event.replyButton(
'Select Chain','Select Ethereum chain.',
'Mainnet','chain=mainnet',
'Ropsten','chain=ropsten',
'Rinkeby','chain=rinkeby',
'Kovan','chain=kovan'
);
break;
case 'accountInfo':
event.replyFlex(
"Show Account Info",
"https://pragma-curry.com/wp/wp-content/uploads/2018/07/Etherbot.png",
"Click the button below to show your account information.",
"Show",
"https://impartial-ellipse.glitch.me/redirect/accountinfo"
);
break;
case 'payment':
event.replyFlex(
"Payment",
"https://pragma-curry.com/wp/wp-content/uploads/2018/07/Etherbot.png",
"Click the button below to open URL.",
"Open URL",
"https://impartial-ellipse.glitch.me/redirect/transfer"
);
break;
case 'invoice':
event.replyFlex(
"Manage Invoice",
"https://pragma-curry.com/wp/wp-content/uploads/2018/07/Etherbot.png",
"Click the button below to open URL.",
"Open URL",
"https://impartial-ellipse.glitch.me/redirect/invoice"
);
break;
default:
throw 'No Action Detected.';
break;
}
}catch(e){
event.replyText(e);
}
}
this.onMessageEvent = function(event){
switch(event.type){
case 'message':
var message = util.queryParse(event.message.text);
break;
case 'postback':
var message = util.queryParse(event.postback.data);
break;
default:
event.replyText('The event type is not supported.');
break;
}
bot.readDatabase(event.source.userId).then(function(statusQuery) {
var status = util.queryParse(statusQuery);
if(status['action']=='getbalance' && status['listen']=='chain'){
console.log(message['chain']);
if(typeof message['chain'] !== 'undefined'){
bot.writeDatabase(event.source.userId, 'action=getbalance&listen=address&chain=' + message['chain']);
event.replyText('Send '+ message['chain']+ ' Address.');
}
else{
bot.writeDatabase(event.source.userId, null);
event.replyText('Failed to select chain.');
}
}
else if(status['action']=='getbalance' && status['listen']=='address' && typeof status['chain'] !== 'undefined'){
ether.getBalance(status['chain'] , event.message.text).then(function(data){
event.replyText(data);
})
.catch(function(err){
event.replyText(err);
});
bot.writeDatabase(event.source.userId, null);
}
else{
bot.getAction(event,message);
}
}).catch(function (err) {
bot.getAction(event,message);
});
}
app.listen(process.env.PORT || 80, () => {
console.log('Server is running.');
});
bot.onMessageEvent(this.onMessageEvent);
}
const express = require('express');
new Main(express());