| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437 | 
							- 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"
 
- 				});
 
- 			}
 
- 		);
 
- 	})
 
- };
 
 
  |