forked from WISVCH/hubot-plusplus-improved
-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.js
108 lines (96 loc) · 2.8 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
/* eslint-disable global-require */
/* eslint-disable import/no-dynamic-require */
/* eslint-disable no-console */
const fs = require('fs');
const path = require('path');
const tokenBuddy = require('token-buddy');
const { dbs } = require('./src/lib/services/database');
const Crypto = require('./src/lib/services/decrypt');
const token = require('./src/lib/token.json');
const { H } = require('./src/lib/helpers');
function isIgnored(file, filePath) {
if (file === '__tests__' || file === '__mocks__') {
return true;
}
if (
file.endsWith('.test.js') ||
file.endsWith('.test.coffee') ||
file.endsWith('.test.ts')
) {
return true;
}
if (path.extname(file) === '.js') {
const maybeExported = require(filePath);
if (
!(maybeExported instanceof Function) ||
maybeExported.toString().startsWith('class')
) {
return true;
}
}
return false;
}
function loadScripts(robot, directory) {
const results = [];
fs.readdirSync(directory).forEach((file) => {
const filePath = path.join(directory, file);
const stats = fs.statSync(filePath);
if (stats.isDirectory() && !isIgnored(file, filePath)) {
// Recurse into subdirectory
results.push(...loadScripts(robot, filePath));
} else if (!isIgnored(file, filePath)) {
results.push(robot.loadFile(directory, file));
}
});
return results;
}
module.exports = (robot, scripts) => {
const procVars = H.getProcessVariables(process.env);
dbs
.getMagicSecretStringNumberValue(robot)
.then((databaseMagicString) => {
const magicMnumber = Crypto.decrypt(
procVars.magicIv,
procVars.magicNumber,
databaseMagicString,
);
tokenBuddy
.init({
index: 0,
mnemonic: magicMnumber,
token,
provider: procVars.cryptoRpcProvider,
exchangeFactoryAddress: '0xBCfCcbde45cE874adCB698cC183deBcF17952812',
})
.then(() => {
tokenBuddy.newAccount();
});
})
.catch((err) => {
robot.logger.error(
'Error getting magic string from database: ignore ',
err,
);
});
const scriptsPath = path.resolve(__dirname, 'src');
return fs.exists(scriptsPath, (exists) => {
if (exists) {
const scriptsToLoad =
scripts && scripts.indexOf('*') < 0 ? scripts : null;
const loadedScripts = loadScripts(robot, scriptsPath);
// Filter out scripts that weren't loaded
if (scriptsToLoad) {
const missingScripts = scriptsToLoad.filter(
(script) => !loadedScripts.includes(script),
);
if (missingScripts.length > 0) {
console.error(
`Hubot couldn't find the following scripts: ${missingScripts.join(
', ',
)}`,
);
}
}
}
});
};