Files
NodeBB/src/database/mongo.js

215 lines
4.9 KiB
JavaScript
Raw Normal View History

2013-12-02 16:19:30 -05:00
(function(module) {
'use strict';
2013-12-03 13:36:44 -05:00
var Db = require('mongodb').Db,
mongoClient = require('mongodb').MongoClient,
Server = require('mongodb').Server,
2013-12-02 16:19:30 -05:00
winston = require('winston'),
nconf = require('nconf'),
2013-12-02 22:48:32 -05:00
express = require('express'),
2013-12-03 13:36:44 -05:00
mongoStore = require('connect-mongo')(express),
mongoHost = nconf.get('mongo:host'),
db;
2013-12-02 16:19:30 -05:00
2013-12-02 22:48:32 -05:00
2013-12-03 13:36:44 -05:00
var db = new Db(nconf.get('mongo:database'), new Server(mongoHost, nconf.get('mongo:port')), {w:1});
//console.log(db.collection);
db.open(function(err, _db) {
//mongoClient.connect('mongodb://'+ mongoHost + ':' + nconf.get('mongo:port') + '/' + nconf.get('mongo:database'), function(err, _db) {
console.log('WE ARE CONNECTED');
2013-12-02 22:48:32 -05:00
if(err) {
2013-12-03 13:36:44 -05:00
winston.error("NodeBB could not connect to your Mongo database. Mongo returned the following error: " + err.message);
2013-12-02 22:48:32 -05:00
process.exit();
}
2013-12-03 13:36:44 -05:00
// TODO: fill out settings.db
module.sessionStore = new mongoStore({
db: db
});
db.collection('objects').findOne({_key:'config'}, {timeout:true}, function(err, item) {
console.log('fail');
console.log(item);
callback(err, item);
});
});
db.createCollection('objects', function(err, collection) {
console.log('collection created', err, collection);
});
db.createCollection('sets', function(err, collection) {
2013-12-02 22:48:32 -05:00
});
2013-12-02 16:19:30 -05:00
2013-12-03 13:36:44 -05:00
2013-12-02 16:19:30 -05:00
// look up how its done in mongo
/*if (nconf.get('mongo:password')) {
redisClient.auth(nconf.get('mongo:password'));
}
2013-12-02 22:48:32 -05:00
*/
2013-12-02 16:19:30 -05:00
//
// Exported functions
//
module.getFileName = function(callback) {
2013-12-03 13:36:44 -05:00
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');
2013-12-02 16:19:30 -05:00
}
2013-12-03 13:36:44 -05:00
//hashes
2013-12-02 16:19:30 -05:00
module.setObject = function(key, data, callback) {
2013-12-03 13:36:44 -05:00
data['_key'] = key;
db.collection('objects').insert(data, {w:1}, function(err, result) {
callback(err, result);
});
2013-12-02 16:19:30 -05:00
}
2013-12-03 13:36:44 -05:00
module.setObjectField = function(key, field, value, callback) {
db.collection('objects').update();
2013-12-02 16:19:30 -05:00
}
module.getObject = function(key, callback) {
2013-12-03 13:36:44 -05:00
console.log('calling findOne');
db.collection('objects').findOne({_key:key}, {timeout:true},function(err, item) {
console.log(item);
callback(err, item);
});
2013-12-02 16:19:30 -05:00
}
module.getObjectField = function(key, field, callback) {
2013-12-03 13:36:44 -05:00
throw new Error('not-implemented');
2013-12-02 16:19:30 -05:00
}
module.getObjectFields = function(key, fields, callback) {
2013-12-03 13:36:44 -05:00
throw new Error('not-implemented');
}
module.getObjectValues = function(key, callback) {
throw new Error('not-implemented');
}
module.isObjectField = function(key, field, callback) {
throw new Error('not-implemented');
2013-12-02 16:19:30 -05:00
}
module.deleteObjectField = function(key, field, callback) {
2013-12-03 13:36:44 -05:00
throw new Error('not-implemented');
}
module.incrObjectField = function(key, field, callback) {
throw new Error('not-implemented');
}
module.decrObjectField = function(key, field, callback) {
throw new Error('not-implemented');
2013-12-02 16:19:30 -05:00
}
2013-12-03 13:36:44 -05:00
module.incrObjectFieldBy = function(key, field, value, callback) {
throw new Error('not-implemented');
2013-12-02 16:19:30 -05:00
}
2013-12-03 13:36:44 -05:00
// sets
2013-12-02 16:19:30 -05:00
2013-12-03 13:36:44 -05:00
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) {
console.log('getting set members');
db.collection('sets').findOne({_key:key}, function(err, data) {
console.log('derp', err, data);
callback(err, data);
});
}
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');
}
2013-12-02 16:19:30 -05:00
}(exports));