forked from DeviaVir/zenbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
boot.js
53 lines (50 loc) · 1.65 KB
/
boot.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
var glob = require('glob')
, path = require('path')
module.exports = function (cb) {
var zenbot = require('./')()
try {
var c = require('./conf')
}
catch (e) {
c = {}
}
var defaults = require('./conf-sample')
Object.keys(defaults).forEach(function (k) {
if (typeof c[k] === 'undefined') {
c[k] = defaults[k]
}
})
zenbot.set('@zenbot:conf', c)
function withMongo () {
//searches all directorys in {workingdir}/extensions/ for files called '_codemap.js'
glob('extensions/**/_codemap.js', {cwd: __dirname, absolute: true}, function (err, results) {
if (err) return cb(err)
results.forEach(function (result) {
var ext = require(result) //load the _codemap for the extension
zenbot.use(ext) //load the extension into zenbot
})
cb(null, zenbot)
})
}
var u = 'mongodb://' + c.mongo.host + ':' + c.mongo.port + '/' + c.mongo.db + (c.mongo.replicaSet ? '?replicaSet=' + c.mongo.replicaSet : '')
require('mongodb').MongoClient.connect(u, function (err, db) {
if (err) {
zenbot.set('zenbot:db.mongo', null)
console.error('warning: mongodb not accessible. some features (such as backfilling/simulation) may be disabled.')
return withMongo()
}
zenbot.set('zenbot:db.mongo', db)
if (c.mongo.username) {
db.authenticate(c.mongo.username, c.mongo.password, function (err, result) {
if (err) {
zenbot.set('zenbot:db.mongo', null)
console.error('warning: mongodb auth failed. some features (such as backfilling/simulation) may be disabled.')
}
withMongo()
})
}
else {
withMongo()
}
})
}