forked from timkinnane/hubot-rocketchat-announcement
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
31 lines (28 loc) · 904 Bytes
/
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
const fs = require('fs');
const path = require('path');
module.exports = function(robot, scripts) {
robot.error(function(err, res) {
robot.logger.error(`${err}\n${err.stack}`);
if (res != null) {
return res.reply(`${err}\n${err.stack}`);
}
});
const scriptsPath = path.resolve(__dirname, 'src');
return fs.exists(scriptsPath, function(exists) {
if (exists) {
return (() => {
const result = [];
for (let script of Array.from(fs.readdirSync(scriptsPath))) {
if ((scripts != null) && !Array.from(scripts).includes('*')) {
if (Array.from(scripts).includes(script)) { result.push(robot.loadFile(scriptsPath, script)); } else {
result.push(undefined);
}
} else {
result.push(robot.loadFile(scriptsPath, script));
}
}
return result;
})();
}
});
};