songs.js 37 KB

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