playlists.js 29 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135
  1. import async from "async";
  2. import { isLoginRequired } from "./hooks";
  3. import db from "../db";
  4. import utils from "../utils";
  5. import songs from "../songs";
  6. import cache from "../cache";
  7. import moduleManager from "../../index";
  8. import playlists from "../playlists";
  9. import activities from "../activities";
  10. cache.runJob("SUB", {
  11. channel: "playlist.create",
  12. cb: playlist => {
  13. utils.runJob("SOCKETS_FROM_USER", { userId: playlist.createdBy }).then(response => {
  14. response.sockets.forEach(socket => {
  15. socket.emit("event:playlist.create", playlist);
  16. });
  17. });
  18. }
  19. });
  20. cache.runJob("SUB", {
  21. channel: "playlist.delete",
  22. cb: res => {
  23. utils.runJob("SOCKETS_FROM_USER", { userId: res.userId }).then(response => {
  24. response.sockets.forEach(socket => {
  25. socket.emit("event:playlist.delete", res.playlistId);
  26. });
  27. });
  28. }
  29. });
  30. cache.runJob("SUB", {
  31. channel: "playlist.moveSongToTop",
  32. cb: res => {
  33. utils.runJob("SOCKETS_FROM_USER", { userId: res.userId }).then(response => {
  34. response.sockets.forEach(socket => {
  35. socket.emit("event:playlist.moveSongToTop", {
  36. playlistId: res.playlistId,
  37. songId: res.songId
  38. });
  39. });
  40. });
  41. }
  42. });
  43. cache.runJob("SUB", {
  44. channel: "playlist.moveSongToBottom",
  45. cb: res => {
  46. utils.runJob("SOCKETS_FROM_USER", { userId: res.userId }).then(response => {
  47. response.sockets.forEach(socket => {
  48. socket.emit("event:playlist.moveSongToBottom", {
  49. playlistId: res.playlistId,
  50. songId: res.songId
  51. });
  52. });
  53. });
  54. }
  55. });
  56. cache.runJob("SUB", {
  57. channel: "playlist.addSong",
  58. cb: res => {
  59. utils.runJob("SOCKETS_FROM_USER", { userId: res.userId }).then(response => {
  60. response.sockets.forEach(socket => {
  61. socket.emit("event:playlist.addSong", {
  62. playlistId: res.playlistId,
  63. song: res.song
  64. });
  65. });
  66. });
  67. }
  68. });
  69. cache.runJob("SUB", {
  70. channel: "playlist.removeSong",
  71. cb: res => {
  72. utils.runJob("SOCKETS_FROM_USER", { userId: res.userId }).then(response => {
  73. response.sockets.forEach(socket => {
  74. socket.emit("event:playlist.removeSong", {
  75. playlistId: res.playlistId,
  76. songId: res.songId
  77. });
  78. });
  79. });
  80. }
  81. });
  82. cache.runJob("SUB", {
  83. channel: "playlist.updateDisplayName",
  84. cb: res => {
  85. utils.runJob("SOCKETS_FROM_USER", { userId: res.userId }).then(response => {
  86. response.sockets.forEach(socket => {
  87. socket.emit("event:playlist.updateDisplayName", {
  88. playlistId: res.playlistId,
  89. displayName: res.displayName
  90. });
  91. });
  92. });
  93. }
  94. });
  95. const lib = {
  96. /**
  97. * Gets the first song from a private playlist
  98. *
  99. * @param {object} session - the session object automatically added by socket.io
  100. * @param {string} playlistId - the id of the playlist we are getting the first song from
  101. * @param {Function} cb - gets called with the result
  102. */
  103. getFirstSong: isLoginRequired((session, playlistId, cb) => {
  104. async.waterfall(
  105. [
  106. next => {
  107. playlists
  108. .runJob("GET_PLAYLIST", { playlistId })
  109. .then(playlist => {
  110. next(null, playlist);
  111. })
  112. .catch(next);
  113. },
  114. (playlist, next) => {
  115. if (!playlist || playlist.createdBy !== session.userId) return next("Playlist not found.");
  116. return next(null, playlist.songs[0]);
  117. }
  118. ],
  119. async (err, song) => {
  120. if (err) {
  121. err = await utils.runJob("GET_ERROR", { error: err });
  122. console.log(
  123. "ERROR",
  124. "PLAYLIST_GET_FIRST_SONG",
  125. `Getting the first song of playlist "${playlistId}" failed for user "${session.userId}". "${err}"`
  126. );
  127. return cb({ status: "failure", message: err });
  128. }
  129. console.log(
  130. "SUCCESS",
  131. "PLAYLIST_GET_FIRST_SONG",
  132. `Successfully got the first song of playlist "${playlistId}" for user "${session.userId}".`
  133. );
  134. return cb({
  135. status: "success",
  136. song
  137. });
  138. }
  139. );
  140. }),
  141. /**
  142. * Gets all playlists for the user requesting it
  143. *
  144. * @param {object} session - the session object automatically added by socket.io
  145. * @param {Function} cb - gets called with the result
  146. */
  147. indexForUser: isLoginRequired(async (session, cb) => {
  148. const playlistModel = await db.runJob("GET_MODEL", {
  149. modelName: "playlist"
  150. });
  151. async.waterfall(
  152. [
  153. next => {
  154. playlistModel.find({ createdBy: session.userId }, next);
  155. }
  156. ],
  157. async (err, playlists) => {
  158. if (err) {
  159. err = await utils.runJob("GET_ERROR", { error: err });
  160. console.log(
  161. "ERROR",
  162. "PLAYLIST_INDEX_FOR_USER",
  163. `Indexing playlists for user "${session.userId}" failed. "${err}"`
  164. );
  165. return cb({ status: "failure", message: err });
  166. }
  167. console.log(
  168. "SUCCESS",
  169. "PLAYLIST_INDEX_FOR_USER",
  170. `Successfully indexed playlists for user "${session.userId}".`
  171. );
  172. return cb({
  173. status: "success",
  174. data: playlists
  175. });
  176. }
  177. );
  178. }),
  179. /**
  180. * Creates a new private playlist
  181. *
  182. * @param {object} session - the session object automatically added by socket.io
  183. * @param {object} data - the data for the new private playlist
  184. * @param {Function} cb - gets called with the result
  185. */
  186. create: isLoginRequired(async (session, data, cb) => {
  187. const playlistModel = await db.runJob("GET_MODEL", {
  188. modelName: "playlist"
  189. });
  190. async.waterfall(
  191. [
  192. next => (data ? next() : cb({ status: "failure", message: "Invalid data" })),
  193. next => {
  194. const { displayName, songs } = data;
  195. playlistModel.create(
  196. {
  197. displayName,
  198. songs,
  199. createdBy: session.userId,
  200. createdAt: Date.now()
  201. },
  202. next
  203. );
  204. }
  205. ],
  206. async (err, playlist) => {
  207. if (err) {
  208. err = await utils.runJob("GET_ERROR", { error: err });
  209. console.log(
  210. "ERROR",
  211. "PLAYLIST_CREATE",
  212. `Creating private playlist failed for user "${session.userId}". "${err}"`
  213. );
  214. return cb({ status: "failure", message: err });
  215. }
  216. cache.runJob("PUB", {
  217. channel: "playlist.create",
  218. value: playlist
  219. });
  220. activities.runJob("ADD_ACTIVITY", {
  221. userId: session.userId,
  222. activityType: "created_playlist",
  223. payload: [playlist._id]
  224. });
  225. console.log(
  226. "SUCCESS",
  227. "PLAYLIST_CREATE",
  228. `Successfully created private playlist for user "${session.userId}".`
  229. );
  230. return cb({
  231. status: "success",
  232. message: "Successfully created playlist",
  233. data: {
  234. _id: playlist._id
  235. }
  236. });
  237. }
  238. );
  239. }),
  240. /**
  241. * Gets a playlist from id
  242. *
  243. * @param {object} session - the session object automatically added by socket.io
  244. * @param {string} playlistId - the id of the playlist we are getting
  245. * @param {Function} cb - gets called with the result
  246. */
  247. getPlaylist: isLoginRequired((session, playlistId, cb) => {
  248. async.waterfall(
  249. [
  250. next => {
  251. playlists
  252. .runJob("GET_PLAYLIST", { playlistId })
  253. .then(playlist => {
  254. next(null, playlist);
  255. })
  256. .catch(next);
  257. },
  258. (playlist, next) => {
  259. if (!playlist || playlist.createdBy !== session.userId) return next("Playlist not found");
  260. return next(null, playlist);
  261. }
  262. ],
  263. async (err, playlist) => {
  264. if (err) {
  265. err = await utils.runJob("GET_ERROR", { error: err });
  266. console.log(
  267. "ERROR",
  268. "PLAYLIST_GET",
  269. `Getting private playlist "${playlistId}" failed for user "${session.userId}". "${err}"`
  270. );
  271. return cb({ status: "failure", message: err });
  272. }
  273. console.log(
  274. "SUCCESS",
  275. "PLAYLIST_GET",
  276. `Successfully got private playlist "${playlistId}" for user "${session.userId}".`
  277. );
  278. return cb({
  279. status: "success",
  280. data: playlist
  281. });
  282. }
  283. );
  284. }),
  285. /**
  286. * Obtains basic metadata of a playlist in order to format an activity
  287. *
  288. * @param {object} session - the session object automatically added by socket.io
  289. * @param {string} playlistId - the playlist id
  290. * @param {Function} cb - callback
  291. */
  292. getPlaylistForActivity: (session, playlistId, cb) => {
  293. async.waterfall(
  294. [
  295. next => {
  296. playlists
  297. .runJob("GET_PLAYLIST", { playlistId })
  298. .then(playlist => {
  299. next(null, playlist);
  300. })
  301. .catch(next);
  302. }
  303. ],
  304. async (err, playlist) => {
  305. if (err) {
  306. err = await utils.runJob("GET_ERROR", { error: err });
  307. console.log(
  308. "ERROR",
  309. "PLAYLISTS_GET_PLAYLIST_FOR_ACTIVITY",
  310. `Failed to obtain metadata of playlist ${playlistId} for activity formatting. "${err}"`
  311. );
  312. return cb({ status: "failure", message: err });
  313. }
  314. console.log(
  315. "SUCCESS",
  316. "PLAYLISTS_GET_PLAYLIST_FOR_ACTIVITY",
  317. `Obtained metadata of playlist ${playlistId} for activity formatting successfully.`
  318. );
  319. return cb({
  320. status: "success",
  321. data: {
  322. title: playlist.displayName
  323. }
  324. });
  325. }
  326. );
  327. },
  328. // TODO Remove this
  329. /**
  330. * Updates a private playlist
  331. *
  332. * @param {object} session - the session object automatically added by socket.io
  333. * @param {string} playlistId - the id of the playlist we are updating
  334. * @param {object} playlist - the new private playlist object
  335. * @param {Function} cb - gets called with the result
  336. */
  337. update: isLoginRequired(async (session, playlistId, playlist, cb) => {
  338. const playlistModel = await db.runJob("GET_MODEL", {
  339. modelName: "playlist"
  340. });
  341. async.waterfall(
  342. [
  343. next => {
  344. playlistModel.updateOne(
  345. { _id: playlistId, createdBy: session.userId },
  346. playlist,
  347. { runValidators: true },
  348. next
  349. );
  350. },
  351. (res, next) => {
  352. playlists
  353. .runJob("UPDATE_PLAYLIST", { playlistId })
  354. .then(playlist => {
  355. next(null, playlist);
  356. })
  357. .catch(next);
  358. }
  359. ],
  360. async (err, playlist) => {
  361. if (err) {
  362. err = await utils.runJob("GET_ERROR", { error: err });
  363. console.log(
  364. "ERROR",
  365. "PLAYLIST_UPDATE",
  366. `Updating private playlist "${playlistId}" failed for user "${session.userId}". "${err}"`
  367. );
  368. return cb({ status: "failure", message: err });
  369. }
  370. console.log(
  371. "SUCCESS",
  372. "PLAYLIST_UPDATE",
  373. `Successfully updated private playlist "${playlistId}" for user "${session.userId}".`
  374. );
  375. return cb({
  376. status: "success",
  377. data: playlist
  378. });
  379. }
  380. );
  381. }),
  382. /**
  383. * Updates a private playlist
  384. *
  385. * @param {object} session - the session object automatically added by socket.io
  386. * @param {string} playlistId - the id of the playlist we are updating
  387. * @param {Function} cb - gets called with the result
  388. */
  389. shuffle: isLoginRequired(async (session, playlistId, cb) => {
  390. const playlistModel = await db.runJob("GET_MODEL", {
  391. modelName: "playlist"
  392. });
  393. async.waterfall(
  394. [
  395. next => {
  396. if (!playlistId) return next("No playlist id.");
  397. return playlistModel.findById(playlistId, next);
  398. },
  399. (playlist, next) => {
  400. utils
  401. .runJob("SHUFFLE", { array: playlist.songs })
  402. .then(result => {
  403. next(null, result.array);
  404. })
  405. .catch(next);
  406. },
  407. (songs, next) => {
  408. playlistModel.updateOne({ _id: playlistId }, { $set: { songs } }, { runValidators: true }, next);
  409. },
  410. (res, next) => {
  411. playlists
  412. .runJob("UPDATE_PLAYLIST", { playlistId })
  413. .then(playlist => {
  414. next(null, playlist);
  415. })
  416. .catch(next);
  417. }
  418. ],
  419. async (err, playlist) => {
  420. if (err) {
  421. err = await utils.runJob("GET_ERROR", { error: err });
  422. console.log(
  423. "ERROR",
  424. "PLAYLIST_SHUFFLE",
  425. `Updating private playlist "${playlistId}" failed for user "${session.userId}". "${err}"`
  426. );
  427. return cb({ status: "failure", message: err });
  428. }
  429. console.log(
  430. "SUCCESS",
  431. "PLAYLIST_SHUFFLE",
  432. `Successfully updated private playlist "${playlistId}" for user "${session.userId}".`
  433. );
  434. return cb({
  435. status: "success",
  436. message: "Successfully shuffled playlist.",
  437. data: playlist
  438. });
  439. }
  440. );
  441. }),
  442. /**
  443. * Adds a song to a private playlist
  444. *
  445. * @param {object} session - the session object automatically added by socket.io
  446. * @param {boolean} isSet - is the song part of a set of songs to be added
  447. * @param {string} songId - the id of the song we are trying to add
  448. * @param {string} playlistId - the id of the playlist we are adding the song to
  449. * @param {Function} cb - gets called with the result
  450. */
  451. addSongToPlaylist: isLoginRequired(async (session, isSet, songId, playlistId, cb) => {
  452. const playlistModel = await db.runJob("GET_MODEL", {
  453. modelName: "playlist"
  454. });
  455. async.waterfall(
  456. [
  457. next => {
  458. playlists
  459. .runJob("GET_PLAYLIST", { playlistId })
  460. .then(playlist => {
  461. if (!playlist || playlist.createdBy !== session.userId)
  462. return next("Something went wrong when trying to get the playlist");
  463. return async.each(
  464. playlist.songs,
  465. (song, next) => {
  466. if (song.songId === songId) return next("That song is already in the playlist");
  467. return next();
  468. },
  469. next
  470. );
  471. })
  472. .catch(next);
  473. },
  474. next => {
  475. songs
  476. .runJob("GET_SONG", { id: songId })
  477. .then(response => {
  478. const { song } = response;
  479. next(null, {
  480. _id: song._id,
  481. songId,
  482. title: song.title,
  483. duration: song.duration
  484. });
  485. })
  486. .catch(() => {
  487. utils
  488. .runJob("GET_SONG_FROM_YOUTUBE", { songId })
  489. .then(response => next(null, response.song))
  490. .catch(next);
  491. });
  492. },
  493. (newSong, next) => {
  494. playlistModel.updateOne(
  495. { _id: playlistId },
  496. { $push: { songs: newSong } },
  497. { runValidators: true },
  498. err => {
  499. if (err) return next(err);
  500. return playlists
  501. .runJob("UPDATE_PLAYLIST", { playlistId })
  502. .then(playlist => next(null, playlist, newSong))
  503. .catch(next);
  504. }
  505. );
  506. }
  507. ],
  508. async (err, playlist, newSong) => {
  509. if (err) {
  510. err = await utils.runJob("GET_ERROR", { error: err });
  511. console.log(
  512. "ERROR",
  513. "PLAYLIST_ADD_SONG",
  514. `Adding song "${songId}" to private playlist "${playlistId}" failed for user "${session.userId}". "${err}"`
  515. );
  516. return cb({ status: "failure", message: err });
  517. }
  518. console.log(
  519. "SUCCESS",
  520. "PLAYLIST_ADD_SONG",
  521. `Successfully added song "${songId}" to private playlist "${playlistId}" for user "${session.userId}".`
  522. );
  523. if (!isSet)
  524. activities.runJob("ADD_ACTIVITY", {
  525. userId: session.userId,
  526. activityType: "added_song_to_playlist",
  527. payload: [{ songId, playlistId }]
  528. });
  529. cache.runJob("PUB", {
  530. channel: "playlist.addSong",
  531. value: {
  532. playlistId: playlist._id,
  533. song: newSong,
  534. userId: session.userId
  535. }
  536. });
  537. return cb({
  538. status: "success",
  539. message: "Song has been successfully added to the playlist",
  540. data: playlist.songs
  541. });
  542. }
  543. );
  544. }),
  545. /**
  546. * Adds a set of songs to a private playlist
  547. *
  548. * @param {object} session - the session object automatically added by socket.io
  549. * @param {string} url - the url of the the YouTube playlist
  550. * @param {string} playlistId - the id of the playlist we are adding the set of songs to
  551. * @param {boolean} musicOnly - whether to only add music to the playlist
  552. * @param {Function} cb - gets called with the result
  553. */
  554. addSetToPlaylist: isLoginRequired((session, url, playlistId, musicOnly, cb) => {
  555. let videosInPlaylistTotal = 0;
  556. let songsInPlaylistTotal = 0;
  557. let songsSuccess = 0;
  558. let songsFail = 0;
  559. const addedSongs = [];
  560. async.waterfall(
  561. [
  562. next => {
  563. utils
  564. .runJob("GET_PLAYLIST_FROM_YOUTUBE", {
  565. url,
  566. musicOnly
  567. })
  568. .then(response => {
  569. if (response.filteredSongs) {
  570. videosInPlaylistTotal = response.songs.length;
  571. songsInPlaylistTotal = response.filteredSongs.length;
  572. } else {
  573. songsInPlaylistTotal = videosInPlaylistTotal = response.songs.length;
  574. }
  575. next(null, response.songs);
  576. });
  577. },
  578. (songIds, next) => {
  579. let processed = 0;
  580. /**
  581. *
  582. */
  583. function checkDone() {
  584. if (processed === songIds.length) next();
  585. }
  586. for (let s = 0; s < songIds.length; s += 1) {
  587. // eslint-disable-next-line no-loop-func
  588. lib.addSongToPlaylist(session, true, songIds[s], playlistId, res => {
  589. processed += 1;
  590. if (res.status === "success") {
  591. addedSongs.push(songIds[s]);
  592. songsSuccess += 1;
  593. } else songsFail += 1;
  594. checkDone();
  595. });
  596. }
  597. },
  598. next => {
  599. playlists
  600. .runJob("GET_PLAYLIST", { playlistId })
  601. .then(playlist => {
  602. next(null, playlist);
  603. })
  604. .catch(next);
  605. },
  606. (playlist, next) => {
  607. if (!playlist || playlist.createdBy !== session.userId) return next("Playlist not found.");
  608. return next(null, playlist);
  609. }
  610. ],
  611. async (err, playlist) => {
  612. if (err) {
  613. err = await utils.runJob("GET_ERROR", { error: err });
  614. console.log(
  615. "ERROR",
  616. "PLAYLIST_IMPORT",
  617. `Importing a YouTube playlist to private playlist "${playlistId}" failed for user "${session.userId}". "${err}"`
  618. );
  619. return cb({ status: "failure", message: err });
  620. }
  621. activities.runJob("ADD_ACTIVITY", {
  622. userId: session.userId,
  623. activityType: "added_songs_to_playlist",
  624. payload: addedSongs
  625. });
  626. console.log(
  627. "SUCCESS",
  628. "PLAYLIST_IMPORT",
  629. `Successfully imported a YouTube playlist to private playlist "${playlistId}" for user "${session.userId}". Videos in playlist: ${videosInPlaylistTotal}, songs in playlist: ${songsInPlaylistTotal}, songs successfully added: ${songsSuccess}, songs failed: ${songsFail}.`
  630. );
  631. return cb({
  632. status: "success",
  633. message: "Playlist has been successfully imported.",
  634. data: playlist.songs,
  635. stats: {
  636. videosInPlaylistTotal,
  637. songsInPlaylistTotal,
  638. songsAddedSuccessfully: songsSuccess,
  639. songsFailedToAdd: songsFail
  640. }
  641. });
  642. }
  643. );
  644. }),
  645. /**
  646. * Removes a song from a private playlist
  647. *
  648. * @param {object} session - the session object automatically added by socket.io
  649. * @param {string} songId - the id of the song we are removing from the private playlist
  650. * @param {string} playlistId - the id of the playlist we are removing the song from
  651. * @param {Function} cb - gets called with the result
  652. */
  653. removeSongFromPlaylist: isLoginRequired(async (session, songId, playlistId, cb) => {
  654. const playlistModel = await db.runJob("GET_MODEL", {
  655. modelName: "playlist"
  656. });
  657. async.waterfall(
  658. [
  659. next => {
  660. if (!songId || typeof songId !== "string") return next("Invalid song id.");
  661. if (!playlistId || typeof playlistId !== "string") return next("Invalid playlist id.");
  662. return next();
  663. },
  664. next => {
  665. playlists
  666. .runJob("GET_PLAYLIST", { playlistId })
  667. .then(playlist => {
  668. next(null, playlist);
  669. })
  670. .catch(next);
  671. },
  672. (playlist, next) => {
  673. if (!playlist || playlist.createdBy !== session.userId) return next("Playlist not found");
  674. return playlistModel.updateOne({ _id: playlistId }, { $pull: { songs: { songId } } }, next);
  675. },
  676. (res, next) => {
  677. playlists
  678. .runJob("UPDATE_PLAYLIST", { playlistId })
  679. .then(playlist => {
  680. next(null, playlist);
  681. })
  682. .catch(next);
  683. }
  684. ],
  685. async (err, playlist) => {
  686. if (err) {
  687. err = await utils.runJob("GET_ERROR", { error: err });
  688. console.log(
  689. "ERROR",
  690. "PLAYLIST_REMOVE_SONG",
  691. `Removing song "${songId}" from private playlist "${playlistId}" failed for user "${session.userId}". "${err}"`
  692. );
  693. return cb({ status: "failure", message: err });
  694. }
  695. console.log(
  696. "SUCCESS",
  697. "PLAYLIST_REMOVE_SONG",
  698. `Successfully removed song "${songId}" from private playlist "${playlistId}" for user "${session.userId}".`
  699. );
  700. cache.runJob("PUB", {
  701. channel: "playlist.removeSong",
  702. value: {
  703. playlistId: playlist._id,
  704. songId,
  705. userId: session.userId
  706. }
  707. });
  708. return cb({
  709. status: "success",
  710. message: "Song has been successfully removed from playlist",
  711. data: playlist.songs
  712. });
  713. }
  714. );
  715. }),
  716. /**
  717. * Updates the displayName of a private playlist
  718. *
  719. * @param {object} session - the session object automatically added by socket.io
  720. * @param {string} playlistId - the id of the playlist we are updating the displayName for
  721. * @param {Function} cb - gets called with the result
  722. */
  723. updateDisplayName: isLoginRequired(async (session, playlistId, displayName, cb) => {
  724. const playlistModel = await db.runJob("GET_MODEL", {
  725. modelName: "playlist"
  726. });
  727. async.waterfall(
  728. [
  729. next => {
  730. playlistModel.updateOne(
  731. { _id: playlistId, createdBy: session.userId },
  732. { $set: { displayName } },
  733. { runValidators: true },
  734. next
  735. );
  736. },
  737. (res, next) => {
  738. playlists
  739. .runJob("UPDATE_PLAYLIST", { playlistId })
  740. .then(playlist => {
  741. next(null, playlist);
  742. })
  743. .catch(next);
  744. }
  745. ],
  746. async err => {
  747. if (err) {
  748. err = await utils.runJob("GET_ERROR", { error: err });
  749. console.log(
  750. "ERROR",
  751. "PLAYLIST_UPDATE_DISPLAY_NAME",
  752. `Updating display name to "${displayName}" for private playlist "${playlistId}" failed for user "${session.userId}". "${err}"`
  753. );
  754. return cb({ status: "failure", message: err });
  755. }
  756. console.log(
  757. "SUCCESS",
  758. "PLAYLIST_UPDATE_DISPLAY_NAME",
  759. `Successfully updated display name to "${displayName}" for private playlist "${playlistId}" for user "${session.userId}".`
  760. );
  761. cache.runJob("PUB", {
  762. channel: "playlist.updateDisplayName",
  763. value: {
  764. playlistId,
  765. displayName,
  766. userId: session.userId
  767. }
  768. });
  769. return cb({
  770. status: "success",
  771. message: "Playlist has been successfully updated"
  772. });
  773. }
  774. );
  775. }),
  776. /**
  777. * Moves a song to the top of the list in a private playlist
  778. *
  779. * @param {object} session - the session object automatically added by socket.io
  780. * @param {string} playlistId - the id of the playlist we are moving the song to the top from
  781. * @param {string} songId - the id of the song we are moving to the top of the list
  782. * @param {Function} cb - gets called with the result
  783. */
  784. moveSongToTop: isLoginRequired(async (session, playlistId, songId, cb) => {
  785. const playlistModel = await db.runJob("GET_MODEL", {
  786. modelName: "playlist"
  787. });
  788. async.waterfall(
  789. [
  790. next => {
  791. playlists
  792. .runJob("GET_PLAYLIST", { playlistId })
  793. .then(playlist => {
  794. next(null, playlist);
  795. })
  796. .catch(next);
  797. },
  798. (playlist, next) => {
  799. if (!playlist || playlist.createdBy !== session.userId) return next("Playlist not found");
  800. return async.each(
  801. playlist.songs,
  802. (song, next) => {
  803. if (song.songId === songId) return next(song);
  804. return next();
  805. },
  806. err => {
  807. if (err && err.songId) return next(null, err);
  808. return next("Song not found");
  809. }
  810. );
  811. },
  812. (song, next) => {
  813. playlistModel.updateOne({ _id: playlistId }, { $pull: { songs: { songId } } }, err => {
  814. if (err) return next(err);
  815. return next(null, song);
  816. });
  817. },
  818. (song, next) => {
  819. playlistModel.updateOne(
  820. { _id: playlistId },
  821. {
  822. $push: {
  823. songs: {
  824. $each: [song],
  825. $position: 0
  826. }
  827. }
  828. },
  829. next
  830. );
  831. },
  832. (res, next) => {
  833. playlists
  834. .runJob("UPDATE_PLAYLIST", { playlistId })
  835. .then(playlist => {
  836. next(null, playlist);
  837. })
  838. .catch(next);
  839. }
  840. ],
  841. async err => {
  842. if (err) {
  843. err = await utils.runJob("GET_ERROR", { error: err });
  844. console.log(
  845. "ERROR",
  846. "PLAYLIST_MOVE_SONG_TO_TOP",
  847. `Moving song "${songId}" to the top for private playlist "${playlistId}" failed for user "${session.userId}". "${err}"`
  848. );
  849. return cb({ status: "failure", message: err });
  850. }
  851. console.log(
  852. "SUCCESS",
  853. "PLAYLIST_MOVE_SONG_TO_TOP",
  854. `Successfully moved song "${songId}" to the top for private playlist "${playlistId}" for user "${session.userId}".`
  855. );
  856. cache.runJob("PUB", {
  857. channel: "playlist.moveSongToTop",
  858. value: {
  859. playlistId,
  860. songId,
  861. userId: session.userId
  862. }
  863. });
  864. return cb({
  865. status: "success",
  866. message: "Playlist has been successfully updated"
  867. });
  868. }
  869. );
  870. }),
  871. /**
  872. * Moves a song to the bottom of the list in a private playlist
  873. *
  874. * @param {object} session - the session object automatically added by socket.io
  875. * @param {string} playlistId - the id of the playlist we are moving the song to the bottom from
  876. * @param {string} songId - the id of the song we are moving to the bottom of the list
  877. * @param {Function} cb - gets called with the result
  878. */
  879. moveSongToBottom: isLoginRequired(async (session, playlistId, songId, cb) => {
  880. const playlistModel = await db.runJob("GET_MODEL", {
  881. modelName: "playlist"
  882. });
  883. async.waterfall(
  884. [
  885. next => {
  886. playlists
  887. .runJob("GET_PLAYLIST", { playlistId })
  888. .then(playlist => {
  889. next(null, playlist);
  890. })
  891. .catch(next);
  892. },
  893. (playlist, next) => {
  894. if (!playlist || playlist.createdBy !== session.userId) return next("Playlist not found");
  895. return async.each(
  896. playlist.songs,
  897. (song, next) => {
  898. if (song.songId === songId) return next(song);
  899. return next();
  900. },
  901. err => {
  902. if (err && err.songId) return next(null, err);
  903. return next("Song not found");
  904. }
  905. );
  906. },
  907. (song, next) => {
  908. playlistModel.updateOne({ _id: playlistId }, { $pull: { songs: { songId } } }, err => {
  909. if (err) return next(err);
  910. return next(null, song);
  911. });
  912. },
  913. (song, next) => {
  914. playlistModel.updateOne(
  915. { _id: playlistId },
  916. {
  917. $push: {
  918. songs: song
  919. }
  920. },
  921. next
  922. );
  923. },
  924. (res, next) => {
  925. playlists
  926. .runJob("UPDATE_PLAYLIST", { playlistId })
  927. .then(playlist => {
  928. next(null, playlist);
  929. })
  930. .catch(next);
  931. }
  932. ],
  933. async err => {
  934. if (err) {
  935. err = await utils.runJob("GET_ERROR", { error: err });
  936. console.log(
  937. "ERROR",
  938. "PLAYLIST_MOVE_SONG_TO_BOTTOM",
  939. `Moving song "${songId}" to the bottom for private playlist "${playlistId}" failed for user "${session.userId}". "${err}"`
  940. );
  941. return cb({ status: "failure", message: err });
  942. }
  943. console.log(
  944. "SUCCESS",
  945. "PLAYLIST_MOVE_SONG_TO_BOTTOM",
  946. `Successfully moved song "${songId}" to the bottom for private playlist "${playlistId}" for user "${session.userId}".`
  947. );
  948. cache.runJob("PUB", {
  949. channel: "playlist.moveSongToBottom",
  950. value: {
  951. playlistId,
  952. songId,
  953. userId: session.userId
  954. }
  955. });
  956. return cb({
  957. status: "success",
  958. message: "Playlist has been successfully updated"
  959. });
  960. }
  961. );
  962. }),
  963. /**
  964. * Removes a private playlist
  965. *
  966. * @param {object} session - the session object automatically added by socket.io
  967. * @param {string} playlistId - the id of the playlist we are moving the song to the top from
  968. * @param {Function} cb - gets called with the result
  969. */
  970. remove: isLoginRequired(async (session, playlistId, cb) => {
  971. const stationModel = await db.runJob("GET_MODEL", {
  972. modelName: "station"
  973. });
  974. async.waterfall(
  975. [
  976. next => {
  977. playlists.runJob("DELETE_PLAYLIST", { playlistId }).then(next).catch(next);
  978. },
  979. next => {
  980. stationModel.find({ privatePlaylist: playlistId }, (err, res) => {
  981. next(err, res);
  982. });
  983. },
  984. (stations, next) => {
  985. async.each(
  986. stations,
  987. (station, next) => {
  988. async.waterfall(
  989. [
  990. next => {
  991. stationModel.updateOne(
  992. { _id: station._id },
  993. { $set: { privatePlaylist: null } },
  994. { runValidators: true },
  995. next
  996. );
  997. },
  998. (res, next) => {
  999. if (!station.partyMode) {
  1000. moduleManager.modules.stations
  1001. .runJob("UPDATE_STATION", {
  1002. stationId: station._id
  1003. })
  1004. .then(station => next(null, station))
  1005. .catch(next);
  1006. cache.runJob("PUB", {
  1007. channel: "privatePlaylist.selected",
  1008. value: {
  1009. playlistId: null,
  1010. stationId: station._id
  1011. }
  1012. });
  1013. } else next();
  1014. }
  1015. ],
  1016. () => {
  1017. next();
  1018. }
  1019. );
  1020. },
  1021. () => {
  1022. next();
  1023. }
  1024. );
  1025. }
  1026. ],
  1027. async err => {
  1028. if (err) {
  1029. err = await utils.runJob("GET_ERROR", { error: err });
  1030. console.log(
  1031. "ERROR",
  1032. "PLAYLIST_REMOVE",
  1033. `Removing private playlist "${playlistId}" failed for user "${session.userId}". "${err}"`
  1034. );
  1035. return cb({ status: "failure", message: err });
  1036. }
  1037. console.log(
  1038. "SUCCESS",
  1039. "PLAYLIST_REMOVE",
  1040. `Successfully removed private playlist "${playlistId}" for user "${session.userId}".`
  1041. );
  1042. cache.runJob("PUB", {
  1043. channel: "playlist.delete",
  1044. value: {
  1045. userId: session.userId,
  1046. playlistId
  1047. }
  1048. });
  1049. activities.runJob("ADD_ACTIVITY", {
  1050. userId: session.userId,
  1051. activityType: "deleted_playlist",
  1052. payload: [playlistId]
  1053. });
  1054. return cb({
  1055. status: "success",
  1056. message: "Playlist successfully removed"
  1057. });
  1058. }
  1059. );
  1060. })
  1061. };
  1062. export default lib;