songs.js 32 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261
  1. import async from "async";
  2. import config from "config";
  3. import mongoose from "mongoose";
  4. import CoreClass from "../core";
  5. let SongsModule;
  6. let CacheModule;
  7. let DBModule;
  8. let UtilsModule;
  9. let YouTubeModule;
  10. let StationsModule;
  11. let PlaylistsModule;
  12. class ErrorWithData extends Error {
  13. /**
  14. * @param {string} message - the error message
  15. * @param {object} data - the error data
  16. */
  17. constructor(message, data) {
  18. super(message);
  19. this.data = data;
  20. }
  21. }
  22. class _SongsModule extends CoreClass {
  23. // eslint-disable-next-line require-jsdoc
  24. constructor() {
  25. super("songs");
  26. SongsModule = this;
  27. }
  28. /**
  29. * Initialises the songs module
  30. *
  31. * @returns {Promise} - returns promise (reject, resolve)
  32. */
  33. async initialize() {
  34. this.setStage(1);
  35. CacheModule = this.moduleManager.modules.cache;
  36. DBModule = this.moduleManager.modules.db;
  37. UtilsModule = this.moduleManager.modules.utils;
  38. YouTubeModule = this.moduleManager.modules.youtube;
  39. StationsModule = this.moduleManager.modules.stations;
  40. PlaylistsModule = this.moduleManager.modules.playlists;
  41. this.SongModel = await DBModule.runJob("GET_MODEL", { modelName: "song" });
  42. this.SongSchemaCache = await CacheModule.runJob("GET_SCHEMA", { schemaName: "song" });
  43. this.setStage(2);
  44. return new Promise((resolve, reject) =>
  45. async.waterfall(
  46. [
  47. next => {
  48. this.setStage(2);
  49. CacheModule.runJob("HGETALL", { table: "songs" })
  50. .then(songs => {
  51. next(null, songs);
  52. })
  53. .catch(next);
  54. },
  55. (songs, next) => {
  56. this.setStage(3);
  57. if (!songs) return next();
  58. const youtubeIds = Object.keys(songs);
  59. return async.each(
  60. youtubeIds,
  61. (youtubeId, next) => {
  62. SongsModule.SongModel.findOne({ youtubeId }, (err, song) => {
  63. if (err) next(err);
  64. else if (!song)
  65. CacheModule.runJob("HDEL", {
  66. table: "songs",
  67. key: youtubeId
  68. })
  69. .then(() => next())
  70. .catch(next);
  71. else next();
  72. });
  73. },
  74. next
  75. );
  76. },
  77. next => {
  78. this.setStage(4);
  79. SongsModule.SongModel.find({}, next);
  80. },
  81. (songs, next) => {
  82. this.setStage(5);
  83. async.each(
  84. songs,
  85. (song, next) => {
  86. CacheModule.runJob("HSET", {
  87. table: "songs",
  88. key: song.youtubeId,
  89. value: SongsModule.SongSchemaCache(song)
  90. })
  91. .then(() => next())
  92. .catch(next);
  93. },
  94. next
  95. );
  96. }
  97. ],
  98. async err => {
  99. if (err) {
  100. err = await UtilsModule.runJob("GET_ERROR", { error: err });
  101. reject(new Error(err));
  102. } else resolve();
  103. }
  104. )
  105. );
  106. }
  107. /**
  108. * Gets a song by id from the cache or Mongo, and if it isn't in the cache yet, adds it the cache
  109. *
  110. * @param {object} payload - object containing the payload
  111. * @param {string} payload.songId - the id of the song we are trying to get
  112. * @returns {Promise} - returns a promise (resolve, reject)
  113. */
  114. GET_SONG(payload) {
  115. return new Promise((resolve, reject) =>
  116. async.waterfall(
  117. [
  118. next => {
  119. if (!mongoose.Types.ObjectId.isValid(payload.songId))
  120. return next("songId is not a valid ObjectId.");
  121. return CacheModule.runJob("HGET", { table: "songs", key: payload.songId }, this)
  122. .then(song => next(null, song))
  123. .catch(next);
  124. },
  125. (song, next) => {
  126. if (song) return next(true, song);
  127. return SongsModule.SongModel.findOne({ _id: payload.songId }, next);
  128. },
  129. (song, next) => {
  130. if (song) {
  131. CacheModule.runJob(
  132. "HSET",
  133. {
  134. table: "songs",
  135. key: payload.songId,
  136. value: song
  137. },
  138. this
  139. ).then(song => next(null, song));
  140. } else next("Song not found.");
  141. }
  142. ],
  143. (err, song) => {
  144. if (err && err !== true) return reject(new Error(err));
  145. return resolve({ song });
  146. }
  147. )
  148. );
  149. }
  150. /**
  151. * Gets songs by id from Mongo
  152. *
  153. * @param {object} payload - object containing the payload
  154. * @param {string} payload.songIds - the ids of the songs we are trying to get
  155. * @param {string} payload.properties - the properties to return
  156. * @returns {Promise} - returns a promise (resolve, reject)
  157. */
  158. GET_SONGS(payload) {
  159. return new Promise((resolve, reject) =>
  160. async.waterfall(
  161. [
  162. next => {
  163. if (!payload.songIds.every(songId => mongoose.Types.ObjectId.isValid(songId)))
  164. next("One or more songIds are not a valid ObjectId.");
  165. else next();
  166. },
  167. next => {
  168. const includeProperties = {};
  169. payload.properties.forEach(property => {
  170. includeProperties[property] = true;
  171. });
  172. return SongsModule.SongModel.find(
  173. {
  174. _id: { $in: payload.songIds }
  175. },
  176. includeProperties,
  177. next
  178. );
  179. }
  180. ],
  181. (err, songs) => {
  182. if (err && err !== true) return reject(new Error(err));
  183. return resolve({ songs });
  184. }
  185. )
  186. );
  187. }
  188. /**
  189. * Gets songs data
  190. *
  191. * @param {object} payload - object containing the payload
  192. * @param {string} payload.page - the page
  193. * @param {string} payload.pageSize - the page size
  194. * @param {string} payload.properties - the properties to return for each song
  195. * @param {string} payload.sort - the sort object
  196. * @param {string} payload.filter - the filter object
  197. * @returns {Promise} - returns a promise (resolve, reject)
  198. */
  199. GET_DATA(payload) {
  200. return new Promise((resolve, reject) => {
  201. const { page, pageSize, properties, sort, filter } = payload;
  202. console.log("GET_DATA", payload);
  203. const regexFilter = {};
  204. for (const [filterKey, filterValue] of Object.entries(filter)) {
  205. const isRegex = filterValue.length > 2 && filterValue.indexOf("/") === 0 && filterValue.lastIndexOf("/") === filterValue.length - 1;
  206. let query;
  207. if (isRegex) query = filterValue.slice(1, filterValue.length - 1);
  208. else query = filterValue.replaceAll(/[.*+?^${}()|[\]\\]/g, "\\$&");
  209. regexFilter[filterKey] = new RegExp(`${query}`, "i");
  210. }
  211. console.log(regexFilter);
  212. async.waterfall(
  213. [
  214. next => {
  215. SongsModule.SongModel
  216. .find({ ...regexFilter })
  217. .count((err, count) => {
  218. next(err, count);
  219. });
  220. },
  221. (count, next) => {
  222. SongsModule.SongModel
  223. .find({ ...regexFilter })
  224. .sort(sort)
  225. .skip(pageSize * (page - 1))
  226. .limit(pageSize)
  227. .select(properties.join(" "))
  228. .exec((err, songs) => {
  229. next(err, count, songs);
  230. });
  231. }
  232. ],
  233. (err, count, songs) => {
  234. if (err && err !== true) return reject(new Error(err));
  235. return resolve({ data: songs, count });
  236. }
  237. )
  238. });
  239. }
  240. /**
  241. * Makes sure that if a song is not currently in the songs db, to add it
  242. *
  243. * @param {object} payload - an object containing the payload
  244. * @param {string} payload.youtubeId - the youtube song id of the song we are trying to ensure is in the songs db
  245. * @param {string} payload.userId - the youtube song id of the song we are trying to ensure is in the songs db
  246. * @param {string} payload.automaticallyRequested - whether the song was automatically requested or not
  247. * @returns {Promise} - returns a promise (resolve, reject)
  248. */
  249. ENSURE_SONG_EXISTS_BY_YOUTUBE_ID(payload) {
  250. return new Promise((resolve, reject) =>
  251. async.waterfall(
  252. [
  253. next => {
  254. SongsModule.SongModel.findOne({ youtubeId: payload.youtubeId }, next);
  255. },
  256. (song, next) => {
  257. if (song && song.duration > 0) next(true, song);
  258. else {
  259. YouTubeModule.runJob("GET_SONG", { youtubeId: payload.youtubeId }, this)
  260. .then(response => {
  261. next(null, song, response.song);
  262. })
  263. .catch(next);
  264. }
  265. },
  266. (song, youtubeSong, next) => {
  267. if (song && song.duration <= 0) {
  268. song.duration = youtubeSong.duration;
  269. song.save({ validateBeforeSave: true }, err => {
  270. if (err) return next(err, song);
  271. return next(null, song);
  272. });
  273. } else {
  274. const status =
  275. (!payload.userId && config.get("hideAnonymousSongs")) ||
  276. (payload.automaticallyRequested && config.get("hideAutomaticallyRequestedSongs"))
  277. ? "hidden"
  278. : "unverified";
  279. const song = new SongsModule.SongModel({
  280. ...youtubeSong,
  281. status,
  282. requestedBy: payload.userId,
  283. requestedAt: Date.now()
  284. });
  285. song.save({ validateBeforeSave: true }, err => {
  286. if (err) return next(err, song);
  287. return next(null, song);
  288. });
  289. }
  290. }
  291. ],
  292. (err, song) => {
  293. if (err && err !== true) return reject(new Error(err));
  294. return resolve({ song });
  295. }
  296. )
  297. );
  298. }
  299. /**
  300. * Gets a song by youtube id
  301. *
  302. * @param {object} payload - an object containing the payload
  303. * @param {string} payload.youtubeId - the youtube id of the song we are trying to get
  304. * @returns {Promise} - returns a promise (resolve, reject)
  305. */
  306. GET_SONG_FROM_YOUTUBE_ID(payload) {
  307. return new Promise((resolve, reject) =>
  308. async.waterfall(
  309. [
  310. next => {
  311. SongsModule.SongModel.findOne({ youtubeId: payload.youtubeId }, next);
  312. }
  313. ],
  314. (err, song) => {
  315. if (err && err !== true) return reject(new Error(err));
  316. return resolve({ song });
  317. }
  318. )
  319. );
  320. }
  321. /**
  322. * Gets a song from id from Mongo and updates the cache with it
  323. *
  324. * @param {object} payload - an object containing the payload
  325. * @param {string} payload.songId - the id of the song we are trying to update
  326. * @param {string} payload.oldStatus - old status of song being updated (optional)
  327. * @returns {Promise} - returns a promise (resolve, reject)
  328. */
  329. UPDATE_SONG(payload) {
  330. return new Promise((resolve, reject) =>
  331. async.waterfall(
  332. [
  333. next => {
  334. SongsModule.SongModel.findOne({ _id: payload.songId }, next);
  335. },
  336. (song, next) => {
  337. if (!song) {
  338. CacheModule.runJob("HDEL", {
  339. table: "songs",
  340. key: payload.songId
  341. });
  342. return next("Song not found.");
  343. }
  344. return CacheModule.runJob(
  345. "HSET",
  346. {
  347. table: "songs",
  348. key: payload.songId,
  349. value: song
  350. },
  351. this
  352. )
  353. .then(song => {
  354. next(null, song);
  355. })
  356. .catch(next);
  357. },
  358. (song, next) => {
  359. const { _id, youtubeId, title, artists, thumbnail, duration, status } = song;
  360. const trimmedSong = {
  361. _id,
  362. youtubeId,
  363. title,
  364. artists,
  365. thumbnail,
  366. duration,
  367. status
  368. };
  369. this.log("INFO", `Going to update playlists now for song ${_id}`);
  370. DBModule.runJob("GET_MODEL", { modelName: "playlist" }, this)
  371. .then(playlistModel => {
  372. playlistModel.updateMany(
  373. { "songs._id": song._id },
  374. { $set: { "songs.$": trimmedSong } },
  375. err => {
  376. if (err) next(err);
  377. else
  378. playlistModel.find({ "songs._id": song._id }, (err, playlists) => {
  379. if (err) next(err);
  380. else {
  381. async.eachLimit(
  382. playlists,
  383. 1,
  384. (playlist, next) => {
  385. PlaylistsModule.runJob(
  386. "UPDATE_PLAYLIST",
  387. {
  388. playlistId: playlist._id
  389. },
  390. this
  391. )
  392. .then(() => {
  393. next();
  394. })
  395. .catch(err => {
  396. next(err);
  397. });
  398. },
  399. err => {
  400. if (err) next(err);
  401. else next(null, song);
  402. }
  403. );
  404. }
  405. });
  406. }
  407. );
  408. })
  409. .catch(err => {
  410. next(err);
  411. });
  412. },
  413. (song, next) => {
  414. const { _id, youtubeId, title, artists, thumbnail, duration, status } = song;
  415. this.log("INFO", `Going to update stations now for song ${_id}`);
  416. DBModule.runJob("GET_MODEL", { modelName: "station" }, this)
  417. .then(stationModel => {
  418. stationModel.updateMany(
  419. { "queue._id": song._id },
  420. {
  421. $set: {
  422. "queue.$.youtubeId": youtubeId,
  423. "queue.$.title": title,
  424. "queue.$.artists": artists,
  425. "queue.$.thumbnail": thumbnail,
  426. "queue.$.duration": duration,
  427. "queue.$.status": status
  428. }
  429. },
  430. err => {
  431. if (err) this.log("ERROR", err);
  432. else
  433. stationModel.find({ "queue._id": song._id }, (err, stations) => {
  434. if (err) next(err);
  435. else {
  436. async.eachLimit(
  437. stations,
  438. 1,
  439. (station, next) => {
  440. StationsModule.runJob(
  441. "UPDATE_STATION",
  442. { stationId: station._id },
  443. this
  444. )
  445. .then(() => {
  446. next();
  447. })
  448. .catch(err => {
  449. next(err);
  450. });
  451. },
  452. err => {
  453. if (err) next(err);
  454. else next(null, song);
  455. }
  456. );
  457. }
  458. });
  459. }
  460. );
  461. })
  462. .catch(err => {
  463. next(err);
  464. });
  465. },
  466. (song, next) => {
  467. async.eachLimit(
  468. song.genres,
  469. 1,
  470. (genre, next) => {
  471. PlaylistsModule.runJob("AUTOFILL_GENRE_PLAYLIST", { genre }, this)
  472. .then(() => {
  473. next();
  474. })
  475. .catch(err => next(err));
  476. },
  477. err => {
  478. next(err, song);
  479. }
  480. );
  481. }
  482. ],
  483. (err, song) => {
  484. if (err && err !== true) return reject(new Error(err));
  485. if (!payload.oldStatus) payload.oldStatus = null;
  486. CacheModule.runJob("PUB", {
  487. channel: "song.updated",
  488. value: { songId: song._id, oldStatus: payload.oldStatus }
  489. });
  490. return resolve(song);
  491. }
  492. )
  493. );
  494. }
  495. /**
  496. * Updates all songs
  497. *
  498. * @returns {Promise} - returns a promise (resolve, reject)
  499. */
  500. UPDATE_ALL_SONGS() {
  501. return new Promise((resolve, reject) =>
  502. async.waterfall(
  503. [
  504. next => {
  505. SongsModule.SongModel.find({}, next);
  506. },
  507. (songs, next) => {
  508. let index = 0;
  509. const { length } = songs;
  510. async.eachLimit(
  511. songs,
  512. 2,
  513. (song, next) => {
  514. index += 1;
  515. console.log(`Updating song #${index} out of ${length}: ${song._id}`);
  516. SongsModule.runJob("UPDATE_SONG", { songId: song._id }, this)
  517. .then(() => {
  518. next();
  519. })
  520. .catch(err => {
  521. next(err);
  522. });
  523. },
  524. err => {
  525. next(err);
  526. }
  527. );
  528. }
  529. ],
  530. err => {
  531. if (err && err !== true) return reject(new Error(err));
  532. return resolve();
  533. }
  534. )
  535. );
  536. }
  537. // /**
  538. // * Deletes song from id from Mongo and cache
  539. // *
  540. // * @param {object} payload - returns an object containing the payload
  541. // * @param {string} payload.songId - the song id of the song we are trying to delete
  542. // * @returns {Promise} - returns a promise (resolve, reject)
  543. // */
  544. // DELETE_SONG(payload) {
  545. // return new Promise((resolve, reject) =>
  546. // async.waterfall(
  547. // [
  548. // next => {
  549. // SongsModule.SongModel.deleteOne({ _id: payload.songId }, next);
  550. // },
  551. // next => {
  552. // CacheModule.runJob(
  553. // "HDEL",
  554. // {
  555. // table: "songs",
  556. // key: payload.songId
  557. // },
  558. // this
  559. // )
  560. // .then(() => next())
  561. // .catch(next);
  562. // },
  563. // next => {
  564. // this.log("INFO", `Going to update playlists and stations now for deleted song ${payload.songId}`);
  565. // DBModule.runJob("GET_MODEL", { modelName: "playlist" }).then(playlistModel => {
  566. // playlistModel.find({ "songs._id": song._id }, (err, playlists) => {
  567. // if (err) this.log("ERROR", err);
  568. // else {
  569. // playlistModel.updateMany(
  570. // { "songs._id": payload.songId },
  571. // { $pull: { "songs.$._id": payload.songId} },
  572. // err => {
  573. // if (err) this.log("ERROR", err);
  574. // else {
  575. // playlists.forEach(playlist => {
  576. // PlaylistsModule.runJob("UPDATE_PLAYLIST", {
  577. // playlistId: playlist._id
  578. // });
  579. // });
  580. // }
  581. // }
  582. // );
  583. // }
  584. // });
  585. // });
  586. // DBModule.runJob("GET_MODEL", { modelName: "station" }).then(stationModel => {
  587. // stationModel.find({ "queue._id": payload.songId }, (err, stations) => {
  588. // stationModel.updateMany(
  589. // { "queue._id": payload.songId },
  590. // {
  591. // $pull: { "queue._id": }
  592. // },
  593. // err => {
  594. // if (err) this.log("ERROR", err);
  595. // else {
  596. // stations.forEach(station => {
  597. // StationsModule.runJob("UPDATE_STATION", { stationId: station._id });
  598. // });
  599. // }
  600. // }
  601. // );
  602. // });
  603. // });
  604. // }
  605. // ],
  606. // err => {
  607. // if (err && err !== true) return reject(new Error(err));
  608. // return resolve();
  609. // }
  610. // )
  611. // );
  612. // }
  613. /**
  614. * Searches through songs
  615. *
  616. * @param {object} payload - object that contains the payload
  617. * @param {string} payload.query - the query
  618. * @param {string} payload.includeHidden - include hidden songs
  619. * @param {string} payload.includeUnverified - include unverified songs
  620. * @param {string} payload.includeVerified - include verified songs
  621. * @param {string} payload.trimmed - include trimmed songs
  622. * @param {string} payload.page - page (default 1)
  623. * @returns {Promise} - returns promise (reject, resolve)
  624. */
  625. SEARCH(payload) {
  626. return new Promise((resolve, reject) =>
  627. async.waterfall(
  628. [
  629. next => {
  630. const statuses = [];
  631. if (payload.includeHidden) statuses.push("hidden");
  632. if (payload.includeUnverified) statuses.push("unverified");
  633. if (payload.includeVerified) statuses.push("verified");
  634. if (statuses.length === 0) return next("No statuses have been included.");
  635. let { query } = payload;
  636. const isRegex =
  637. query.length > 2 && query.indexOf("/") === 0 && query.lastIndexOf("/") === query.length - 1;
  638. if (isRegex) query = query.slice(1, query.length - 1);
  639. else query = query.replaceAll(/[.*+?^${}()|[\]\\]/g, "\\$&");
  640. const filterArray = [
  641. {
  642. title: new RegExp(`${query}`, "i"),
  643. status: { $in: statuses }
  644. },
  645. {
  646. artists: new RegExp(`${query}`, "i"),
  647. status: { $in: statuses }
  648. }
  649. ];
  650. return next(null, filterArray);
  651. },
  652. (filterArray, next) => {
  653. const page = payload.page ? payload.page : 1;
  654. const pageSize = 15;
  655. const skipAmount = pageSize * (page - 1);
  656. SongsModule.SongModel.find({ $or: filterArray }).count((err, count) => {
  657. if (err) next(err);
  658. else {
  659. SongsModule.SongModel.find({ $or: filterArray })
  660. .skip(skipAmount)
  661. .limit(pageSize)
  662. .exec((err, songs) => {
  663. if (err) next(err);
  664. else {
  665. next(null, {
  666. songs,
  667. page,
  668. pageSize,
  669. skipAmount,
  670. count
  671. });
  672. }
  673. });
  674. }
  675. });
  676. },
  677. (data, next) => {
  678. if (data.songs.length === 0) next("No songs found");
  679. else if (payload.trimmed) {
  680. next(null, {
  681. songs: data.songs.map(song => {
  682. const { _id, youtubeId, title, artists, thumbnail, duration, status } = song;
  683. return {
  684. _id,
  685. youtubeId,
  686. title,
  687. artists,
  688. thumbnail,
  689. duration,
  690. status
  691. };
  692. }),
  693. ...data
  694. });
  695. } else next(null, data);
  696. }
  697. ],
  698. (err, data) => {
  699. if (err && err !== true) return reject(new Error(err));
  700. return resolve(data);
  701. }
  702. )
  703. );
  704. }
  705. /**
  706. * Recalculates dislikes and likes for a song
  707. *
  708. * @param {object} payload - returns an object containing the payload
  709. * @param {string} payload.youtubeId - the youtube id of the song
  710. * @param {string} payload.songId - the song id of the song
  711. * @returns {Promise} - returns a promise (resolve, reject)
  712. */
  713. async RECALCULATE_SONG_RATINGS(payload) {
  714. const playlistModel = await DBModule.runJob("GET_MODEL", { modelName: "playlist" }, this);
  715. return new Promise((resolve, reject) => {
  716. async.waterfall(
  717. [
  718. next => {
  719. playlistModel.countDocuments(
  720. { songs: { $elemMatch: { youtubeId: payload.youtubeId } }, type: "user-liked" },
  721. (err, likes) => {
  722. if (err) return next(err);
  723. return next(null, likes);
  724. }
  725. );
  726. },
  727. (likes, next) => {
  728. playlistModel.countDocuments(
  729. { songs: { $elemMatch: { youtubeId: payload.youtubeId } }, type: "user-disliked" },
  730. (err, dislikes) => {
  731. if (err) return next(err);
  732. return next(err, { likes, dislikes });
  733. }
  734. );
  735. },
  736. ({ likes, dislikes }, next) => {
  737. SongsModule.SongModel.updateOne(
  738. { _id: payload.songId },
  739. {
  740. $set: {
  741. likes,
  742. dislikes
  743. }
  744. },
  745. err => next(err, { likes, dislikes })
  746. );
  747. }
  748. ],
  749. (err, { likes, dislikes }) => {
  750. if (err) return reject(new Error(err));
  751. return resolve({ likes, dislikes });
  752. }
  753. );
  754. });
  755. }
  756. /**
  757. * Recalculates dislikes and likes for all songs
  758. *
  759. * @returns {Promise} - returns a promise (resolve, reject)
  760. */
  761. RECALCULATE_ALL_SONG_RATINGS() {
  762. return new Promise((resolve, reject) => {
  763. async.waterfall(
  764. [
  765. next => {
  766. SongsModule.SongModel.find({}, { _id: true }, next);
  767. },
  768. (songs, next) => {
  769. async.eachLimit(
  770. songs,
  771. 2,
  772. (song, next) => {
  773. SongsModule.runJob("RECALCULATE_SONG_RATINGS", { songId: song._id }, this)
  774. .then(() => {
  775. next();
  776. })
  777. .catch(err => {
  778. next(err);
  779. });
  780. },
  781. err => {
  782. next(err);
  783. }
  784. );
  785. }
  786. ],
  787. err => {
  788. if (err) return reject(new Error(err));
  789. return resolve();
  790. }
  791. );
  792. });
  793. }
  794. /**
  795. * Gets an array of all genres
  796. *
  797. * @returns {Promise} - returns a promise (resolve, reject)
  798. */
  799. GET_ALL_GENRES() {
  800. return new Promise((resolve, reject) =>
  801. async.waterfall(
  802. [
  803. next => {
  804. SongsModule.SongModel.find({ status: "verified" }, { genres: 1, _id: false }, next);
  805. },
  806. (songs, next) => {
  807. let allGenres = [];
  808. songs.forEach(song => {
  809. allGenres = allGenres.concat(song.genres);
  810. });
  811. const lowerCaseGenres = allGenres.map(genre => genre.toLowerCase());
  812. const uniqueGenres = lowerCaseGenres.filter(
  813. (value, index, self) => self.indexOf(value) === index
  814. );
  815. next(null, uniqueGenres);
  816. }
  817. ],
  818. (err, genres) => {
  819. if (err && err !== true) return reject(new Error(err));
  820. return resolve({ genres });
  821. }
  822. )
  823. );
  824. }
  825. /**
  826. * Gets an array of all songs with a specific genre
  827. *
  828. * @param {object} payload - returns an object containing the payload
  829. * @param {string} payload.genre - the genre
  830. * @returns {Promise} - returns a promise (resolve, reject)
  831. */
  832. GET_ALL_SONGS_WITH_GENRE(payload) {
  833. return new Promise((resolve, reject) =>
  834. async.waterfall(
  835. [
  836. next => {
  837. SongsModule.SongModel.find(
  838. {
  839. status: "verified",
  840. genres: { $regex: new RegExp(`^${payload.genre.toLowerCase()}$`, "i") }
  841. },
  842. next
  843. );
  844. }
  845. ],
  846. (err, songs) => {
  847. if (err && err !== true) return reject(new Error(err));
  848. return resolve({ songs });
  849. }
  850. )
  851. );
  852. }
  853. // runjob songs GET_ORPHANED_PLAYLIST_SONGS {}
  854. /**
  855. * Gets a orphaned playlist songs
  856. *
  857. * @returns {Promise} - returns promise (reject, resolve)
  858. */
  859. GET_ORPHANED_PLAYLIST_SONGS() {
  860. return new Promise((resolve, reject) => {
  861. DBModule.runJob("GET_MODEL", { modelName: "playlist" }, this).then(playlistModel => {
  862. playlistModel.find({}, (err, playlists) => {
  863. if (err) reject(new Error(err));
  864. else {
  865. SongsModule.SongModel.find({}, { _id: true, youtubeId: true }, (err, songs) => {
  866. if (err) reject(new Error(err));
  867. else {
  868. const songIds = songs.map(song => song._id.toString());
  869. const orphanedYoutubeIds = new Set();
  870. async.eachLimit(
  871. playlists,
  872. 1,
  873. (playlist, next) => {
  874. playlist.songs.forEach(song => {
  875. if (
  876. (!song._id || songIds.indexOf(song._id.toString() === -1)) &&
  877. !orphanedYoutubeIds.has(song.youtubeId)
  878. ) {
  879. orphanedYoutubeIds.add(song.youtubeId);
  880. }
  881. });
  882. next();
  883. },
  884. () => {
  885. resolve({ youtubeIds: Array.from(orphanedYoutubeIds) });
  886. }
  887. );
  888. }
  889. });
  890. }
  891. });
  892. });
  893. });
  894. }
  895. /**
  896. * Requests a song, adding it to the DB
  897. *
  898. * @param {object} payload - The payload
  899. * @param {string} payload.youtubeId - The YouTube song id of the song
  900. * @param {string} payload.userId - The user id of the person requesting the song
  901. * @returns {Promise} - returns promise (reject, resolve)
  902. */
  903. REQUEST_SONG(payload) {
  904. return new Promise((resolve, reject) => {
  905. const { youtubeId, userId } = payload;
  906. const requestedAt = Date.now();
  907. async.waterfall(
  908. [
  909. next => {
  910. DBModule.runJob("GET_MODEL", { modelName: "user" }, this)
  911. .then(UserModel => {
  912. UserModel.findOne({ _id: userId }, { "preferences.anonymousSongRequests": 1 }, next);
  913. })
  914. .catch(next);
  915. },
  916. (user, next) => {
  917. SongsModule.SongModel.findOne({ youtubeId }, (err, song) => next(err, user, song));
  918. },
  919. // Get YouTube data from id
  920. (user, song, next) => {
  921. if (song) return next("This song is already in the database.", song);
  922. // TODO Add err object as first param of callback
  923. const requestedBy = user.preferences.anonymousSongRequests ? null : userId;
  924. const status = !requestedBy && config.get("hideAnonymousSongs") ? "hidden" : "unverified";
  925. return YouTubeModule.runJob("GET_SONG", { youtubeId }, this)
  926. .then(response => {
  927. const { song } = response;
  928. song.artists = [];
  929. song.genres = [];
  930. song.skipDuration = 0;
  931. song.explicit = false;
  932. song.requestedBy = user.preferences.anonymousSongRequests ? null : userId;
  933. song.requestedAt = requestedAt;
  934. song.status = status;
  935. next(null, song);
  936. })
  937. .catch(next);
  938. },
  939. (newSong, next) => {
  940. const song = new SongsModule.SongModel(newSong);
  941. song.save({ validateBeforeSave: false }, err => {
  942. if (err) return next(err, song);
  943. return next(null, song);
  944. });
  945. },
  946. (song, next) => {
  947. DBModule.runJob("GET_MODEL", { modelName: "user" }, this)
  948. .then(UserModel => {
  949. UserModel.findOne({ _id: userId }, (err, user) => {
  950. if (err) return next(err);
  951. if (!user) return next(null, song);
  952. user.statistics.songsRequested += 1;
  953. return user.save(err => {
  954. if (err) return next(err);
  955. return next(null, song);
  956. });
  957. });
  958. })
  959. .catch(next);
  960. }
  961. ],
  962. async (err, song) => {
  963. if (err && err !== "This song is already in the database.") return reject(err);
  964. const { _id, youtubeId, title, artists, thumbnail, duration, status } = song;
  965. const trimmedSong = {
  966. _id,
  967. youtubeId,
  968. title,
  969. artists,
  970. thumbnail,
  971. duration,
  972. status
  973. };
  974. if (err && err === "This song is already in the database.")
  975. return reject(new ErrorWithData(err, { song: trimmedSong }));
  976. SongsModule.runJob("UPDATE_SONG", { songId: song._id });
  977. return resolve({ song: trimmedSong });
  978. }
  979. );
  980. });
  981. }
  982. /**
  983. * Hides a song
  984. *
  985. * @param {object} payload - The payload
  986. * @param {string} payload.songId - The song id of the song
  987. * @returns {Promise} - returns promise (reject, resolve)
  988. */
  989. HIDE_SONG(payload) {
  990. return new Promise((resolve, reject) => {
  991. const { songId } = payload;
  992. async.waterfall(
  993. [
  994. next => {
  995. SongsModule.SongModel.findOne({ _id: songId }, next);
  996. },
  997. // Get YouTube data from id
  998. (song, next) => {
  999. if (!song) return next("This song does not exist.");
  1000. if (song.status === "hidden") return next("This song is already hidden.");
  1001. // TODO Add err object as first param of callback
  1002. return next(null, song.status);
  1003. },
  1004. (oldStatus, next) => {
  1005. SongsModule.SongModel.updateOne({ _id: songId }, { status: "hidden" }, res =>
  1006. next(null, res, oldStatus)
  1007. );
  1008. },
  1009. (res, oldStatus, next) => {
  1010. SongsModule.runJob("UPDATE_SONG", { songId, oldStatus });
  1011. next();
  1012. }
  1013. ],
  1014. async err => {
  1015. if (err) reject(err);
  1016. resolve();
  1017. }
  1018. );
  1019. });
  1020. }
  1021. /**
  1022. * Unhides a song
  1023. *
  1024. * @param {object} payload - The payload
  1025. * @param {string} payload.songId - The song id of the song
  1026. * @returns {Promise} - returns promise (reject, resolve)
  1027. */
  1028. UNHIDE_SONG(payload) {
  1029. return new Promise((resolve, reject) => {
  1030. const { songId } = payload;
  1031. async.waterfall(
  1032. [
  1033. next => {
  1034. SongsModule.SongModel.findOne({ _id: songId }, next);
  1035. },
  1036. // Get YouTube data from id
  1037. (song, next) => {
  1038. if (!song) return next("This song does not exist.");
  1039. if (song.status !== "hidden") return next("This song is not hidden.");
  1040. // TODO Add err object as first param of callback
  1041. return next();
  1042. },
  1043. next => {
  1044. SongsModule.SongModel.updateOne({ _id: songId }, { status: "unverified" }, next);
  1045. },
  1046. (res, next) => {
  1047. SongsModule.runJob("UPDATE_SONG", { songId, oldStatus: "hidden" });
  1048. next();
  1049. }
  1050. ],
  1051. async err => {
  1052. if (err) reject(err);
  1053. resolve();
  1054. }
  1055. );
  1056. });
  1057. }
  1058. // runjob songs REQUEST_ORPHANED_PLAYLIST_SONGS {}
  1059. /**
  1060. * Requests all orphaned playlist songs, adding them to the database
  1061. *
  1062. * @returns {Promise} - returns promise (reject, resolve)
  1063. */
  1064. REQUEST_ORPHANED_PLAYLIST_SONGS() {
  1065. return new Promise((resolve, reject) => {
  1066. DBModule.runJob("GET_MODEL", { modelName: "playlist" })
  1067. .then(playlistModel => {
  1068. SongsModule.runJob("GET_ORPHANED_PLAYLIST_SONGS", {}, this).then(response => {
  1069. const { youtubeIds } = response;
  1070. const playlistsToUpdate = new Set();
  1071. async.eachLimit(
  1072. youtubeIds,
  1073. 1,
  1074. (youtubeId, next) => {
  1075. async.waterfall(
  1076. [
  1077. next => {
  1078. console.log(
  1079. youtubeId,
  1080. `this is song ${youtubeIds.indexOf(youtubeId) + 1}/${youtubeIds.length}`
  1081. );
  1082. setTimeout(next, 150);
  1083. },
  1084. next => {
  1085. SongsModule.runJob(
  1086. "ENSURE_SONG_EXISTS_BY_SONG_ID",
  1087. { youtubeId, automaticallyRequested: true },
  1088. this
  1089. )
  1090. .then(() => next())
  1091. .catch(next);
  1092. },
  1093. next => {
  1094. console.log(444, youtubeId);
  1095. SongsModule.SongModel.findOne({ youtubeId }, next);
  1096. },
  1097. (song, next) => {
  1098. const { _id, title, artists, thumbnail, duration, status } = song;
  1099. const trimmedSong = {
  1100. _id,
  1101. youtubeId,
  1102. title,
  1103. artists,
  1104. thumbnail,
  1105. duration,
  1106. status
  1107. };
  1108. playlistModel.updateMany(
  1109. { "songs.youtubeId": song.youtubeId },
  1110. { $set: { "songs.$": trimmedSong } },
  1111. err => {
  1112. next(err, song);
  1113. }
  1114. );
  1115. },
  1116. (song, next) => {
  1117. playlistModel.find({ "songs._id": song._id }, next);
  1118. },
  1119. (playlists, next) => {
  1120. playlists.forEach(playlist => {
  1121. playlistsToUpdate.add(playlist._id.toString());
  1122. });
  1123. next();
  1124. }
  1125. ],
  1126. next
  1127. );
  1128. },
  1129. err => {
  1130. if (err) reject(err);
  1131. else {
  1132. async.eachLimit(
  1133. Array.from(playlistsToUpdate),
  1134. 1,
  1135. (playlistId, next) => {
  1136. PlaylistsModule.runJob(
  1137. "UPDATE_PLAYLIST",
  1138. {
  1139. playlistId
  1140. },
  1141. this
  1142. )
  1143. .then(() => {
  1144. next();
  1145. })
  1146. .catch(next);
  1147. },
  1148. err => {
  1149. if (err) reject(err);
  1150. else resolve();
  1151. }
  1152. );
  1153. }
  1154. }
  1155. );
  1156. });
  1157. })
  1158. .catch(reject);
  1159. });
  1160. }
  1161. }
  1162. export default new _SongsModule();