| 
									
										
										
										
											2013-09-17 13:09:37 -04:00
										 |  |  | var async = require('async'), | 
					
						
							| 
									
										
										
										
											2013-07-16 16:12:09 -04:00
										 |  |  | 	utils = require('../public/src/utils.js'), | 
					
						
							|  |  |  | 	fs = require('fs'), | 
					
						
							|  |  |  | 	url = require('url'), | 
					
						
							|  |  |  | 	path = require('path'), | 
					
						
							| 
									
										
										
										
											2013-09-06 22:22:42 -04:00
										 |  |  | 	prompt = require('prompt'), | 
					
						
							|  |  |  | 	winston = require('winston'), | 
					
						
							| 
									
										
										
										
											2013-09-10 16:26:26 -04:00
										 |  |  | 	reds = require('reds'), | 
					
						
							| 
									
										
										
										
											2013-09-18 12:15:29 -04:00
										 |  |  | 	nconf = require('nconf'), | 
					
						
							| 
									
										
										
										
											2013-09-06 22:22:42 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-16 16:12:09 -04:00
										 |  |  | 	install = { | 
					
						
							| 
									
										
										
										
											2013-09-17 13:09:37 -04:00
										 |  |  | 		questions: [{ | 
					
						
							|  |  |  | 			name: 'base_url', | 
					
						
							|  |  |  | 			description: 'URL of this installation', | 
					
						
							|  |  |  | 			'default': 'http://localhost', | 
					
						
							|  |  |  | 			pattern: /^http(?:s)?:\/\//, | 
					
						
							|  |  |  | 			message: 'Base URL must begin with \'http://\' or \'https://\'', | 
					
						
							|  |  |  | 		}, { | 
					
						
							|  |  |  | 			name: 'port', | 
					
						
							|  |  |  | 			description: 'Port number of your NodeBB', | 
					
						
							|  |  |  | 			'default': 4567 | 
					
						
							|  |  |  | 		}, { | 
					
						
							|  |  |  | 			name: 'use_port', | 
					
						
							|  |  |  | 			description: 'Use a port number to access NodeBB?', | 
					
						
							|  |  |  | 			'default': 'y', | 
					
						
							|  |  |  | 			pattern: /y[es]*|n[o]?/, | 
					
						
							|  |  |  | 			message: 'Please enter \'yes\' or \'no\'', | 
					
						
							|  |  |  | 		}, { | 
					
						
							|  |  |  | 			name: 'secret', | 
					
						
							|  |  |  | 			description: 'Please enter a NodeBB secret', | 
					
						
							|  |  |  | 			'default': utils.generateUUID() | 
					
						
							|  |  |  | 		}, { | 
					
						
							|  |  |  | 			name: 'redis:host', | 
					
						
							|  |  |  | 			description: 'Host IP or address of your Redis instance', | 
					
						
							|  |  |  | 			'default': '127.0.0.1' | 
					
						
							|  |  |  | 		}, { | 
					
						
							|  |  |  | 			name: 'redis:port', | 
					
						
							|  |  |  | 			description: 'Host port of your Redis instance', | 
					
						
							|  |  |  | 			'default': 6379 | 
					
						
							|  |  |  | 		}, { | 
					
						
							|  |  |  | 			name: 'redis:password', | 
					
						
							|  |  |  | 			description: 'Password of your Redis database' | 
					
						
							|  |  |  | 		}], | 
					
						
							| 
									
										
										
										
											2013-09-18 12:15:29 -04:00
										 |  |  | 		setup: function (callback) { | 
					
						
							| 
									
										
										
										
											2013-09-06 22:22:42 -04:00
										 |  |  | 			async.series([ | 
					
						
							| 
									
										
										
										
											2013-09-18 12:15:29 -04:00
										 |  |  | 				function (next) { | 
					
						
							| 
									
										
										
										
											2013-09-06 22:22:42 -04:00
										 |  |  | 					// prompt prepends "prompt: " to questions, let's clear that.
 | 
					
						
							|  |  |  | 					prompt.start(); | 
					
						
							|  |  |  | 					prompt.message = ''; | 
					
						
							|  |  |  | 					prompt.delimiter = ''; | 
					
						
							| 
									
										
										
										
											2013-07-16 16:12:09 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-18 12:15:29 -04:00
										 |  |  | 					prompt.get(install.questions, function (err, config) { | 
					
						
							|  |  |  | 						if (!config) { | 
					
						
							|  |  |  | 							return next(new Error('aborted')); | 
					
						
							|  |  |  | 						} | 
					
						
							| 
									
										
										
										
											2013-07-17 12:05:24 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-06 22:22:42 -04:00
										 |  |  | 						// Translate redis properties into redis object
 | 
					
						
							|  |  |  | 						config.redis = { | 
					
						
							|  |  |  | 							host: config['redis:host'], | 
					
						
							|  |  |  | 							port: config['redis:port'], | 
					
						
							|  |  |  | 							password: config['redis:password'] | 
					
						
							|  |  |  | 						}; | 
					
						
							|  |  |  | 						delete config['redis:host']; | 
					
						
							|  |  |  | 						delete config['redis:port']; | 
					
						
							|  |  |  | 						delete config['redis:password']; | 
					
						
							| 
									
										
										
										
											2013-07-17 12:05:24 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-06 22:22:42 -04:00
										 |  |  | 						// Add hardcoded values
 | 
					
						
							| 
									
										
										
										
											2013-09-18 12:15:29 -04:00
										 |  |  | 						config.bcrypt_rounds = 12; | 
					
						
							|  |  |  | 						config.upload_path = '/public/uploads'; | 
					
						
							|  |  |  | 						config.use_port = (config.use_port.slice(0, 1) === 'y') ? true : false; | 
					
						
							| 
									
										
										
										
											2013-07-16 16:12:09 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-06 22:22:42 -04:00
										 |  |  | 						var urlObject = url.parse(config.base_url), | 
					
						
							|  |  |  | 							relative_path = (urlObject.pathname && urlObject.pathname.length > 1) ? urlObject.pathname : '', | 
					
						
							|  |  |  | 							host = urlObject.host, | 
					
						
							|  |  |  | 							protocol = urlObject.protocol, | 
					
						
							|  |  |  | 							server_conf = config, | 
					
						
							|  |  |  | 							client_conf = { | 
					
						
							|  |  |  | 								socket: { | 
					
						
							|  |  |  | 									address: protocol + '//' + host + (config.use_port ? ':' + config.port : '') | 
					
						
							|  |  |  | 								}, | 
					
						
							|  |  |  | 								api_url: protocol + '//' + host + (config.use_port ? ':' + config.port : '') + relative_path + '/api/', | 
					
						
							|  |  |  | 								relative_path: relative_path | 
					
						
							|  |  |  | 							}; | 
					
						
							| 
									
										
										
										
											2013-08-23 13:14:36 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-06 22:22:42 -04:00
										 |  |  | 						server_conf.base_url = protocol + '//' + host; | 
					
						
							|  |  |  | 						server_conf.relative_path = relative_path; | 
					
						
							| 
									
										
										
										
											2013-07-16 16:12:09 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-06 22:22:42 -04:00
										 |  |  | 						install.save(server_conf, client_conf, next); | 
					
						
							|  |  |  | 					}); | 
					
						
							|  |  |  | 				}, | 
					
						
							| 
									
										
										
										
											2013-09-18 12:15:29 -04:00
										 |  |  | 				function (next) { | 
					
						
							| 
									
										
										
										
											2013-09-10 16:26:26 -04:00
										 |  |  | 					// Applying default database configs
 | 
					
						
							| 
									
										
										
										
											2013-09-18 12:15:29 -04:00
										 |  |  | 					winston.info('Populating database with default configs, if not already set...'); | 
					
						
							| 
									
										
										
										
											2013-09-17 13:09:37 -04:00
										 |  |  | 					var meta = require('./meta'), | 
					
						
							|  |  |  | 						defaults = [{ | 
					
						
							|  |  |  | 							field: 'postDelay', | 
					
						
							|  |  |  | 							value: 10000 | 
					
						
							|  |  |  | 						}, { | 
					
						
							|  |  |  | 							field: 'minimumPostLength', | 
					
						
							|  |  |  | 							value: 8 | 
					
						
							|  |  |  | 						}, { | 
					
						
							|  |  |  | 							field: 'minimumTitleLength', | 
					
						
							|  |  |  | 							value: 3 | 
					
						
							|  |  |  | 						}, { | 
					
						
							|  |  |  | 							field: 'minimumUsernameLength', | 
					
						
							|  |  |  | 							value: 2 | 
					
						
							|  |  |  | 						}, { | 
					
						
							|  |  |  | 							field: 'maximumUsernameLength', | 
					
						
							|  |  |  | 							value: 16 | 
					
						
							|  |  |  | 						}, { | 
					
						
							|  |  |  | 							field: 'minimumPasswordLength', | 
					
						
							|  |  |  | 							value: 6 | 
					
						
							|  |  |  | 						}, { | 
					
						
							|  |  |  | 							field: 'imgurClientID', | 
					
						
							|  |  |  | 							value: '' | 
					
						
							|  |  |  | 						}]; | 
					
						
							| 
									
										
										
										
											2013-09-10 16:26:26 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-18 12:15:29 -04:00
										 |  |  | 					async.each(defaults, function (configObj, next) { | 
					
						
							| 
									
										
										
										
											2013-09-11 13:49:17 -04:00
										 |  |  | 						meta.configs.setOnEmpty(configObj.field, configObj.value, next); | 
					
						
							| 
									
										
										
										
											2013-09-18 12:15:29 -04:00
										 |  |  | 					}, function (err) { | 
					
						
							| 
									
										
										
										
											2013-09-11 13:49:17 -04:00
										 |  |  | 						meta.configs.init(next); | 
					
						
							|  |  |  | 					}); | 
					
						
							| 
									
										
										
										
											2013-09-10 16:26:26 -04:00
										 |  |  | 				}, | 
					
						
							| 
									
										
										
										
											2013-09-18 12:15:29 -04:00
										 |  |  | 				function (next) { | 
					
						
							| 
									
										
										
										
											2013-09-06 22:22:42 -04:00
										 |  |  | 					// Check if an administrator needs to be created
 | 
					
						
							| 
									
										
										
										
											2013-09-17 13:09:37 -04:00
										 |  |  | 					var Groups = require('./groups'); | 
					
						
							| 
									
										
										
										
											2013-09-10 16:26:26 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-18 12:15:29 -04:00
										 |  |  | 					Groups.getGidFromName('Administrators', function (err, gid) { | 
					
						
							|  |  |  | 						if (err) { | 
					
						
							|  |  |  | 							return next(err.message); | 
					
						
							|  |  |  | 						} | 
					
						
							| 
									
										
										
										
											2013-09-06 22:22:42 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 						if (gid) { | 
					
						
							| 
									
										
										
										
											2013-09-18 12:15:29 -04:00
										 |  |  | 							Groups.get(gid, {}, function (err, groupObj) { | 
					
						
							| 
									
										
										
										
											2013-09-06 22:22:42 -04:00
										 |  |  | 								if (groupObj.count > 0) { | 
					
						
							|  |  |  | 									winston.info('Administrator found, skipping Admin setup'); | 
					
						
							|  |  |  | 									next(); | 
					
						
							| 
									
										
										
										
											2013-09-18 12:15:29 -04:00
										 |  |  | 								} else { | 
					
						
							|  |  |  | 									install.createAdmin(next); | 
					
						
							|  |  |  | 								} | 
					
						
							| 
									
										
										
										
											2013-09-06 22:22:42 -04:00
										 |  |  | 							}); | 
					
						
							| 
									
										
										
										
											2013-09-18 12:15:29 -04:00
										 |  |  | 						} else { | 
					
						
							|  |  |  | 							install.createAdmin(next); | 
					
						
							|  |  |  | 						} | 
					
						
							| 
									
										
										
										
											2013-09-06 22:22:42 -04:00
										 |  |  | 					}); | 
					
						
							|  |  |  | 				}, | 
					
						
							| 
									
										
										
										
											2013-09-18 12:15:29 -04:00
										 |  |  | 				function (next) { | 
					
						
							| 
									
										
										
										
											2013-09-06 22:22:42 -04:00
										 |  |  | 					// Categories
 | 
					
						
							| 
									
										
										
										
											2013-09-17 13:09:37 -04:00
										 |  |  | 					var Categories = require('./categories'), | 
					
						
							| 
									
										
										
										
											2013-09-10 16:26:26 -04:00
										 |  |  | 						admin = { | 
					
						
							|  |  |  | 							categories: require('./admin/categories') | 
					
						
							|  |  |  | 						}; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-18 12:15:29 -04:00
										 |  |  | 					Categories.getAllCategories(function (data) { | 
					
						
							| 
									
										
										
										
											2013-09-06 22:22:42 -04:00
										 |  |  | 						if (data.categories.length === 0) { | 
					
						
							| 
									
										
										
										
											2013-09-18 12:15:29 -04:00
										 |  |  | 							winston.warn('No categories found, populating instance with default categories'); | 
					
						
							| 
									
										
										
										
											2013-09-06 22:22:42 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-18 12:15:29 -04:00
										 |  |  | 							fs.readFile(path.join(__dirname, '../', 'install/data/categories.json'), function (err, default_categories) { | 
					
						
							| 
									
										
										
										
											2013-09-06 22:22:42 -04:00
										 |  |  | 								default_categories = JSON.parse(default_categories); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-18 12:15:29 -04:00
										 |  |  | 								async.eachSeries(default_categories, function (category, next) { | 
					
						
							| 
									
										
										
										
											2013-09-06 22:22:42 -04:00
										 |  |  | 									admin.categories.create(category, next); | 
					
						
							| 
									
										
										
										
											2013-09-18 12:15:29 -04:00
										 |  |  | 								}, function (err) { | 
					
						
							|  |  |  | 									if (!err) { | 
					
						
							|  |  |  | 										next(); | 
					
						
							|  |  |  | 									} else { | 
					
						
							|  |  |  | 										winston.error('Could not set up categories'); | 
					
						
							|  |  |  | 									} | 
					
						
							| 
									
										
										
										
											2013-09-06 22:22:42 -04:00
										 |  |  | 								}); | 
					
						
							|  |  |  | 							}); | 
					
						
							|  |  |  | 						} else { | 
					
						
							|  |  |  | 							winston.info('Categories OK. Found ' + data.categories.length + ' categories.'); | 
					
						
							|  |  |  | 							next(); | 
					
						
							|  |  |  | 						} | 
					
						
							|  |  |  | 					}); | 
					
						
							| 
									
										
										
										
											2013-09-07 11:45:04 -04:00
										 |  |  | 				}, | 
					
						
							| 
									
										
										
										
											2013-09-18 12:15:29 -04:00
										 |  |  | 				function (next) { | 
					
						
							| 
									
										
										
										
											2013-09-07 11:45:04 -04:00
										 |  |  | 					// Default plugins
 | 
					
						
							| 
									
										
										
										
											2013-09-17 13:09:37 -04:00
										 |  |  | 					var Plugins = require('./plugins'); | 
					
						
							| 
									
										
										
										
											2013-09-10 16:26:26 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-07 11:45:04 -04:00
										 |  |  | 					winston.info('Enabling default plugins'); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-17 13:09:37 -04:00
										 |  |  | 					var defaultEnabled = [ | 
					
						
							|  |  |  | 						'nodebb-plugin-markdown', 'nodebb-plugin-mentions' | 
					
						
							|  |  |  | 					]; | 
					
						
							| 
									
										
										
										
											2013-09-07 11:45:04 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-18 12:15:29 -04:00
										 |  |  | 					async.each(defaultEnabled, function (pluginId, next) { | 
					
						
							|  |  |  | 						Plugins.isActive(pluginId, function (err, active) { | 
					
						
							| 
									
										
										
										
											2013-09-07 11:45:04 -04:00
										 |  |  | 							if (!active) { | 
					
						
							| 
									
										
										
										
											2013-09-18 12:15:29 -04:00
										 |  |  | 								Plugins.toggleActive(pluginId, function () { | 
					
						
							| 
									
										
										
										
											2013-09-07 11:53:55 -04:00
										 |  |  | 									next(); | 
					
						
							|  |  |  | 								}); | 
					
						
							| 
									
										
										
										
											2013-09-18 12:15:29 -04:00
										 |  |  | 							} else { | 
					
						
							|  |  |  | 								next(); | 
					
						
							|  |  |  | 							} | 
					
						
							|  |  |  | 						}); | 
					
						
							| 
									
										
										
										
											2013-09-07 11:45:04 -04:00
										 |  |  | 					}, next); | 
					
						
							| 
									
										
										
										
											2013-09-06 22:22:42 -04:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2013-09-18 12:15:29 -04:00
										 |  |  | 			], function (err) { | 
					
						
							| 
									
										
										
										
											2013-09-07 11:45:04 -04:00
										 |  |  | 				if (err) { | 
					
						
							|  |  |  | 					winston.warn('NodeBB Setup Aborted.'); | 
					
						
							|  |  |  | 					process.exit(); | 
					
						
							| 
									
										
										
										
											2013-09-18 12:15:29 -04:00
										 |  |  | 				} else { | 
					
						
							|  |  |  | 					callback(); | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2013-09-07 11:45:04 -04:00
										 |  |  | 			}); | 
					
						
							| 
									
										
										
										
											2013-09-06 22:22:42 -04:00
										 |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2013-09-18 12:15:29 -04:00
										 |  |  | 		createAdmin: function (callback) { | 
					
						
							| 
									
										
										
										
											2013-09-17 13:09:37 -04:00
										 |  |  | 			var User = require('./user'), | 
					
						
							| 
									
										
										
										
											2013-09-10 16:26:26 -04:00
										 |  |  | 				Groups = require('./groups'); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-06 22:22:42 -04:00
										 |  |  | 			winston.warn('No administrators have been detected, running initial user setup'); | 
					
						
							| 
									
										
										
										
											2013-09-17 13:09:37 -04:00
										 |  |  | 			var questions = [{ | 
					
						
							|  |  |  | 				name: 'username', | 
					
						
							|  |  |  | 				description: 'Administrator username', | 
					
						
							|  |  |  | 				required: true, | 
					
						
							|  |  |  | 				type: 'string' | 
					
						
							|  |  |  | 			}, { | 
					
						
							|  |  |  | 				name: 'email', | 
					
						
							|  |  |  | 				description: 'Administrator email address', | 
					
						
							|  |  |  | 				pattern: /.+@.+/, | 
					
						
							|  |  |  | 				required: true | 
					
						
							|  |  |  | 			}, { | 
					
						
							|  |  |  | 				name: 'password', | 
					
						
							|  |  |  | 				description: 'Password', | 
					
						
							|  |  |  | 				required: true, | 
					
						
							|  |  |  | 				hidden: true, | 
					
						
							|  |  |  | 				type: 'string' | 
					
						
							|  |  |  | 			}], | 
					
						
							| 
									
										
										
										
											2013-09-18 12:15:29 -04:00
										 |  |  | 				getAdminInfo = function (callback) { | 
					
						
							|  |  |  | 					prompt.get(questions, function (err, results) { | 
					
						
							|  |  |  | 						if (!results) { | 
					
						
							|  |  |  | 							return callback(new Error('aborted')); | 
					
						
							|  |  |  | 						} | 
					
						
							| 
									
										
										
										
											2013-09-07 15:49:23 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 						nconf.set('bcrypt_rounds', 12); | 
					
						
							| 
									
										
										
										
											2013-09-18 12:15:29 -04:00
										 |  |  | 						User.create(results.username, results.password, results.email, function (err, uid) { | 
					
						
							| 
									
										
										
										
											2013-09-07 15:49:23 -04:00
										 |  |  | 							if (err) { | 
					
						
							|  |  |  | 								winston.warn(err.message + ' Please try again.'); | 
					
						
							|  |  |  | 								return getAdminInfo(); | 
					
						
							|  |  |  | 							} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-18 12:15:29 -04:00
										 |  |  | 							Groups.getGidFromName('Administrators', function (err, gid) { | 
					
						
							|  |  |  | 								if (gid) { | 
					
						
							|  |  |  | 									Groups.join(gid, uid, callback); | 
					
						
							|  |  |  | 								} else { | 
					
						
							|  |  |  | 									Groups.create('Administrators', 'Forum Administrators', function (err, groupObj) { | 
					
						
							| 
									
										
										
										
											2013-09-07 15:49:23 -04:00
										 |  |  | 										Groups.join(groupObj.gid, uid, callback); | 
					
						
							|  |  |  | 									}); | 
					
						
							|  |  |  | 								} | 
					
						
							| 
									
										
										
										
											2013-09-06 22:22:42 -04:00
										 |  |  | 							}); | 
					
						
							| 
									
										
										
										
											2013-09-07 15:49:23 -04:00
										 |  |  | 						}); | 
					
						
							| 
									
										
										
										
											2013-09-06 22:22:42 -04:00
										 |  |  | 					}); | 
					
						
							| 
									
										
										
										
											2013-09-07 15:49:23 -04:00
										 |  |  | 				}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			getAdminInfo(callback); | 
					
						
							| 
									
										
										
										
											2013-07-16 16:12:09 -04:00
										 |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2013-09-18 12:15:29 -04:00
										 |  |  | 		save: function (server_conf, client_conf, callback) { | 
					
						
							| 
									
										
										
										
											2013-07-16 16:12:09 -04:00
										 |  |  | 			// Server Config
 | 
					
						
							|  |  |  | 			async.parallel([ | 
					
						
							| 
									
										
										
										
											2013-09-18 12:15:29 -04:00
										 |  |  | 				function (next) { | 
					
						
							|  |  |  | 					fs.writeFile(path.join(__dirname, '../', 'config.json'), JSON.stringify(server_conf, null, 4), function (err) { | 
					
						
							| 
									
										
										
										
											2013-07-16 16:12:09 -04:00
										 |  |  | 						next(err); | 
					
						
							|  |  |  | 					}); | 
					
						
							|  |  |  | 				}, | 
					
						
							| 
									
										
										
										
											2013-09-18 12:15:29 -04:00
										 |  |  | 				function (next) { | 
					
						
							|  |  |  | 					fs.writeFile(path.join(__dirname, '../', 'public', 'config.json'), JSON.stringify(client_conf, null, 4), function (err) { | 
					
						
							| 
									
										
										
										
											2013-07-16 16:12:09 -04:00
										 |  |  | 						next(err); | 
					
						
							|  |  |  | 					}); | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2013-09-18 12:15:29 -04:00
										 |  |  | 			], function (err) { | 
					
						
							| 
									
										
										
										
											2013-09-06 22:22:42 -04:00
										 |  |  | 				winston.info('Configuration Saved OK'); | 
					
						
							| 
									
										
										
										
											2013-09-10 16:26:26 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-17 13:09:37 -04:00
										 |  |  | 				nconf.file({ | 
					
						
							|  |  |  | 					file: path.join(__dirname, '..', 'config.json') | 
					
						
							|  |  |  | 				}); | 
					
						
							| 
									
										
										
										
											2013-09-10 16:26:26 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-17 13:09:37 -04:00
										 |  |  | 				var RDB = require('./redis'); | 
					
						
							| 
									
										
										
										
											2013-09-18 12:15:29 -04:00
										 |  |  | 				reds.createClient = function () { | 
					
						
							| 
									
										
										
										
											2013-09-10 16:26:26 -04:00
										 |  |  | 					return reds.client || (reds.client = RDB); | 
					
						
							| 
									
										
										
										
											2013-09-18 12:15:29 -04:00
										 |  |  | 				}; | 
					
						
							| 
									
										
										
										
											2013-09-10 16:26:26 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-16 16:12:09 -04:00
										 |  |  | 				callback(err); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | module.exports = install; |