songs.js 36 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405
  1. import async from "async";
  2. import { isAdminRequired, isLoginRequired } from "./hooks";
  3. import moduleManager from "../../index";
  4. const DBModule = moduleManager.modules.db;
  5. const UtilsModule = moduleManager.modules.utils;
  6. const WSModule = moduleManager.modules.ws;
  7. const CacheModule = moduleManager.modules.cache;
  8. const SongsModule = moduleManager.modules.songs;
  9. const ActivitiesModule = moduleManager.modules.activities;
  10. const YouTubeModule = moduleManager.modules.youtube;
  11. const PlaylistsModule = moduleManager.modules.playlists;
  12. CacheModule.runJob("SUB", {
  13. channel: "song.updated",
  14. cb: async data => {
  15. const songModel = await DBModule.runJob("GET_MODEL", {
  16. modelName: "song"
  17. });
  18. songModel.findOne({ _id: data.songId }, (err, song) => {
  19. WSModule.runJob("EMIT_TO_ROOMS", {
  20. rooms: [
  21. "import-album",
  22. "admin.songs",
  23. "admin.unverifiedSongs",
  24. "admin.hiddenSongs",
  25. `edit-song.${data.songId}`
  26. ],
  27. args: ["event:admin.song.updated", { data: { song, oldStatus: data.oldStatus } }]
  28. });
  29. });
  30. }
  31. });
  32. CacheModule.runJob("SUB", {
  33. channel: "song.like",
  34. cb: data => {
  35. WSModule.runJob("EMIT_TO_ROOM", {
  36. room: `song.${data.youtubeId}`,
  37. args: [
  38. "event:song.liked",
  39. {
  40. data: { youtubeId: data.youtubeId, likes: data.likes, dislikes: data.dislikes }
  41. }
  42. ]
  43. });
  44. WSModule.runJob("SOCKETS_FROM_USER", { userId: data.userId }).then(sockets => {
  45. sockets.forEach(socket => {
  46. socket.dispatch("event:song.ratings.updated", {
  47. data: {
  48. youtubeId: data.youtubeId,
  49. liked: true,
  50. disliked: false
  51. }
  52. });
  53. });
  54. });
  55. }
  56. });
  57. CacheModule.runJob("SUB", {
  58. channel: "song.dislike",
  59. cb: data => {
  60. WSModule.runJob("EMIT_TO_ROOM", {
  61. room: `song.${data.youtubeId}`,
  62. args: [
  63. "event:song.disliked",
  64. {
  65. data: { youtubeId: data.youtubeId, likes: data.likes, dislikes: data.dislikes }
  66. }
  67. ]
  68. });
  69. WSModule.runJob("SOCKETS_FROM_USER", { userId: data.userId }).then(sockets => {
  70. sockets.forEach(socket => {
  71. socket.dispatch("event:song.ratings.updated", {
  72. data: {
  73. youtubeId: data.youtubeId,
  74. liked: false,
  75. disliked: true
  76. }
  77. });
  78. });
  79. });
  80. }
  81. });
  82. CacheModule.runJob("SUB", {
  83. channel: "song.unlike",
  84. cb: data => {
  85. WSModule.runJob("EMIT_TO_ROOM", {
  86. room: `song.${data.youtubeId}`,
  87. args: [
  88. "event:song.unliked",
  89. {
  90. data: { youtubeId: data.youtubeId, likes: data.likes, dislikes: data.dislikes }
  91. }
  92. ]
  93. });
  94. WSModule.runJob("SOCKETS_FROM_USER", { userId: data.userId }).then(sockets => {
  95. sockets.forEach(socket => {
  96. socket.dispatch("event:song.ratings.updated", {
  97. data: {
  98. youtubeId: data.youtubeId,
  99. liked: false,
  100. disliked: false
  101. }
  102. });
  103. });
  104. });
  105. }
  106. });
  107. CacheModule.runJob("SUB", {
  108. channel: "song.undislike",
  109. cb: data => {
  110. WSModule.runJob("EMIT_TO_ROOM", {
  111. room: `song.${data.youtubeId}`,
  112. args: [
  113. "event:song.undisliked",
  114. {
  115. data: { youtubeId: data.youtubeId, likes: data.likes, dislikes: data.dislikes }
  116. }
  117. ]
  118. });
  119. WSModule.runJob("SOCKETS_FROM_USER", { userId: data.userId }).then(sockets => {
  120. sockets.forEach(socket => {
  121. socket.dispatch("event:song.ratings.updated", {
  122. data: {
  123. youtubeId: data.youtubeId,
  124. liked: false,
  125. disliked: false
  126. }
  127. });
  128. });
  129. });
  130. }
  131. });
  132. export default {
  133. /**
  134. * Returns the length of the songs list
  135. *
  136. * @param {object} session - the session object automatically added by the websocket
  137. * @param cb
  138. */
  139. length: isAdminRequired(async function length(session, cb) {
  140. const songModel = await DBModule.runJob("GET_MODEL", { modelName: "song" }, this);
  141. async.waterfall(
  142. [
  143. next => {
  144. songModel.countDocuments({}, next);
  145. }
  146. ],
  147. async (err, count) => {
  148. if (err) {
  149. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  150. this.log("ERROR", "SONGS_LENGTH", `Failed to get length from songs. "${err}"`);
  151. return cb({ status: "error", message: err });
  152. }
  153. this.log("SUCCESS", "SONGS_LENGTH", `Got length from songs successfully.`);
  154. return cb({ status: "success", message: "Successfully got length of songs.", data: { length: count } });
  155. }
  156. );
  157. }),
  158. /**
  159. * Gets a set of songs
  160. *
  161. * @param {object} session - the session object automatically added by the websocket
  162. * @param set - the set number to return
  163. * @param cb
  164. */
  165. getSet: isAdminRequired(async function getSet(session, set, cb) {
  166. const songModel = await DBModule.runJob("GET_MODEL", { modelName: "song" }, this);
  167. async.waterfall(
  168. [
  169. next => {
  170. songModel
  171. .find({})
  172. .skip(15 * (set - 1))
  173. .limit(15)
  174. .exec(next);
  175. }
  176. ],
  177. async (err, songs) => {
  178. if (err) {
  179. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  180. this.log("ERROR", "SONGS_GET_SET", `Failed to get set from songs. "${err}"`);
  181. return cb({ status: "error", message: err });
  182. }
  183. this.log("SUCCESS", "SONGS_GET_SET", `Got set from songs successfully.`);
  184. return cb({ status: "success", message: "Successfully got set of songs.", data: { songs } });
  185. }
  186. );
  187. }),
  188. /**
  189. * Gets songs, used in the admin songs page by the AdvancedTable component
  190. *
  191. * @param {object} session - the session object automatically added by the websocket
  192. * @param page - the page
  193. * @param pageSize - the size per page
  194. * @param properties - the properties to return for each song
  195. * @param sort - the sort object
  196. * @param cb
  197. */
  198. getData: isAdminRequired(async function getSet(session, page, pageSize, properties, sort, cb) {
  199. async.waterfall(
  200. [
  201. next => {
  202. SongsModule.runJob("GET_DATA", {
  203. page,
  204. pageSize,
  205. properties,
  206. sort
  207. }, this)
  208. .then(response => {
  209. next(null, response);
  210. })
  211. .catch(err => {
  212. next(err);
  213. });
  214. }
  215. ],
  216. async (err, response) => {
  217. if (err) {
  218. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  219. this.log("ERROR", "SONGS_GET_DATA", `Failed to get data from songs. "${err}"`);
  220. return cb({ status: "error", message: err });
  221. }
  222. this.log("SUCCESS", "SONGS_GET_DATA", `Got data from songs successfully.`);
  223. return cb({ status: "success", message: "Successfully got data from songs.", data: response });
  224. }
  225. );
  226. }),
  227. /**
  228. * Updates all songs
  229. *
  230. * @param {object} session - the session object automatically added by the websocket
  231. * @param cb
  232. */
  233. updateAll: isAdminRequired(async function updateAll(session, cb) {
  234. async.waterfall(
  235. [
  236. next => {
  237. SongsModule.runJob("UPDATE_ALL_SONGS", {}, this)
  238. .then(() => {
  239. next();
  240. })
  241. .catch(err => {
  242. next(err);
  243. });
  244. }
  245. ],
  246. async err => {
  247. if (err) {
  248. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  249. this.log("ERROR", "SONGS_UPDATE_ALL", `Failed to update all songs. "${err}"`);
  250. return cb({ status: "error", message: err });
  251. }
  252. this.log("SUCCESS", "SONGS_UPDATE_ALL", `Updated all songs successfully.`);
  253. return cb({ status: "success", message: "Successfully updated all songs." });
  254. }
  255. );
  256. }),
  257. /**
  258. * Recalculates all song ratings
  259. *
  260. * @param {object} session - the session object automatically added by the websocket
  261. * @param cb
  262. */
  263. recalculateAllRatings: isAdminRequired(async function recalculateAllRatings(session, cb) {
  264. async.waterfall(
  265. [
  266. next => {
  267. SongsModule.runJob("RECALCULATE_ALL_SONG_RATINGS", {}, this)
  268. .then(() => {
  269. next();
  270. })
  271. .catch(err => {
  272. next(err);
  273. });
  274. }
  275. ],
  276. async err => {
  277. if (err) {
  278. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  279. this.log(
  280. "ERROR",
  281. "SONGS_RECALCULATE_ALL_RATINGS",
  282. `Failed to recalculate all song ratings. "${err}"`
  283. );
  284. return cb({ status: "error", message: err });
  285. }
  286. this.log("SUCCESS", "SONGS_RECALCULATE_ALL_RATINGS", `Recalculated all song ratings successfully.`);
  287. return cb({ status: "success", message: "Successfully recalculated all song ratings." });
  288. }
  289. );
  290. }),
  291. /**
  292. * Gets a song from the Musare song id
  293. *
  294. * @param {object} session - the session object automatically added by the websocket
  295. * @param {string} songId - the song id
  296. * @param {Function} cb
  297. */
  298. getSongFromSongId: isAdminRequired(function getSongFromSongId(session, songId, cb) {
  299. async.waterfall(
  300. [
  301. next => {
  302. SongsModule.runJob("GET_SONG", { songId }, this)
  303. .then(response => next(null, response.song))
  304. .catch(err => next(err));
  305. }
  306. ],
  307. async (err, song) => {
  308. if (err) {
  309. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  310. this.log("ERROR", "SONGS_GET_SONG_FROM_MUSARE_ID", `Failed to get song ${songId}. "${err}"`);
  311. return cb({ status: "error", message: err });
  312. }
  313. this.log("SUCCESS", "SONGS_GET_SONG_FROM_MUSARE_ID", `Got song ${songId} successfully.`);
  314. return cb({ status: "success", data: { song } });
  315. }
  316. );
  317. }),
  318. /**
  319. * Updates a song
  320. *
  321. * @param {object} session - the session object automatically added by the websocket
  322. * @param {string} songId - the song id
  323. * @param {object} song - the updated song object
  324. * @param {Function} cb
  325. */
  326. update: isAdminRequired(async function update(session, songId, song, cb) {
  327. const songModel = await DBModule.runJob("GET_MODEL", { modelName: "song" }, this);
  328. let existingSong = null;
  329. async.waterfall(
  330. [
  331. next => {
  332. songModel.findOne({ _id: songId }, next);
  333. },
  334. (_existingSong, next) => {
  335. existingSong = _existingSong;
  336. songModel.updateOne({ _id: songId }, song, { runValidators: true }, next);
  337. },
  338. (res, next) => {
  339. SongsModule.runJob("UPDATE_SONG", { songId }, this)
  340. .then(song => {
  341. existingSong.genres
  342. .concat(song.genres)
  343. .filter((value, index, self) => self.indexOf(value) === index)
  344. .forEach(genre => {
  345. PlaylistsModule.runJob("AUTOFILL_GENRE_PLAYLIST", { genre })
  346. .then(() => {})
  347. .catch(() => {});
  348. });
  349. next(null, song);
  350. })
  351. .catch(next);
  352. }
  353. ],
  354. async (err, song) => {
  355. if (err) {
  356. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  357. this.log("ERROR", "SONGS_UPDATE", `Failed to update song "${songId}". "${err}"`);
  358. return cb({ status: "error", message: err });
  359. }
  360. this.log("SUCCESS", "SONGS_UPDATE", `Successfully updated song "${songId}".`);
  361. return cb({
  362. status: "success",
  363. message: "Song has been successfully updated",
  364. data: { song }
  365. });
  366. }
  367. );
  368. }),
  369. // /**
  370. // * Removes a song
  371. // *
  372. // * @param session
  373. // * @param songId - the song id
  374. // * @param cb
  375. // */
  376. // remove: isAdminRequired(async function remove(session, songId, cb) {
  377. // const songModel = await DBModule.runJob("GET_MODEL", { modelName: "song" }, this);
  378. // let song = null;
  379. // async.waterfall(
  380. // [
  381. // next => {
  382. // songModel.findOne({ _id: songId }, next);
  383. // },
  384. // (_song, next) => {
  385. // song = _song;
  386. // songModel.deleteOne({ _id: songId }, next);
  387. // },
  388. // (res, next) => {
  389. // CacheModule.runJob("HDEL", { table: "songs", key: songId }, this)
  390. // .then(() => {
  391. // next();
  392. // })
  393. // .catch(next)
  394. // .finally(() => {
  395. // song.genres.forEach(genre => {
  396. // PlaylistsModule.runJob("AUTOFILL_GENRE_PLAYLIST", { genre })
  397. // .then(() => {})
  398. // .catch(() => {});
  399. // });
  400. // });
  401. // }
  402. // ],
  403. // async err => {
  404. // if (err) {
  405. // err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  406. // this.log("ERROR", "SONGS_REMOVE", `Failed to remove song "${songId}". "${err}"`);
  407. // return cb({ status: "error", message: err });
  408. // }
  409. // this.log("SUCCESS", "SONGS_REMOVE", `Successfully removed song "${songId}".`);
  410. // if (song.status === "verified") {
  411. // CacheModule.runJob("PUB", {
  412. // channel: "song.removedVerifiedSong",
  413. // value: songId
  414. // });
  415. // }
  416. // if (song.status === "unverified") {
  417. // CacheModule.runJob("PUB", {
  418. // channel: "song.removedUnverifiedSong",
  419. // value: songId
  420. // });
  421. // }
  422. // if (song.status === "hidden") {
  423. // CacheModule.runJob("PUB", {
  424. // channel: "song.removedHiddenSong",
  425. // value: songId
  426. // });
  427. // }
  428. // return cb({
  429. // status: "success",
  430. // message: "Song has been successfully removed"
  431. // });
  432. // }
  433. // );
  434. // }),
  435. /**
  436. * Searches through official songs
  437. *
  438. * @param {object} session - the session object automatically added by the websocket
  439. * @param {string} query - the query
  440. * @param {string} page - the page
  441. * @param {Function} cb - gets called with the result
  442. */
  443. searchOfficial: isLoginRequired(async function searchOfficial(session, query, page, cb) {
  444. async.waterfall(
  445. [
  446. next => {
  447. if ((!query && query !== "") || typeof query !== "string") next("Invalid query.");
  448. else next();
  449. },
  450. next => {
  451. SongsModule.runJob("SEARCH", {
  452. query,
  453. includeVerified: true,
  454. trimmed: true,
  455. page
  456. })
  457. .then(response => {
  458. next(null, response);
  459. })
  460. .catch(err => {
  461. next(err);
  462. });
  463. }
  464. ],
  465. async (err, data) => {
  466. if (err) {
  467. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  468. this.log("ERROR", "SONGS_SEARCH_OFFICIAL", `Searching songs failed. "${err}"`);
  469. return cb({ status: "error", message: err });
  470. }
  471. this.log("SUCCESS", "SONGS_SEARCH_OFFICIAL", "Searching songs successful.");
  472. return cb({ status: "success", data });
  473. }
  474. );
  475. }),
  476. /**
  477. * Requests a song
  478. *
  479. * @param {object} session - the session object automatically added by the websocket
  480. * @param {string} youtubeId - the youtube id of the song that gets requested
  481. * @param {string} returnSong - returns the simple song
  482. * @param {Function} cb - gets called with the result
  483. */
  484. request: isLoginRequired(async function add(session, youtubeId, returnSong, cb) {
  485. SongsModule.runJob("REQUEST_SONG", { youtubeId, userId: session.userId }, this)
  486. .then(response => {
  487. this.log(
  488. "SUCCESS",
  489. "SONGS_REQUEST",
  490. `User "${session.userId}" successfully requested song "${youtubeId}".`
  491. );
  492. return cb({
  493. status: "success",
  494. message: "Successfully requested that song",
  495. song: returnSong ? response.song : null
  496. });
  497. })
  498. .catch(async _err => {
  499. const err = await UtilsModule.runJob("GET_ERROR", { error: _err }, this);
  500. this.log(
  501. "ERROR",
  502. "SONGS_REQUEST",
  503. `Requesting song "${youtubeId}" failed for user ${session.userId}. "${err}"`
  504. );
  505. return cb({ status: "error", message: err, song: returnSong && _err.data ? _err.data.song : null });
  506. });
  507. }),
  508. /**
  509. * Hides a song
  510. *
  511. * @param {object} session - the session object automatically added by the websocket
  512. * @param {string} songId - the song id of the song that gets hidden
  513. * @param {Function} cb - gets called with the result
  514. */
  515. hide: isLoginRequired(async function add(session, songId, cb) {
  516. SongsModule.runJob("HIDE_SONG", { songId }, this)
  517. .then(() => {
  518. this.log("SUCCESS", "SONGS_HIDE", `User "${session.userId}" successfully hid song "${songId}".`);
  519. return cb({
  520. status: "success",
  521. message: "Successfully hid that song"
  522. });
  523. })
  524. .catch(async err => {
  525. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  526. this.log("ERROR", "SONGS_HIDE", `Hiding song "${songId}" failed for user ${session.userId}. "${err}"`);
  527. return cb({ status: "error", message: err });
  528. });
  529. }),
  530. /**
  531. * Unhides a song
  532. *
  533. * @param {object} session - the session object automatically added by the websocket
  534. * @param {string} songId - the song id of the song that gets hidden
  535. * @param {Function} cb - gets called with the result
  536. */
  537. unhide: isLoginRequired(async function add(session, songId, cb) {
  538. SongsModule.runJob("UNHIDE_SONG", { songId }, this)
  539. .then(() => {
  540. this.log("SUCCESS", "SONGS_UNHIDE", `User "${session.userId}" successfully unhid song "${songId}".`);
  541. return cb({
  542. status: "success",
  543. message: "Successfully unhid that song"
  544. });
  545. })
  546. .catch(async err => {
  547. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  548. this.log(
  549. "ERROR",
  550. "SONGS_UNHIDE",
  551. `Unhiding song "${songId}" failed for user ${session.userId}. "${err}"`
  552. );
  553. return cb({ status: "error", message: err });
  554. });
  555. }),
  556. /**
  557. * Verifies a song
  558. *
  559. * @param session
  560. * @param songId - the song id
  561. * @param cb
  562. */
  563. verify: isAdminRequired(async function add(session, songId, cb) {
  564. const SongModel = await DBModule.runJob("GET_MODEL", { modelName: "song" }, this);
  565. async.waterfall(
  566. [
  567. next => {
  568. SongModel.findOne({ _id: songId }, next);
  569. },
  570. (song, next) => {
  571. if (!song) return next("This song is not in the database.");
  572. return next(null, song);
  573. },
  574. (song, next) => {
  575. const oldStatus = song.status;
  576. song.verifiedBy = session.userId;
  577. song.verifiedAt = Date.now();
  578. song.status = "verified";
  579. song.save(err => next(err, song, oldStatus));
  580. },
  581. (song, oldStatus, next) => {
  582. song.genres.forEach(genre => {
  583. PlaylistsModule.runJob("AUTOFILL_GENRE_PLAYLIST", { genre })
  584. .then(() => {})
  585. .catch(() => {});
  586. });
  587. SongsModule.runJob("UPDATE_SONG", { songId: song._id, oldStatus });
  588. next(null, song, oldStatus);
  589. }
  590. ],
  591. async err => {
  592. if (err) {
  593. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  594. this.log("ERROR", "SONGS_VERIFY", `User "${session.userId}" failed to verify song. "${err}"`);
  595. return cb({ status: "error", message: err });
  596. }
  597. this.log("SUCCESS", "SONGS_VERIFY", `User "${session.userId}" successfully verified song "${songId}".`);
  598. return cb({
  599. status: "success",
  600. message: "Song has been verified successfully."
  601. });
  602. }
  603. );
  604. // TODO Check if video is in queue and Add the song to the appropriate stations
  605. }),
  606. /**
  607. * Un-verifies a song
  608. *
  609. * @param session
  610. * @param songId - the song id
  611. * @param cb
  612. */
  613. unverify: isAdminRequired(async function add(session, songId, cb) {
  614. const SongModel = await DBModule.runJob("GET_MODEL", { modelName: "song" }, this);
  615. async.waterfall(
  616. [
  617. next => {
  618. SongModel.findOne({ _id: songId }, next);
  619. },
  620. (song, next) => {
  621. if (!song) return next("This song is not in the database.");
  622. return next(null, song);
  623. },
  624. (song, next) => {
  625. song.status = "unverified";
  626. song.save(err => {
  627. next(err, song);
  628. });
  629. },
  630. (song, next) => {
  631. song.genres.forEach(genre => {
  632. PlaylistsModule.runJob("AUTOFILL_GENRE_PLAYLIST", { genre })
  633. .then(() => {})
  634. .catch(() => {});
  635. });
  636. SongsModule.runJob("UPDATE_SONG", { songId, oldStatus: "verified" });
  637. next(null);
  638. }
  639. ],
  640. async err => {
  641. if (err) {
  642. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  643. this.log("ERROR", "SONGS_UNVERIFY", `User "${session.userId}" failed to verify song. "${err}"`);
  644. return cb({ status: "error", message: err });
  645. }
  646. this.log(
  647. "SUCCESS",
  648. "SONGS_UNVERIFY",
  649. `User "${session.userId}" successfully unverified song "${songId}".`
  650. );
  651. return cb({
  652. status: "success",
  653. message: "Song has been unverified successfully."
  654. });
  655. }
  656. );
  657. // TODO Check if video is in queue and Add the song to the appropriate stations
  658. }),
  659. /**
  660. * Requests a set of songs
  661. *
  662. * @param {object} session - the session object automatically added by the websocket
  663. * @param {string} url - the url of the the YouTube playlist
  664. * @param {boolean} musicOnly - whether to only get music from the playlist
  665. * @param {Function} cb - gets called with the result
  666. */
  667. requestSet: isLoginRequired(function requestSet(session, url, musicOnly, returnSongs, cb) {
  668. async.waterfall(
  669. [
  670. next => {
  671. YouTubeModule.runJob(
  672. "GET_PLAYLIST",
  673. {
  674. url,
  675. musicOnly
  676. },
  677. this
  678. )
  679. .then(res => {
  680. next(null, res.songs);
  681. })
  682. .catch(next);
  683. },
  684. (youtubeIds, next) => {
  685. let successful = 0;
  686. let songs = {};
  687. let failed = 0;
  688. let alreadyInDatabase = 0;
  689. if (youtubeIds.length === 0) next();
  690. async.eachOfLimit(
  691. youtubeIds,
  692. 1,
  693. (youtubeId, index, next) => {
  694. WSModule.runJob(
  695. "RUN_ACTION2",
  696. {
  697. session,
  698. namespace: "songs",
  699. action: "request",
  700. args: [youtubeId, returnSongs]
  701. },
  702. this
  703. )
  704. .then(res => {
  705. if (res.status === "success") successful += 1;
  706. else failed += 1;
  707. if (res.message === "This song is already in the database.") alreadyInDatabase += 1;
  708. if (res.song) songs[index] = res.song;
  709. else songs[index] = null;
  710. })
  711. .catch(() => {
  712. failed += 1;
  713. })
  714. .finally(() => {
  715. next();
  716. });
  717. },
  718. () => {
  719. if (returnSongs)
  720. songs = Object.keys(songs)
  721. .sort()
  722. .map(key => songs[key]);
  723. next(null, { successful, failed, alreadyInDatabase, songs });
  724. }
  725. );
  726. }
  727. ],
  728. async (err, response) => {
  729. if (err) {
  730. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  731. this.log(
  732. "ERROR",
  733. "REQUEST_SET",
  734. `Importing a YouTube playlist to be requested failed for user "${session.userId}". "${err}"`
  735. );
  736. return cb({ status: "error", message: err });
  737. }
  738. this.log(
  739. "SUCCESS",
  740. "REQUEST_SET",
  741. `Successfully imported a YouTube playlist to be requested for user "${session.userId}".`
  742. );
  743. return cb({
  744. status: "success",
  745. message: `Playlist is done importing. ${response.successful} were added succesfully, ${response.failed} failed (${response.alreadyInDatabase} were already in database)`,
  746. songs: returnSongs ? response.songs : null
  747. });
  748. }
  749. );
  750. }),
  751. /**
  752. * Likes a song
  753. *
  754. * @param session
  755. * @param youtubeId - the youtube id
  756. * @param cb
  757. */
  758. like: isLoginRequired(async function like(session, youtubeId, cb) {
  759. const userModel = await DBModule.runJob("GET_MODEL", { modelName: "user" }, this);
  760. const songModel = await DBModule.runJob("GET_MODEL", { modelName: "song" }, this);
  761. async.waterfall(
  762. [
  763. next => songModel.findOne({ youtubeId }, next),
  764. (song, next) => {
  765. if (!song) return next("No song found with that id.");
  766. return next(null, song);
  767. },
  768. (song, next) => userModel.findOne({ _id: session.userId }, (err, user) => next(err, song, user)),
  769. (song, user, next) => {
  770. if (!user) return next("User does not exist.");
  771. return this.module
  772. .runJob(
  773. "RUN_ACTION2",
  774. {
  775. session,
  776. namespace: "playlists",
  777. action: "addSongToPlaylist",
  778. args: [false, youtubeId, user.likedSongsPlaylist]
  779. },
  780. this
  781. )
  782. .then(res => {
  783. if (res.status === "error") {
  784. if (res.message === "That song is already in the playlist")
  785. return next("You have already liked this song.");
  786. return next("Unable to add song to the 'Liked Songs' playlist.");
  787. }
  788. return next(null, song, user.dislikedSongsPlaylist);
  789. })
  790. .catch(err => next(err));
  791. },
  792. (song, dislikedSongsPlaylist, next) => {
  793. this.module
  794. .runJob(
  795. "RUN_ACTION2",
  796. {
  797. session,
  798. namespace: "playlists",
  799. action: "removeSongFromPlaylist",
  800. args: [youtubeId, dislikedSongsPlaylist]
  801. },
  802. this
  803. )
  804. .then(res => {
  805. if (res.status === "error")
  806. return next("Unable to remove song from the 'Disliked Songs' playlist.");
  807. return next(null, song);
  808. })
  809. .catch(err => next(err));
  810. },
  811. (song, next) => {
  812. SongsModule.runJob("RECALCULATE_SONG_RATINGS", { songId: song._id, youtubeId })
  813. .then(ratings => next(null, song, ratings))
  814. .catch(err => next(err));
  815. }
  816. ],
  817. async (err, song, { likes, dislikes }) => {
  818. if (err) {
  819. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  820. this.log(
  821. "ERROR",
  822. "SONGS_LIKE",
  823. `User "${session.userId}" failed to like song ${youtubeId}. "${err}"`
  824. );
  825. return cb({ status: "error", message: err });
  826. }
  827. SongsModule.runJob("UPDATE_SONG", { songId: song._id });
  828. CacheModule.runJob("PUB", {
  829. channel: "song.like",
  830. value: JSON.stringify({
  831. youtubeId,
  832. userId: session.userId,
  833. likes,
  834. dislikes
  835. })
  836. });
  837. ActivitiesModule.runJob("ADD_ACTIVITY", {
  838. userId: session.userId,
  839. type: "song__like",
  840. payload: {
  841. message: `Liked song <youtubeId>${song.title} by ${song.artists.join(", ")}</youtubeId>`,
  842. youtubeId,
  843. thumbnail: song.thumbnail
  844. }
  845. });
  846. return cb({
  847. status: "success",
  848. message: "You have successfully liked this song."
  849. });
  850. }
  851. );
  852. }),
  853. /**
  854. * Dislikes a song
  855. *
  856. * @param session
  857. * @param youtubeId - the youtube id
  858. * @param cb
  859. */
  860. dislike: isLoginRequired(async function dislike(session, youtubeId, cb) {
  861. const userModel = await DBModule.runJob("GET_MODEL", { modelName: "user" }, this);
  862. const songModel = await DBModule.runJob("GET_MODEL", { modelName: "song" }, this);
  863. async.waterfall(
  864. [
  865. next => {
  866. songModel.findOne({ youtubeId }, next);
  867. },
  868. (song, next) => {
  869. if (!song) return next("No song found with that id.");
  870. return next(null, song);
  871. },
  872. (song, next) => userModel.findOne({ _id: session.userId }, (err, user) => next(err, song, user)),
  873. (song, user, next) => {
  874. if (!user) return next("User does not exist.");
  875. return this.module
  876. .runJob(
  877. "RUN_ACTION2",
  878. {
  879. session,
  880. namespace: "playlists",
  881. action: "addSongToPlaylist",
  882. args: [false, youtubeId, user.dislikedSongsPlaylist]
  883. },
  884. this
  885. )
  886. .then(res => {
  887. if (res.status === "error") {
  888. if (res.message === "That song is already in the playlist")
  889. return next("You have already disliked this song.");
  890. return next("Unable to add song to the 'Disliked Songs' playlist.");
  891. }
  892. return next(null, song, user.likedSongsPlaylist);
  893. })
  894. .catch(err => next(err));
  895. },
  896. (song, likedSongsPlaylist, next) => {
  897. this.module
  898. .runJob(
  899. "RUN_ACTION2",
  900. {
  901. session,
  902. namespace: "playlists",
  903. action: "removeSongFromPlaylist",
  904. args: [youtubeId, likedSongsPlaylist]
  905. },
  906. this
  907. )
  908. .then(res => {
  909. if (res.status === "error")
  910. return next("Unable to remove song from the 'Liked Songs' playlist.");
  911. return next(null, song);
  912. })
  913. .catch(err => next(err));
  914. },
  915. (song, next) => {
  916. SongsModule.runJob("RECALCULATE_SONG_RATINGS", { songId: song._id, youtubeId })
  917. .then(ratings => next(null, song, ratings))
  918. .catch(err => next(err));
  919. }
  920. ],
  921. async (err, song, { likes, dislikes }) => {
  922. if (err) {
  923. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  924. this.log(
  925. "ERROR",
  926. "SONGS_DISLIKE",
  927. `User "${session.userId}" failed to dislike song ${youtubeId}. "${err}"`
  928. );
  929. return cb({ status: "error", message: err });
  930. }
  931. SongsModule.runJob("UPDATE_SONG", { songId: song._id });
  932. CacheModule.runJob("PUB", {
  933. channel: "song.dislike",
  934. value: JSON.stringify({
  935. youtubeId,
  936. userId: session.userId,
  937. likes,
  938. dislikes
  939. })
  940. });
  941. ActivitiesModule.runJob("ADD_ACTIVITY", {
  942. userId: session.userId,
  943. type: "song__dislike",
  944. payload: {
  945. message: `Disliked song <youtubeId>${song.title} by ${song.artists.join(", ")}</youtubeId>`,
  946. youtubeId,
  947. thumbnail: song.thumbnail
  948. }
  949. });
  950. return cb({
  951. status: "success",
  952. message: "You have successfully disliked this song."
  953. });
  954. }
  955. );
  956. }),
  957. /**
  958. * Undislikes a song
  959. *
  960. * @param session
  961. * @param youtubeId - the youtube id
  962. * @param cb
  963. */
  964. undislike: isLoginRequired(async function undislike(session, youtubeId, cb) {
  965. const userModel = await DBModule.runJob("GET_MODEL", { modelName: "user" }, this);
  966. const songModel = await DBModule.runJob("GET_MODEL", { modelName: "song" }, this);
  967. async.waterfall(
  968. [
  969. next => {
  970. songModel.findOne({ youtubeId }, next);
  971. },
  972. (song, next) => {
  973. if (!song) return next("No song found with that id.");
  974. return next(null, song);
  975. },
  976. (song, next) => userModel.findOne({ _id: session.userId }, (err, user) => next(err, song, user)),
  977. (song, user, next) => {
  978. if (!user) return next("User does not exist.");
  979. return this.module
  980. .runJob(
  981. "RUN_ACTION2",
  982. {
  983. session,
  984. namespace: "playlists",
  985. action: "removeSongFromPlaylist",
  986. args: [youtubeId, user.dislikedSongsPlaylist]
  987. },
  988. this
  989. )
  990. .then(res => {
  991. if (res.status === "error")
  992. return next("Unable to remove song from the 'Disliked Songs' playlist.");
  993. return next(null, song, user.likedSongsPlaylist);
  994. })
  995. .catch(err => next(err));
  996. },
  997. (song, likedSongsPlaylist, next) => {
  998. this.module
  999. .runJob(
  1000. "RUN_ACTION2",
  1001. {
  1002. session,
  1003. namespace: "playlists",
  1004. action: "removeSongFromPlaylist",
  1005. args: [youtubeId, likedSongsPlaylist]
  1006. },
  1007. this
  1008. )
  1009. .then(res => {
  1010. if (res.status === "error")
  1011. return next("Unable to remove song from the 'Liked Songs' playlist.");
  1012. return next(null, song);
  1013. })
  1014. .catch(err => next(err));
  1015. },
  1016. (song, next) => {
  1017. SongsModule.runJob("RECALCULATE_SONG_RATINGS", { songId: song._id, youtubeId })
  1018. .then(ratings => next(null, song, ratings))
  1019. .catch(err => next(err));
  1020. }
  1021. ],
  1022. async (err, song, { likes, dislikes }) => {
  1023. if (err) {
  1024. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  1025. this.log(
  1026. "ERROR",
  1027. "SONGS_UNDISLIKE",
  1028. `User "${session.userId}" failed to undislike song ${youtubeId}. "${err}"`
  1029. );
  1030. return cb({ status: "error", message: err });
  1031. }
  1032. SongsModule.runJob("UPDATE_SONG", { songId: song._id });
  1033. CacheModule.runJob("PUB", {
  1034. channel: "song.undislike",
  1035. value: JSON.stringify({
  1036. youtubeId,
  1037. userId: session.userId,
  1038. likes,
  1039. dislikes
  1040. })
  1041. });
  1042. ActivitiesModule.runJob("ADD_ACTIVITY", {
  1043. userId: session.userId,
  1044. type: "song__undislike",
  1045. payload: {
  1046. message: `Removed <youtubeId>${song.title} by ${song.artists.join(
  1047. ", "
  1048. )}</youtubeId> from your Disliked Songs`,
  1049. youtubeId,
  1050. thumbnail: song.thumbnail
  1051. }
  1052. });
  1053. return cb({
  1054. status: "success",
  1055. message: "You have successfully undisliked this song."
  1056. });
  1057. }
  1058. );
  1059. }),
  1060. /**
  1061. * Unlikes a song
  1062. *
  1063. * @param session
  1064. * @param youtubeId - the youtube id
  1065. * @param cb
  1066. */
  1067. unlike: isLoginRequired(async function unlike(session, youtubeId, cb) {
  1068. const userModel = await DBModule.runJob("GET_MODEL", { modelName: "user" }, this);
  1069. const songModel = await DBModule.runJob("GET_MODEL", { modelName: "song" }, this);
  1070. async.waterfall(
  1071. [
  1072. next => {
  1073. songModel.findOne({ youtubeId }, next);
  1074. },
  1075. (song, next) => {
  1076. if (!song) return next("No song found with that id.");
  1077. return next(null, song);
  1078. },
  1079. (song, next) => userModel.findOne({ _id: session.userId }, (err, user) => next(err, song, user)),
  1080. (song, user, next) => {
  1081. if (!user) return next("User does not exist.");
  1082. return this.module
  1083. .runJob(
  1084. "RUN_ACTION2",
  1085. {
  1086. session,
  1087. namespace: "playlists",
  1088. action: "removeSongFromPlaylist",
  1089. args: [youtubeId, user.dislikedSongsPlaylist]
  1090. },
  1091. this
  1092. )
  1093. .then(res => {
  1094. if (res.status === "error")
  1095. return next("Unable to remove song from the 'Disliked Songs' playlist.");
  1096. return next(null, song, user.likedSongsPlaylist);
  1097. })
  1098. .catch(err => next(err));
  1099. },
  1100. (song, likedSongsPlaylist, next) => {
  1101. this.module
  1102. .runJob(
  1103. "RUN_ACTION2",
  1104. {
  1105. session,
  1106. namespace: "playlists",
  1107. action: "removeSongFromPlaylist",
  1108. args: [youtubeId, likedSongsPlaylist]
  1109. },
  1110. this
  1111. )
  1112. .then(res => {
  1113. if (res.status === "error")
  1114. return next("Unable to remove song from the 'Liked Songs' playlist.");
  1115. return next(null, song);
  1116. })
  1117. .catch(err => next(err));
  1118. },
  1119. (song, next) => {
  1120. SongsModule.runJob("RECALCULATE_SONG_RATINGS", { songId: song._id, youtubeId })
  1121. .then(ratings => next(null, song, ratings))
  1122. .catch(err => next(err));
  1123. }
  1124. ],
  1125. async (err, song, { likes, dislikes }) => {
  1126. if (err) {
  1127. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  1128. this.log(
  1129. "ERROR",
  1130. "SONGS_UNLIKE",
  1131. `User "${session.userId}" failed to unlike song ${youtubeId}. "${err}"`
  1132. );
  1133. return cb({ status: "error", message: err });
  1134. }
  1135. SongsModule.runJob("UPDATE_SONG", { songId: song._id });
  1136. CacheModule.runJob("PUB", {
  1137. channel: "song.unlike",
  1138. value: JSON.stringify({
  1139. youtubeId,
  1140. userId: session.userId,
  1141. likes,
  1142. dislikes
  1143. })
  1144. });
  1145. ActivitiesModule.runJob("ADD_ACTIVITY", {
  1146. userId: session.userId,
  1147. type: "song__unlike",
  1148. payload: {
  1149. message: `Removed <youtubeId>${song.title} by ${song.artists.join(
  1150. ", "
  1151. )}</youtubeId> from your Liked Songs`,
  1152. youtubeId,
  1153. thumbnail: song.thumbnail
  1154. }
  1155. });
  1156. return cb({
  1157. status: "success",
  1158. message: "You have successfully unliked this song."
  1159. });
  1160. }
  1161. );
  1162. }),
  1163. /**
  1164. * Gets song ratings
  1165. *
  1166. * @param session
  1167. * @param songId - the Musare song id
  1168. * @param cb
  1169. */
  1170. getSongRatings: isLoginRequired(async function getSongRatings(session, songId, cb) {
  1171. async.waterfall(
  1172. [
  1173. next => {
  1174. SongsModule.runJob("GET_SONG", { songId }, this)
  1175. .then(res => next(null, res.song))
  1176. .catch(next);
  1177. },
  1178. (song, next) => {
  1179. next(null, {
  1180. likes: song.likes,
  1181. dislikes: song.dislikes
  1182. });
  1183. }
  1184. ],
  1185. async (err, ratings) => {
  1186. if (err) {
  1187. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  1188. this.log(
  1189. "ERROR",
  1190. "SONGS_GET_RATINGS",
  1191. `User "${session.userId}" failed to get ratings for ${songId}. "${err}"`
  1192. );
  1193. return cb({ status: "error", message: err });
  1194. }
  1195. const { likes, dislikes } = ratings;
  1196. return cb({
  1197. status: "success",
  1198. data: {
  1199. likes,
  1200. dislikes
  1201. }
  1202. });
  1203. }
  1204. );
  1205. }),
  1206. /**
  1207. * Gets user's own song ratings
  1208. *
  1209. * @param session
  1210. * @param youtubeId - the youtube id
  1211. * @param cb
  1212. */
  1213. getOwnSongRatings: isLoginRequired(async function getOwnSongRatings(session, youtubeId, cb) {
  1214. const playlistModel = await DBModule.runJob("GET_MODEL", { modelName: "playlist" }, this);
  1215. const songModel = await DBModule.runJob("GET_MODEL", { modelName: "song" }, this);
  1216. async.waterfall(
  1217. [
  1218. next => songModel.findOne({ youtubeId }, next),
  1219. (song, next) => {
  1220. if (!song) return next("No song found with that id.");
  1221. return next(null);
  1222. },
  1223. next =>
  1224. playlistModel.findOne(
  1225. { createdBy: session.userId, displayName: "Liked Songs" },
  1226. (err, playlist) => {
  1227. if (err) return next(err);
  1228. if (!playlist) return next("'Liked Songs' playlist does not exist.");
  1229. let isLiked = false;
  1230. Object.values(playlist.songs).forEach(song => {
  1231. // song is found in 'liked songs' playlist
  1232. if (song.youtubeId === youtubeId) isLiked = true;
  1233. });
  1234. return next(null, isLiked);
  1235. }
  1236. ),
  1237. (isLiked, next) =>
  1238. playlistModel.findOne(
  1239. { createdBy: session.userId, displayName: "Disliked Songs" },
  1240. (err, playlist) => {
  1241. if (err) return next(err);
  1242. if (!playlist) return next("'Disliked Songs' playlist does not exist.");
  1243. const ratings = { isLiked, isDisliked: false };
  1244. Object.values(playlist.songs).forEach(song => {
  1245. // song is found in 'disliked songs' playlist
  1246. if (song.youtubeId === youtubeId) ratings.isDisliked = true;
  1247. });
  1248. return next(null, ratings);
  1249. }
  1250. )
  1251. ],
  1252. async (err, ratings) => {
  1253. if (err) {
  1254. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  1255. this.log(
  1256. "ERROR",
  1257. "SONGS_GET_OWN_RATINGS",
  1258. `User "${session.userId}" failed to get ratings for ${youtubeId}. "${err}"`
  1259. );
  1260. return cb({ status: "error", message: err });
  1261. }
  1262. const { isLiked, isDisliked } = ratings;
  1263. return cb({
  1264. status: "success",
  1265. data: {
  1266. youtubeId,
  1267. liked: isLiked,
  1268. disliked: isDisliked
  1269. }
  1270. });
  1271. }
  1272. );
  1273. })
  1274. };