songs.js 39 KB

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