| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436 | import async from "async";import { isAdminRequired, isLoginRequired } from "./hooks";import moduleManager from "../../index";const DBModule = moduleManager.modules.db;const UtilsModule = moduleManager.modules.utils;const IOModule = moduleManager.modules.io;const SongsModule = moduleManager.modules.songs;const CacheModule = moduleManager.modules.cache;const PlaylistsModule = moduleManager.modules.playlists;const YouTubeModule = moduleManager.modules.youtube;const ActivitiesModule = moduleManager.modules.activities;CacheModule.runJob("SUB", {	channel: "playlist.create",	cb: playlist => {		IOModule.runJob("SOCKETS_FROM_USER", { userId: playlist.createdBy }, this).then(response => {			response.sockets.forEach(socket => {				socket.emit("event:playlist.create", playlist);			});		});		if (playlist.privacy === "public")			IOModule.runJob("EMIT_TO_ROOM", {				room: `profile-${playlist.createdBy}`,				args: ["event:playlist.create", playlist]			});	}});CacheModule.runJob("SUB", {	channel: "playlist.delete",	cb: res => {		IOModule.runJob("SOCKETS_FROM_USER", { userId: res.userId }, this).then(response => {			response.sockets.forEach(socket => {				socket.emit("event:playlist.delete", res.playlistId);			});		});		IOModule.runJob("EMIT_TO_ROOM", {			room: `profile-${res.userId}`,			args: ["event:playlist.delete", res.playlistId]		});	}});CacheModule.runJob("SUB", {	channel: "playlist.repositionSongs",	cb: res => {		IOModule.runJob("SOCKETS_FROM_USER", { userId: res.userId }, this).then(response =>			response.sockets.forEach(socket =>				socket.emit("event:playlist.repositionSongs", {					playlistId: res.playlistId,					songsBeingChanged: res.songsBeingChanged				})			)		);	}});CacheModule.runJob("SUB", {	channel: "playlist.addSong",	cb: res => {		IOModule.runJob("SOCKETS_FROM_USER", { userId: res.userId }, this).then(response => {			response.sockets.forEach(socket => {				socket.emit("event:playlist.addSong", {					playlistId: res.playlistId,					song: res.song				});			});		});		if (res.privacy === "public")			IOModule.runJob("EMIT_TO_ROOM", {				room: `profile-${res.userId}`,				args: [					"event:playlist.addSong",					{						playlistId: res.playlistId,						song: res.song					}				]			});	}});CacheModule.runJob("SUB", {	channel: "playlist.removeSong",	cb: res => {		IOModule.runJob("SOCKETS_FROM_USER", { userId: res.userId }, this).then(response => {			response.sockets.forEach(socket => {				socket.emit("event:playlist.removeSong", {					playlistId: res.playlistId,					songId: res.songId				});			});		});		if (res.privacy === "public")			IOModule.runJob("EMIT_TO_ROOM", {				room: `profile-${res.userId}`,				args: [					"event:playlist.removeSong",					{						playlistId: res.playlistId,						songId: res.songId					}				]			});	}});CacheModule.runJob("SUB", {	channel: "playlist.updateDisplayName",	cb: res => {		IOModule.runJob("SOCKETS_FROM_USER", { userId: res.userId }, this).then(response => {			response.sockets.forEach(socket => {				socket.emit("event:playlist.updateDisplayName", {					playlistId: res.playlistId,					displayName: res.displayName				});			});		});		if (res.privacy === "public")			IOModule.runJob("EMIT_TO_ROOM", {				room: `profile-${res.userId}`,				args: [					"event:playlist.updateDisplayName",					{						playlistId: res.playlistId,						displayName: res.displayName					}				]			});	}});CacheModule.runJob("SUB", {	channel: "playlist.updatePrivacy",	cb: res => {		IOModule.runJob("SOCKETS_FROM_USER", { userId: res.userId }, this).then(response => {			response.sockets.forEach(socket => {				socket.emit("event:playlist.updatePrivacy", {					playlist: res.playlist				});			});		});		if (res.playlist.privacy === "public")			return IOModule.runJob("EMIT_TO_ROOM", {				room: `profile-${res.userId}`,				args: ["event:playlist.create", res.playlist]			});		return IOModule.runJob("EMIT_TO_ROOM", {			room: `profile-${res.userId}`,			args: ["event:playlist.delete", res.playlist._id]		});	}});export default {	/**	 * Gets all playlists	 *	 * @param {object} session - the session object automatically added by socket.io	 * @param {Function} cb - gets called with the result	 */	index: isAdminRequired(async function index(session, cb) {		const playlistModel = await DBModule.runJob("GET_MODEL", { modelName: "playlist" }, this);		async.waterfall(			[				next => {					playlistModel.find({}).sort({ createdAt: "desc" }).exec(next);				}			],			async (err, playlists) => {				if (err) {					err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);					this.log("ERROR", "PLAYLISTS_INDEX", `Indexing playlists failed. "${err}"`);					return cb({ status: "failure", message: err });				}				this.log("SUCCESS", "PLAYLISTS_INDEX", "Indexing playlists successful.");				return cb({ status: "success", data: playlists });			}		);	}),	/**	 * Gets the first song from a private playlist	 *	 * @param {object} session - the session object automatically added by socket.io	 * @param {string} playlistId - the id of the playlist we are getting the first song from	 * @param {Function} cb - gets called with the result	 */	getFirstSong: isLoginRequired(function getFirstSong(session, playlistId, cb) {		async.waterfall(			[				next => {					PlaylistsModule.runJob("GET_PLAYLIST", { playlistId }, this)						.then(playlist => next(null, playlist))						.catch(next);				},				(playlist, next) => {					if (!playlist || playlist.createdBy !== session.userId) return next("Playlist not found.");					return next(null, playlist.songs[0]);				}			],			async (err, song) => {				if (err) {					err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);					this.log(						"ERROR",						"PLAYLIST_GET_FIRST_SONG",						`Getting the first song of playlist "${playlistId}" failed for user "${session.userId}". "${err}"`					);					return cb({ status: "failure", message: err });				}				this.log(					"SUCCESS",					"PLAYLIST_GET_FIRST_SONG",					`Successfully got the first song of playlist "${playlistId}" for user "${session.userId}".`				);				return cb({					status: "success",					song				});			}		);	}),	/**	 * Gets a list of all the playlists for a specific user	 *	 * @param {object} session - the session object automatically added by socket.io	 * @param {string} userId - the user id in question	 * @param {Function} cb - gets called with the result	 */	indexForUser: async function indexForUser(session, userId, cb) {		const playlistModel = await DBModule.runJob("GET_MODEL", { modelName: "playlist" }, this);		const userModel = await DBModule.runJob("GET_MODEL", { modelName: "user" }, this);		async.waterfall(			[				next => {					userModel.findById(userId).select({ "preferences.orderOfPlaylists": -1 }).exec(next);				},				({ preferences }, next) => {					const { orderOfPlaylists } = preferences;					const match = {						createdBy: userId					};					// if a playlist order exists					if (orderOfPlaylists > 0) match._id = { $in: orderOfPlaylists };					playlistModel						.aggregate()						.match(match)						.addFields({							weight: { $indexOfArray: [orderOfPlaylists, "$_id"] }						})						.sort({ weight: 1 })						.exec(next);				},				(playlists, next) => {					if (session.userId === userId) return next(null, playlists); // user requesting playlists is the owner of the playlists					const filteredPlaylists = [];					return async.each(						playlists,						(playlist, nextPlaylist) => {							if (playlist.privacy === "public") filteredPlaylists.push(playlist);							return nextPlaylist();						},						() => next(null, filteredPlaylists)					);				}			],			async (err, playlists) => {				if (err) {					err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);					this.log(						"ERROR",						"PLAYLIST_INDEX_FOR_USER",						`Indexing playlists for user "${userId}" failed. "${err}"`					);					return cb({ status: "failure", message: err });				}				this.log("SUCCESS", "PLAYLIST_INDEX_FOR_USER", `Successfully indexed playlists for user "${userId}".`);				return cb({					status: "success",					data: playlists				});			}		);	},	/**	 * Gets all playlists for the user requesting it	 *	 * @param {object} session - the session object automatically added by socket.io	 * @param {boolean} showNonModifiablePlaylists - whether or not to show non modifiable playlists e.g. liked songs	 * @param {Function} cb - gets called with the result	 */	indexMyPlaylists: isLoginRequired(async function indexMyPlaylists(session, showNonModifiablePlaylists, cb) {		const playlistModel = await DBModule.runJob("GET_MODEL", { modelName: "playlist" }, this);		const userModel = await DBModule.runJob("GET_MODEL", { modelName: "user" }, this);		async.waterfall(			[				next => {					userModel.findById(session.userId).select({ "preferences.orderOfPlaylists": -1 }).exec(next);				},				({ preferences }, next) => {					const { orderOfPlaylists } = preferences;					const match = {						createdBy: session.userId					};					// if non modifiable playlists should be shown as well					if (!showNonModifiablePlaylists) match.isUserModifiable = true;					// if a playlist order exists					if (orderOfPlaylists > 0) match._id = { $in: orderOfPlaylists };					playlistModel						.aggregate()						.match(match)						.addFields({							weight: { $indexOfArray: [orderOfPlaylists, "$_id"] }						})						.sort({ weight: 1 })						.exec(next);				}			],			async (err, playlists) => {				if (err) {					err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);					this.log(						"ERROR",						"PLAYLIST_INDEX_FOR_ME",						`Indexing playlists for user "${session.userId}" failed. "${err}"`					);					return cb({ status: "failure", message: err });				}				this.log(					"SUCCESS",					"PLAYLIST_INDEX_FOR_ME",					`Successfully indexed playlists for user "${session.userId}".`				);				return cb({					status: "success",					data: playlists				});			}		);	}),	/**	 * Creates a new private playlist	 *	 * @param {object} session - the session object automatically added by socket.io	 * @param {object} data - the data for the new private playlist	 * @param {Function} cb - gets called with the result	 */	create: isLoginRequired(async function create(session, data, cb) {		const playlistModel = await DBModule.runJob("GET_MODEL", { modelName: "playlist" }, this);		const userModel = await DBModule.runJob("GET_MODEL", { modelName: "user" }, this);		const blacklist = ["liked songs", "likedsongs", "disliked songs", "dislikedsongs"];		async.waterfall(			[				next => (data ? next() : cb({ status: "failure", message: "Invalid data" })),				next => {					const { displayName, songs, privacy } = data;					if (blacklist.indexOf(displayName.toLowerCase()) !== -1)						return next("That playlist name is blacklisted. Please use a different name.");					return playlistModel.create(						{							displayName,							songs,							privacy,							createdBy: session.userId,							createdAt: Date.now(),							createdFor: null,							type: "user"						},						next					);				},				(playlist, next) => {					userModel.updateOne(						{ _id: session.userId },						{ $push: { "preferences.orderOfPlaylists": playlist._id } },						err => {							if (err) return next(err);							return next(null, playlist);						}					);				}			],			async (err, playlist) => {				if (err) {					err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);					this.log(						"ERROR",						"PLAYLIST_CREATE",						`Creating private playlist failed for user "${session.userId}". "${err}"`					);					return cb({ status: "failure", message: err });				}				CacheModule.runJob("PUB", {					channel: "playlist.create",					value: playlist				});				ActivitiesModule.runJob("ADD_ACTIVITY", {					userId: session.userId,					activityType: "created_playlist",					payload: [playlist._id]				});				this.log(					"SUCCESS",					"PLAYLIST_CREATE",					`Successfully created private playlist for user "${session.userId}".`				);				return cb({					status: "success",					message: "Successfully created playlist",					data: {						_id: playlist._id					}				});			}		);	}),	/**	 * Gets a playlist from id	 *	 * @param {object} session - the session object automatically added by socket.io	 * @param {string} playlistId - the id of the playlist we are getting	 * @param {Function} cb - gets called with the result	 */	getPlaylist: function getPlaylist(session, playlistId, cb) {		async.waterfall(			[				next => {					PlaylistsModule.runJob("GET_PLAYLIST", { playlistId }, this)						.then(playlist => next(null, playlist))						.catch(next);				},				(playlist, next) => {					if (!playlist) return next("Playlist not found");					if (playlist.privacy !== "public" && playlist.createdBy !== session.userId)						return next("User unauthorised to view playlist.");					return next(null, playlist);				}			],			async (err, playlist) => {				if (err) {					err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);					this.log(						"ERROR",						"PLAYLIST_GET",						`Getting private playlist "${playlistId}" failed for user "${session.userId}". "${err}"`					);					return cb({ status: "failure", message: err });				}				this.log(					"SUCCESS",					"PLAYLIST_GET",					`Successfully got private playlist "${playlistId}" for user "${session.userId}".`				);				return cb({					status: "success",					data: playlist				});			}		);	},	/**	 * Obtains basic metadata of a playlist in order to format an activity	 *	 * @param {object} session - the session object automatically added by socket.io	 * @param {string} playlistId - the playlist id	 * @param {Function} cb - callback	 */	getPlaylistForActivity(session, playlistId, cb) {		async.waterfall(			[				next => {					PlaylistsModule.runJob("GET_PLAYLIST", { playlistId }, this)						.then(playlist => {							next(null, playlist);						})						.catch(next);				}			],			async (err, playlist) => {				if (err) {					err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);					this.log(						"ERROR",						"PLAYLISTS_GET_PLAYLIST_FOR_ACTIVITY",						`Failed to obtain metadata of playlist ${playlistId} for activity formatting. "${err}"`					);					return cb({ status: "failure", message: err });				}				this.log(					"SUCCESS",					"PLAYLISTS_GET_PLAYLIST_FOR_ACTIVITY",					`Obtained metadata of playlist ${playlistId} for activity formatting successfully.`				);				return cb({					status: "success",					data: {						title: playlist.displayName					}				});			}		);	},	// TODO Remove this	/**	 * Updates a private playlist	 *	 * @param {object} session - the session object automatically added by socket.io	 * @param {string} playlistId - the id of the playlist we are updating	 * @param {object} playlist - the new private playlist object	 * @param {Function} cb - gets called with the result	 */	update: isLoginRequired(async function update(session, playlistId, playlist, cb) {		const playlistModel = await DBModule.runJob(			"GET_MODEL",			{				modelName: "playlist"			},			this		);		async.waterfall(			[				next => {					playlistModel.updateOne(						{ _id: playlistId, createdBy: session.userId },						playlist,						{ runValidators: true },						next					);				},				(res, next) => {					PlaylistsModule.runJob("UPDATE_PLAYLIST", { playlistId }, this)						.then(playlist => {							next(null, playlist);						})						.catch(next);				}			],			async (err, playlist) => {				if (err) {					err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);					this.log(						"ERROR",						"PLAYLIST_UPDATE",						`Updating private playlist "${playlistId}" failed for user "${session.userId}". "${err}"`					);					return cb({ status: "failure", message: err });				}				this.log(					"SUCCESS",					"PLAYLIST_UPDATE",					`Successfully updated private playlist "${playlistId}" for user "${session.userId}".`				);				return cb({					status: "success",					data: playlist				});			}		);	}),	/**	 * Shuffles songs in a private playlist	 *	 * @param {object} session - the session object automatically added by socket.io	 * @param {string} playlistId - the id of the playlist we are updating	 * @param {Function} cb - gets called with the result	 */	shuffle: isLoginRequired(async function shuffle(session, playlistId, cb) {		const playlistModel = await DBModule.runJob("GET_MODEL", { modelName: "playlist" }, this);		async.waterfall(			[				next => {					if (!playlistId) return next("No playlist id.");					return playlistModel.findById(playlistId, next);				},				(playlist, next) => {					if (!playlist.isUserModifiable) return next("Playlist cannot be shuffled.");					return UtilsModule.runJob("SHUFFLE", { array: playlist.songs }, this)						.then(result => next(null, result.array))						.catch(next);				},				(songs, next) => {					playlistModel.updateOne({ _id: playlistId }, { $set: { songs } }, { runValidators: true }, next);				},				(res, next) => {					PlaylistsModule.runJob("UPDATE_PLAYLIST", { playlistId }, this)						.then(playlist => next(null, playlist))						.catch(next);				}			],			async (err, playlist) => {				if (err) {					err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);					this.log(						"ERROR",						"PLAYLIST_SHUFFLE",						`Updating private playlist "${playlistId}" failed for user "${session.userId}". "${err}"`					);					return cb({ status: "failure", message: err });				}				this.log(					"SUCCESS",					"PLAYLIST_SHUFFLE",					`Successfully updated private playlist "${playlistId}" for user "${session.userId}".`				);				return cb({					status: "success",					message: "Successfully shuffled playlist.",					data: playlist				});			}		);	}),	/**	 * Changes the order of song(s) in a private playlist	 *	 * @param {object} session - the session object automatically added by socket.io	 * @param {string} playlistId - the id of the playlist we are targeting	 * @param {Array} songsBeingChanged - the songs to be repositioned, each element contains "songId" and "position" properties	 * @param {Function} cb - gets called with the result	 */	repositionSongs: isLoginRequired(async function repositionSongs(session, playlistId, songsBeingChanged, cb) {		const playlistModel = await DBModule.runJob("GET_MODEL", { modelName: "playlist" }, this);		async.waterfall(			[				// update playlist object with each song's new position				next =>					async.each(						songsBeingChanged,						(song, nextSong) =>							playlistModel.updateOne(								{ _id: playlistId, "songs.songId": song.songId },								{									$set: {										"songs.$.position": song.position									}								},								err => {									if (err) return next(err);									return nextSong();								}							),						next					),				// update the cache with the new songs positioning				next => {					PlaylistsModule.runJob("UPDATE_PLAYLIST", { playlistId }, this)						.then(playlist => next(null, playlist))						.catch(next);				}			],			async err => {				if (err) {					err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);					this.log(						"ERROR",						"PLAYLIST_REPOSITION_SONGS",						`Repositioning songs for private playlist "${playlistId}" failed for user "${session.userId}". "${err}"`					);					return cb({ status: "failure", message: err });				}				this.log(					"SUCCESS",					"PLAYLIST_REPOSITION_SONGS",					`Successfully repositioned songs for private playlist "${playlistId}" for user "${session.userId}".`				);				CacheModule.runJob("PUB", {					channel: "playlist.repositionSongs",					value: {						userId: session.userId,						playlistId,						songsBeingChanged					}				});				return cb({					status: "success",					message: "Order of songs successfully updated"				});			}		);	}),	/**	 * Moves a song to the bottom of the list in a private playlist	 *	 * @param {object} session - the session object automatically added by socket.io	 * @param {string} playlistId - the id of the playlist we are moving the song to the bottom from	 * @param {string} songId - the id of the song we are moving to the bottom of the list	 * @param {Function} cb - gets called with the result	 */	moveSongToBottom: isLoginRequired(async function moveSongToBottom(session, playlistId, songId, cb) {		async.waterfall(			[				next => {					PlaylistsModule.runJob("GET_PLAYLIST", { playlistId }, this)						.then(playlist => next(null, playlist))						.catch(next);				},				(playlist, next) => {					if (!playlist || playlist.createdBy !== session.userId) return next("Playlist not found");					if (!playlist.isUserModifiable) return next("Playlist cannot be modified.");					// sort array by position					playlist.songs.sort((a, b) => a.position - b.position);					// find index of songId					playlist.songs.forEach((song, index) => {						// reorder array (simulates what would be done with a drag and drop interface)						if (song.songId === songId)							playlist.songs.splice(playlist.songs.length, 0, playlist.songs.splice(index, 1)[0]);					});					const songsBeingChanged = [];					playlist.songs.forEach((song, index) => {						// check if position needs updated based on index						if (song.position !== index + 1)							songsBeingChanged.push({								songId: song.songId,								position: index + 1							});					});					// update position property on songs that need to be changed					return IOModule.runJob(						"RUN_ACTION2",						{							session,							namespace: "playlists",							action: "repositionSongs",							args: [playlistId, songsBeingChanged]						},						this					)						.then(res => {							if (res.status === "success") return next();							return next("Unable to reposition song in playlist.");						})						.catch(next);				}			],			async err => {				if (err) {					err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);					this.log(						"ERROR",						"PLAYLIST_MOVE_SONG_TO_BOTTOM",						`Moving song "${songId}" to the bottom for private playlist "${playlistId}" failed for user "${session.userId}". "${err}"`					);					return cb({ status: "failure", message: err });				}				this.log(					"SUCCESS",					"PLAYLIST_MOVE_SONG_TO_BOTTOM",					`Successfully moved song "${songId}" to the bottom for private playlist "${playlistId}" for user "${session.userId}".`				);				return cb({					status: "success",					message: "Order of songs successfully updated"				});			}		);	}),	/**	 * Adds a song to a private playlist	 *	 * @param {object} session - the session object automatically added by socket.io	 * @param {boolean} isSet - is the song part of a set of songs to be added	 * @param {string} songId - the id of the song we are trying to add	 * @param {string} playlistId - the id of the playlist we are adding the song to	 * @param {Function} cb - gets called with the result	 */	addSongToPlaylist: isLoginRequired(async function addSongToPlaylist(session, isSet, songId, playlistId, cb) {		const playlistModel = await DBModule.runJob("GET_MODEL", { modelName: "playlist" }, this);		async.waterfall(			[				next => {					PlaylistsModule.runJob("GET_PLAYLIST", { playlistId }, this)						.then(playlist => {							if (!playlist || playlist.createdBy !== session.userId)								return next("Something went wrong when trying to get the playlist");							return async.each(								playlist.songs,								(song, nextSong) => {									if (song.songId === songId) return next("That song is already in the playlist");									return nextSong();								},								err => next(err, playlist.songs.length + 1)							);						})						.catch(next);				},				(position, next) => {					SongsModule.runJob("GET_SONG_FROM_ID", { songId }, this)						.then(res => {							const { song } = res;							next(null, {								_id: song._id,								songId,								title: song.title,								duration: song.duration,								thumbnail: song.thumbnail,								artists: song.artists,								position							});						})						.catch(() => {							YouTubeModule.runJob("GET_SONG", { songId }, this)								.then(response => next(null, { ...response.song, position }))								.catch(next);						});				},				(newSong, next) => {					playlistModel.updateOne(						{ _id: playlistId },						{ $push: { songs: newSong } },						{ runValidators: true },						err => {							if (err) return next(err);							return PlaylistsModule.runJob("UPDATE_PLAYLIST", { playlistId }, this)								.then(playlist => next(null, playlist, newSong))								.catch(next);						}					);				}			],			async (err, playlist, newSong) => {				if (err) {					err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);					this.log(						"ERROR",						"PLAYLIST_ADD_SONG",						`Adding song "${songId}" to private playlist "${playlistId}" failed for user "${session.userId}". "${err}"`					);					return cb({ status: "failure", message: err });				}				this.log(					"SUCCESS",					"PLAYLIST_ADD_SONG",					`Successfully added song "${songId}" to private playlist "${playlistId}" for user "${session.userId}".`				);				if (!isSet)					ActivitiesModule.runJob("ADD_ACTIVITY", {						userId: session.userId,						activityType: "added_song_to_playlist",						payload: [{ songId, playlistId }]					});				CacheModule.runJob("PUB", {					channel: "playlist.addSong",					value: {						playlistId: playlist._id,						song: newSong,						userId: session.userId,						privacy: playlist.privacy					}				});				return cb({					status: "success",					message: "Song has been successfully added to the playlist",					data: playlist.songs				});			}		);	}),	/**	 * Adds a set of songs to a private playlist	 *	 * @param {object} session - the session object automatically added by socket.io	 * @param {string} url - the url of the the YouTube playlist	 * @param {string} playlistId - the id of the playlist we are adding the set of songs to	 * @param {boolean} musicOnly - whether to only add music to the playlist	 * @param {Function} cb - gets called with the result	 */	addSetToPlaylist: isLoginRequired(function addSetToPlaylist(session, url, playlistId, musicOnly, cb) {		let videosInPlaylistTotal = 0;		let songsInPlaylistTotal = 0;		let addSongsStats = null;		const addedSongs = [];		async.waterfall(			[				next => {					YouTubeModule.runJob(						"GET_PLAYLIST",						{							url,							musicOnly						},						this					).then(response => {						if (response.filteredSongs) {							videosInPlaylistTotal = response.songs.length;							songsInPlaylistTotal = response.filteredSongs.length;						} else {							songsInPlaylistTotal = videosInPlaylistTotal = response.songs.length;						}						next(null, response.songs);					});				},				(songIds, next) => {					let successful = 0;					let failed = 0;					let alreadyInPlaylist = 0;					if (songIds.length === 0) next();					async.eachLimit(						songIds,						1,						(songId, next) => {							IOModule.runJob(								"RUN_ACTION2",								{									session,									namespace: "playlists",									action: "addSongToPlaylist",									args: [true, songId, playlistId]								},								this							)								.then(res => {									if (res.status === "success") {										successful += 1;										addedSongs.push(songId);									} else failed += 1;									if (res.message === "That song is already in the playlist") alreadyInPlaylist += 1;								})								.catch(() => {									failed += 1;								})								.finally(() => {									next();								});						},						() => {							addSongsStats = { successful, failed, alreadyInPlaylist };							next(null);						}					);				},				next => {					PlaylistsModule.runJob("GET_PLAYLIST", { playlistId }, this)						.then(playlist => {							next(null, playlist);						})						.catch(next);				},				(playlist, next) => {					if (!playlist || playlist.createdBy !== session.userId) return next("Playlist not found.");					if (!playlist.isUserModifiable) return next("Playlist cannot be modified.");					return next(null, playlist);				}			],			async (err, playlist) => {				if (err) {					err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);					this.log(						"ERROR",						"PLAYLIST_IMPORT",						`Importing a YouTube playlist to private playlist "${playlistId}" failed for user "${session.userId}". "${err}"`					);					return cb({ status: "failure", message: err });				}				ActivitiesModule.runJob("ADD_ACTIVITY", {					userId: session.userId,					activityType: "added_songs_to_playlist",					payload: addedSongs				});				this.log(					"SUCCESS",					"PLAYLIST_IMPORT",					`Successfully imported a YouTube playlist to private playlist "${playlistId}" for user "${session.userId}". Videos in playlist: ${videosInPlaylistTotal}, songs in playlist: ${songsInPlaylistTotal}, songs successfully added: ${addSongsStats.successful}, songs failed: ${addSongsStats.failed}, already in playlist: ${addSongsStats.alreadyInPlaylist}.`				);				return cb({					status: "success",					message: `Playlist has been imported. ${addSongsStats.successful} were added successfully, ${addSongsStats.failed} failed (${addSongsStats.alreadyInPlaylist} were already in the playlist)`,					data: playlist.songs,					stats: {						videosInPlaylistTotal,						songsInPlaylistTotal					}				});			}		);	}),	/**	 * Removes a song from a private playlist	 *	 * @param {object} session - the session object automatically added by socket.io	 * @param {string} songId - the id of the song we are removing from the private playlist	 * @param {string} playlistId - the id of the playlist we are removing the song from	 * @param {Function} cb - gets called with the result	 */	removeSongFromPlaylist: isLoginRequired(async function removeSongFromPlaylist(session, songId, playlistId, cb) {		const playlistModel = await DBModule.runJob("GET_MODEL", { modelName: "playlist" }, this);		async.waterfall(			[				next => {					if (!songId || typeof songId !== "string") return next("Invalid song id.");					if (!playlistId) return next("Invalid playlist id.");					return next();				},				next => {					PlaylistsModule.runJob("GET_PLAYLIST", { playlistId }, this)						.then(playlist => next(null, playlist))						.catch(next);				},				(playlist, next) => {					if (!playlist || playlist.createdBy !== session.userId) return next("Playlist not found");					// sort array by position					playlist.songs.sort((a, b) => a.position - b.position);					// find index of songId					playlist.songs.forEach((song, ind) => {						// remove song from array						if (song.songId === songId) playlist.songs.splice(ind, 1);					});					const songsBeingChanged = [];					playlist.songs.forEach((song, index) => {						// check if position needs updated based on index						if (song.position !== index + 1)							songsBeingChanged.push({								songId: song.songId,								position: index + 1							});					});					// update position property on songs that need to be changed					return IOModule.runJob(						"RUN_ACTION2",						{							session,							namespace: "playlists",							action: "repositionSongs",							args: [playlistId, songsBeingChanged]						},						this					)						.then(res => {							if (res.status === "success") return next();							return next("Unable to reposition song in playlist.");						})						.catch(next);				},				next => playlistModel.updateOne({ _id: playlistId }, { $pull: { songs: { songId } } }, next),				(res, next) => {					PlaylistsModule.runJob("UPDATE_PLAYLIST", { playlistId }, this)						.then(playlist => next(null, playlist))						.catch(next);				}			],			async (err, playlist) => {				if (err) {					err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);					this.log(						"ERROR",						"PLAYLIST_REMOVE_SONG",						`Removing song "${songId}" from private playlist "${playlistId}" failed for user "${session.userId}". "${err}"`					);					return cb({ status: "failure", message: err });				}				this.log(					"SUCCESS",					"PLAYLIST_REMOVE_SONG",					`Successfully removed song "${songId}" from private playlist "${playlistId}" for user "${session.userId}".`				);				CacheModule.runJob("PUB", {					channel: "playlist.removeSong",					value: {						playlistId: playlist._id,						songId,						userId: session.userId,						privacy: playlist.privacy					}				});				return cb({					status: "success",					message: "Song has been successfully removed from playlist",					data: playlist.songs				});			}		);	}),	/**	 * Updates the displayName of a private playlist	 *	 * @param {object} session - the session object automatically added by socket.io	 * @param {string} playlistId - the id of the playlist we are updating the displayName for	 * @param {Function} cb - gets called with the result	 */	updateDisplayName: isLoginRequired(async function updateDisplayName(session, playlistId, displayName, cb) {		const playlistModel = await DBModule.runJob("GET_MODEL", { modelName: "playlist" }, this);		async.waterfall(			[				next => {					PlaylistsModule.runJob("GET_PLAYLIST", { playlistId }, this)						.then(playlist => next(null, playlist))						.catch(next);				},				(playlist, next) => {					if (!playlist.isUserModifiable) return next("Playlist cannot be modified.");					return next(null);				},				next => {					playlistModel.updateOne(						{ _id: playlistId, createdBy: session.userId },						{ $set: { displayName } },						{ runValidators: true },						next					);				},				(res, next) => {					PlaylistsModule.runJob("UPDATE_PLAYLIST", { playlistId }, this)						.then(playlist => {							next(null, playlist);						})						.catch(next);				}			],			async (err, playlist) => {				if (err) {					err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);					this.log(						"ERROR",						"PLAYLIST_UPDATE_DISPLAY_NAME",						`Updating display name to "${displayName}" for private playlist "${playlistId}" failed for user "${session.userId}". "${err}"`					);					return cb({ status: "failure", message: err });				}				this.log(					"SUCCESS",					"PLAYLIST_UPDATE_DISPLAY_NAME",					`Successfully updated display name to "${displayName}" for private playlist "${playlistId}" for user "${session.userId}".`				);				CacheModule.runJob("PUB", {					channel: "playlist.updateDisplayName",					value: {						playlistId,						displayName,						userId: session.userId,						privacy: playlist.privacy					}				});				return cb({					status: "success",					message: "Playlist has been successfully updated"				});			}		);	}),	/**	 * Removes a private playlist	 *	 * @param {object} session - the session object automatically added by socket.io	 * @param {string} playlistId - the id of the playlist we are moving the song to the top from	 * @param {Function} cb - gets called with the result	 */	remove: isLoginRequired(async function remove(session, playlistId, cb) {		const stationModel = await DBModule.runJob("GET_MODEL", { modelName: "station" }, this);		const userModel = await DBModule.runJob("GET_MODEL", { modelName: "user" }, this);		async.waterfall(			[				next => {					PlaylistsModule.runJob("GET_PLAYLIST", { playlistId }, this)						.then(playlist => next(null, playlist))						.catch(next);				},				(playlist, next) => {					if (!playlist.isUserModifiable) return next("Playlist cannot be removed.");					return next(null, playlist);				},				(playlist, next) => {					userModel.updateOne(						{ _id: playlist.createdBy },						{ $pull: { "preferences.orderOfPlaylists": playlist._id } },						err => {							if (err) return next(err);							return next(null);						}					);				},				next => {					PlaylistsModule.runJob("DELETE_PLAYLIST", { playlistId }, this).then(next).catch(next);				},				next => {					stationModel.find({ privatePlaylist: playlistId }, (err, res) => {						next(err, res);					});				},				(stations, next) => {					async.each(						stations,						(station, next) => {							async.waterfall(								[									next => {										stationModel.updateOne(											{ _id: station._id },											{ $set: { privatePlaylist: null } },											{ runValidators: true },											next										);									},									(res, next) => {										if (!station.partyMode) {											moduleManager.modules.stations												.runJob(													"UPDATE_STATION",													{														stationId: station._id													},													this												)												.then(station => next(null, station))												.catch(next);											CacheModule.runJob("PUB", {												channel: "privatePlaylist.selected",												value: {													playlistId: null,													stationId: station._id												}											});										} else next();									}								],								() => {									next();								}							);						},						() => {							next();						}					);				}			],			async err => {				if (err) {					err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);					this.log(						"ERROR",						"PLAYLIST_REMOVE",						`Removing private playlist "${playlistId}" failed for user "${session.userId}". "${err}"`					);					return cb({ status: "failure", message: err });				}				this.log(					"SUCCESS",					"PLAYLIST_REMOVE",					`Successfully removed private playlist "${playlistId}" for user "${session.userId}".`				);				CacheModule.runJob("PUB", {					channel: "playlist.delete",					value: {						userId: session.userId,						playlistId					}				});				ActivitiesModule.runJob("ADD_ACTIVITY", {					userId: session.userId,					activityType: "deleted_playlist",					payload: [playlistId]				});				return cb({					status: "success",					message: "Playlist successfully removed"				});			}		);	}),	/**	 * Updates the privacy of a private playlist	 *	 * @param {object} session - the session object automatically added by socket.io	 * @param {string} playlistId - the id of the playlist we are updating the privacy for	 * @param {string} privacy - what the new privacy of the playlist should be e.g. public	 * @param {Function} cb - gets called with the result	 */	updatePrivacy: isLoginRequired(async function updatePrivacy(session, playlistId, privacy, cb) {		const playlistModel = await DBModule.runJob("GET_MODEL", { modelName: "playlist" }, this);		async.waterfall(			[				next => {					playlistModel.updateOne(						{ _id: playlistId, createdBy: session.userId },						{ $set: { privacy } },						{ runValidators: true },						next					);				},				(res, next) => {					PlaylistsModule.runJob("UPDATE_PLAYLIST", { playlistId }, this)						.then(playlist => next(null, playlist))						.catch(next);				}			],			async (err, playlist) => {				if (err) {					err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);					this.log(						"ERROR",						"PLAYLIST_UPDATE_PRIVACY",						`Updating privacy to "${privacy}" for private playlist "${playlistId}" failed for user "${session.userId}". "${err}"`					);					return cb({ status: "failure", message: err });				}				this.log(					"SUCCESS",					"PLAYLIST_UPDATE_PRIVACY",					`Successfully updated privacy to "${privacy}" for private playlist "${playlistId}" for user "${session.userId}".`				);				CacheModule.runJob("PUB", {					channel: "playlist.updatePrivacy",					value: {						userId: session.userId,						playlist					}				});				return cb({					status: "success",					message: "Playlist has been successfully updated"				});			}		);	})};
 |