| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112 | 'use strict';const async   = require('async'),	  request = require('request'),	  config  = require('config'),	  _		  =  require('underscore')._;const io = require('../io');const db = require('../db');const cache = require('../cache');const notifications = require('../notifications');const utils = require('../utils');const logger = require('../logger');const stations = require('../stations');const songs = require('../songs');const hooks = require('./hooks');let userList = {};let usersPerStation = {};let usersPerStationCount = {};setInterval(() => {	let stationsCountUpdated = [];	let stationsUpdated = [];	let oldUsersPerStation = usersPerStation;	usersPerStation = {};	let oldUsersPerStationCount = usersPerStationCount;	usersPerStationCount = {};	async.each(Object.keys(userList), function(socketId, next) {		let socket = utils.socketFromSession(socketId);		let stationId = userList[socketId];		if (!socket || Object.keys(socket.rooms).indexOf(`station.${stationId}`) === -1) {			if (stationsCountUpdated.indexOf(stationId) === -1) stationsCountUpdated.push(stationId);			if (stationsUpdated.indexOf(stationId) === -1) stationsUpdated.push(stationId);			delete userList[socketId];			return next();		}		if (!usersPerStationCount[stationId]) usersPerStationCount[stationId] = 0;		usersPerStationCount[stationId]++;		if (!usersPerStation[stationId]) usersPerStation[stationId] = [];		async.waterfall([			(next) => {				if (!socket.session || !socket.session.sessionId) return next('No session found.');				cache.hget('sessions', socket.session.sessionId, next);			},			(session, next) => {				if (!session) return next('Session not found.');				db.models.user.findOne({_id: session.userId}, next);			},			(user, next) => {				if (!user) return next('User not found.');				if (usersPerStation[stationId].indexOf(user.username) !== -1) return next('User already in the list.');				next(null, user.username);			}		], (err, username) => {			if (!err) {				usersPerStation[stationId].push(username);			}			next();		});		//TODO Code to show users	}, (err) => {		for (let stationId in usersPerStationCount) {			if (oldUsersPerStationCount[stationId] !== usersPerStationCount[stationId]) {				if (stationsCountUpdated.indexOf(stationId) === -1) stationsCountUpdated.push(stationId);			}		}		for (let stationId in usersPerStation) {			if (_.difference(usersPerStation[stationId], oldUsersPerStation[stationId]).length > 0 || _.difference(oldUsersPerStation[stationId], usersPerStation[stationId]).length > 0) {				if (stationsUpdated.indexOf(stationId) === -1) stationsUpdated.push(stationId);			}		}		stationsCountUpdated.forEach((stationId) => {			//logger.info("UPDATE_STATION_USER_COUNT", `Updating user count of ${stationId}.`);			cache.pub('station.updateUserCount', stationId);		});		stationsUpdated.forEach((stationId) => {			//logger.info("UPDATE_STATION_USER_LIST", `Updating user list of ${stationId}.`);			cache.pub('station.updateUsers', stationId);		});		//console.log("Userlist", usersPerStation);	});}, 3000);cache.sub('station.updateUsers', stationId => {	let list = usersPerStation[stationId] || [];	utils.emitToRoom(`station.${stationId}`, "event:users.updated", list);});cache.sub('station.updateUserCount', stationId => {	let count = usersPerStationCount[stationId] || 0;	utils.emitToRoom(`station.${stationId}`, "event:userCount.updated", count);	stations.getStation(stationId, (err, station) => {		if (station.privacy === 'public') utils.emitToRoom('home', "event:userCount.updated", stationId, count);		else {			let sockets = utils.getRoomSockets('home');			for (let socketId in sockets) {				let socket = sockets[socketId];				let session = sockets[socketId].session;				if (session.sessionId) {					cache.hget('sessions', session.sessionId, (err, session) => {						if (!err && session) {							db.models.user.findOne({_id: session.userId}, (err, user) => {								if (user.role === 'admin') socket.emit("event:userCount.updated", stationId, count);								else if (station.type === "community" && station.owner === session.userId) socket.emit("event:userCount.updated", stationId, count);							});						}					});				}			}		}	})});cache.sub('station.updatePartyMode', data => {	utils.emitToRoom(`station.${data.stationId}`, "event:partyMode.updated", data.partyMode);});cache.sub('privatePlaylist.selected', data => {	utils.emitToRoom(`station.${data.stationId}`, "event:privatePlaylist.selected", data.playlistId);});cache.sub('station.pause', stationId => {	utils.emitToRoom(`station.${stationId}`, "event:stations.pause");});cache.sub('station.resume', stationId => {	stations.getStation(stationId, (err, station) => {		utils.emitToRoom(`station.${stationId}`, "event:stations.resume", { timePaused: station.timePaused });	});});cache.sub('station.queueUpdate', stationId => {	stations.getStation(stationId, (err, station) => {		if (!err) utils.emitToRoom(`station.${stationId}`, "event:queue.update", station.queue);	});});cache.sub('station.voteSkipSong', stationId => {	utils.emitToRoom(`station.${stationId}`, "event:song.voteSkipSong");});cache.sub('station.remove', stationId => {	utils.emitToRoom(`station.${stationId}`, 'event:stations.remove');	utils.emitToRoom('admin.stations', 'event:admin.station.removed', stationId);});cache.sub('station.create', stationId => {	stations.initializeStation(stationId, (err, station) => {		station.userCount = usersPerStationCount[stationId] || 0;		if (err) console.error(err);		utils.emitToRoom('admin.stations', 'event:admin.station.added', station);		// TODO If community, check if on whitelist		if (station.privacy === 'public') utils.emitToRoom('home', "event:stations.created", station);		else {			let sockets = utils.getRoomSockets('home');			for (let socketId in sockets) {				let socket = sockets[socketId];				let session = sockets[socketId].session;				if (session.sessionId) {					cache.hget('sessions', session.sessionId, (err, session) => {						if (!err && session) {							db.models.user.findOne({_id: session.userId}, (err, user) => {								if (user.role === 'admin') socket.emit("event:stations.created", station);								else if (station.type === "community" && station.owner === session.userId) socket.emit("event:stations.created", station);							});						}					});				}			}		}	});});module.exports = {	/**	 * Get a list of all the stations	 *	 * @param session	 * @param cb	 * @return {{ status: String, stations: Array }}	 */	index: (session, cb) => {		async.waterfall([			(next) => {				cache.hgetall('stations', next);			},			(stations, next) => {				let resultStations = [];				for (let id in stations) {					resultStations.push(stations[id]);				}				next(null, stations);			},			(stations, next) => {				let resultStations = [];				async.each(stations, (station, next) => {					async.waterfall([						(next) => {							if (station.privacy === 'public') return next(true);							if (!session.sessionId) return next(`Insufficient permissions.`);							cache.hget('sessions', session.sessionId, next);						},						(session, next) => {							if (!session) return next(`Insufficient permissions.`);							db.models.user.findOne({_id: session.userId}, next);						},						(user, next) => {							if (!user) return next(`Insufficient permissions.`);							if (user.role === 'admin') return next(true);							if (station.type === 'official') return next(`Insufficient permissions.`);							if (station.owner === session.userId) return next(true);							next(`Insufficient permissions.`);						}					], (err) => {						station.userCount = usersPerStationCount[station._id] || 0;						if (err === true) resultStations.push(station);						next();					});				}, () => {					next(null, resultStations);				});			}		], (err, stations) => {			if (err) {				err = utils.getError(err);				logger.error("STATIONS_INDEX", `Indexing stations failed. "${err}"`);				return cb({'status': 'failure', 'message': err});			}			logger.success("STATIONS_INDEX", `Indexing stations successful.`, false);			return cb({'status': 'success', 'stations': stations});		});	},	/**	 * Finds a station by name	 *	 * @param session	 * @param stationName - the station name	 * @param cb	 */	findByName: (session, stationName, cb) => {		async.waterfall([			(next) => {				stations.getStationByName(stationName, next);			},			(station, next) => {				if (!station) return next('Station not found.');				next(null, station);			}		], (err, station) => {			if (err) {				err = utils.getError(err);				logger.error("STATIONS_FIND_BY_NAME", `Finding station "${stationName}" failed. "${err}"`);				return cb({'status': 'failure', 'message': err});			}			logger.success("STATIONS_FIND_BY_NAME", `Found station "${stationName}" successfully.`, false);			cb({status: 'success', data: station});		});	},	/**	 * Gets the official playlist for a station	 *	 * @param session	 * @param stationId - the station id	 * @param cb	 */	getPlaylist: (session, stationId, cb) => {		async.waterfall([			(next) => {				stations.getStation(stationId, next);			},			(station, next) => {				if (!station) return next('Station not found.');				else if (station.type !== 'official') return next('This is not an official station.');				else next();			},			(next) => {				cache.hget('officialPlaylists', stationId, next);			},			(playlist, next) => {				if (!playlist) return next('Playlist not found.');				next(null, playlist);			}		], (err, playlist) => {			if (err) {				err = utils.getError(err);				logger.error("STATIONS_GET_PLAYLIST", `Getting playlist for station "${stationId}" failed. "${err}"`);				return cb({ status: 'failure', message: err });			} else {				logger.success("STATIONS_GET_PLAYLIST", `Got playlist for station "${stationId}" successfully.`, false);				cb({ status: 'success', data: playlist.songs });			}		});	},	/**	 * Joins the station by its name	 *	 * @param session	 * @param stationName - the station name	 * @param cb	 * @return {{ status: String, userCount: Integer }}	 */	join: (session, stationName, cb) => {		async.waterfall([			(next) => {				stations.getStationByName(stationName, next);			},			(station, next) => {				if (!station) return next('Station not found.');				async.waterfall([					(next) => {						if (station.privacy !== 'private') return next(true);						if (!session.userId) return next('An error occurred while joining the station.');						next();					},					(next) => {						db.models.user.findOne({_id: session.userId}, next);					},					(user, next) => {						if (!user) return next('An error occurred while joining the station.');						if (user.role === 'admin') return next(true);						if (station.type === 'official') return next('An error occurred while joining the station.');						if (station.owner === session.userId) return next(true);						next('An error occurred while joining the station.');					}				], (err) => {					if (err === true) return next(null, station);					next(utils.getError(err));				});			},			(station, next) => {				utils.socketJoinRoom(session.socketId, `station.${station._id}`);				let data = {					_id: station._id,					type: station.type,					currentSong: station.currentSong,					startedAt: station.startedAt,					paused: station.paused,					timePaused: station.timePaused,					description: station.description,					displayName: station.displayName,					privacy: station.privacy,					locked: station.locked,					partyMode: station.partyMode,					owner: station.owner,					privatePlaylist: station.privatePlaylist				};				userList[session.socketId] = station._id;				next(null, data);			},			(data, next) => {				data.userCount = usersPerStationCount[data._id] || 0;				data.users = usersPerStation[data._id] || [];				if (!data.currentSong || !data.currentSong.title) return next(null, data);				utils.socketJoinSongRoom(session.socketId, `song.${data.currentSong.songId}`);				data.currentSong.skipVotes = data.currentSong.skipVotes.length;				songs.getSongFromId(data.currentSong.songId, (err, song) => {					if (!err && song) {						data.currentSong.likes = song.likes;						data.currentSong.dislikes = song.dislikes;					} else {						data.currentSong.likes = -1;						data.currentSong.dislikes = -1;					}					next(null, data);				});			}		], (err, data) => {			if (err) {				err = utils.getError(err);				logger.error("STATIONS_JOIN", `Joining station "${stationName}" failed. "${err}"`);				return cb({'status': 'failure', 'message': err});			}			logger.success("STATIONS_JOIN", `Joined station "${data._id}" successfully.`);			cb({status: 'success', data});		});	},	/**	 * Toggles if a station is locked	 *	 * @param session	 * @param stationId - the station id	 * @param locked - the old locked status	 * @param cb	 */	toggleLock: hooks.adminRequired((session, stationId, oldLocked, cb) => {		async.waterfall([			(next) => {				db.models.station.update({ _id: stationId }, { $set: { locked: !oldLocked } }, next);			},			(res, next) => {				stations.updateStation(stationId, next);			}		], (err, station) => {			if (err) {				err = utils.getError(err);				logger.error("STATIONS_UPDATE_LOCKED_STATUS", `Updating station "${stationId}" locked status to "${!oldLocked}" failed. "${err}"`);				return cb({ status: 'failure', message: err });			} else {				logger.success("STATIONS_UPDATE_LOCKED_STATUS", `Updated station "${stationId}" locked status to "${!oldLocked}" successfully.`);				return cb({ status: 'success', data: !oldLocked });			}		});	}),	/**	 * Votes to skip a station	 *	 * @param session	 * @param stationId - the station id	 * @param cb	 * @param userId	 */	voteSkip: hooks.loginRequired((session, stationId, cb, userId) => {		async.waterfall([			(next) => {				stations.getStation(stationId, next);			},			(station, next) => {				if (!station) return next('Station not found.');				utils.canUserBeInStation(station, userId, (canBe) => {					if (canBe) return next(null, station);					return next('Insufficient permissions.');				});			},			(station, next) => {				if (!station.currentSong) return next('There is currently no song to skip.');				if (station.currentSong.skipVotes.indexOf(userId) !== -1) return next('You have already voted to skip this song.');				next(null, station);			},			(station, next) => {				db.models.station.update({_id: stationId}, {$push: {"currentSong.skipVotes": userId}}, next)			},			(res, next) => {				stations.updateStation(stationId, next);			},			(station, next) => {				if (!station) return next('Station not found.');				next(null, station);			}		], (err, station) => {			if (err) {				err = utils.getError(err);				logger.error("STATIONS_VOTE_SKIP", `Vote skipping station "${stationId}" failed. "${err}"`);				return cb({'status': 'failure', 'message': err});			}			logger.success("STATIONS_VOTE_SKIP", `Vote skipping "${stationId}" successful.`);			cache.pub('station.voteSkipSong', stationId);			if (station.currentSong && station.currentSong.skipVotes.length >= 3) stations.skipStation(stationId)();			cb({ status: 'success', message: 'Successfully voted to skip the song.' });		});	}),	/**	 * Force skips a station	 *	 * @param session	 * @param stationId - the station id	 * @param cb	 */	forceSkip: hooks.ownerRequired((session, stationId, cb) => {		async.waterfall([			(next) => {				stations.getStation(stationId, next);			},			(station, next) => {				if (!station) return next('Station not found.');				next();			}		], (err) => {			if (err) {				err = utils.getError(err);				logger.error("STATIONS_FORCE_SKIP", `Force skipping station "${stationId}" failed. "${err}"`);				return cb({'status': 'failure', 'message': err});			}			notifications.unschedule(`stations.nextSong?id=${stationId}`);			stations.skipStation(stationId)();			logger.success("STATIONS_FORCE_SKIP", `Force skipped station "${stationId}" successfully.`);			return cb({'status': 'success', 'message': 'Successfully skipped station.'});		});	}),	/**	 * Leaves the user's current station	 *	 * @param session	 * @param stationId	 * @param cb	 * @return {{ status: String, userCount: Integer }}	 */	leave: (session, stationId, cb) => {		async.waterfall([			(next) => {				stations.getStation(stationId, next);			},			(station, next) => {				if (!station) return next('Station not found.');				next();			}		], (err, userCount) => {			if (err) {				err = utils.getError(err);				logger.error("STATIONS_LEAVE", `Leaving station "${stationId}" failed. "${err}"`);				return cb({'status': 'failure', 'message': err});			}			logger.success("STATIONS_LEAVE", `Left station "${stationId}" successfully.`);			utils.socketLeaveRooms(session);			delete userList[session.socketId];			return cb({'status': 'success', 'message': 'Successfully left station.', userCount});		});	},	/**	 * Updates a station's name	 *	 * @param session	 * @param stationId - the station id	 * @param newName - the new station name	 * @param cb	 */	updateName: hooks.ownerRequired((session, stationId, newName, cb) => {		async.waterfall([			(next) => {				db.models.station.update({_id: stationId}, {$set: {name: newName}}, {runValidators: true}, next);			},			(res, next) => {				stations.updateStation(stationId, next);			}		], (err) => {			if (err) {				err = utils.getError(err);				logger.error("STATIONS_UPDATE_DISPLAY_NAME", `Updating station "${stationId}" displayName to "${newName}" failed. "${err}"`);				return cb({'status': 'failure', 'message': err});			}			logger.success("STATIONS_UPDATE_DISPLAY_NAME", `Updated station "${stationId}" displayName to "${newName}" successfully.`);			return cb({'status': 'success', 'message': 'Successfully updated the name.'});		});	}),	/**	 * Updates a station's display name	 *	 * @param session	 * @param stationId - the station id	 * @param newDisplayName - the new station display name	 * @param cb	 */	updateDisplayName: hooks.ownerRequired((session, stationId, newDisplayName, cb) => {		async.waterfall([			(next) => {				db.models.station.update({_id: stationId}, {$set: {displayName: newDisplayName}}, {runValidators: true}, next);			},			(res, next) => {				stations.updateStation(stationId, next);			}		], (err) => {			if (err) {				err = utils.getError(err);				logger.error("STATIONS_UPDATE_DISPLAY_NAME", `Updating station "${stationId}" displayName to "${newDisplayName}" failed. "${err}"`);				return cb({'status': 'failure', 'message': err});			}			logger.success("STATIONS_UPDATE_DISPLAY_NAME", `Updated station "${stationId}" displayName to "${newDisplayName}" successfully.`);			return cb({'status': 'success', 'message': 'Successfully updated the display name.'});		});	}),	/**	 * Updates a station's description	 *	 * @param session	 * @param stationId - the station id	 * @param newDescription - the new station description	 * @param cb	 */	updateDescription: hooks.ownerRequired((session, stationId, newDescription, cb) => {		async.waterfall([			(next) => {				db.models.station.update({_id: stationId}, {$set: {description: newDescription}}, {runValidators: true}, next);			},			(res, next) => {				stations.updateStation(stationId, next);			}		], (err) => {			if (err) {				err = utils.getError(err);				logger.error("STATIONS_UPDATE_DESCRIPTION", `Updating station "${stationId}" description to "${newDescription}" failed. "${err}"`);				return cb({'status': 'failure', 'message': err});			}			logger.success("STATIONS_UPDATE_DESCRIPTION", `Updated station "${stationId}" description to "${newDescription}" successfully.`);			return cb({'status': 'success', 'message': 'Successfully updated the description.'});		});	}),	/**	 * Updates a station's privacy	 *	 * @param session	 * @param stationId - the station id	 * @param newPrivacy - the new station privacy	 * @param cb	 */	updatePrivacy: hooks.ownerRequired((session, stationId, newPrivacy, cb) => {		async.waterfall([			(next) => {				db.models.station.update({_id: stationId}, {$set: {privacy: newPrivacy}}, {runValidators: true}, next);			},			(res, next) => {				stations.updateStation(stationId, next);			}		], (err) => {			if (err) {				err = utils.getError(err);				logger.error("STATIONS_UPDATE_PRIVACY", `Updating station "${stationId}" privacy to "${newPrivacy}" failed. "${err}"`);				return cb({'status': 'failure', 'message': err});			}			logger.success("STATIONS_UPDATE_PRIVACY", `Updated station "${stationId}" privacy to "${newPrivacy}" successfully.`);			return cb({'status': 'success', 'message': 'Successfully updated the privacy.'});		});	}),	/**	 * Updates a station's party mode	 *	 * @param session	 * @param stationId - the station id	 * @param newPartyMode - the new station party mode	 * @param cb	 */	updatePartyMode: hooks.ownerRequired((session, stationId, newPartyMode, cb) => {		async.waterfall([			(next) => {				stations.getStation(stationId, next);			},			(station, next) => {				if (!station) return next('Station not found.');				if (station.partyMode === newPartyMode) return next('The party mode was already ' + ((newPartyMode) ? 'enabled.' : 'disabled.'));				db.models.station.update({_id: stationId}, {$set: {partyMode: newPartyMode}}, {runValidators: true}, next);			},			(res, next) => {				stations.updateStation(stationId, next);			}		], (err) => {			if (err) {				err = utils.getError(err);				logger.error("STATIONS_UPDATE_PARTY_MODE", `Updating station "${stationId}" party mode to "${newPartyMode}" failed. "${err}"`);				return cb({'status': 'failure', 'message': err});			}			logger.success("STATIONS_UPDATE_PARTY_MODE", `Updated station "${stationId}" party mode to "${newPartyMode}" successfully.`);			cache.pub('station.updatePartyMode', {stationId: stationId, partyMode: newPartyMode});			stations.skipStation(stationId)();			return cb({'status': 'success', 'message': 'Successfully updated the party mode.'});		});	}),	/**	 * Pauses a station	 *	 * @param session	 * @param stationId - the station id	 * @param cb	 */	pause: hooks.ownerRequired((session, stationId, cb) => {		async.waterfall([			(next) => {				stations.getStation(stationId, next);			},			(station, next) => {				if (!station) return next('Station not found.');				if (station.paused) return next('That station was already paused.');				db.models.station.update({_id: stationId}, {$set: {paused: true, pausedAt: Date.now()}}, next);			},			(res, next) => {				stations.updateStation(stationId, next);			}		], (err) => {			if (err) {				err = utils.getError(err);				logger.error("STATIONS_PAUSE", `Pausing station "${stationId}" failed. "${err}"`);				return cb({'status': 'failure', 'message': err});			}			logger.success("STATIONS_PAUSE", `Paused station "${stationId}" successfully.`);			cache.pub('station.pause', stationId);			notifications.unschedule(`stations.nextSong?id=${stationId}`);			return cb({'status': 'success', 'message': 'Successfully paused.'});		});	}),	/**	 * Resumes a station	 *	 * @param session	 * @param stationId - the station id	 * @param cb	 */	resume: hooks.ownerRequired((session, stationId, cb) => {		async.waterfall([			(next) => {				stations.getStation(stationId, next);			},			(station, next) => {				if (!station) return next('Station not found.');				if (!station.paused) return next('That station is not paused.');				station.timePaused += (Date.now() - station.pausedAt);				db.models.station.update({_id: stationId}, {$set: {paused: false}, $inc: {timePaused: Date.now() - station.pausedAt}}, next);			},			(res, next) => {				stations.updateStation(stationId, next);			}		], (err) => {			if (err) {				err = utils.getError(err);				logger.error("STATIONS_RESUME", `Resuming station "${stationId}" failed. "${err}"`);				return cb({'status': 'failure', 'message': err});			}			logger.success("STATIONS_RESUME", `Resuming station "${stationId}" successfully.`);			cache.pub('station.resume', stationId);			return cb({'status': 'success', 'message': 'Successfully resumed.'});		});	}),	/**	 * Removes a station	 *	 * @param session	 * @param stationId - the station id	 * @param cb	 */	remove: hooks.ownerRequired((session, stationId, cb) => {		async.waterfall([			(next) => {				db.models.station.remove({ _id: stationId }, err => next(err));			},			(next) => {				cache.hdel('stations', stationId, err => next(err));			}		], (err) => {			if (err) {				err = utils.getError(err);				logger.error("STATIONS_REMOVE", `Removing station "${stationId}" failed. "${err}"`);				return cb({ 'status': 'failure', 'message': err });			}			logger.success("STATIONS_REMOVE", `Removing station "${stationId}" successfully.`);			cache.pub('station.remove', stationId);			return cb({ 'status': 'success', 'message': 'Successfully removed.' });		});	}),	/**	 * Create a station	 *	 * @param session	 * @param data - the station data	 * @param cb	 * @param userId	 */	create: hooks.loginRequired((session, data, cb, userId) => {		data.name = data.name.toLowerCase();		let blacklist = ["country", "edm", "musare", "hip-hop", "rap", "top-hits", "todays-hits", "old-school", "christmas", "about", "support", "staff", "help", "news", "terms", "privacy", "profile", "c", "community", "tos", "login", "register", "p", "official", "o", "trap", "faq", "team", "donate", "buy", "shop", "forums", "explore", "settings", "admin", "auth", "reset_password"];		async.waterfall([			(next) => {				if (!data) return next('Invalid data.');				next();			},			(next) => {				db.models.station.findOne({ $or: [{name: data.name}, {displayName: new RegExp(`^${data.displayName}$`, 'i')}] }, next);			},			(station, next) => {				if (station) return next('A station with that name or display name already exists.');				const { name, displayName, description, genres, playlist, type, blacklistedGenres } = data;				if (type === 'official') {					db.models.user.findOne({_id: userId}, (err, user) => {						if (err) return next(err);						if (!user) return next('User not found.');						if (user.role !== 'admin') return next('Admin required.');						db.models.station.create({							name,							displayName,							description,							type,							privacy: 'private',							playlist,							genres,							blacklistedGenres,							currentSong: stations.defaultSong						}, next);					});				} else if (type === 'community') {					if (blacklist.indexOf(name) !== -1) return next('That name is blacklisted. Please use a different name.');					db.models.station.create({						name,						displayName,						description,						type,						privacy: 'private',						owner: userId,						queue: [],						currentSong: null					}, next);				}			}		], (err, station) => {			if (err) {				err = utils.getError(err);				logger.error("STATIONS_CREATE", `Creating station failed. "${err}"`);				return cb({'status': 'failure', 'message': err});			}			logger.success("STATIONS_CREATE", `Created station "${station._id}" successfully.`);			cache.pub('station.create', station._id);			return cb({'status': 'success', 'message': 'Successfully created station.'});		});	}),	/**	 * Adds song to station queue	 *	 * @param session	 * @param stationId - the station id	 * @param songId - the song id	 * @param cb	 * @param userId	 */	addToQueue: hooks.loginRequired((session, stationId, songId, cb, userId) => {		async.waterfall([			(next) => {				stations.getStation(stationId, next);			},			(station, next) => {				if (!station) return next('Station not found.');				if (station.locked) {					db.models.user.findOne({ _id: userId }, (err, user) => {						if (user.role !== 'admin' || station.owner !== userId) return next('Only owners and admins can add songs to a locked queue.');						else return next(null, station);					});				} else {					return next(null, station);				}			},			(station, next) => {				if (station.type !== 'community') return next('That station is not a community station.');				utils.canUserBeInStation(station, userId, (canBe) => {					if (canBe) return next(null, station);					return next('Insufficient permissions.');				});			},			(station, next) => {				if (station.currentSong && station.currentSong.songId === songId) return next('That song is currently playing.');				async.each(station.queue, (queueSong, next) => {					if (queueSong.songId === songId) return next('That song is already in the queue.');					next();				}, (err) => {					next(err, station);				});			},			(station, next) => {				songs.getSong(songId, (err, song) => {					if (!err && song) return next(null, song, station);					utils.getSongFromYouTube(songId, (song) => {						song.artists = [];						song.skipDuration = 0;						song.likes = -1;						song.dislikes = -1;						song.thumbnail = "empty";						song.explicit = false;						next(null, song, station);					});				});			},			(song, station, next) => {				let queue = station.queue;				song.requestedBy = userId;				queue.push(song);				let totalDuration = 0;				queue.forEach((song) => {					totalDuration += song.duration;				});				if (totalDuration >= 3600 * 3) return next('The max length of the queue is 3 hours.');				next(null, song, station);			},			(song, station, next) => {				let queue = station.queue;				if (queue.length === 0) return next(null, song, station);				let totalDuration = 0;				const userId = queue[queue.length - 1].requestedBy;				station.queue.forEach((song) => {					if (userId === song.requestedBy) {						totalDuration += song.duration;					}				});				if(totalDuration >= 900) return next('The max length of songs per user is 15 minutes.');				next(null, song, station);			},			(song, station, next) => {				let queue = station.queue;				if (queue.length === 0) return next(null, song);				let totalSongs = 0;				const userId = queue[queue.length - 1].requestedBy;				queue.forEach((song) => {					if (userId === song.requestedBy) {						totalSongs++;					}				});				if (totalSongs <= 2) return next(null, song);				if (totalSongs > 3) return next('The max amount of songs per user is 3, and only 2 in a row is allowed.');				if (queue[queue.length - 2].requestedBy !== userId || queue[queue.length - 3] !== userId) return next('The max amount of songs per user is 3, and only 2 in a row is allowed.');				next(null, song);			},			(song, next) => {				db.models.station.update({_id: stationId}, {$push: {queue: song}}, {runValidators: true}, next);			},			(res, next) => {				stations.updateStation(stationId, next);			}		], (err, station) => {			if (err) {				err = utils.getError(err);				logger.error("STATIONS_ADD_SONG_TO_QUEUE", `Adding song "${songId}" to station "${stationId}" queue failed. "${err}"`);				return cb({'status': 'failure', 'message': err});			}			logger.success("STATIONS_ADD_SONG_TO_QUEUE", `Added song "${songId}" to station "${stationId}" successfully.`);			cache.pub('station.queueUpdate', stationId);			return cb({'status': 'success', 'message': 'Successfully added song to queue.'});		});	}),	/**	 * Removes song from station queue	 *	 * @param session	 * @param stationId - the station id	 * @param songId - the song id	 * @param cb	 * @param userId	 */	removeFromQueue: hooks.ownerRequired((session, stationId, songId, cb, userId) => {		async.waterfall([			(next) => {				if (!songId) return next('Invalid song id.');				stations.getStation(stationId, next);			},			(station, next) => {				if (!station) return next('Station not found.');				if (station.type !== 'community') return next('Station is not a community station.');				async.each(station.queue, (queueSong, next) => {					if (queueSong.songId === songId) return next(true);					next();				}, (err) => {					if (err === true) return next();					next('Song is not currently in the queue.');				});			},			(next) => {				db.models.update({_id: stationId}, {$pull: {queue: {songId: songId}}}, next);			},			(next) => {				stations.updateStation(stationId, next);			}		], (err, station) => {			if (err) {				err = utils.getError(err);				logger.error("STATIONS_REMOVE_SONG_TO_QUEUE", `Removing song "${songId}" from station "${stationId}" queue failed. "${err}"`);				return cb({'status': 'failure', 'message': err});			}			logger.success("STATIONS_REMOVE_SONG_TO_QUEUE", `Removed song "${songId}" from station "${stationId}" successfully.`);			cache.pub('station.queueUpdate', stationId);			return cb({'status': 'success', 'message': 'Successfully removed song from queue.'});		});	}),	/**	 * Gets the queue from a station	 *	 * @param session	 * @param stationId - the station id	 * @param cb	 */	getQueue: (session, stationId, cb) => {		async.waterfall([			(next) => {				stations.getStation(stationId, next);			},			(station, next) => {				if (!station) return next('Station not found.');				if (station.type !== 'community') return next('Station is not a community station.');				next(null, station);			},			(station, next) => {				utils.canUserBeInStation(station, session.userId, (canBe) => {					if (canBe) return next(null, station);					return next('Insufficient permissions.');				});			}		], (err, station) => {			if (err) {				err = utils.getError(err);				logger.error("STATIONS_GET_QUEUE", `Getting queue for station "${stationId}" failed. "${err}"`);				return cb({'status': 'failure', 'message': err});			}			logger.success("STATIONS_GET_QUEUE", `Got queue for station "${stationId}" successfully.`);			return cb({'status': 'success', 'message': 'Successfully got queue.', queue: station.queue});		});	},	/**	 * Selects a private playlist for a station	 *	 * @param session	 * @param stationId - the station id	 * @param playlistId - the private playlist id	 * @param cb	 * @param userId	 */	selectPrivatePlaylist: hooks.ownerRequired((session, stationId, playlistId, cb, userId) => {		async.waterfall([			(next) => {				stations.getStation(stationId, next);			},			(station, next) => {				if (!station) return next('Station not found.');				if (station.type !== 'community') return next('Station is not a community station.');				if (station.privatePlaylist === playlistId) return next('That private playlist is already selected.');				db.models.playlist.findOne({_id: playlistId}, next);			},			(playlist, next) => {				if (!playlist) return next('Playlist not found.');				let currentSongIndex = (playlist.songs.length > 0) ? playlist.songs.length - 1 : 0;				db.models.station.update({_id: stationId}, {$set: {privatePlaylist: playlistId, currentSongIndex: currentSongIndex}}, {runValidators: true}, next);			},			(res, next) => {				stations.updateStation(stationId, next);			}		], (err, station) => {			if (err) {				err = utils.getError(err);				logger.error("STATIONS_SELECT_PRIVATE_PLAYLIST", `Selecting private playlist "${playlistId}" for station "${stationId}" failed. "${err}"`);				return cb({'status': 'failure', 'message': err});			}			logger.success("STATIONS_SELECT_PRIVATE_PLAYLIST", `Selected private playlist "${playlistId}" for station "${stationId}" successfully.`);			notifications.unschedule(`stations.nextSong?id${stationId}`);			if (!station.partyMode) stations.skipStation(stationId)();			cache.pub('privatePlaylist.selected', {playlistId, stationId});			return cb({'status': 'success', 'message': 'Successfully selected playlist.'});		});	}),};
 |