-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
32 lines (29 loc) · 961 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
32
/*
* Licensed Materials - Property of IBM
* (C) Copyright IBM Corp. 2016. All Rights Reserved.
* US Government Users Restricted Rights - Use, duplication or
* disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
*/
'use strict';
process.env.STANDALONE_APP = false;
const ui = require('./app.js');
const fs = require('fs');
const path = require('path');
function readScripts(robot) {
const scriptsPath = path.resolve(__dirname, 'src', 'scripts');
fs.access(scriptsPath, fs.R_OK, (err) => {
if (!err) {
fs.readdir(scriptsPath, (err, files) => {
if (!err) {
// For each file, call loadFile, bound to robot, and using `scriptsPath` as the default first arg
files.forEach(robot.loadFile.bind(robot, scriptsPath));
}
});
}
});
}
module.exports = (robot, scripts) => {
robot.router.use('/', ui);
robot.logger.info('Executing primary boot subroutine [hubot-ibmcloud-cognitive-ui]...');
readScripts(robot);
};