songs.js 33 KB

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