v1.18.x
Barış Soner Uşaklı 8 years ago
parent acf2e4078b
commit 8c8e2ae190

@ -111,13 +111,11 @@
if (err) { if (err) {
return callback(err); return callback(err);
} }
createSessionStore(); createSessionStore();
createIndices();
}); });
} else { } else {
winston.warn('You have no mongo password setup!'); winston.warn('You have no mongo password setup!');
createSessionStore(); createSessionStore();
createIndices();
} }
function createSessionStore() { function createSessionStore() {
@ -137,32 +135,39 @@
db: db db: db
}); });
} }
} callback();
}
});
};
function createIndices() { module.createIndices = function(callback) {
winston.info('[database] Checking database indices.'); function createIndex(collection, index, options, callback) {
async.series([ module.client.collection(collection).createIndex(index, options, callback);
async.apply(createIndex, 'objects', {_key: 1, score: -1}, {background: true}), }
async.apply(createIndex, 'objects', {_key: 1, value: -1}, {background: true, unique: true, sparse: true}),
async.apply(createIndex, 'objects', {expireAt: 1}, {expireAfterSeconds: 0, background: true}) if (!module.client) {
], function (err) { winston.warn('[database/createIndices] database not initialized');
if (err) { return callback();
winston.error('Error creating index ' + err.message); }
}
winston.info('[database] Checking database indices done!');
callback(err);
});
}
function createIndex(collection, index, options, callback) { winston.info('[database] Checking database indices.');
db.collection(collection).createIndex(index, options, callback); async.series([
async.apply(createIndex, 'objects', {_key: 1, score: -1}, {background: true}),
async.apply(createIndex, 'objects', {_key: 1, value: -1}, {background: true, unique: true, sparse: true}),
async.apply(createIndex, 'objects', {expireAt: 1}, {expireAfterSeconds: 0, background: true})
], function (err) {
if (err) {
winston.error('Error creating index ' + err.message);
return callback(err);
} }
}); winston.info('[database] Checking database indices done!');
callback();
});
}; };
module.checkCompatibility = function (callback) { module.checkCompatibility = function (callback) {
var mongoPkg = require.main.require('./node_modules/mongodb/package.json'), var mongoPkg = require.main.require('./node_modules/mongodb/package.json');
err = semver.lt(mongoPkg.version, '2.0.0') ? new Error('The `mongodb` package is out-of-date, please run `./nodebb setup` again.') : null; var err = semver.lt(mongoPkg.version, '2.0.0') ? new Error('The `mongodb` package is out-of-date, please run `./nodebb setup` again.') : null;
if (err) { if (err) {
err.stacktrace = false; err.stacktrace = false;

@ -2,13 +2,13 @@
(function (module) { (function (module) {
var winston = require('winston'), var winston = require('winston');
nconf = require('nconf'), var nconf = require('nconf');
semver = require('semver'), var semver = require('semver');
session = require('express-session'), var session = require('express-session');
redis, var redis;
connectRedis, var connectRedis;
redisClient; var redisClient;
module.questions = [ module.questions = [
{ {
@ -107,6 +107,10 @@
return cxn; return cxn;
}; };
module.createIndices = function (callback) {
setImmediate(callback);
};
module.checkCompatibility = function (callback) { module.checkCompatibility = function (callback) {
module.info(module.client, function (err, info) { module.info(module.client, function (err, info) {
if (err) { if (err) {

@ -1,16 +1,15 @@
'use strict'; 'use strict';
var async = require('async'), var async = require('async');
fs = require('fs'), var fs = require('fs');
path = require('path'), var path = require('path');
prompt = require('prompt'), var prompt = require('prompt');
winston = require('winston'), var winston = require('winston');
nconf = require('nconf'), var nconf = require('nconf');
utils = require('../public/src/utils.js'); var utils = require('../public/src/utils.js');
var install = {};
var install = {}, var questions = {};
questions = {};
questions.main = [ questions.main = [
{ {
@ -124,40 +123,33 @@ function setupConfig(next) {
prompt.delimiter = ''; prompt.delimiter = '';
prompt.colors = false; prompt.colors = false;
if (!install.values) { async.waterfall([
prompt.get(questions.main, function (err, config) { function (next) {
if (err) { if (install.values) {
process.stdout.write('\n\n'); // Use provided values, fall back to defaults
winston.warn('NodeBB setup ' + err.message); var config = {};
process.exit(); var redisQuestions = require('./database/redis').questions;
var mongoQuestions = require('./database/mongo').questions;
var allQuestions = questions.main.concat(questions.optional).concat(redisQuestions).concat(mongoQuestions);
allQuestions.forEach(function (question) {
config[question.name] = install.values[question.name] || question['default'] || undefined;
});
setImmediate(next, null, config);
} else {
prompt.get(questions.main, next);
} }
},
configureDatabases(config, function (err, config) { function (config, next) {
completeConfigSetup(err, config, next); configureDatabases(config, next);
}); },
}); function (config, next) {
} else { completeConfigSetup(config, next);
// Use provided values, fall back to defaults }
var config = {}, ], next);
redisQuestions = require('./database/redis').questions,
mongoQuestions = require('./database/mongo').questions,
allQuestions = questions.main.concat(questions.optional).concat(redisQuestions).concat(mongoQuestions);
allQuestions.forEach(function (question) {
config[question.name] = install.values[question.name] || question['default'] || undefined;
});
configureDatabases(config, function (err, config) {
completeConfigSetup(err, config, next);
});
}
} }
function completeConfigSetup(err, config, next) { function completeConfigSetup(config, next) {
if (err) {
return next(err);
}
// Add CI object // Add CI object
if (install.ciVals) { if (install.ciVals) {
config.test_database = {}; config.test_database = {};
@ -168,13 +160,17 @@ function completeConfigSetup(err, config, next) {
} }
} }
install.save(config, function (err) { async.waterfall([
if (err) { function (next) {
return next(err); install.save(config, next);
},
function (next) {
require('./database').init(next);
},
function (next) {
require('./database').createIndices(next);
} }
], next);
require('./database').init(next);
});
} }
function setupDefaultConfigs(next) { function setupDefaultConfigs(next) {
@ -491,7 +487,6 @@ function setCopyrightWidget(next) {
install.setup = function (callback) { install.setup = function (callback) {
async.series([ async.series([
checkSetupFlag, checkSetupFlag,
checkCIFlag, checkCIFlag,

Loading…
Cancel
Save