songs.js 29 KB

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