songs.js 39 KB

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