1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144 |
- import async from "async";
- import CoreClass from "../core";
- let PlaylistsModule;
- let StationsModule;
- let SongsModule;
- let CacheModule;
- let DBModule;
- let UtilsModule;
- 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;
- this.playlistModel = await DBModule.runJob("GET_MODEL", { modelName: "playlist" });
- this.playlistSchemaCache = await CacheModule.runJob("GET_SCHEMA", { schemaName: "playlist" });
- 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.song - the song
- * @returns {Promise} - returns promise (reject, resolve)
- */
- ADD_SONG_TO_PLAYLIST(payload) {
- return new Promise((resolve, reject) => {
- const { _id, youtubeId, title, artists, thumbnail, duration, verified } = payload.song;
- const trimmedSong = {
- _id,
- youtubeId,
- title,
- artists,
- thumbnail,
- duration,
- verified
- };
- PlaylistsModule.playlistModel.updateOne(
- { _id: payload.playlistId },
- { $push: { songs: trimmedSong } },
- { runValidators: true },
- err => {
- if (err) reject(new Error(err));
- else {
- PlaylistsModule.runJob("UPDATE_PLAYLIST", { playlistId: payload.playlistId }, this)
- .then(() => resolve())
- .catch(err => {
- reject(new Error(err));
- });
- }
- }
- );
- });
- }
- /**
- * 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_INCLUDE_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_INCLUDE_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) => {
- 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) => {
- 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 includedPlaylists = [];
- async.eachLimit(
- station.includedPlaylists,
- 1,
- (playlistId, next) => {
- PlaylistsModule.runJob("GET_PLAYLIST", { playlistId }, this)
- .then(playlist => {
- includedPlaylists.push(playlist);
- next();
- })
- .catch(next);
- },
- err => {
- next(err, station, includedPlaylists);
- }
- );
- },
- (station, includedPlaylists, 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, includedPlaylists, blacklist);
- }
- );
- },
- (station, includedPlaylists, blacklist, next) => {
- const blacklistedSongs = blacklist
- .flatMap(blacklistedPlaylist => blacklistedPlaylist.songs)
- .reduce(
- (items, item) =>
- items.find(x => x.youtubeId === item.youtubeId) ? [...items] : [...items, item],
- []
- );
- const includedSongs = includedPlaylists
- .flatMap(includedPlaylist => includedPlaylist.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_INCLUDED_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();
|