| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326 | import async from "async";import CoreClass from "../core";let PlaylistsModule;let StationsModule;let SongsModule;let CacheModule;let DBModule;let UtilsModule;let MediaModule;let WSModule;class _PlaylistsModule extends CoreClass {	// eslint-disable-next-line require-jsdoc	constructor() {		super("playlists");		PlaylistsModule = this;	}	/**	 * Initialises the playlists module	 *	 * @returns {Promise} - returns promise (reject, resolve)	 */	async initialize() {		this.setStage(1);		StationsModule = this.moduleManager.modules.stations;		CacheModule = this.moduleManager.modules.cache;		DBModule = this.moduleManager.modules.db;		UtilsModule = this.moduleManager.modules.utils;		SongsModule = this.moduleManager.modules.songs;		MediaModule = this.moduleManager.modules.media;		WSModule = this.moduleManager.modules.ws;		this.playlistModel = await DBModule.runJob("GET_MODEL", { modelName: "playlist" });		this.playlistSchemaCache = await CacheModule.runJob("GET_SCHEMA", { schemaName: "playlist" });		CacheModule.runJob("SUB", {			channel: "playlist.updated",			cb: async data => {				PlaylistsModule.playlistModel.findOne(					{ _id: data.playlistId },					["_id", "displayName", "type", "privacy", "songs", "createdBy", "createdAt", "createdFor"],					(err, playlist) => {						const newPlaylist = {							...playlist._doc,							songsCount: playlist.songs.length,							songsLength: playlist.songs.reduce(								(previous, current) => ({									duration: previous.duration + current.duration								}),								{ duration: 0 }							).duration						};						delete newPlaylist.songs;						WSModule.runJob("EMIT_TO_ROOM", {							room: "admin.playlists",							args: ["event:admin.playlist.updated", { data: { playlist: newPlaylist } }]						});					}				);			}		});		this.setStage(2);		return new Promise((resolve, reject) => {			async.waterfall(				[					next => {						this.setStage(3);						CacheModule.runJob("HGETALL", { table: "playlists" })							.then(playlists => {								next(null, playlists);							})							.catch(next);					},					(playlists, next) => {						this.setStage(4);						if (!playlists) return next();						const playlistIds = Object.keys(playlists);						return async.each(							playlistIds,							(playlistId, next) => {								PlaylistsModule.playlistModel.findOne({ _id: playlistId }, (err, playlist) => {									if (err) next(err);									else if (!playlist) {										CacheModule.runJob("HDEL", {											table: "playlists",											key: playlistId										})											.then(() => next())											.catch(next);									} else next();								});							},							next						);					},					next => {						this.setStage(5);						PlaylistsModule.playlistModel.find({}, next);					},					(playlists, next) => {						this.setStage(6);						async.each(							playlists,							(playlist, cb) => {								CacheModule.runJob("HSET", {									table: "playlists",									key: playlist._id,									value: PlaylistsModule.playlistSchemaCache(playlist)								})									.then(() => cb())									.catch(next);							},							next						);					}				],				async err => {					if (err) {						const formattedErr = await UtilsModule.runJob("GET_ERROR", {							error: err						});						reject(new Error(formattedErr));					} else {						resolve();					}				}			);		});	}	/**	 * Returns a list of playlists that include a specific song	 *	 * @param {object} payload - object that contains the payload	 * @param {string} payload.songId - the song id	 * @param {string} payload.includeSongs - include the songs	 * @returns {Promise} - returns promise (reject, resolve)	 */	GET_PLAYLISTS_WITH_SONG(payload) {		return new Promise((resolve, reject) => {			const includeObject = payload.includeSongs ? null : { songs: false };			PlaylistsModule.playlistModel.find({ "songs._id": payload.songId }, includeObject, (err, playlists) => {				if (err) reject(err);				else resolve({ playlists });			});		});	}	/**	 * Creates a playlist owned by a user	 *	 * @param {object} payload - object that contains the payload	 * @param {string} payload.userId - the id of the user to create the playlist for	 * @param {string} payload.displayName - the display name of the playlist	 * @param {string} payload.type - the type of the playlist	 * @returns {Promise} - returns promise (reject, resolve)	 */	CREATE_USER_PLAYLIST(payload) {		return new Promise((resolve, reject) => {			PlaylistsModule.playlistModel.create(				{					displayName: payload.displayName,					songs: [],					createdBy: payload.userId,					createdAt: Date.now(),					createdFor: null,					type: payload.type				},				(err, playlist) => {					if (err) return reject(new Error(err));					return resolve(playlist._id);				}			);		});	}	/**	 * Creates a playlist that contains all songs of a specific genre	 *	 * @param {object} payload - object that contains the payload	 * @param {string} payload.genre - the genre	 * @returns {Promise} - returns promise (reject, resolve)	 */	CREATE_GENRE_PLAYLIST(payload) {		return new Promise((resolve, reject) => {			PlaylistsModule.runJob("GET_GENRE_PLAYLIST", { genre: payload.genre.toLowerCase() }, this)				.then(() => {					reject(new Error("Playlist already exists"));				})				.catch(err => {					if (err.message === "Playlist not found") {						PlaylistsModule.playlistModel.create(							{								displayName: `Genre - ${payload.genre}`,								songs: [],								createdBy: "Musare",								createdFor: `${payload.genre.toLowerCase()}`,								createdAt: Date.now(),								type: "genre"							},							(err, playlist) => {								if (err) return reject(new Error(err));								return resolve(playlist._id);							}						);					} else reject(new Error(err));				});		});	}	/**	 * Gets all genre playlists	 *	 * @param {object} payload - object that contains the payload	 * @param {string} payload.includeSongs - include the songs	 * @returns {Promise} - returns promise (reject, resolve)	 */	GET_ALL_GENRE_PLAYLISTS(payload) {		return new Promise((resolve, reject) => {			const includeObject = payload.includeSongs ? null : { songs: false };			PlaylistsModule.playlistModel.find({ type: "genre" }, includeObject, (err, playlists) => {				if (err) reject(new Error(err));				else resolve({ playlists });			});		});	}	/**	 * Gets all station playlists	 *	 * @param {object} payload - object that contains the payload	 * @param {string} payload.includeSongs - include the songs	 * @returns {Promise} - returns promise (reject, resolve)	 */	GET_ALL_STATION_PLAYLISTS(payload) {		return new Promise((resolve, reject) => {			const includeObject = payload.includeSongs ? null : { songs: false };			PlaylistsModule.playlistModel.find({ type: "station" }, includeObject, (err, playlists) => {				if (err) reject(new Error(err));				else resolve({ playlists });			});		});	}	/**	 * Gets a genre playlist	 *	 * @param {object} payload - object that contains the payload	 * @param {string} payload.genre - the genre	 * @param {string} payload.includeSongs - include the songs	 * @returns {Promise} - returns promise (reject, resolve)	 */	GET_GENRE_PLAYLIST(payload) {		return new Promise((resolve, reject) => {			const includeObject = payload.includeSongs ? null : { songs: false };			PlaylistsModule.playlistModel.findOne(				{ type: "genre", createdFor: payload.genre },				includeObject,				(err, playlist) => {					if (err) reject(new Error(err));					else if (!playlist) reject(new Error("Playlist not found"));					else resolve({ playlist });				}			);		});	}	/**	 * Gets all missing genre playlists	 *	 * @returns {Promise} - returns promise (reject, resolve)	 */	GET_MISSING_GENRE_PLAYLISTS() {		return new Promise((resolve, reject) => {			SongsModule.runJob("GET_ALL_GENRES", {}, this)				.then(response => {					const { genres } = response;					const missingGenres = [];					async.eachLimit(						genres,						1,						(genre, next) => {							PlaylistsModule.runJob(								"GET_GENRE_PLAYLIST",								{ genre: genre.toLowerCase(), includeSongs: false },								this							)								.then(() => {									next();								})								.catch(err => {									if (err.message === "Playlist not found") {										missingGenres.push(genre);										next();									} else next(err);								});						},						err => {							if (err) reject(err);							else resolve({ genres: missingGenres });						}					);				})				.catch(err => {					reject(err);				});		});	}	/**	 * Creates all missing genre playlists	 *	 * @returns {Promise} - returns promise (reject, resolve)	 */	CREATE_MISSING_GENRE_PLAYLISTS() {		return new Promise((resolve, reject) => {			PlaylistsModule.runJob("GET_MISSING_GENRE_PLAYLISTS", {}, this)				.then(response => {					const { genres } = response;					async.eachLimit(						genres,						1,						(genre, next) => {							PlaylistsModule.runJob("CREATE_GENRE_PLAYLIST", { genre }, this)								.then(() => {									next();								})								.catch(err => {									next(err);								});						},						err => {							if (err) reject(err);							else resolve();						}					);				})				.catch(err => {					reject(err);				});		});	}	/**	 * Gets a station playlist	 *	 * @param {object} payload - object that contains the payload	 * @param {string} payload.staationId - the station id	 * @param {string} payload.includeSongs - include the songs	 * @returns {Promise} - returns promise (reject, resolve)	 */	GET_STATION_PLAYLIST(payload) {		return new Promise((resolve, reject) => {			const includeObject = payload.includeSongs ? null : { songs: false };			PlaylistsModule.playlistModel.findOne(				{ type: "station", createdFor: payload.stationId },				includeObject,				(err, playlist) => {					if (err) reject(new Error(err));					else if (!playlist) reject(new Error("Playlist not found"));					else resolve({ playlist });				}			);		});	}	/**	 * Adds a song to a playlist	 *	 * @param {object} payload - object that contains the payload	 * @param {string} payload.playlistId - the playlist id	 * @param {string} payload.youtubeId - the youtube id	 * @returns {Promise} - returns promise (reject, resolve)	 */	ADD_SONG_TO_PLAYLIST(payload) {		return new Promise((resolve, reject) => {			const { playlistId, youtubeId } = payload;			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.songs.find(song => song.youtubeId === youtubeId))							return next("That song is already in the playlist.");						return next();					},					next => {						MediaModule.runJob("GET_MEDIA", { youtubeId }, this)							.then(response => {								const { song } = response;								const { _id, title, artists, thumbnail, duration, verified } = song;								next(null, {									_id,									youtubeId,									title,									artists,									thumbnail,									duration,									verified								});							})							.catch(next);					},					(newSong, next) => {						PlaylistsModule.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);							}						);					},					(playlist, newSong, next) => {						StationsModule.runJob("GET_STATIONS_THAT_AUTOFILL_OR_BLACKLIST_PLAYLIST", { playlistId })							.then(response => {								async.each(									response.stationIds,									(stationId, next) => {										PlaylistsModule.runJob("AUTOFILL_STATION_PLAYLIST", { stationId })											.then()											.catch();										next();									},									err => {										if (err) next(err);										else next(null, playlist, newSong);									}								);							})							.catch(next);					},					(playlist, newSong, next) => {						if (playlist.type === "user-liked" || playlist.type === "user-disliked") {							MediaModule.runJob("RECALCULATE_RATINGS", {								youtubeId: newSong.youtubeId							})								.then(ratings => next(null, playlist, newSong, ratings))								.catch(next);						} else {							next(null, playlist, newSong, null);						}					}				],				(err, playlist, song, ratings) => {					if (err) reject(err);					else resolve({ playlist, song, ratings });				}			);		});	}	/**	 * Remove from playlist	 *	 * @param {object} payload - object that contains the payload	 * @param {string} payload.playlistId - the playlist id	 * @param {string} payload.youtubeId - the youtube id	 * @returns {Promise} - returns a promise (resolve, reject)	 */	REMOVE_FROM_PLAYLIST(payload) {		return new Promise((resolve, reject) => {			const { playlistId, youtubeId } = payload;			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.songs.find(song => song.youtubeId === youtubeId))							return next("That song is not currently in the playlist.");						return PlaylistsModule.playlistModel.updateOne(							{ _id: playlistId },							{ $pull: { songs: { youtubeId } } },							next						);					},					(res, next) => {						PlaylistsModule.runJob("UPDATE_PLAYLIST", { playlistId }, this)							.then(playlist => next(null, playlist))							.catch(next);					},					(playlist, next) => {						StationsModule.runJob("GET_STATIONS_THAT_AUTOFILL_OR_BLACKLIST_PLAYLIST", { playlistId })							.then(response => {								async.each(									response.stationIds,									(stationId, next) => {										PlaylistsModule.runJob("AUTOFILL_STATION_PLAYLIST", { stationId })											.then()											.catch();										next();									},									err => {										if (err) next(err);										else next(null, playlist);									}								);							})							.catch(next);					},					(playlist, next) => {						if (playlist.type === "user-liked" || playlist.type === "user-disliked") {							MediaModule.runJob("RECALCULATE_RATINGS", { youtubeId })								.then(ratings => next(null, playlist, ratings))								.catch(next);						} else next(null, playlist, null);					},					(playlist, ratings, next) =>						CacheModule.runJob(							"PUB",							{								channel: "playlist.updated",								value: { playlistId }							},							this						)							.then(() => next(null, playlist, ratings))							.catch(next)				],				(err, playlist, ratings) => {					if (err) reject(err);					else resolve({ playlist, ratings });				}			);		});	}	/**	 * Deletes a song from a playlist based on the youtube id	 *	 * @param {object} payload - object that contains the payload	 * @param {string} payload.playlistId - the playlist id	 * @param {string} payload.youtubeId - the youtube id	 * @returns {Promise} - returns promise (reject, resolve)	 */	DELETE_SONG_FROM_PLAYLIST_BY_YOUTUBE_ID(payload) {		return new Promise((resolve, reject) => {			PlaylistsModule.playlistModel.updateOne(				{ _id: payload.playlistId },				{ $pull: { songs: { youtubeId: payload.youtubeId } } },				err => {					if (err) reject(new Error(err));					else {						PlaylistsModule.runJob("UPDATE_PLAYLIST", { playlistId: payload.playlistId }, this)							.then(() => resolve())							.catch(err => {								reject(new Error(err));							});					}				}			);		});	}	/**	 * Fills a genre playlist with songs	 *	 * @param {object} payload - object that contains the payload	 * @param {string} payload.genre - the genre	 * @param {string} payload.createPlaylist - create playlist if it doesn't exist, default false	 * @returns {Promise} - returns promise (reject, resolve)	 */	AUTOFILL_GENRE_PLAYLIST(payload) {		return new Promise((resolve, reject) => {			async.waterfall(				[					next => {						PlaylistsModule.runJob(							"GET_GENRE_PLAYLIST",							{ genre: payload.genre.toLowerCase(), includeSongs: true },							this						)							.then(response => {								next(null, response.playlist._id);							})							.catch(err => {								if (err.message === "Playlist not found") {									if (payload.createPlaylist)										PlaylistsModule.runJob("CREATE_GENRE_PLAYLIST", { genre: payload.genre }, this)											.then(playlistId => {												next(null, playlistId);											})											.catch(err => {												next(err);											});								} else next(err);							});					},					(playlistId, next) => {						SongsModule.runJob("GET_ALL_SONGS_WITH_GENRE", { genre: payload.genre }, this)							.then(response => {								next(null, playlistId, response.songs);							})							.catch(err => {								console.log(err);								next(err);							});					},					(playlistId, _songs, next) => {						const songs = _songs.map(song => {							const { _id, youtubeId, title, artists, thumbnail, duration, verified } = song;							return {								_id,								youtubeId,								title,								artists,								thumbnail,								duration,								verified							};						});						PlaylistsModule.playlistModel.updateOne({ _id: playlistId }, { $set: { songs } }, err => {							next(err, playlistId);						});					},					(playlistId, next) => {						PlaylistsModule.runJob("UPDATE_PLAYLIST", { playlistId }, this)							.then(() => {								next(null, playlistId);							})							.catch(next);					},					(playlistId, next) => {						StationsModule.runJob("GET_STATIONS_THAT_AUTOFILL_OR_BLACKLIST_PLAYLIST", { playlistId }, this)							.then(response => {								async.eachLimit(									response.stationIds,									1,									(stationId, next) => {										PlaylistsModule.runJob("AUTOFILL_STATION_PLAYLIST", { stationId }, this)											.then(() => {												next();											})											.catch(err => {												next(err);											});									},									err => {										if (err) next(err);										else next();									}								);							})							.catch(err => {								next(err);							});					}				],				err => {					if (err && err !== true) return reject(new Error(err));					return resolve({});				}			);		});	}	/**	 * Gets orphaned genre playlists	 *	 * @returns {Promise} - returns promise (reject, resolve)	 */	GET_ORPHANED_GENRE_PLAYLISTS() {		return new Promise((resolve, reject) => {			PlaylistsModule.playlistModel.find({ type: "genre" }, { songs: false }, (err, playlists) => {				if (err) reject(new Error(err));				else {					const orphanedPlaylists = [];					async.eachLimit(						playlists,						1,						(playlist, next) => {							SongsModule.runJob("GET_ALL_SONGS_WITH_GENRE", { genre: playlist.createdFor }, this)								.then(response => {									if (response.songs.length === 0) {										StationsModule.runJob(											"GET_STATIONS_THAT_AUTOFILL_OR_BLACKLIST_PLAYLIST",											{ playlistId: playlist._id },											this										)											.then(response => {												if (response.stationIds.length === 0) orphanedPlaylists.push(playlist);												next();											})											.catch(next);									} else next();								})								.catch(next);						},						err => {							if (err) reject(new Error(err));							else resolve({ playlists: orphanedPlaylists });						}					);				}			});		});	}	/**	 * Deletes all orphaned genre playlists	 *	 * @returns {Promise} - returns promise (reject, resolve)	 */	DELETE_ORPHANED_GENRE_PLAYLISTS() {		return new Promise((resolve, reject) => {			PlaylistsModule.runJob("GET_ORPHANED_GENRE_PLAYLISTS", {}, this)				.then(response => {					async.eachLimit(						response.playlists,						1,						(playlist, next) => {							this.publishProgress({ status: "update", message: `Deleting "${playlist._id}"` });							PlaylistsModule.runJob("DELETE_PLAYLIST", { playlistId: playlist._id }, this)								.then(() => {									this.log("INFO", "Deleting orphaned genre playlist");									next();								})								.catch(err => {									next(err);								});						},						err => {							if (err) reject(new Error(err));							else resolve({});						}					);				})				.catch(err => {					reject(new Error(err));				});		});	}	/**	 * Gets a orphaned station playlists	 *	 * @returns {Promise} - returns promise (reject, resolve)	 */	GET_ORPHANED_STATION_PLAYLISTS() {		return new Promise((resolve, reject) => {			PlaylistsModule.playlistModel.find({ type: "station" }, { songs: false }, (err, playlists) => {				if (err) reject(new Error(err));				else {					const orphanedPlaylists = [];					async.eachLimit(						playlists,						1,						(playlist, next) => {							StationsModule.runJob("GET_STATION", { stationId: playlist.createdFor }, this)								.then(station => {									if (station.playlist !== playlist._id.toString()) {										orphanedPlaylists.push(playlist);									}									next();								})								.catch(err => {									if (err.message === "Station not found") {										orphanedPlaylists.push(playlist);										next();									} else next(err);								});						},						err => {							if (err) reject(new Error(err));							else resolve({ playlists: orphanedPlaylists });						}					);				}			});		});	}	/**	 * Deletes all orphaned station playlists	 *	 * @returns {Promise} - returns promise (reject, resolve)	 */	DELETE_ORPHANED_STATION_PLAYLISTS() {		return new Promise((resolve, reject) => {			PlaylistsModule.runJob("GET_ORPHANED_STATION_PLAYLISTS", {}, this)				.then(response => {					async.eachLimit(						response.playlists,						1,						(playlist, next) => {							this.publishProgress({ status: "update", message: `Deleting "${playlist._id}"` });							PlaylistsModule.runJob("DELETE_PLAYLIST", { playlistId: playlist._id }, this)								.then(() => {									this.log("INFO", "Deleting orphaned station playlist");									next();								})								.catch(err => {									next(err);								});						},						err => {							if (err) reject(new Error(err));							else resolve({});						}					);				})				.catch(err => {					reject(new Error(err));				});		});	}	/**	 * Fills a station playlist with songs	 *	 * @param {object} payload - object that contains the payload	 * @param {string} payload.stationId - the station id	 * @returns {Promise} - returns promise (reject, resolve)	 */	AUTOFILL_STATION_PLAYLIST(payload) {		return new Promise((resolve, reject) => {			let originalPlaylist = null;			async.waterfall(				[					next => {						if (!payload.stationId) next("Please specify a station id");						else next();					},					next => {						StationsModule.runJob("GET_STATION", { stationId: payload.stationId }, this)							.then(station => {								next(null, station);							})							.catch(next);					},					(station, next) => {						PlaylistsModule.runJob("GET_PLAYLIST", { playlistId: station.playlist }, this)							.then(playlist => {								originalPlaylist = playlist;								next(null, station);							})							.catch(err => {								next(err);							});					},					(station, next) => {						const playlists = [];						async.eachLimit(							station.autofill.playlists,							1,							(playlistId, next) => {								PlaylistsModule.runJob("GET_PLAYLIST", { playlistId }, this)									.then(playlist => {										playlists.push(playlist);										next();									})									.catch(next);							},							err => {								next(err, station, playlists);							}						);					},					(station, playlists, next) => {						const blacklist = [];						async.eachLimit(							station.blacklist,							1,							(playlistId, next) => {								PlaylistsModule.runJob("GET_PLAYLIST", { playlistId }, this)									.then(playlist => {										blacklist.push(playlist);										next();									})									.catch(next);							},							err => {								next(err, station, playlists, blacklist);							}						);					},					(station, playlists, blacklist, next) => {						const blacklistedSongs = blacklist							.flatMap(blacklistedPlaylist => blacklistedPlaylist.songs)							.reduce(								(items, item) =>									items.find(x => x.youtubeId === item.youtubeId) ? [...items] : [...items, item],								[]							);						const includedSongs = playlists							.flatMap(playlist => playlist.songs)							.reduce(								(songs, song) =>									songs.find(x => x.youtubeId === song.youtubeId) ? [...songs] : [...songs, song],								[]							)							.filter(song => !blacklistedSongs.find(x => x.youtubeId === song.youtubeId));						next(null, station, includedSongs);					},					(station, includedSongs, next) => {						PlaylistsModule.playlistModel.updateOne(							{ _id: station.playlist },							{ $set: { songs: includedSongs } },							err => {								next(err, includedSongs);							}						);					},					(includedSongs, next) => {						PlaylistsModule.runJob("UPDATE_PLAYLIST", { playlistId: originalPlaylist._id }, this)							.then(() => {								next(null, includedSongs);							})							.catch(next);					},					(includedSongs, next) => {						if (originalPlaylist.songs.length === 0 && includedSongs.length > 0)							StationsModule.runJob("SKIP_STATION", { stationId: payload.stationId, natural: false });						next();					}				],				err => {					if (err && err !== true) return reject(new Error(err));					return resolve({});				}			);		});	}	/**	 * Gets a playlist by id from the cache or Mongo, and if it isn't in the cache yet, adds it the cache	 *	 * @param {object} payload - object that contains the payload	 * @param {string} payload.playlistId - the id of the playlist we are trying to get	 * @returns {Promise} - returns promise (reject, resolve)	 */	GET_PLAYLIST(payload) {		return new Promise((resolve, reject) => {			async.waterfall(				[					next => {						CacheModule.runJob(							"HGET",							{								table: "playlists",								key: payload.playlistId							},							this						)							.then(playlist => next(null, playlist))							.catch(next);					},					(playlist, next) => {						if (playlist)							PlaylistsModule.playlistModel.exists({ _id: payload.playlistId }, (err, exists) => {								if (err) next(err);								else if (exists) next(null, playlist);								else {									CacheModule.runJob(										"HDEL",										{											table: "playlists",											key: payload.playlistId										},										this									)										.then(() => next())										.catch(next);								}							});						else PlaylistsModule.playlistModel.findOne({ _id: payload.playlistId }, next);					},					(playlist, next) => {						if (playlist) {							CacheModule.runJob(								"HSET",								{									table: "playlists",									key: payload.playlistId,									value: playlist								},								this							)								.then(playlist => {									next(null, playlist);								})								.catch(next);						} else next("Playlist not found");					}				],				(err, playlist) => {					if (err && err !== true) return reject(new Error(err));					return resolve(playlist);				}			);		});	}	/**	 * Gets a playlist from id from Mongo and updates the cache with it	 *	 * @param {object} payload - object that contains the payload	 * @param {string} payload.playlistId - the id of the playlist we are trying to update	 * @returns {Promise} - returns promise (reject, resolve)	 */	UPDATE_PLAYLIST(payload) {		return new Promise((resolve, reject) => {			async.waterfall(				[					next => {						PlaylistsModule.playlistModel.findOne({ _id: payload.playlistId }, next);					},					(playlist, next) => {						if (!playlist) {							CacheModule.runJob("HDEL", {								table: "playlists",								key: payload.playlistId							});							return next("Playlist not found");						}						return CacheModule.runJob(							"HSET",							{								table: "playlists",								key: payload.playlistId,								value: playlist							},							this						)							.then(playlist => {								next(null, playlist);							})							.catch(next);					}				],				(err, playlist) => {					if (err && err !== true) return reject(new Error(err));					return resolve(playlist);				}			);		});	}	/**	 * Deletes playlist from id from Mongo and cache	 *	 * @param {object} payload - object that contains the payload	 * @param {string} payload.playlistId - the id of the playlist we are trying to delete	 * @returns {Promise} - returns promise (reject, resolve)	 */	DELETE_PLAYLIST(payload) {		return new Promise((resolve, reject) => {			async.waterfall(				[					next => {						PlaylistsModule.playlistModel.deleteOne({ _id: payload.playlistId }, next);					},					(res, next) => {						CacheModule.runJob(							"HDEL",							{								table: "playlists",								key: payload.playlistId							},							this						)							.then(() => next())							.catch(next);					},					next => {						StationsModule.runJob(							"REMOVE_AUTOFILLED_OR_BLACKLISTED_PLAYLIST_FROM_STATIONS",							{ playlistId: payload.playlistId },							this						)							.then(() => {								next();							})							.catch(err => next(err));					}				],				err => {					if (err && err !== true) return reject(new Error(err));					return resolve();				}			);		});	}	/**	 * Searches through playlists	 *	 * @param {object} payload - object that contains the payload	 * @param {string} payload.query - the query	 * @param {string} payload.includePrivate - include private playlists	 * @param {string} payload.includeStation - include station playlists	 * @param {string} payload.includeUser - include user playlists	 * @param {string} payload.includeGenre - include genre playlists	 * @param {string} payload.includeOwn - include own user playlists	 * @param {string} payload.userId - the user id of the person requesting	 * @param {string} payload.includeSongs - include songs	 * @param {string} payload.page - page (default 1)	 * @returns {Promise} - returns promise (reject, resolve)	 */	SEARCH(payload) {		return new Promise((resolve, reject) => {			async.waterfall(				[					next => {						const types = [];						if (payload.includeStation) types.push("station");						if (payload.includeUser) types.push("user");						if (payload.includeGenre) types.push("genre");						if (types.length === 0 && !payload.includeOwn) return next("No types have been included.");						const privacies = ["public"];						if (payload.includePrivate) privacies.push("private");						const includeObject = payload.includeSongs ? null : { songs: false };						const filterArray = [							{								displayName: new RegExp(`${payload.query}`, "i"),								privacy: { $in: privacies },								type: { $in: types }							}						];						if (payload.includeOwn && payload.userId)							filterArray.push({								displayName: new RegExp(`${payload.query}`, "i"),								type: "user",								createdBy: payload.userId							});						return next(null, filterArray, includeObject);					},					(filterArray, includeObject, next) => {						const page = payload.page ? payload.page : 1;						const pageSize = 15;						const skipAmount = pageSize * (page - 1);						PlaylistsModule.playlistModel.find({ $or: filterArray }).count((err, count) => {							if (err) next(err);							else {								PlaylistsModule.playlistModel									.find({ $or: filterArray }, includeObject)									.skip(skipAmount)									.limit(pageSize)									.exec((err, playlists) => {										if (err) next(err);										else {											next(null, {												playlists,												page,												pageSize,												skipAmount,												count											});										}									});							}						});					},					(data, next) => {						if (data.playlists.length > 0) next(null, data);						else next("No playlists found");					}				],				(err, data) => {					if (err && err !== true) return reject(new Error(err));					return resolve(data);				}			);		});	}	/**	 * Clears and refills a station playlist	 *	 * @param {object} payload - object that contains the payload	 * @param {string} payload.playlistId - the id of the playlist we are trying to clear and refill	 * @returns {Promise} - returns promise (reject, resolve)	 */	CLEAR_AND_REFILL_STATION_PLAYLIST(payload) {		return new Promise((resolve, reject) => {			const { playlistId } = payload;			async.waterfall(				[					next => {						PlaylistsModule.runJob("GET_PLAYLIST", { playlistId }, this)							.then(playlist => {								next(null, playlist);							})							.catch(err => {								next(err);							});					},					(playlist, next) => {						if (playlist.type !== "station") next("This playlist is not a station playlist.");						else next(null, playlist.createdFor);					},					(stationId, next) => {						PlaylistsModule.runJob("AUTOFILL_STATION_PLAYLIST", { stationId }, this)							.then(() => {								next();							})							.catch(err => {								next(err);							});					}				],				err => {					if (err && err !== true) return reject(new Error(err));					return resolve();				}			);		});	}	/**	 * Clears and refills a genre playlist	 *	 * @param {object} payload - object that contains the payload	 * @param {string} payload.playlistId - the id of the playlist we are trying to clear and refill	 * @returns {Promise} - returns promise (reject, resolve)	 */	CLEAR_AND_REFILL_GENRE_PLAYLIST(payload) {		return new Promise((resolve, reject) => {			const { playlistId } = payload;			async.waterfall(				[					next => {						PlaylistsModule.runJob("GET_PLAYLIST", { playlistId }, this)							.then(playlist => {								next(null, playlist);							})							.catch(err => {								next(err);							});					},					(playlist, next) => {						if (playlist.type !== "genre") next("This playlist is not a genre playlist.");						else next(null, playlist.createdFor);					},					(genre, next) => {						PlaylistsModule.runJob("AUTOFILL_GENRE_PLAYLIST", { genre, createPlaylist: true }, this)							.then(() => {								next();							})							.catch(err => {								next(err);							});					}				],				err => {					if (err && err !== true) return reject(new Error(err));					return resolve();				}			);		});	}}export default new _PlaylistsModule();
 |