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.

275 lines
6.1 KiB
JavaScript

11 years ago
(function(module) {
'use strict';
var mongoClient = require('mongodb').MongoClient,
11 years ago
winston = require('winston'),
nconf = require('nconf'),
11 years ago
express = require('express'),
11 years ago
mongoStore = require('connect-mongo')(express),
mongoHost = nconf.get('mongo:host'),
db;
11 years ago
module.init = function(callback) {
mongoClient.connect('mongodb://'+ mongoHost + ':' + nconf.get('mongo:port') + '/' + nconf.get('mongo:database'), function(err, _db) {
db = _db;
console.log('WE ARE CONNECTED');
11 years ago
if(err) {
winston.error("NodeBB could not connect to your Mongo database. Mongo returned the following error: " + err.message);
process.exit();
}
11 years ago
// TODO: fill out settings.db
module.sessionStore = new mongoStore({
db: db
});
11 years ago
db.createCollection('objects', function(err, collection) {
});
11 years ago
db.createCollection('sets', function(err, collection) {
});
11 years ago
11 years ago
callback(err);
});
// look up how its done in mongo
/*if (nconf.get('mongo:password')) {
redisClient.auth(nconf.get('mongo:password'));
}
*/
11 years ago
}
11 years ago
11 years ago
//
// Exported functions
//
module.getFileName = function(callback) {
11 years ago
throw new Error('not-implemented');
}
module.info = function(callback) {
throw new Error('not-implemented');
}
// key
module.exists = function(key, callback) {
throw new Error('not-implemented');
}
module.delete = function(key, callback) {
throw new Error('not-implemented');
}
module.get = function(key, callback) {
throw new Error('not-implemented');
}
module.set = function(key, callback) {
throw new Error('not-implemented');
11 years ago
}
module.keys = function(key, callback) {
throw new Error('not-implemented');
}
11 years ago
//hashes
11 years ago
module.setObject = function(key, data, callback) {
11 years ago
data['_key'] = key;
11 years ago
db.collection('objects').update({_key:key}, {$set:data}, {upsert:true, w: 1}, function(err, result) {
11 years ago
callback(err, result);
});
11 years ago
}
11 years ago
module.setObjectField = function(key, field, value, callback) {
11 years ago
var data = {};
data[field] = value;
db.collection('objects').update({_key:key}, {$set:data}, {upsert:true, w: 1}, function(err, result) {
callback(err, result);
});
11 years ago
}
module.getObject = function(key, callback) {
db.collection('objects').findOne({_key:key}, function(err, item) {
if(item && item._id) {
delete item._id;
}
11 years ago
callback(err, item);
});
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]);
})
11 years ago
}
module.getObjectFields = function(key, fields, callback) {
var _fields = {};
for(var i=0; i<fields.length; ++i) {
_fields[fields[i]] = 1;
}
db.collection('objects').findOne({_key:key}, {fields:_fields}, function(err, item) {
if(err) {
return callback(err);
}
var data = {};
if(item === null) {
for(var i=0; i<fields.length; ++i) {
data[fields[i]] = null;
}
return callback(null, data);
}
if(item._id) {
delete item._id;
}
callback(err, item);
});
11 years ago
}
module.getObjectValues = function(key, callback) {
module.getObject(key, function(err, data) {
if(err) {
return callback(err);
}
var values = [];
for(var key in data) {
values.push(data[key]);
}
callback(null, values);
});
11 years ago
}
module.isObjectField = function(key, field, callback) {
module.getObjectField(key, field, function(err, item) {
callback(err, item !== undefined);
});
11 years ago
}
module.deleteObjectField = function(key, field, callback) {
var data = {};
data[field] = "";
db.collection('objects').update({_key:key}, {$unset : data}, function(err, result) {
callback(err, result);
});
11 years ago
}
module.incrObjectField = function(key, field, callback) {
module.incrObjectFieldBy(key, field, 1, callback);
11 years ago
}
module.decrObjectField = function(key, field, callback) {
module.incrObjectFieldBy(key, field, -1, callback);
11 years ago
}
11 years ago
module.incrObjectFieldBy = function(key, field, value, callback) {
var data = {};
data[field] = value;
db.collection('objects').update({_key:key}, {$inc : data}, function(err, result) {
console.log('incrObjectFieldBy', err, result);
module.getObjectField(key, field, function(err, value) {
callback(err, value);
});
});
11 years ago
}
11 years ago
// sets
11 years ago
11 years ago
module.setAdd = function(key, value, callback) {
throw new Error('not-implemented');
}
module.setRemove = function(key, value, callback) {
throw new Error('not-implemented');
}
module.isSetMember = function(key, value, callback) {
throw new Error('not-implemented');
}
module.isMemberOfSets = function(sets, value, callback) {
throw new Error('not-implemented');
}
module.getSetMembers = function(key, callback) {
11 years ago
console.log('GETTING SET MEMBERS', key);
11 years ago
db.collection('sets').findOne({_key:key}, function(err, data) {
11 years ago
if(err) {
return callback(err);
}
if(!data) {
console.log('GOT SET MEMBERS', []);
callback(null, []);
} else {
console.log('GOT SET MEMBERS', data);
callback(null, data);
}
11 years ago
});
}
module.setCount = function(key, callback) {
throw new Error('not-implemented');
}
module.setRemoveRandom = function(key, callback) {
throw new Error('not-implemented');
}
// sorted sets
module.sortedSetAdd = function(key, score, value, callback) {
throw new Error('not-implemented');
}
module.sortedSetRemove = function(key, value, callback) {
throw new Error('not-implemented');
}
module.getSortedSetRange = function(key, start, stop, callback) {
throw new Error('not-implemented');
}
module.getSortedSetRevRange = function(key, start, stop, callback) {
throw new Error('not-implemented');
}
module.getSortedSetRevRangeByScore = function(args, callback) {
throw new Error('not-implemented');
}
module.sortedSetCount = function(key, min, max, callback) {
throw new Error('not-implemented');
}
// lists
module.listPrepend = function(key, value, callback) {
throw new Error('not-implemented');
}
module.listAppend = function(key, value, callback) {
throw new Error('not-implemented');
}
module.getListRange = function(key, start, stop, callback) {
throw new Error('not-implemented');
}
11 years ago
}(exports));