songs.js 26 KB

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