You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

400 lines
8.9 KiB
JavaScript

11 years ago
11 years ago
(function(module) {
'use strict';
11 years ago
var winston = require('winston'),
11 years ago
nconf = require('nconf'),
express = require('express'),
11 years ago
redis_socket_or_host = nconf.get('redis:host'),
11 years ago
utils = require('./../../public/src/utils.js'),
redis,
connectRedis,
reds,
redisClient;
try {
redis = require('redis');
connectRedis = require('connect-redis')(express);
reds = require('reds');
} catch (err) {
11 years ago
winston.error('Unable to initialize Redis! Is Redis installed? Error :' + err.message);
11 years ago
process.exit();
}
11 years ago
11 years ago
if (redis_socket_or_host && redis_socket_or_host.indexOf('/')>=0) {
/* If redis.host contains a path name character, use the unix dom sock connection. ie, /tmp/redis.sock */
11 years ago
redisClient = redis.createClient(nconf.get('redis:host'));
11 years ago
} else {
/* Else, connect over tcp/ip */
11 years ago
redisClient = redis.createClient(nconf.get('redis:port'), nconf.get('redis:host'));
11 years ago
}
module.client = redisClient;
module.sessionStore = new connectRedis({
client: redisClient,
ttl: 60 * 60 * 24 * 30
});
reds.createClient = function () {
return reds.client || (reds.client = redisClient);
};
var userSearch = reds.createSearch('nodebbusersearch'),
postSearch = reds.createSearch('nodebbpostsearch'),
topicSearch = reds.createSearch('nodebbtopicsearch');
11 years ago
if (nconf.get('redis:password')) {
11 years ago
redisClient.auth(nconf.get('redis:password'));
11 years ago
}
var db = parseInt(nconf.get('redis:database'), 10);
if (db){
11 years ago
redisClient.select(db, function(error) {
if(error) {
11 years ago
winston.error("NodeBB could not connect to your Redis database. Redis returned the following error: " + error.message);
process.exit();
}
});
}
module.init = function(callback) {
callback(null);
}
11 years ago
/*
* A possibly more efficient way of doing multiple sismember calls
*/
11 years ago
function sismembers(key, needles, callback) {
11 years ago
var tempkey = key + ':temp:' + utils.generateUUID();
11 years ago
redisClient.sadd(tempkey, needles, function() {
redisClient.sinter(key, tempkey, function(err, data) {
redisClient.del(tempkey);
11 years ago
callback(err, data);
});
});
};
11 years ago
//
// Exported functions
//
module.searchIndex = function(key, content, id) {
if(key === 'post') {
postSearch.index(content, id);
} else if(key === 'topic') {
topicSearch.index(content, id);
} else if(key === 'user') {
userSearch.index(content, id);
}
}
module.search = function(key, term, callback) {
function search(searchObj, callback) {
searchObj
11 years ago
.query(term).type('or')
.end(callback);
}
if(key === 'post') {
search(postSearch, callback);
} else if(key === 'topic') {
search(topicSearch, callback);
} else if(key === 'user') {
search(userSearch, callback);
}
}
module.searchRemove = function(key, id) {
if(key === 'post') {
postSearch.remove(id);
} else if(key === 'topic') {
topicSearch.remove(id);
} else if(key === 'user') {
userSearch.remove(id);
}
}
module.flushdb = function(callback) {
redisClient.send_command('flushdb', [], function(err) {
if(err){
winston.error(error);
return callback(err);
}
callback(null);
});
}
module.getFileName = function(callback) {
var multi = redisClient.multi();
multi.config('get', 'dir');
multi.config('get', 'dbfilename');
multi.exec(function (err, results) {
if (err) {
return callback(err);
}
results = results.reduce(function (memo, config) {
memo[config[0]] = config[1];
return memo;
}, {});
var dbFile = path.join(results.dir, results.dbfilename);
callback(null, dbFile);
});
}
11 years ago
module.info = function(callback) {
redisClient.info(function (err, data) {
if(err) {
return callback(err);
}
data = data.split("\r\n");
var redisData = {};
11 years ago
for (var i in data) {
if (data[i].indexOf(':') == -1 || !data[i])
continue;
try {
data[i] = data[i].replace(/:/, "\":\"");
var json = "{\"" + data[i] + "\"}";
var jsonObject = JSON.parse(json);
for (var key in jsonObject) {
redisData[key] = jsonObject[key];
11 years ago
}
} catch (err) {
winston.warn('can\'t parse redis status variable, ignoring', i, data[i], err);
}
}
11 years ago
redisData.raw = JSON.stringify(redisData, null, 4);
redisData.redis = true;
callback(null, redisData);
11 years ago
});
}
11 years ago
// key
module.exists = function(key, callback) {
redisClient.exists(key, function(err, exists) {
callback(err, exists === 1);
});
}
module.delete = function(key, callback) {
redisClient.del(key, callback);
}
11 years ago
module.get = function(key, callback) {
redisClient.get(key, callback);
}
module.set = function(key, value, callback) {
redisClient.set(key, value, callback);
11 years ago
}
11 years ago
module.keys = function(key, callback) {
11 years ago
redisClient.keys(key, callback);
11 years ago
}
11 years ago
//hashes
11 years ago
module.setObject = function(key, data, callback) {
11 years ago
// TODO: this crashes if callback isnt supplied -baris
redisClient.hmset(key, data, function(err, res) {
if(callback) {
callback(err, res);
}
});
11 years ago
}
11 years ago
11 years ago
module.setObjectField = function(key, field, value, callback) {
11 years ago
redisClient.hset(key, field, value, callback);
11 years ago
}
module.getObject = function(key, callback) {
11 years ago
redisClient.hgetall(key, callback);
11 years ago
}
module.getObjects = function(keys, callback) {
var multi = redisClient.multi();
for(var x=0; x<keys.length; ++x) {
multi.hgetall(keys[x]);
}
multi.exec(function (err, replies) {
callback(err, replies);
});
}
11 years ago
module.getObjectField = function(key, field, callback) {
module.getObjectFields(key, [field], function(err, data) {
if(err) {
return callback(err);
}
callback(null, data[field]);
});
}
module.getObjectFields = function(key, fields, callback) {
redisClient.hmget(key, fields, function(err, data) {
11 years ago
if(err) {
return callback(err, null);
}
var returnData = {};
for (var i = 0, ii = fields.length; i < ii; ++i) {
returnData[fields[i]] = data[i];
}
callback(null, returnData);
});
11 years ago
}
11 years ago
module.getObjectValues = function(key, callback) {
redisClient.hvals(key, callback);
}
module.isObjectField = function(key, field, callback) {
redisClient.hexists(key, field, function(err, exists) {
callback(err, exists === 1);
});
}
11 years ago
module.deleteObjectField = function(key, field, callback) {
redisClient.hdel(key, field, callback);
}
11 years ago
module.incrObjectField = function(key, field, callback) {
redisClient.hincrby(key, field, 1, callback);
11 years ago
}
11 years ago
module.decrObjectField = function(key, field, callback) {
redisClient.hincrby(key, field, -1, callback);
}
11 years ago
module.incrObjectFieldBy = function(key, field, value, callback) {
redisClient.hincrby(key, field, value, callback);
}
11 years ago
11 years ago
// sets
module.setAdd = function(key, value, callback) {
redisClient.sadd(key, value, callback);
}
module.setRemove = function(key, value, callback) {
redisClient.srem(key, value, callback);
}
module.isSetMember = function(key, value, callback) {
redisClient.sismember(key, value, function(err, result) {
if(err) {
return callback(err);
}
callback(null, result === 1);
});
}
11 years ago
module.isMemberOfSets = function(sets, value, callback) {
var batch = redisClient.multi();
for (var i = 0, ii = sets.length; i < ii; i++) {
batch.sismember(sets[i], value);
}
batch.exec(callback);
}
module.getSetMembers = function(key, callback) {
redisClient.smembers(key, callback);
}
11 years ago
11 years ago
module.setCount = function(key, callback) {
redisClient.scard(key, callback);
}
11 years ago
module.setRemoveRandom = function(key, callback) {
redisClient.spop(key, callback);
}
11 years ago
// sorted sets
11 years ago
module.sortedSetAdd = function(key, score, value, callback) {
redisClient.zadd(key, score, value, callback);
}
module.sortedSetRemove = function(key, value, callback) {
redisClient.zrem(key, value, callback);
}
11 years ago
module.getSortedSetRange = function(key, start, stop, callback) {
11 years ago
redisClient.zrange(key, start, stop, callback);
11 years ago
}
module.getSortedSetRevRange = function(key, start, stop, callback) {
11 years ago
redisClient.zrevrange(key, start, stop, callback);
}
module.getSortedSetRevRangeByScore = function(args, callback) {
redisClient.zrevrangebyscore(args, callback);
11 years ago
}
module.sortedSetCount = function(key, min, max, callback) {
redisClient.zcount(key, min, max, callback);
}
11 years ago
module.sortedSetRank = function(key, value, callback) {
redisClient.zrank(key, value, callback);
}
module.sortedSetScore = function(key, value, callback) {
redisClient.zscore(key, value, callback);
}
module.sortedSetsScore = function(keys, value, callback) {
var multi = redisClient.multi();
for(var x=0; x<keys.length; ++x) {
multi.zscore(keys[x], value);
}
multi.exec(callback);
}
11 years ago
// lists
module.listPrepend = function(key, value, callback) {
redisClient.lpush(key, value, callback);
}
11 years ago
11 years ago
module.listAppend = function(key, value, callback) {
redisClient.rpush(key, value, callback);
}
11 years ago
module.listRemoveLast = function(key, callback) {
redisClient.rpop(key, callback);
}
11 years ago
module.getListRange = function(key, start, stop, callback) {
redisClient.lrange(key, start, stop, callback);
}
11 years ago
11 years ago
11 years ago
}(exports));
11 years ago