| 
									
										
										
										
											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-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', | 
					
						
							| 
									
										
										
										
											2013-11-03 11:53:44 -05:00
										 |  |  | 			'default': nconf.get('base_url') || 'http://localhost', | 
					
						
							| 
									
										
										
										
											2013-09-17 13:09:37 -04:00
										 |  |  | 			pattern: /^http(?:s)?:\/\//, | 
					
						
							|  |  |  | 			message: 'Base URL must begin with \'http://\' or \'https://\'', | 
					
						
							|  |  |  | 		}, { | 
					
						
							|  |  |  | 			name: 'port', | 
					
						
							|  |  |  | 			description: 'Port number of your NodeBB', | 
					
						
							| 
									
										
										
										
											2013-11-03 11:53:44 -05:00
										 |  |  | 			'default': nconf.get('port') || 4567, | 
					
						
							| 
									
										
										
										
											2013-12-04 17:57:51 -05:00
										 |  |  | 			pattern: /[0-9]{1,4}|[1-5][0-9]{4}|6[0-4][0-9]{3}|65[0-4][0-9]{2}|655[0-2][0-9]|6553[0-5]/, | 
					
						
							|  |  |  | 			message: 'Please enter a value betweeen 1 and 65535' | 
					
						
							| 
									
										
										
										
											2013-09-17 13:09:37 -04:00
										 |  |  | 		}, { | 
					
						
							|  |  |  | 			name: 'use_port', | 
					
						
							|  |  |  | 			description: 'Use a port number to access NodeBB?', | 
					
						
							| 
									
										
										
										
											2013-11-06 11:36:00 -05:00
										 |  |  | 			'default': (nconf.get('use_port') !== undefined ? (nconf.get('use_port') ? 'y' : 'n') : 'y'), | 
					
						
							| 
									
										
										
										
											2013-09-17 13:09:37 -04:00
										 |  |  | 			pattern: /y[es]*|n[o]?/, | 
					
						
							| 
									
										
										
										
											2014-01-20 13:23:40 -05:00
										 |  |  | 			message: 'Please enter \'yes\' or \'no\'' | 
					
						
							| 
									
										
										
										
											2013-09-17 13:09:37 -04:00
										 |  |  | 		}, { | 
					
						
							|  |  |  | 			name: 'secret', | 
					
						
							|  |  |  | 			description: 'Please enter a NodeBB secret', | 
					
						
							| 
									
										
										
										
											2013-11-03 11:53:44 -05:00
										 |  |  | 			'default': nconf.get('secret') || utils.generateUUID() | 
					
						
							| 
									
										
										
										
											2013-09-17 13:09:37 -04:00
										 |  |  | 		}, { | 
					
						
							| 
									
										
										
										
											2013-12-04 17:57:51 -05:00
										 |  |  | 			name: 'bind_address', | 
					
						
							|  |  |  | 			description: 'IP or Hostname to bind to', | 
					
						
							|  |  |  | 			'default': nconf.get('bind_address') || '0.0.0.0' | 
					
						
							|  |  |  | 		}, { | 
					
						
							|  |  |  | 			name: 'database', | 
					
						
							|  |  |  | 			description: 'Which database to use', | 
					
						
							|  |  |  | 			'default': nconf.get('database') || 'redis' | 
					
						
							|  |  |  | 		}], | 
					
						
							|  |  |  | 		redisQuestions : [{ | 
					
						
							| 
									
										
										
										
											2013-09-17 13:09:37 -04:00
										 |  |  | 			name: 'redis:host', | 
					
						
							|  |  |  | 			description: 'Host IP or address of your Redis instance', | 
					
						
							| 
									
										
										
										
											2013-11-03 11:53:44 -05:00
										 |  |  | 			'default': nconf.get('redis:host') || '127.0.0.1' | 
					
						
							| 
									
										
										
										
											2013-09-17 13:09:37 -04:00
										 |  |  | 		}, { | 
					
						
							|  |  |  | 			name: 'redis:port', | 
					
						
							|  |  |  | 			description: 'Host port of your Redis instance', | 
					
						
							| 
									
										
										
										
											2013-11-03 11:53:44 -05:00
										 |  |  | 			'default': nconf.get('redis:port') || 6379 | 
					
						
							| 
									
										
										
										
											2013-09-17 13:09:37 -04:00
										 |  |  | 		}, { | 
					
						
							|  |  |  | 			name: 'redis:password', | 
					
						
							|  |  |  | 			description: 'Password of your Redis database' | 
					
						
							| 
									
										
										
										
											2013-10-03 13:00:30 -07:00
										 |  |  | 		}, { | 
					
						
							|  |  |  | 			name: "redis:database", | 
					
						
							|  |  |  | 			description: "Which database to use (0..n)", | 
					
						
							| 
									
										
										
										
											2013-11-03 11:53:44 -05:00
										 |  |  | 			'default': nconf.get('redis:database') || 0 | 
					
						
							| 
									
										
										
										
											2013-12-04 17:57:51 -05:00
										 |  |  | 		}], | 
					
						
							|  |  |  | 		mongoQuestions : [{ | 
					
						
							|  |  |  | 			name: 'mongo:host', | 
					
						
							|  |  |  | 			description: 'Host IP or address of your MongoDB instance', | 
					
						
							|  |  |  | 			'default': nconf.get('mongo:host') || '127.0.0.1' | 
					
						
							| 
									
										
										
										
											2013-09-28 03:55:06 -04:00
										 |  |  | 		}, { | 
					
						
							| 
									
										
										
										
											2013-12-04 17:57:51 -05:00
										 |  |  | 			name: 'mongo:port', | 
					
						
							|  |  |  | 			description: 'Host port of your MongoDB instance', | 
					
						
							|  |  |  | 			'default': nconf.get('mongo:port') || 27017 | 
					
						
							| 
									
										
										
										
											2013-12-06 14:31:11 -05:00
										 |  |  | 		}, { | 
					
						
							| 
									
										
										
										
											2013-12-23 23:07:18 +07:00
										 |  |  | 			name: 'mongo:username', | 
					
						
							| 
									
										
										
										
											2013-12-06 14:31:11 -05:00
										 |  |  | 			description: 'MongoDB username' | 
					
						
							| 
									
										
										
										
											2013-12-04 17:57:51 -05:00
										 |  |  | 		}, { | 
					
						
							|  |  |  | 			name: 'mongo:password', | 
					
						
							|  |  |  | 			description: 'Password of your MongoDB database' | 
					
						
							|  |  |  | 		}, { | 
					
						
							|  |  |  | 			name: "mongo:database", | 
					
						
							|  |  |  | 			description: "Which database to use (0..n)", | 
					
						
							|  |  |  | 			'default': nconf.get('mongo:database') || 0 | 
					
						
							| 
									
										
										
										
											2013-10-01 22:14:16 -05:00
										 |  |  | 		}], | 
					
						
							| 
									
										
										
										
											2013-12-04 17:57:51 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-18 12:15:29 -04:00
										 |  |  | 		setup: function (callback) { | 
					
						
							| 
									
										
										
										
											2013-09-06 22:22:42 -04:00
										 |  |  | 			async.series([ | 
					
						
							| 
									
										
										
										
											2013-10-05 13:48:23 -04:00
										 |  |  | 				function(next) { | 
					
						
							|  |  |  | 					// Check if the `--setup` flag contained values we can work with
 | 
					
						
							|  |  |  | 					var	setupVal; | 
					
						
							|  |  |  | 					try { | 
					
						
							|  |  |  | 						setupVal = JSON.parse(nconf.get('setup')); | 
					
						
							|  |  |  | 					} catch (e) { | 
					
						
							|  |  |  | 						setupVal = undefined; | 
					
						
							|  |  |  | 					} | 
					
						
							| 
									
										
										
										
											2013-07-16 16:12:09 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-05 13:48:23 -04:00
										 |  |  | 					if (setupVal && setupVal instanceof Object) { | 
					
						
							| 
									
										
										
										
											2013-11-14 18:45:17 -05:00
										 |  |  | 						if (setupVal['admin:username'] && setupVal['admin:password'] && setupVal['admin:password:confirm'] && setupVal['admin:email']) { | 
					
						
							| 
									
										
										
										
											2013-10-05 13:48:23 -04:00
										 |  |  | 							install.values = setupVal; | 
					
						
							|  |  |  | 							next(); | 
					
						
							|  |  |  | 						} else { | 
					
						
							|  |  |  | 							winston.error('Required values are missing for automated setup:'); | 
					
						
							|  |  |  | 							if (!setupVal['admin:username']) winston.error('  admin:username'); | 
					
						
							|  |  |  | 							if (!setupVal['admin:password']) winston.error('  admin:password'); | 
					
						
							| 
									
										
										
										
											2013-11-14 18:45:17 -05:00
										 |  |  | 							if (!setupVal['admin:password:confirm']) winston.error('  admin:password:confirm'); | 
					
						
							| 
									
										
										
										
											2013-10-05 13:48:23 -04:00
										 |  |  | 							if (!setupVal['admin:email']) winston.error('  admin:email'); | 
					
						
							|  |  |  | 							process.exit(); | 
					
						
							|  |  |  | 						} | 
					
						
							| 
									
										
										
										
											2013-12-04 17:57:51 -05:00
										 |  |  | 					} else { | 
					
						
							|  |  |  | 						next(); | 
					
						
							|  |  |  | 					} | 
					
						
							| 
									
										
										
										
											2013-10-05 13:48:23 -04:00
										 |  |  | 				}, | 
					
						
							|  |  |  | 				function (next) { | 
					
						
							| 
									
										
										
										
											2013-12-08 11:59:48 -05:00
										 |  |  | 					var	success = function (err, config) { | 
					
						
							| 
									
										
										
										
											2013-09-18 12:15:29 -04:00
										 |  |  | 						if (!config) { | 
					
						
							|  |  |  | 							return next(new Error('aborted')); | 
					
						
							|  |  |  | 						} | 
					
						
							| 
									
										
										
										
											2013-07-17 12:05:24 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-12-08 11:59:48 -05:00
										 |  |  | 						var dbQuestionsSuccess = function (err, databaseConfig) { | 
					
						
							| 
									
										
										
										
											2013-12-06 17:51:16 -05:00
										 |  |  | 							if (!databaseConfig) { | 
					
						
							| 
									
										
										
										
											2013-12-04 17:57:51 -05:00
										 |  |  | 								return next(new Error('aborted')); | 
					
						
							|  |  |  | 							} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 							// Translate redis properties into redis object
 | 
					
						
							|  |  |  | 							if(config.database === 'redis') { | 
					
						
							|  |  |  | 								config.redis = { | 
					
						
							|  |  |  | 									host: databaseConfig['redis:host'], | 
					
						
							|  |  |  | 									port: databaseConfig['redis:port'], | 
					
						
							|  |  |  | 									password: databaseConfig['redis:password'], | 
					
						
							|  |  |  | 									database: databaseConfig['redis:database'] | 
					
						
							|  |  |  | 								}; | 
					
						
							|  |  |  | 							} else if (config.database === 'mongo') { | 
					
						
							|  |  |  | 								config.mongo = { | 
					
						
							|  |  |  | 									host: databaseConfig['mongo:host'], | 
					
						
							|  |  |  | 									port: databaseConfig['mongo:port'], | 
					
						
							| 
									
										
										
										
											2013-12-23 23:07:18 +07:00
										 |  |  | 									username: databaseConfig['mongo:username'], | 
					
						
							| 
									
										
										
										
											2013-12-04 17:57:51 -05:00
										 |  |  | 									password: databaseConfig['mongo:password'], | 
					
						
							|  |  |  | 									database: databaseConfig['mongo:database'] | 
					
						
							|  |  |  | 								}; | 
					
						
							| 
									
										
										
										
											2013-12-06 17:51:16 -05:00
										 |  |  | 							} else { | 
					
						
							|  |  |  | 								return next(new Error('unknown database : ' + config.database)); | 
					
						
							| 
									
										
										
										
											2013-12-04 17:57:51 -05:00
										 |  |  | 							} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-12-30 11:45:10 +07:00
										 |  |  | 							var allQuestions = install.redisQuestions.concat(install.mongoQuestions); | 
					
						
							|  |  |  | 							for(var x=0;x<allQuestions.length;x++) { | 
					
						
							|  |  |  | 								delete config[allQuestions[x].name]; | 
					
						
							|  |  |  | 							} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-12-04 17:57:51 -05:00
										 |  |  | 							config.bcrypt_rounds = 12; | 
					
						
							|  |  |  | 							config.upload_path = '/public/uploads'; | 
					
						
							| 
									
										
										
										
											2013-12-08 11:59:48 -05:00
										 |  |  | 							config.use_port = config.use_port.slice(0, 1) === 'y'; | 
					
						
							| 
									
										
										
										
											2013-10-15 14:31:27 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-12-04 17:57:51 -05: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 = { | 
					
						
							|  |  |  | 									relative_path: relative_path | 
					
						
							|  |  |  | 								}; | 
					
						
							| 
									
										
										
										
											2013-07-16 16:12:09 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-12-04 17:57:51 -05:00
										 |  |  | 							server_conf.base_url = protocol + '//' + host; | 
					
						
							|  |  |  | 							server_conf.relative_path = relative_path; | 
					
						
							| 
									
										
										
										
											2013-08-23 13:14:36 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-12-04 17:57:51 -05:00
										 |  |  | 							install.save(server_conf, client_conf, function(err) { | 
					
						
							|  |  |  | 								require('./database').init(next); | 
					
						
							|  |  |  | 							}); | 
					
						
							| 
									
										
										
										
											2013-12-08 11:59:48 -05:00
										 |  |  | 						}; | 
					
						
							| 
									
										
										
										
											2013-07-16 16:12:09 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-12-06 17:51:16 -05:00
										 |  |  | 						if(config.database === 'redis') { | 
					
						
							| 
									
										
										
										
											2013-12-08 11:59:48 -05:00
										 |  |  | 							if (config['redis:host'] && config['redis:port']) { | 
					
						
							|  |  |  | 								dbQuestionsSuccess(null, config); | 
					
						
							|  |  |  | 							} else { | 
					
						
							|  |  |  | 								prompt.get(install.redisQuestions, dbQuestionsSuccess); | 
					
						
							|  |  |  | 							} | 
					
						
							| 
									
										
										
										
											2013-12-06 17:51:16 -05:00
										 |  |  | 						} else if(config.database === 'mongo') { | 
					
						
							| 
									
										
										
										
											2013-12-08 11:59:48 -05:00
										 |  |  | 							if (config['mongo:host'] && config['mongo:port']) { | 
					
						
							|  |  |  | 								dbQuestionsSuccess(null, config); | 
					
						
							|  |  |  | 							} else { | 
					
						
							|  |  |  | 								prompt.get(install.mongoQuestions, dbQuestionsSuccess); | 
					
						
							|  |  |  | 							} | 
					
						
							| 
									
										
										
										
											2013-12-06 17:51:16 -05:00
										 |  |  | 						} else { | 
					
						
							|  |  |  | 							return next(new Error('unknown database : ' + config.database)); | 
					
						
							|  |  |  | 						} | 
					
						
							| 
									
										
										
										
											2013-10-05 13:48:23 -04:00
										 |  |  | 					}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					// prompt prepends "prompt: " to questions, let's clear that.
 | 
					
						
							|  |  |  | 					prompt.start(); | 
					
						
							|  |  |  | 					prompt.message = ''; | 
					
						
							|  |  |  | 					prompt.delimiter = ''; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-12-04 17:57:51 -05:00
										 |  |  | 					if (!install.values) { | 
					
						
							|  |  |  | 						prompt.get(install.questions, success); | 
					
						
							|  |  |  | 					} else { | 
					
						
							| 
									
										
										
										
											2013-10-05 13:48:23 -04:00
										 |  |  | 						// Use provided values, fall back to defaults
 | 
					
						
							|  |  |  | 						var	config = {}, | 
					
						
							| 
									
										
										
										
											2013-12-08 11:59:48 -05:00
										 |  |  | 							question, x, numQ, allQuestions = install.questions.concat(install.redisQuestions).concat(install.mongoQuestions); | 
					
						
							|  |  |  | 						for(x=0,numQ=allQuestions.length;x<numQ;x++) { | 
					
						
							|  |  |  | 							question = allQuestions[x]; | 
					
						
							| 
									
										
										
										
											2013-10-05 13:48:23 -04:00
										 |  |  | 							config[question.name] = install.values[question.name] || question['default'] || ''; | 
					
						
							|  |  |  | 						} | 
					
						
							|  |  |  | 						success(null, config); | 
					
						
							|  |  |  | 					} | 
					
						
							| 
									
										
										
										
											2013-09-06 22:22:42 -04:00
										 |  |  | 				}, | 
					
						
							| 
									
										
										
										
											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 = [{ | 
					
						
							| 
									
										
										
										
											2013-11-11 12:18:20 -05:00
										 |  |  | 							field: 'title', | 
					
						
							|  |  |  | 							value: 'NodeBB' | 
					
						
							|  |  |  | 						}, { | 
					
						
							| 
									
										
										
										
											2013-09-17 13:09:37 -04:00
										 |  |  | 							field: 'postDelay', | 
					
						
							| 
									
										
										
										
											2013-11-11 12:44:42 -05:00
										 |  |  | 							value: 10 | 
					
						
							| 
									
										
										
										
											2013-09-17 13:09:37 -04:00
										 |  |  | 						}, { | 
					
						
							|  |  |  | 							field: 'minimumPostLength', | 
					
						
							|  |  |  | 							value: 8 | 
					
						
							| 
									
										
										
										
											2013-11-01 13:04:15 -04:00
										 |  |  | 						}, { | 
					
						
							|  |  |  | 							field: 'allowGuestPosting', | 
					
						
							|  |  |  | 							value: 0 | 
					
						
							| 
									
										
										
										
											2013-12-11 22:50:36 -05:00
										 |  |  | 						}, { | 
					
						
							|  |  |  | 							field: 'allowGuestSearching', | 
					
						
							|  |  |  | 							value: 0 | 
					
						
							| 
									
										
										
										
											2013-12-23 12:31:51 -05:00
										 |  |  | 						}, { | 
					
						
							|  |  |  | 							field: 'allowRegistration', | 
					
						
							|  |  |  | 							value: 1 | 
					
						
							| 
									
										
										
										
											2013-12-31 17:01:51 -05:00
										 |  |  | 						}, { | 
					
						
							|  |  |  | 							field: 'allowFileUploads', | 
					
						
							| 
									
										
										
										
											2014-01-20 13:23:40 -05:00
										 |  |  | 							value: 0 | 
					
						
							| 
									
										
										
										
											2013-12-31 17:01:51 -05:00
										 |  |  | 						}, { | 
					
						
							| 
									
										
										
										
											2014-01-05 18:30:14 -05:00
										 |  |  | 							field: 'maximumFileSize', | 
					
						
							| 
									
										
										
										
											2013-12-31 17:01:51 -05:00
										 |  |  | 							value: 2048 | 
					
						
							| 
									
										
										
										
											2013-09-17 13:09:37 -04:00
										 |  |  | 						}, { | 
					
						
							|  |  |  | 							field: 'minimumTitleLength', | 
					
						
							|  |  |  | 							value: 3 | 
					
						
							| 
									
										
										
										
											2013-12-31 14:25:26 -05:00
										 |  |  | 						}, { | 
					
						
							|  |  |  | 							field: 'maximumTitleLength', | 
					
						
							|  |  |  | 							value: 255 | 
					
						
							| 
									
										
										
										
											2013-09-17 13:09:37 -04:00
										 |  |  | 						}, { | 
					
						
							|  |  |  | 							field: 'minimumUsernameLength', | 
					
						
							|  |  |  | 							value: 2 | 
					
						
							|  |  |  | 						}, { | 
					
						
							|  |  |  | 							field: 'maximumUsernameLength', | 
					
						
							|  |  |  | 							value: 16 | 
					
						
							|  |  |  | 						}, { | 
					
						
							|  |  |  | 							field: 'minimumPasswordLength', | 
					
						
							|  |  |  | 							value: 6 | 
					
						
							|  |  |  | 						}, { | 
					
						
							|  |  |  | 							field: 'imgurClientID', | 
					
						
							|  |  |  | 							value: '' | 
					
						
							| 
									
										
										
										
											2013-12-19 14:57:59 -05:00
										 |  |  | 						}, { | 
					
						
							|  |  |  | 							field: 'maximumSignatureLength', | 
					
						
							|  |  |  | 							value: 255 | 
					
						
							| 
									
										
										
										
											2013-09-22 00:29:31 -04:00
										 |  |  | 						}, { | 
					
						
							|  |  |  | 							field: 'maximumProfileImageSize', | 
					
						
							|  |  |  | 							value: 256 | 
					
						
							| 
									
										
										
										
											2013-12-27 14:09:22 -05:00
										 |  |  | 						}, { | 
					
						
							|  |  |  | 							field: 'chatMessagesToDisplay', | 
					
						
							|  |  |  | 							value: 50 | 
					
						
							| 
									
										
										
										
											2013-10-19 17:41:26 -04:00
										 |  |  | 						}, { | 
					
						
							|  |  |  | 							field: 'theme:type', | 
					
						
							|  |  |  | 							value: 'local' | 
					
						
							|  |  |  | 						}, { | 
					
						
							|  |  |  | 							field: 'theme:id', | 
					
						
							| 
									
										
										
										
											2013-10-19 17:50:40 -04:00
										 |  |  | 							value: 'nodebb-theme-cerulean' | 
					
						
							| 
									
										
										
										
											2013-09-17 13:09:37 -04:00
										 |  |  | 						}]; | 
					
						
							| 
									
										
										
										
											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-12-30 11:46:33 +07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 					if (install.values) { | 
					
						
							|  |  |  | 						if (install.values['social:twitter:key'] && install.values['social:twitter:secret']) { | 
					
						
							|  |  |  | 							meta.configs.setOnEmpty('social:twitter:key', install.values['social:twitter:key']); | 
					
						
							|  |  |  | 							meta.configs.setOnEmpty('social:twitter:secret', install.values['social:twitter:secret']); | 
					
						
							|  |  |  | 						} | 
					
						
							|  |  |  | 						if (install.values['social:google:id'] && install.values['social:google:secret']) { | 
					
						
							|  |  |  | 							meta.configs.setOnEmpty('social:google:id', install.values['social:google:id']); | 
					
						
							|  |  |  | 							meta.configs.setOnEmpty('social:google:secret', install.values['social:google:secret']); | 
					
						
							|  |  |  | 						} | 
					
						
							|  |  |  | 						if (install.values['social:facebook:key'] && install.values['social:facebook:secret']) { | 
					
						
							|  |  |  | 							meta.configs.setOnEmpty('social:facebook:app_id', install.values['social:facebook:app_id']); | 
					
						
							|  |  |  | 							meta.configs.setOnEmpty('social:facebook:secret', install.values['social:facebook:secret']); | 
					
						
							|  |  |  | 						} | 
					
						
							|  |  |  | 					} | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-23 16:19:10 -05:00
										 |  |  | 					Groups.getGidFromName('administrators', function (err, gid) { | 
					
						
							| 
									
										
										
										
											2013-09-18 12:15:29 -04:00
										 |  |  | 						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-11-26 15:14:12 -05:00
										 |  |  | 					var Categories = require('./categories'); | 
					
						
							| 
									
										
										
										
											2013-09-10 16:26:26 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-26 14:25:46 -05:00
										 |  |  | 					Categories.getAllCategories(0, function (err, 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-11-26 15:14:12 -05:00
										 |  |  | 									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-11-21 17:41:27 -05:00
										 |  |  | 				}, | 
					
						
							|  |  |  | 				function (next) { | 
					
						
							| 
									
										
										
										
											2013-12-06 14:22:31 -05:00
										 |  |  | 					require('./upgrade').upgrade(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 = [{ | 
					
						
							| 
									
										
										
										
											2013-10-05 13:48:23 -04:00
										 |  |  | 					name: 'username', | 
					
						
							|  |  |  | 					description: 'Administrator username', | 
					
						
							|  |  |  | 					required: true, | 
					
						
							|  |  |  | 					type: 'string' | 
					
						
							|  |  |  | 				}, { | 
					
						
							|  |  |  | 					name: 'email', | 
					
						
							|  |  |  | 					description: 'Administrator email address', | 
					
						
							|  |  |  | 					pattern: /.+@.+/, | 
					
						
							|  |  |  | 					required: true | 
					
						
							| 
									
										
										
										
											2013-11-14 12:52:00 -06:00
										 |  |  | 				}], | 
					
						
							|  |  |  | 				passwordQuestions = [{ | 
					
						
							| 
									
										
										
										
											2013-10-05 13:48:23 -04:00
										 |  |  | 					name: 'password', | 
					
						
							|  |  |  | 					description: 'Password', | 
					
						
							|  |  |  | 					required: true, | 
					
						
							|  |  |  | 					hidden: true, | 
					
						
							|  |  |  | 					type: 'string' | 
					
						
							| 
									
										
										
										
											2013-11-14 12:52:00 -06:00
										 |  |  | 				}, { | 
					
						
							|  |  |  | 					name: 'password:confirm', | 
					
						
							|  |  |  | 					description: 'Confirm Password', | 
					
						
							|  |  |  | 					required: true, | 
					
						
							|  |  |  | 					hidden: true, | 
					
						
							|  |  |  | 					type: 'string' | 
					
						
							| 
									
										
										
										
											2013-10-05 13:48:23 -04:00
										 |  |  | 				}], | 
					
						
							|  |  |  | 				success = function(err, results) { | 
					
						
							|  |  |  | 					if (!results) { | 
					
						
							|  |  |  | 						return callback(new Error('aborted')); | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-14 12:52:00 -06:00
										 |  |  | 					// Check if the passwords match
 | 
					
						
							|  |  |  | 					if (results['password:confirm'] !== results.password) { | 
					
						
							|  |  |  | 						winston.warn("Passwords did not match, please try again"); | 
					
						
							|  |  |  | 						// Re-prompt password questions.
 | 
					
						
							|  |  |  | 						return retryPassword(results); | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-05 13:48:23 -04:00
										 |  |  | 					nconf.set('bcrypt_rounds', 12); | 
					
						
							| 
									
										
										
										
											2014-01-20 12:41:35 -05:00
										 |  |  | 					User.create({username: results.username, password: results.password, email: results.email}, function (err, uid) { | 
					
						
							| 
									
										
										
										
											2013-10-05 13:48:23 -04:00
										 |  |  | 						if (err) { | 
					
						
							|  |  |  | 							winston.warn(err.message + ' Please try again.'); | 
					
						
							| 
									
										
										
										
											2013-10-15 14:31:27 -04:00
										 |  |  | 							return callback(new Error('invalid-values')); | 
					
						
							| 
									
										
										
										
											2013-09-18 12:15:29 -04:00
										 |  |  | 						} | 
					
						
							| 
									
										
										
										
											2013-09-07 15:49:23 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-23 16:19:10 -05:00
										 |  |  | 						Groups.getGidFromName('administrators', function (err, gid) { | 
					
						
							| 
									
										
										
										
											2013-10-05 13:48:23 -04:00
										 |  |  | 							if (gid) { | 
					
						
							|  |  |  | 								Groups.join(gid, uid, callback); | 
					
						
							|  |  |  | 							} else { | 
					
						
							| 
									
										
										
										
											2014-01-23 16:19:10 -05:00
										 |  |  | 								Groups.create('administrators', 'Forum Administrators', function (err, groupObj) { | 
					
						
							| 
									
										
										
										
											2013-10-05 13:48:23 -04:00
										 |  |  | 									Groups.join(groupObj.gid, uid, callback); | 
					
						
							|  |  |  | 								}); | 
					
						
							| 
									
										
										
										
											2013-09-07 15:49:23 -04:00
										 |  |  | 							} | 
					
						
							|  |  |  | 						}); | 
					
						
							| 
									
										
										
										
											2013-09-06 22:22:42 -04:00
										 |  |  | 					}); | 
					
						
							| 
									
										
										
										
											2013-11-14 12:52:00 -06:00
										 |  |  | 				}, | 
					
						
							|  |  |  | 				retryPassword = function (originalResults) { | 
					
						
							|  |  |  | 					// Ask only the password questions
 | 
					
						
							|  |  |  | 					prompt.get(passwordQuestions, function (err, results) { | 
					
						
							|  |  |  | 						if (!results) { | 
					
						
							|  |  |  | 							return callback(new Error('aborted')); | 
					
						
							|  |  |  | 						} | 
					
						
							| 
									
										
										
										
											2013-11-21 17:41:27 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-14 12:52:00 -06:00
										 |  |  | 						// Update the original data with newly collected password
 | 
					
						
							|  |  |  | 						originalResults.password = results.password; | 
					
						
							|  |  |  | 						originalResults['password:confirm'] = results['password:confirm']; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 						// Send back to success to handle
 | 
					
						
							|  |  |  | 						success(err, originalResults); | 
					
						
							|  |  |  | 					}); | 
					
						
							| 
									
										
										
										
											2013-09-07 15:49:23 -04:00
										 |  |  | 				}; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-14 12:52:00 -06:00
										 |  |  | 			// Add the password questions
 | 
					
						
							|  |  |  | 			questions = questions.concat(passwordQuestions); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-12-04 17:57:51 -05:00
										 |  |  | 			if (!install.values) { | 
					
						
							|  |  |  | 				prompt.get(questions, success); | 
					
						
							|  |  |  | 			} else { | 
					
						
							| 
									
										
										
										
											2013-10-05 13:48:23 -04:00
										 |  |  | 				var results = { | 
					
						
							|  |  |  | 						username: install.values['admin:username'], | 
					
						
							|  |  |  | 						email: install.values['admin:email'], | 
					
						
							| 
									
										
										
										
											2013-11-14 18:45:17 -05:00
										 |  |  | 						password: install.values['admin:password'], | 
					
						
							|  |  |  | 						'password:confirm': install.values['admin:password:confirm'] | 
					
						
							| 
									
										
										
										
											2013-10-05 13:48:23 -04:00
										 |  |  | 					}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				success(null, results); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											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-07-16 16:12:09 -04:00
										 |  |  | 				callback(err); | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | module.exports = install; |