forked from 3cqs-coder/SymBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsymbot.js
executable file
·426 lines (268 loc) · 9.4 KB
/
symbot.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
415
416
417
418
419
420
421
422
423
424
425
426
'use strict';
/*
SymBot
Copyright © 2023 3CQS.com All Rights Reserved
Licensed under Creative Commons Attribution-NonCommerical-ShareAlike 4.0 International (CC BY-NC-SA 4.0)
*/
const DB = require(__dirname + '/libs/mongodb');
const ServerDB = require(__dirname + '/libs/mongodb/ServerSchema');
const DCABot = require(__dirname + '/libs/strategies/DCABot/DCABot.js');
const DCABotManager = require(__dirname + '/libs/strategies/DCABot/DCABotManager.js');
const Signals3CQS = require(__dirname + '/libs/signals/3CQS/3cqs-signals-client.js');
const Common = require(__dirname + '/libs/Common.js');
const Telegram = require(__dirname + '/libs/telegram');
const WebServer = require(__dirname + '/libs/webserver');
const packageJson = require(__dirname + '/package.json');
const prompt = require('prompt-sync')({
sigint: true
});
let appDataConfig;
let gotSigInt = false;
process.on('SIGINT', shutDown);
process.on('SIGTERM', shutDown);
// Specifically for PM2 (Windows)
process.on('message', function(msg) {
if (msg == 'shutdown') {
shutDown();
}
});
process.on('uncaughtException', function(err) {
let logData = 'Uncaught Exception: ' + JSON.stringify(err.message) + ' Stack: ' + JSON.stringify(err.stack);
Common.logger(logData, true);
});
async function init() {
let apiKey;
let consoleLog = false;
if (process.argv[2] && process.argv[2].toLowerCase() == 'consolelog') {
consoleLog = true;
}
Common.logger('Starting ' + packageJson.description + ' v' + packageJson.version, true);
let appConfig = await Common.getConfig('app.json');
let signalConfigs = await Common.getSignalConfigs();
let signalConfigsData = signalConfigs.data;
const serverConfig = await Common.getConfig('server.json');
if (appConfig['data']['api_key'] == undefined || appConfig['data']['api_key'] == null || appConfig['data']['api_key'] == '') {
let appConfigObj = JSON.parse(JSON.stringify(appConfig));
apiKey = Common.uuidv4();
appConfigObj['data']['api_key'] = apiKey;
await Common.saveConfig('app.json', appConfigObj.data);
}
else {
apiKey = appConfig['data']['api_key'];
}
if (appConfig['data']['password'] == undefined || appConfig['data']['password'] == null || appConfig['data']['password'] == '' || appConfig['data']['password'].indexOf(':') == -1) {
const dataPass = await Common.genPasswordHash('admin');
appConfig['data']['password'] = dataPass['salt'] + ':' + dataPass['hash'];
let appConfigObj = JSON.parse(JSON.stringify(appConfig));
await Common.saveConfig('app.json', appConfigObj.data);
}
if (signalConfigs.success && Object.keys(signalConfigsData).length > 0) {
let startSubsObj = {};
for (let key in signalConfigsData) {
let signalObj = {};
let startConditions = signalConfigsData[key]['start_conditions'];
let startConditionsSub = signalConfigsData[key]['start_conditions_sub'];
for (let num in startConditions) {
let id = startConditions[num]['id'];
let description = startConditions[num]['description'];
let signalId = 'signal|' + key + '|' + id;
description = 'Signal ' + key + ': ' + description;
signalObj[signalId] = {};
signalObj[signalId]['description'] = description;
}
if (startSubsObj[key] == undefined || startSubsObj[key] == null) {
startSubsObj[key] = {};
for (let num in startConditionsSub) {
let id = startConditionsSub[num]['id'];
let description = startConditionsSub[num]['description'];
let signalId = 'signalsub|' + key + '|' + id;
startSubsObj[key][signalId] = {};
startSubsObj[key][signalId]['description'] = description;
}
appConfig['data']['bots']['start_conditions_sub'] = Object.assign({}, appConfig['data']['bots']['start_conditions_sub'], startSubsObj[key]);
}
appConfig['data']['bots']['start_conditions'] = Object.assign({}, appConfig['data']['bots']['start_conditions'], signalObj);
}
}
let shareData = {
'appData': {
'name': packageJson.description,
'version': packageJson.version,
'server_id': '',
'app_filename': __filename,
'console_log': consoleLog,
'mongo_db_url': appConfig['data']['mongo_db_url'],
'web_server_port': appConfig['data']['web_server']['port'],
'exchanges': {},
'api_key': apiKey,
'password': appConfig['data']['password'],
'bots': appConfig['data']['bots'],
'telegram_id': appConfig['data']['telegram']['notify_user_id'],
'telegram_enabled': appConfig['data']['telegram']['enabled'],
'verboseLog': appConfig.data.verbose_log,
'sig_int': false,
'started': new Date()
},
'DB': DB,
'Signals3CQS': Signals3CQS,
'DCABot': DCABot,
'DCABotManager': DCABotManager,
'Common': Common,
'Telegram': Telegram,
'WebServer': WebServer
};
appDataConfig = shareData.appData;
DB.init(shareData);
Signals3CQS.init(shareData);
DCABot.init(shareData);
DCABotManager.init(shareData);
Telegram.init(shareData);
WebServer.init(shareData);
Common.init(shareData);
let success = true;
if (!appConfig.success) {
Common.logger('App configuration file error: ' + appConfig.data, true);
success = false;
}
if (success) {
if (!signalConfigs.success) {
Common.logger('Signals configuration file error: ' + signalConfigs.error, true);
success = false;
}
}
if (success) {
let dbStarted = await DB.start(appConfig.data.mongo_db_url);
if (!dbStarted) {
success = false;
}
else {
let res = await verifyServerId(serverConfig);
if (!res.success) {
success = false;
}
else {
shareData.appData.server_id = res.server_id;
}
}
}
if (success && process.argv[2] && process.argv[2].toLowerCase() == 'reset') {
reset();
return({ 'nostart': true });
}
if (success) {
const processInfo = await Common.getProcessInfo();
Telegram.start(appConfig['data']['telegram']['token_id']);
WebServer.start(appConfig['data']['web_server']['port']);
setTimeout(() => {
let msg = appDataConfig.name + ' v' + appDataConfig.version + ' started at ' + new Date(appDataConfig.started).toISOString();
Common.sendNotification({ 'message': msg, 'telegram_id': appDataConfig.telegram_id });
}, 1000);
}
return({ 'success': success, 'app_config': appConfig });
}
async function verifyServerId(serverConfig) {
let success = true;
let serverId;
const serverData = await ServerDB.ServerSchema.findOne({ 'serverId': { $exists: true } });
if (!serverData) {
serverId = Common.uuidv4();
try {
const data = new ServerDB.ServerSchema({
'serverId': serverId,
'created': Date.now(),
});
await data.save();
await Common.saveConfig('server.json', { 'server_id': serverId });
}
catch(e) {
success = false;
Common.logger('Failed to create server database', true);
}
}
else {
if (!process.env.DOCKER_RUNNING && serverConfig.data.server_id != serverData.serverId) {
success = false;
Common.logger('Server ID mismatch', true);
}
else {
serverId = serverData.serverId;
}
}
return ({ 'success': success, 'server_id': serverId });
}
async function reset() {
// Reset database from command line
let success = false;
let confirm;
let resetCode = Math.floor(Math.random() * 1000000000);
console.log('\n*** CAUTION *** You are about to reset ' + appDataConfig.name + ' database!\n');
confirm = prompt('Do you want to continue? (Y/n): ');
if (confirm == 'Y') {
console.log('\nReset code: ' + resetCode);
confirm = prompt('Enter the reset code above to reset ' + appDataConfig.name + ' database: ');
if (confirm == resetCode) {
confirm = prompt('Final warning before reset. Do you want to continue? (Y/n): ');
if (confirm == 'Y') {
success = true;
let collectionBots = await DB.mongoose.connection.db.dropCollection('bots').catch(e => {});
let collectionDeals = await DB.mongoose.connection.db.dropCollection('deals').catch(e => {});
console.log('Bots reset: ' + collectionBots);
console.log('Deals reset: ' + collectionDeals);
console.log('\nReset finished.');
}
}
else {
console.log('\nReset code incorrect.');
}
}
if (!success) {
console.log('\nReset aborted.');
}
process.exit(1);
}
async function start() {
let initData;
await Common.makeDir('logs');
await Common.makeDir('logs/services');
await Common.makeDir('logs/services/notifications');
try {
initData = await init();
}
catch(e) {
Common.logger('Initialization error: ' + e, true);
shutDown();
return;
}
if (initData.nostart) {
return;
}
if (initData.success) {
const appConfig = initData.app_config;
const botConfig = await Common.getConfig('bot.json');
if (!botConfig.success) {
Common.logger('Bot configuration file error: ' + botConfig.data, true);
shutDown();
return;
}
Common.logMonitor();
}
else {
shutDown();
}
}
function shutDown() {
// Perform any post shutdown processes here
if (!gotSigInt) {
gotSigInt = true;
Common.logger('Received kill signal. Shutting down gracefully.', true);
if (appDataConfig != undefined && appDataConfig != null && appDataConfig != '') {
appDataConfig['sig_int'] = true;
let msg = appDataConfig.name + ' v' + appDataConfig.version + ' shutting down at ' + new Date().toISOString();
Common.sendNotification({ 'message': msg, 'telegram_id': appDataConfig.telegram_id });
}
setTimeout(() => {
process.exit(1);
}, 2000);
}
}
start();