|
|
@ -1,6 +1,7 @@
|
|
|
|
'use strict';
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
|
|
|
|
var _ = require('underscore');
|
|
|
|
var _ = require('underscore');
|
|
|
|
|
|
|
|
var async = require('async');
|
|
|
|
var winston = require('winston');
|
|
|
|
var winston = require('winston');
|
|
|
|
var nconf = require('nconf');
|
|
|
|
var nconf = require('nconf');
|
|
|
|
var semver = require('semver');
|
|
|
|
var semver = require('semver');
|
|
|
@ -71,10 +72,6 @@ redisModule.connect = function (options) {
|
|
|
|
var redis_socket_or_host = nconf.get('redis:host');
|
|
|
|
var redis_socket_or_host = nconf.get('redis:host');
|
|
|
|
var cxn;
|
|
|
|
var cxn;
|
|
|
|
|
|
|
|
|
|
|
|
if (!redis) {
|
|
|
|
|
|
|
|
redis = require('redis');
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
options = options || {};
|
|
|
|
options = options || {};
|
|
|
|
|
|
|
|
|
|
|
|
if (nconf.get('redis:password')) {
|
|
|
|
if (nconf.get('redis:password')) {
|
|
|
@ -101,10 +98,10 @@ redisModule.connect = function (options) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
var dbIdx = parseInt(nconf.get('redis:database'), 10);
|
|
|
|
var dbIdx = parseInt(nconf.get('redis:database'), 10);
|
|
|
|
if (dbIdx) {
|
|
|
|
if (dbIdx >= 0) {
|
|
|
|
cxn.select(dbIdx, function (error) {
|
|
|
|
cxn.select(dbIdx, function (err) {
|
|
|
|
if (error) {
|
|
|
|
if (err) {
|
|
|
|
winston.error('NodeBB could not connect to your Redis database. Redis returned the following error: ' + error.message);
|
|
|
|
winston.error('NodeBB could not connect to your Redis database. Redis returned the following error: ' + err.message);
|
|
|
|
process.exit();
|
|
|
|
process.exit();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
@ -118,32 +115,37 @@ redisModule.createIndices = function (callback) {
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
redisModule.checkCompatibility = function (callback) {
|
|
|
|
redisModule.checkCompatibility = function (callback) {
|
|
|
|
redisModule.info(redisModule.client, function (err, info) {
|
|
|
|
async.waterfall([
|
|
|
|
if (err) {
|
|
|
|
function (next) {
|
|
|
|
return callback(err);
|
|
|
|
redisModule.info(redisModule.client, next);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
function (info, next) {
|
|
|
|
|
|
|
|
redisModule.checkCompatibilityVersion(info.redis_version, next);
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
], callback);
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
if (semver.lt(info.redis_version, '2.8.9')) {
|
|
|
|
redisModule.checkCompatibilityVersion = function (version, callback) {
|
|
|
|
|
|
|
|
if (semver.lt(version, '2.8.9')) {
|
|
|
|
return callback(new Error('Your Redis version is not new enough to support NodeBB, please upgrade Redis to v2.8.9 or higher.'));
|
|
|
|
return callback(new Error('Your Redis version is not new enough to support NodeBB, please upgrade Redis to v2.8.9 or higher.'));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
callback();
|
|
|
|
callback();
|
|
|
|
});
|
|
|
|
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
redisModule.close = function () {
|
|
|
|
redisModule.close = function (callback) {
|
|
|
|
redisClient.quit();
|
|
|
|
callback = callback || function () {};
|
|
|
|
|
|
|
|
redisClient.quit(callback);
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
redisModule.info = function (cxn, callback) {
|
|
|
|
redisModule.info = function (cxn, callback) {
|
|
|
|
if (!cxn) {
|
|
|
|
if (!cxn) {
|
|
|
|
return callback();
|
|
|
|
return callback();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
cxn.info(function (err, data) {
|
|
|
|
async.waterfall([
|
|
|
|
if (err) {
|
|
|
|
function (next) {
|
|
|
|
return callback(err);
|
|
|
|
cxn.info(next);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
function (data, next) {
|
|
|
|
var lines = data.toString().split('\r\n').sort();
|
|
|
|
var lines = data.toString().split('\r\n').sort();
|
|
|
|
var redisData = {};
|
|
|
|
var redisData = {};
|
|
|
|
lines.forEach(function (line) {
|
|
|
|
lines.forEach(function (line) {
|
|
|
@ -156,8 +158,9 @@ redisModule.info = function (cxn, callback) {
|
|
|
|
redisData.raw = JSON.stringify(redisData, null, 4);
|
|
|
|
redisData.raw = JSON.stringify(redisData, null, 4);
|
|
|
|
redisData.redis = true;
|
|
|
|
redisData.redis = true;
|
|
|
|
|
|
|
|
|
|
|
|
callback(null, redisData);
|
|
|
|
next(null, redisData);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
], callback);
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
redisModule.helpers = redisModule.helpers || {};
|
|
|
|
redisModule.helpers = redisModule.helpers || {};
|
|
|
|