songs.js 32 KB

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