-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
74 lines (65 loc) · 1.87 KB
/
index.js
File metadata and controls
74 lines (65 loc) · 1.87 KB
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
/* eslint-disable global-require */
/* eslint-disable import/no-dynamic-require */
/* eslint-disable no-console */
/* eslint-disable no-continue */
const fs = require('fs');
const path = require('path');
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 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(
', ',
)}`,
);
}
}
}
});
};