| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169 | 'use strict';const async = require('async');const config = require('config');const request = require('request');const bcrypt = require('bcrypt');const sha256 = require('sha256');const hooks = require('./hooks');const moduleManager = require("../../index");const db = moduleManager.modules["db"];const mail = moduleManager.modules["mail"];const cache = moduleManager.modules["cache"];const punishments = moduleManager.modules["punishments"];const utils = moduleManager.modules["utils"];const logger = moduleManager.modules["logger"];cache.sub('user.updateUsername', user => {	utils.socketsFromUser(user._id, sockets => {		sockets.forEach(socket => {			socket.emit('event:user.username.changed', user.username);		});	});});cache.sub('user.removeSessions', userId => {	utils.socketsFromUserWithoutCache(userId, sockets => {		sockets.forEach(socket => {			socket.emit('keep.event:user.session.removed');		});	});});cache.sub('user.linkPassword', userId => {	utils.socketsFromUser(userId, sockets => {		sockets.forEach(socket => {			socket.emit('event:user.linkPassword');		});	});});cache.sub('user.linkGitHub', userId => {	utils.socketsFromUser(userId, sockets => {		sockets.forEach(socket => {			socket.emit('event:user.linkGitHub');		});	});});cache.sub('user.unlinkPassword', userId => {	utils.socketsFromUser(userId, sockets => {		sockets.forEach(socket => {			socket.emit('event:user.unlinkPassword');		});	});});cache.sub('user.unlinkGitHub', userId => {	utils.socketsFromUser(userId, sockets => {		sockets.forEach(socket => {			socket.emit('event:user.unlinkGitHub');		});	});});cache.sub('user.ban', data => {	utils.socketsFromUser(data.userId, sockets => {		sockets.forEach(socket => {			socket.emit('keep.event:banned', data.punishment);			socket.disconnect(true);		});	});});cache.sub('user.favoritedStation', data => {	utils.socketsFromUser(data.userId, sockets => {		sockets.forEach(socket => {			socket.emit('event:user.favoritedStation', data.stationId);		});	});});cache.sub('user.unfavoritedStation', data => {	utils.socketsFromUser(data.userId, sockets => {		sockets.forEach(socket => {			socket.emit('event:user.unfavoritedStation', data.stationId);		});	});});module.exports = {	/**	 * Lists all Users	 *	 * @param {Object} session - the session object automatically added by socket.io	 * @param {Function} cb - gets called with the result	 */	index: hooks.adminRequired((session, cb) => {		async.waterfall([			(next) => {				db.models.user.find({}).exec(next);			}		], async (err, users) => {			if (err) {				err = await utils.getError(err);				logger.error("USER_INDEX", `Indexing users failed. "${err}"`);				return cb({status: 'failure', message: err});			} else {				logger.success("USER_INDEX", `Indexing users successful.`);				let filteredUsers = [];				users.forEach(user => {					filteredUsers.push({						_id: user._id,						username: user.username,						role: user.role,						liked: user.liked,						disliked: user.disliked,						songsRequested: user.statistics.songsRequested,						email: {							address: user.email.address,							verified: user.email.verified						},						hasPassword: !!user.services.password,						services: { github: user.services.github }					});				});				return cb({ status: 'success', data: filteredUsers });			}		});	}),	/**	 * Logs user in	 *	 * @param {Object} session - the session object automatically added by socket.io	 * @param {String} identifier - the email of the user	 * @param {String} password - the plaintext of the user	 * @param {Function} cb - gets called with the result	 */	login: (session, identifier, password, cb) => {		identifier = identifier.toLowerCase();		async.waterfall([			// check if a user with the requested identifier exists			(next) => {				db.models.user.findOne({					$or: [{ 'email.address': identifier }]				}, next)			},			// if the user doesn't exist, respond with a failure			// otherwise compare the requested password and the actual users password			(user, next) => {				if (!user) return next('User not found');				if (!user.services.password || !user.services.password.password) return next('The account you are trying to access uses GitHub to log in.');				bcrypt.compare(sha256(password), user.services.password.password, (err, match) => {					if (err) return next(err);					if (!match) return next('Incorrect password');					next(null, user);				});			},			(user, next) => {				utils.guid().then((sessionId) => {					next(null, user, sessionId);				});			},			(user, sessionId, next) => {				cache.hset('sessions', sessionId, cache.schemas.session(sessionId, user._id), (err) => {					if (err) return next(err);					next(null, sessionId);				});			}		], async (err, sessionId) => {			if (err && err !== true) {				err = await utils.getError(err);				logger.error("USER_PASSWORD_LOGIN", `Login failed with password for user "${identifier}". "${err}"`);				return cb({status: 'failure', message: err});			}			logger.success("USER_PASSWORD_LOGIN", `Login successful with password for user "${identifier}"`);			cb({ status: 'success', message: 'Login successful', user: {}, SID: sessionId });		});	},	/**	 * Registers a new user	 *	 * @param {Object} session - the session object automatically added by socket.io	 * @param {String} username - the username for the new user	 * @param {String} email - the email for the new user	 * @param {String} password - the plaintext password for the new user	 * @param {Object} recaptcha - the recaptcha data	 * @param {Function} cb - gets called with the result	 */	register: async function(session, username, email, password, recaptcha, cb) {		email = email.toLowerCase();		let verificationToken = await utils.generateRandomString(64);		async.waterfall([			// verify the request with google recaptcha			(next) => {				if (!db.passwordValid(password)) return next('Invalid password. Check if it meets all the requirements.');				return next();			},			(next) => {				request({					url: 'https://www.google.com/recaptcha/api/siteverify',					method: 'POST',					form: {						'secret': config.get("apis").recaptcha.secret,						'response': recaptcha					}				}, next);			},			// check if the response from Google recaptcha is successful			// if it is, we check if a user with the requested username already exists			(response, body, next) => {				let json = JSON.parse(body);				if (json.success !== true) return next('Response from recaptcha was not successful.');				db.models.user.findOne({ username: new RegExp(`^${username}$`, 'i') }, next);			},			// if the user already exists, respond with that			// otherwise check if a user with the requested email already exists			(user, next) => {				if (user) return next('A user with that username already exists.');				db.models.user.findOne({ 'email.address': email }, next);			},			// if the user already exists, respond with that			// otherwise, generate a salt to use with hashing the new users password			(user, next) => {				if (user) return next('A user with that email already exists.');				bcrypt.genSalt(10, next);			},			// hash the password			(salt, next) => {				bcrypt.hash(sha256(password), salt, next)			},			(hash, next) => {				utils.generateRandomString(12).then((_id) => {					next(null, hash, _id);				});			},			// save the new user to the database			(hash, _id, next) => {				db.models.user.create({					_id,					username,					email: {						address: email,						verificationToken					},					services: {						password: {							password: hash						}					}				}, next);			},			// respond with the new user			(newUser, next) => {				//TODO Send verification email				mail.schemas.verifyEmail(email, username, verificationToken, () => {					next();				});			}		], async (err) => {			if (err && err !== true) {				err = await utils.getError(err);				logger.error("USER_PASSWORD_REGISTER", `Register failed with password for user "${username}"."${err}"`);				cb({status: 'failure', message: err});			} else {				module.exports.login(session, email, password, (result) => {					let obj = {status: 'success', message: 'Successfully registered.'};					if (result.status === 'success') {						obj.SID = result.SID;					}					logger.success("USER_PASSWORD_REGISTER", `Register successful with password for user "${username}".`);					cb(obj);				});			}		});	},	/**	 * Logs out a user	 *	 * @param {Object} session - the session object automatically added by socket.io	 * @param {Function} cb - gets called with the result	 */	logout: (session, cb) => {		async.waterfall([			(next) => {				cache.hget('sessions', session.sessionId, next);			},			(session, next) => {				if (!session) return next('Session not found');				next(null, session);			},			(session, next) => {				cache.hdel('sessions', session.sessionId, next);			}		], async (err) => {			if (err && err !== true) {				err = await utils.getError(err);				logger.error("USER_LOGOUT", `Logout failed. "${err}" `);				cb({ status: 'failure', message: err });			} else {				logger.success("USER_LOGOUT", `Logout successful.`);				cb({ status: 'success', message: 'Successfully logged out.' });			}		});	},	/**	 * Removes all sessions for a user	 *	 * @param {Object} session - the session object automatically added by socket.io	 * @param {String} userId - the id of the user we are trying to delete the sessions of	 * @param {Function} cb - gets called with the result	 * @param {String} loggedInUser - the logged in userId automatically added by hooks	 */	removeSessions:  hooks.loginRequired((session, userId, cb, loggedInUser) => {		async.waterfall([			(next) => {				db.models.user.findOne({ _id: loggedInUser }, (err, user) => {					if (user.role !== 'admin' && loggedInUser !== userId) return next('Only admins and the owner of the account can remove their sessions.');					else return next();				});			},			(next) => {				cache.hgetall('sessions', next);			},			(sessions, next) => {				if (!sessions) return next('There are no sessions for this user to remove.');				else {					let keys = Object.keys(sessions);					next(null, keys, sessions);				}			},			(keys, sessions, next) => {				cache.pub('user.removeSessions', userId);				async.each(keys, (sessionId, callback) => {					let session = sessions[sessionId];					if (session.userId === userId) {						cache.hdel('sessions', sessionId, err => {							if (err) return callback(err);							else callback(null);						});					}				}, err => {					next(err);				});			}		], async err => {			if (err) {				err = await utils.getError(err);				logger.error("REMOVE_SESSIONS_FOR_USER", `Couldn't remove all sessions for user "${userId}". "${err}"`);				return cb({ status: 'failure', message: err });			} else {				logger.success("REMOVE_SESSIONS_FOR_USER", `Removed all sessions for user "${userId}".`);				return cb({ status: 'success', message: 'Successfully removed all sessions.' });			}		});	}),	/**	 * Gets user object from username (only a few properties)	 *	 * @param {Object} session - the session object automatically added by socket.io	 * @param {String} username - the username of the user we are trying to find	 * @param {Function} cb - gets called with the result	 */	findByUsername: (session, username, cb) => {		async.waterfall([			(next) => {				db.models.user.findOne({ username: new RegExp(`^${username}$`, 'i') }, next);			},			(account, next) => {				if (!account) return next('User not found.');				next(null, account);			}		], async (err, account) => {			if (err && err !== true) {				err = await utils.getError(err);				logger.error("FIND_BY_USERNAME", `User not found for username "${username}". "${err}"`);				cb({status: 'failure', message: err});			} else {				logger.success("FIND_BY_USERNAME", `User found for username "${username}".`);				return cb({					status: 'success',					data: {						_id: account._id,						username: account.username,						role: account.role,						email: account.email.address,						createdAt: account.createdAt,						statistics: account.statistics,						liked: account.liked,						disliked: account.disliked					}				});			}		});	},	/**	 * Gets a username from an userId	 *	 * @param {Object} session - the session object automatically added by socket.io	 * @param {String} userId - the userId of the person we are trying to get the username from	 * @param {Function} cb - gets called with the result	 */	getUsernameFromId: (session, userId, cb) => {		db.models.user.findById(userId).then(user => {			if (user) {				logger.success("GET_USERNAME_FROM_ID", `Found username for userId "${userId}".`);				return cb({					status: 'success',					data: user.username				});			} else {				logger.error("GET_USERNAME_FROM_ID", `Getting the username from userId "${userId}" failed. User not found.`);				cb({					status: 'failure',					message: "Couldn't find the user."				});			}					}).catch(async err => {			if (err && err !== true) {				err = await utils.getError(err);				logger.error("GET_USERNAME_FROM_ID", `Getting the username from userId "${userId}" failed. "${err}"`);				cb({ status: 'failure', message: err });			}		});	},	//TODO Fix security issues	/**	 * Gets user info from session	 *	 * @param {Object} session - the session object automatically added by socket.io	 * @param {Function} cb - gets called with the result	 */	findBySession: (session, cb) => {		async.waterfall([			(next) => {				cache.hget('sessions', session.sessionId, next);			},			(session, next) => {				if (!session) return next('Session not found.');				next(null, session);			},			(session, next) => {				db.models.user.findOne({ _id: session.userId }, next);			},			(user, next) => {				if (!user) return next('User not found.');				next(null, user);			}		], async (err, user) => {			if (err && err !== true) {				err = await utils.getError(err);				logger.error("FIND_BY_SESSION", `User not found. "${err}"`);				cb({status: 'failure', message: err});			} else {				let data = {					email: {						address: user.email.address					},					username: user.username				};				if (user.services.password && user.services.password.password) data.password = true;				if (user.services.github && user.services.github.id) data.github = true;				logger.success("FIND_BY_SESSION", `User found. "${user.username}".`);				return cb({					status: 'success',					data				});			}		});	},	/**	 * Updates a user's username	 *	 * @param {Object} session - the session object automatically added by socket.io	 * @param {String} updatingUserId - the updating user's id	 * @param {String} newUsername - the new username	 * @param {Function} cb - gets called with the result	 * @param {String} userId - the userId automatically added by hooks	 */	updateUsername: hooks.loginRequired((session, updatingUserId, newUsername, cb, userId) => {		async.waterfall([			(next) => {				if (updatingUserId === userId) return next(null, true);				db.models.user.findOne({_id: userId}, next);			},			(user, next) => {				if (user !== true && (!user || user.role !== 'admin')) return next('Invalid permissions.');				db.models.user.findOne({ _id: updatingUserId }, next);			},			(user, next) => {				if (!user) return next('User not found.');				if (user.username === newUsername) return next('New username can\'t be the same as the old username.');				next(null);			},			(next) => {				db.models.user.findOne({ username: new RegExp(`^${newUsername}$`, 'i') }, next);			},			(user, next) => {				if (!user) return next();				if (user._id === updatingUserId) return next();				next('That username is already in use.');			},			(next) => {				db.models.user.updateOne({ _id: updatingUserId }, {$set: {username: newUsername}}, {runValidators: true}, next);			}		], async (err) => {			if (err && err !== true) {				err = await utils.getError(err);				logger.error("UPDATE_USERNAME", `Couldn't update username for user "${updatingUserId}" to username "${newUsername}". "${err}"`);				cb({status: 'failure', message: err});			} else {				cache.pub('user.updateUsername', {					username: newUsername,					_id: updatingUserId				});				logger.success("UPDATE_USERNAME", `Updated username for user "${updatingUserId}" to username "${newUsername}".`);				cb({ status: 'success', message: 'Username updated successfully' });			}		});	}),	/**	 * Updates a user's email	 *	 * @param {Object} session - the session object automatically added by socket.io	 * @param {String} updatingUserId - the updating user's id	 * @param {String} newEmail - the new email	 * @param {Function} cb - gets called with the result	 * @param {String} userId - the userId automatically added by hooks	 */	updateEmail: hooks.loginRequired(async (session, updatingUserId, newEmail, cb, userId) => {		newEmail = newEmail.toLowerCase();		let verificationToken = await utils.generateRandomString(64);		async.waterfall([			(next) => {				if (updatingUserId === userId) return next(null, true);				db.models.user.findOne({_id: userId}, next);			},			(user, next) => {				if (user !== true && (!user || user.role !== 'admin')) return next('Invalid permissions.');				db.models.user.findOne({ _id: updatingUserId }, next);			},			(user, next) => {				if (!user) return next('User not found.');				if (user.email.address === newEmail) return next('New email can\'t be the same as your the old email.');				next();			},			(next) => {				db.models.user.findOne({"email.address": newEmail}, next);			},			(user, next) => {				if (!user) return next();				if (user._id === updatingUserId) return next();				next('That email is already in use.');			},			(next) => {				db.models.user.updateOne({_id: updatingUserId}, {$set: {"email.address": newEmail, "email.verified": false, "email.verificationToken": verificationToken}}, {runValidators: true}, next);			},			(res, next) => {				db.models.user.findOne({ _id: updatingUserId }, next);			},			(user, next) => {				mail.schemas.verifyEmail(newEmail, user.username, verificationToken, () => {					next();				});			}		], async (err) => {			if (err && err !== true) {				err = await utils.getError(err);				logger.error("UPDATE_EMAIL", `Couldn't update email for user "${updatingUserId}" to email "${newEmail}". '${err}'`);				cb({status: 'failure', message: err});			} else {				logger.success("UPDATE_EMAIL", `Updated email for user "${updatingUserId}" to email "${newEmail}".`);				cb({ status: 'success', message: 'Email updated successfully.' });			}		});	}),	/**	 * Updates a user's role	 *	 * @param {Object} session - the session object automatically added by socket.io	 * @param {String} updatingUserId - the updating user's id	 * @param {String} newRole - the new role	 * @param {Function} cb - gets called with the result	 * @param {String} userId - the userId automatically added by hooks	 */	updateRole: hooks.adminRequired((session, updatingUserId, newRole, cb, userId) => {		newRole = newRole.toLowerCase();		async.waterfall([			(next) => {				db.models.user.findOne({ _id: updatingUserId }, next);			},			(user, next) => {				if (!user) return next('User not found.');				else if (user.role === newRole) return next('New role can\'t be the same as the old role.');				else return next();			},			(next) => {				db.models.user.updateOne({_id: updatingUserId}, {$set: {role: newRole}}, {runValidators: true}, next);			}		], async (err) => {			if (err && err !== true) {				err = await utils.getError(err);				logger.error("UPDATE_ROLE", `User "${userId}" couldn't update role for user "${updatingUserId}" to role "${newRole}". "${err}"`);				cb({status: 'failure', message: err});			} else {				logger.success("UPDATE_ROLE", `User "${userId}" updated the role of user "${updatingUserId}" to role "${newRole}".`);				cb({					status: 'success',					message: 'Role successfully updated.'				});			}		});	}),	/**	 * Updates a user's password	 *	 * @param {Object} session - the session object automatically added by socket.io	 * @param {String} newPassword - the new password	 * @param {Function} cb - gets called with the result	 * @param {String} userId - the userId automatically added by hooks	 */	updatePassword: hooks.loginRequired((session, newPassword, cb, userId) => {		async.waterfall([			(next) => {				db.models.user.findOne({_id: userId}, next);			},			(user, next) => {				if (!user.services.password) return next('This account does not have a password set.');				next();			},			(next) => {				if (!db.passwordValid(newPassword)) return next('Invalid password. Check if it meets all the requirements.');				return next();			},			(next) => {				bcrypt.genSalt(10, next);			},			// hash the password			(salt, next) => {				bcrypt.hash(sha256(newPassword), salt, next);			},			(hashedPassword, next) => {				db.models.user.updateOne({_id: userId}, {$set: {"services.password.password": hashedPassword}}, next);			}		], async (err) => {			if (err) {				err = await utils.getError(err);				logger.error("UPDATE_PASSWORD", `Failed updating user password of user '${userId}'. '${err}'.`);				return cb({ status: 'failure', message: err });			}			logger.success("UPDATE_PASSWORD", `User '${userId}' updated their password.`);			cb({				status: 'success',				message: 'Password successfully updated.'			});		});	}),	/**	 * Requests a password for a session	 *	 * @param {Object} session - the session object automatically added by socket.io	 * @param {String} email - the email of the user that requests a password reset	 * @param {Function} cb - gets called with the result	 * @param {String} userId - the userId automatically added by hooks	 */	requestPassword: hooks.loginRequired(async (session, cb, userId) => {		let code = await utils.generateRandomString(8);		async.waterfall([			(next) => {				db.models.user.findOne({_id: userId}, next);			},			(user, next) => {				if (!user) return next('User not found.');				if (user.services.password && user.services.password.password) return next('You already have a password set.');				next(null, user);			},			(user, next) => {				let expires = new Date();				expires.setDate(expires.getDate() + 1);				db.models.user.findOneAndUpdate({"email.address": user.email.address}, {$set: {"services.password": {set: {code: code, expires}}}}, {runValidators: true}, next);			},			(user, next) => {				mail.schemas.passwordRequest(user.email.address, user.username, code, next);			}		], async (err) => {			if (err && err !== true) {				err = await utils.getError(err);				logger.error("REQUEST_PASSWORD", `UserId '${userId}' failed to request password. '${err}'`);				cb({status: 'failure', message: err});			} else {				logger.success("REQUEST_PASSWORD", `UserId '${userId}' successfully requested a password.`);				cb({					status: 'success',					message: 'Successfully requested password.'				});			}		});	}),	/**	 * Verifies a password code	 *	 * @param {Object} session - the session object automatically added by socket.io	 * @param {String} code - the password code	 * @param {Function} cb - gets called with the result	 * @param {String} userId - the userId automatically added by hooks	 */	verifyPasswordCode: hooks.loginRequired((session, code, cb, userId) => {		async.waterfall([			(next) => {				if (!code || typeof code !== 'string') return next('Invalid code1.');				db.models.user.findOne({"services.password.set.code": code, _id: userId}, next);			},			(user, next) => {				if (!user) return next('Invalid code2.');				if (user.services.password.set.expires < new Date()) return next('That code has expired.');				next(null);			}		], async(err) => {			if (err && err !== true) {				err = await utils.getError(err);				logger.error("VERIFY_PASSWORD_CODE", `Code '${code}' failed to verify. '${err}'`);				cb({status: 'failure', message: err});			} else {				logger.success("VERIFY_PASSWORD_CODE", `Code '${code}' successfully verified.`);				cb({					status: 'success',					message: 'Successfully verified password code.'				});			}		});	}),	/**	 * Adds a password to a user with a code	 *	 * @param {Object} session - the session object automatically added by socket.io	 * @param {String} code - the password code	 * @param {String} newPassword - the new password code	 * @param {Function} cb - gets called with the result	 * @param {String} userId - the userId automatically added by hooks	 */	changePasswordWithCode: hooks.loginRequired((session, code, newPassword, cb, userId) => {		async.waterfall([			(next) => {				if (!code || typeof code !== 'string') return next('Invalid code1.');				db.models.user.findOne({"services.password.set.code": code}, next);			},			(user, next) => {				if (!user) return next('Invalid code2.');				if (!user.services.password.set.expires > new Date()) return next('That code has expired.');				next();			},			(next) => {				if (!db.passwordValid(newPassword)) return next('Invalid password. Check if it meets all the requirements.');				return next();			},			(next) => {				bcrypt.genSalt(10, next);			},			// hash the password			(salt, next) => {				bcrypt.hash(sha256(newPassword), salt, next);			},			(hashedPassword, next) => {				db.models.user.updateOne({"services.password.set.code": code}, {$set: {"services.password.password": hashedPassword}, $unset: {"services.password.set": ''}}, {runValidators: true}, next);			}		], async (err) => {			if (err && err !== true) {				err = await utils.getError(err);				logger.error("ADD_PASSWORD_WITH_CODE", `Code '${code}' failed to add password. '${err}'`);				cb({status: 'failure', message: err});			} else {				logger.success("ADD_PASSWORD_WITH_CODE", `Code '${code}' successfully added password.`);				cache.pub('user.linkPassword', userId);				cb({					status: 'success',					message: 'Successfully added password.'				});			}		});	}),	/**	 * Unlinks password from user	 *	 * @param {Object} session - the session object automatically added by socket.io	 * @param {Function} cb - gets called with the result	 * @param {String} userId - the userId automatically added by hooks	 */	unlinkPassword: hooks.loginRequired((session, cb, userId) => {		async.waterfall([			(next) => {				db.models.user.findOne({_id: userId}, next);			},			(user, next) => {				if (!user) return next('Not logged in.');				if (!user.services.github || !user.services.github.id) return next('You can\'t remove password login without having GitHub login.');				db.models.user.updateOne({_id: userId}, {$unset: {"services.password": ''}}, next);			}		], async (err) => {			if (err && err !== true) {				err = await utils.getError(err);				logger.error("UNLINK_PASSWORD", `Unlinking password failed for userId '${userId}'. '${err}'`);				cb({status: 'failure', message: err});			} else {				logger.success("UNLINK_PASSWORD", `Unlinking password successful for userId '${userId}'.`);				cache.pub('user.unlinkPassword', userId);				cb({					status: 'success',					message: 'Successfully unlinked password.'				});			}		});	}),	/**	 * Unlinks GitHub from user	 *	 * @param {Object} session - the session object automatically added by socket.io	 * @param {Function} cb - gets called with the result	 * @param {String} userId - the userId automatically added by hooks	 */	unlinkGitHub: hooks.loginRequired((session, cb, userId) => {		async.waterfall([			(next) => {				db.models.user.findOne({_id: userId}, next);			},			(user, next) => {				if (!user) return next('Not logged in.');				if (!user.services.password || !user.services.password.password) return next('You can\'t remove GitHub login without having password login.');				db.models.user.updateOne({_id: userId}, {$unset: {"services.github": ''}}, next);			}		], async (err) => {			if (err && err !== true) {				err = await utils.getError(err);				logger.error("UNLINK_GITHUB", `Unlinking GitHub failed for userId '${userId}'. '${err}'`);				cb({status: 'failure', message: err});			} else {				logger.success("UNLINK_GITHUB", `Unlinking GitHub successful for userId '${userId}'.`);				cache.pub('user.unlinkGitHub', userId);				cb({					status: 'success',					message: 'Successfully unlinked GitHub.'				});			}		});	}),	/**	 * Requests a password reset for an email	 *	 * @param {Object} session - the session object automatically added by socket.io	 * @param {String} email - the email of the user that requests a password reset	 * @param {Function} cb - gets called with the result	 */	requestPasswordReset: async (session, email, cb) => {		let code = await utils.generateRandomString(8);		async.waterfall([			(next) => {				if (!email || typeof email !== 'string') return next('Invalid email.');				email = email.toLowerCase();				db.models.user.findOne({"email.address": email}, next);			},			(user, next) => {				if (!user) return next('User not found.');				if (!user.services.password || !user.services.password.password) return next('User does not have a password set, and probably uses GitHub to log in.');				next(null, user);			},			(user, next) => {				let expires = new Date();				expires.setDate(expires.getDate() + 1);				db.models.user.findOneAndUpdate({"email.address": email}, {$set: {"services.password.reset": {code: code, expires}}}, {runValidators: true}, next);			},			(user, next) => {				mail.schemas.resetPasswordRequest(user.email.address, user.username, code, next);			}		], async (err) => {			if (err && err !== true) {				err = await utils.getError(err);				logger.error("REQUEST_PASSWORD_RESET", `Email '${email}' failed to request password reset. '${err}'`);				cb({status: 'failure', message: err});			} else {				logger.success("REQUEST_PASSWORD_RESET", `Email '${email}' successfully requested a password reset.`);				cb({					status: 'success',					message: 'Successfully requested password reset.'				});			}		});	},	/**	 * Verifies a reset code	 *	 * @param {Object} session - the session object automatically added by socket.io	 * @param {String} code - the password reset code	 * @param {Function} cb - gets called with the result	 */	verifyPasswordResetCode: (session, code, cb) => {		async.waterfall([			(next) => {				if (!code || typeof code !== 'string') return next('Invalid code.');				db.models.user.findOne({"services.password.reset.code": code}, next);			},			(user, next) => {				if (!user) return next('Invalid code.');				if (!user.services.password.reset.expires > new Date()) return next('That code has expired.');				next(null);			}		], async (err) => {			if (err && err !== true) {				err = await utils.getError(err);				logger.error("VERIFY_PASSWORD_RESET_CODE", `Code '${code}' failed to verify. '${err}'`);				cb({status: 'failure', message: err});			} else {				logger.success("VERIFY_PASSWORD_RESET_CODE", `Code '${code}' successfully verified.`);				cb({					status: 'success',					message: 'Successfully verified password reset code.'				});			}		});	},	/**	 * Changes a user's password with a reset code	 *	 * @param {Object} session - the session object automatically added by socket.io	 * @param {String} code - the password reset code	 * @param {String} newPassword - the new password reset code	 * @param {Function} cb - gets called with the result	 */	changePasswordWithResetCode: (session, code, newPassword, cb) => {		async.waterfall([			(next) => {				if (!code || typeof code !== 'string') return next('Invalid code.');				db.models.user.findOne({"services.password.reset.code": code}, next);			},			(user, next) => {				if (!user) return next('Invalid code.');				if (!user.services.password.reset.expires > new Date()) return next('That code has expired.');				next();			},			(next) => {				if (!db.passwordValid(newPassword)) return next('Invalid password. Check if it meets all the requirements.');				return next();			},			(next) => {				bcrypt.genSalt(10, next);			},			// hash the password			(salt, next) => {				bcrypt.hash(sha256(newPassword), salt, next);			},			(hashedPassword, next) => {				db.models.user.updateOne({"services.password.reset.code": code}, {$set: {"services.password.password": hashedPassword}, $unset: {"services.password.reset": ''}}, {runValidators: true}, next);			}		], async (err) => {			if (err && err !== true) {				err = await utils.getError(err);				logger.error("CHANGE_PASSWORD_WITH_RESET_CODE", `Code '${code}' failed to change password. '${err}'`);				cb({status: 'failure', message: err});			} else {				logger.success("CHANGE_PASSWORD_WITH_RESET_CODE", `Code '${code}' successfully changed password.`);				cb({					status: 'success',					message: 'Successfully changed password.'				});			}		});	},	/**	 * Bans a user by userId	 *	 * @param {Object} session - the session object automatically added by socket.io	 * @param {String} value - the user id that is going to be banned	 * @param {String} reason - the reason for the ban	 * @param {String} expiresAt - the time the ban expires	 * @param {Function} cb - gets called with the result	 * @param {String} userId - the userId automatically added by hooks	 */	banUserById: hooks.adminRequired((session, value, reason, expiresAt, cb, userId) => {		async.waterfall([			(next) => {				if (value === '') return next('You must provide an IP address to ban.');				else if (reason === '') return next('You must provide a reason for the ban.');				else return next();			},			(next) => {				if (!expiresAt || typeof expiresAt !== 'string') return next('Invalid expire date.');				let date = new Date();				switch(expiresAt) {					case '1h':						expiresAt = date.setHours(date.getHours() + 1);						break;					case '12h':						expiresAt = date.setHours(date.getHours() + 12);						break;					case '1d':						expiresAt = date.setDate(date.getDate() + 1);						break;					case '1w':						expiresAt = date.setDate(date.getDate() + 7);						break;					case '1m':						expiresAt = date.setMonth(date.getMonth() + 1);						break;					case '3m':						expiresAt = date.setMonth(date.getMonth() + 3);						break;					case '6m':						expiresAt = date.setMonth(date.getMonth() + 6);						break;					case '1y':						expiresAt = date.setFullYear(date.getFullYear() + 1);						break;					case 'never':						expiresAt = new Date(3093527980800000);						break;					default:						return next('Invalid expire date.');				}				next();			},			(next) => {				punishments.addPunishment('banUserId', value, reason, expiresAt, userId, next)			},			(punishment, next) => {				cache.pub('user.ban', {userId: value, punishment});				next();			},		], async (err) => {			if (err && err !== true) {				err = await utils.getError(err);				logger.error("BAN_USER_BY_ID", `User ${userId} failed to ban user ${value} with the reason ${reason}. '${err}'`);				cb({status: 'failure', message: err});			} else {				logger.success("BAN_USER_BY_ID", `User ${userId} has successfully banned user ${value} with the reason ${reason}.`);				cb({					status: 'success',					message: 'Successfully banned user.'				});			}		});	}),	getFavoriteStations: hooks.loginRequired((session, cb, userId) => {		async.waterfall([			(next) => {				db.models.user.findOne({ _id: userId }, next);			},			(user, next) => {				if (!user) return next("User not found.");				next(null, user);			}		], async (err, user) => {			if (err && err !== true) {				err = await utils.getError(err);				logger.error("GET_FAVORITE_STATIONS", `User ${userId} failed to get favorite stations. '${err}'`);				cb({status: 'failure', message: err});			} else {				logger.success("GET_FAVORITE_STATIONS", `User ${userId} got favorite stations.`);				cb({					status: 'success',					favoriteStations: user.favoriteStations				});			}		});	})};
 |