songs.js 51 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043
  1. import async from "async";
  2. import { isAdminRequired, isLoginRequired } from "./hooks";
  3. import moduleManager from "../../index";
  4. const DBModule = moduleManager.modules.db;
  5. const UtilsModule = moduleManager.modules.utils;
  6. const WSModule = moduleManager.modules.ws;
  7. const CacheModule = moduleManager.modules.cache;
  8. const SongsModule = moduleManager.modules.songs;
  9. const ActivitiesModule = moduleManager.modules.activities;
  10. const YouTubeModule = moduleManager.modules.youtube;
  11. const PlaylistsModule = moduleManager.modules.playlists;
  12. const StationsModule = moduleManager.modules.stations;
  13. CacheModule.runJob("SUB", {
  14. channel: "song.updated",
  15. cb: async data => {
  16. const songModel = await DBModule.runJob("GET_MODEL", {
  17. modelName: "song"
  18. });
  19. songModel.findOne({ _id: data.songId }, (err, song) => {
  20. WSModule.runJob("EMIT_TO_ROOMS", {
  21. rooms: ["import-album", "admin.songs", `edit-song.${data.songId}`],
  22. args: ["event:admin.song.updated", { data: { song, oldStatus: data.oldStatus } }]
  23. });
  24. });
  25. }
  26. });
  27. CacheModule.runJob("SUB", {
  28. channel: "song.removed",
  29. cb: async data => {
  30. WSModule.runJob("EMIT_TO_ROOMS", {
  31. rooms: ["import-album", "admin.songs", `edit-song.${data.songId}`],
  32. args: ["event:admin.song.removed", { data }]
  33. });
  34. }
  35. });
  36. CacheModule.runJob("SUB", {
  37. channel: "song.like",
  38. cb: data => {
  39. WSModule.runJob("EMIT_TO_ROOM", {
  40. room: `song.${data.youtubeId}`,
  41. args: [
  42. "event:song.liked",
  43. {
  44. data: { youtubeId: data.youtubeId, likes: data.likes, dislikes: data.dislikes }
  45. }
  46. ]
  47. });
  48. WSModule.runJob("SOCKETS_FROM_USER", { userId: data.userId }).then(sockets => {
  49. sockets.forEach(socket => {
  50. socket.dispatch("event:song.ratings.updated", {
  51. data: {
  52. youtubeId: data.youtubeId,
  53. liked: true,
  54. disliked: false
  55. }
  56. });
  57. });
  58. });
  59. }
  60. });
  61. CacheModule.runJob("SUB", {
  62. channel: "song.dislike",
  63. cb: data => {
  64. WSModule.runJob("EMIT_TO_ROOM", {
  65. room: `song.${data.youtubeId}`,
  66. args: [
  67. "event:song.disliked",
  68. {
  69. data: { youtubeId: data.youtubeId, likes: data.likes, dislikes: data.dislikes }
  70. }
  71. ]
  72. });
  73. WSModule.runJob("SOCKETS_FROM_USER", { userId: data.userId }).then(sockets => {
  74. sockets.forEach(socket => {
  75. socket.dispatch("event:song.ratings.updated", {
  76. data: {
  77. youtubeId: data.youtubeId,
  78. liked: false,
  79. disliked: true
  80. }
  81. });
  82. });
  83. });
  84. }
  85. });
  86. CacheModule.runJob("SUB", {
  87. channel: "song.unlike",
  88. cb: data => {
  89. WSModule.runJob("EMIT_TO_ROOM", {
  90. room: `song.${data.youtubeId}`,
  91. args: [
  92. "event:song.unliked",
  93. {
  94. data: { youtubeId: data.youtubeId, likes: data.likes, dislikes: data.dislikes }
  95. }
  96. ]
  97. });
  98. WSModule.runJob("SOCKETS_FROM_USER", { userId: data.userId }).then(sockets => {
  99. sockets.forEach(socket => {
  100. socket.dispatch("event:song.ratings.updated", {
  101. data: {
  102. youtubeId: data.youtubeId,
  103. liked: false,
  104. disliked: false
  105. }
  106. });
  107. });
  108. });
  109. }
  110. });
  111. CacheModule.runJob("SUB", {
  112. channel: "song.undislike",
  113. cb: data => {
  114. WSModule.runJob("EMIT_TO_ROOM", {
  115. room: `song.${data.youtubeId}`,
  116. args: [
  117. "event:song.undisliked",
  118. {
  119. data: { youtubeId: data.youtubeId, likes: data.likes, dislikes: data.dislikes }
  120. }
  121. ]
  122. });
  123. WSModule.runJob("SOCKETS_FROM_USER", { userId: data.userId }).then(sockets => {
  124. sockets.forEach(socket => {
  125. socket.dispatch("event:song.ratings.updated", {
  126. data: {
  127. youtubeId: data.youtubeId,
  128. liked: false,
  129. disliked: false
  130. }
  131. });
  132. });
  133. });
  134. }
  135. });
  136. export default {
  137. /**
  138. * Returns the length of the songs list
  139. *
  140. * @param {object} session - the session object automatically added by the websocket
  141. * @param cb
  142. */
  143. length: isAdminRequired(async function length(session, cb) {
  144. const songModel = await DBModule.runJob("GET_MODEL", { modelName: "song" }, this);
  145. async.waterfall(
  146. [
  147. next => {
  148. songModel.countDocuments({}, next);
  149. }
  150. ],
  151. async (err, count) => {
  152. if (err) {
  153. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  154. this.log("ERROR", "SONGS_LENGTH", `Failed to get length from songs. "${err}"`);
  155. return cb({ status: "error", message: err });
  156. }
  157. this.log("SUCCESS", "SONGS_LENGTH", `Got length from songs successfully.`);
  158. return cb({ status: "success", message: "Successfully got length of songs.", data: { length: count } });
  159. }
  160. );
  161. }),
  162. /**
  163. * Gets songs, used in the admin songs page by the AdvancedTable component
  164. *
  165. * @param {object} session - the session object automatically added by the websocket
  166. * @param page - the page
  167. * @param pageSize - the size per page
  168. * @param properties - the properties to return for each song
  169. * @param sort - the sort object
  170. * @param queries - the queries array
  171. * @param operator - the operator for queries
  172. * @param cb
  173. */
  174. getData: isAdminRequired(async function getSet(session, page, pageSize, properties, sort, queries, operator, cb) {
  175. async.waterfall(
  176. [
  177. next => {
  178. DBModule.runJob(
  179. "GET_DATA",
  180. {
  181. page,
  182. pageSize,
  183. properties,
  184. sort,
  185. queries,
  186. operator,
  187. modelName: "song",
  188. blacklistedProperties: [],
  189. specialProperties: {
  190. requestedBy: [
  191. {
  192. $addFields: {
  193. requestedByOID: {
  194. $convert: {
  195. input: "$requestedBy",
  196. to: "objectId",
  197. onError: "unknown",
  198. onNull: "unknown"
  199. }
  200. }
  201. }
  202. },
  203. {
  204. $lookup: {
  205. from: "users",
  206. localField: "requestedByOID",
  207. foreignField: "_id",
  208. as: "requestedByUser"
  209. }
  210. },
  211. {
  212. $addFields: {
  213. requestedByUsername: {
  214. $ifNull: ["$requestedByUser.username", "unknown"]
  215. }
  216. }
  217. },
  218. {
  219. $project: {
  220. requestedByOID: 0,
  221. requestedByUser: 0
  222. }
  223. }
  224. ],
  225. verifiedBy: [
  226. {
  227. $addFields: {
  228. verifiedByOID: {
  229. $convert: {
  230. input: "$verifiedBy",
  231. to: "objectId",
  232. onError: "unknown",
  233. onNull: "unknown"
  234. }
  235. }
  236. }
  237. },
  238. {
  239. $lookup: {
  240. from: "users",
  241. localField: "verifiedByOID",
  242. foreignField: "_id",
  243. as: "verifiedByUser"
  244. }
  245. },
  246. {
  247. $unwind: {
  248. path: "$verifiedByUser",
  249. preserveNullAndEmptyArrays: true
  250. }
  251. },
  252. {
  253. $addFields: {
  254. verifiedByUsername: {
  255. $ifNull: ["$verifiedByUser.username", "unknown"]
  256. }
  257. }
  258. },
  259. {
  260. $project: {
  261. verifiedByOID: 0,
  262. verifiedByUser: 0
  263. }
  264. }
  265. ]
  266. },
  267. specialQueries: {
  268. requestedBy: newQuery => ({
  269. $or: [newQuery, { requestedByUsername: newQuery.requestedBy }]
  270. }),
  271. verifiedBy: newQuery => ({
  272. $or: [newQuery, { verifiedByUsername: newQuery.verifiedBy }]
  273. })
  274. }
  275. },
  276. this
  277. )
  278. .then(response => {
  279. next(null, response);
  280. })
  281. .catch(err => {
  282. next(err);
  283. });
  284. }
  285. ],
  286. async (err, response) => {
  287. if (err) {
  288. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  289. this.log("ERROR", "SONGS_GET_DATA", `Failed to get data from songs. "${err}"`);
  290. return cb({ status: "error", message: err });
  291. }
  292. this.log("SUCCESS", "SONGS_GET_DATA", `Got data from songs successfully.`);
  293. return cb({ status: "success", message: "Successfully got data from songs.", data: response });
  294. }
  295. );
  296. }),
  297. /**
  298. * Updates all songs
  299. *
  300. * @param {object} session - the session object automatically added by the websocket
  301. * @param cb
  302. */
  303. updateAll: isAdminRequired(async function updateAll(session, cb) {
  304. async.waterfall(
  305. [
  306. next => {
  307. SongsModule.runJob("UPDATE_ALL_SONGS", {}, this)
  308. .then(() => {
  309. next();
  310. })
  311. .catch(err => {
  312. next(err);
  313. });
  314. }
  315. ],
  316. async err => {
  317. if (err) {
  318. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  319. this.log("ERROR", "SONGS_UPDATE_ALL", `Failed to update all songs. "${err}"`);
  320. return cb({ status: "error", message: err });
  321. }
  322. this.log("SUCCESS", "SONGS_UPDATE_ALL", `Updated all songs successfully.`);
  323. return cb({ status: "success", message: "Successfully updated all songs." });
  324. }
  325. );
  326. }),
  327. /**
  328. * Recalculates all song ratings
  329. *
  330. * @param {object} session - the session object automatically added by the websocket
  331. * @param cb
  332. */
  333. recalculateAllRatings: isAdminRequired(async function recalculateAllRatings(session, cb) {
  334. async.waterfall(
  335. [
  336. next => {
  337. SongsModule.runJob("RECALCULATE_ALL_SONG_RATINGS", {}, this)
  338. .then(() => {
  339. next();
  340. })
  341. .catch(err => {
  342. next(err);
  343. });
  344. }
  345. ],
  346. async err => {
  347. if (err) {
  348. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  349. this.log(
  350. "ERROR",
  351. "SONGS_RECALCULATE_ALL_RATINGS",
  352. `Failed to recalculate all song ratings. "${err}"`
  353. );
  354. return cb({ status: "error", message: err });
  355. }
  356. this.log("SUCCESS", "SONGS_RECALCULATE_ALL_RATINGS", `Recalculated all song ratings successfully.`);
  357. return cb({ status: "success", message: "Successfully recalculated all song ratings." });
  358. }
  359. );
  360. }),
  361. /**
  362. * Gets a song from the Musare song id
  363. *
  364. * @param {object} session - the session object automatically added by the websocket
  365. * @param {string} songId - the song id
  366. * @param {Function} cb
  367. */
  368. getSongFromSongId: isAdminRequired(function getSongFromSongId(session, songId, cb) {
  369. async.waterfall(
  370. [
  371. next => {
  372. SongsModule.runJob("GET_SONG", { songId }, this)
  373. .then(response => next(null, response.song))
  374. .catch(err => next(err));
  375. }
  376. ],
  377. async (err, song) => {
  378. if (err) {
  379. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  380. this.log("ERROR", "SONGS_GET_SONG_FROM_MUSARE_ID", `Failed to get song ${songId}. "${err}"`);
  381. return cb({ status: "error", message: err });
  382. }
  383. this.log("SUCCESS", "SONGS_GET_SONG_FROM_MUSARE_ID", `Got song ${songId} successfully.`);
  384. return cb({ status: "success", data: { song } });
  385. }
  386. );
  387. }),
  388. /**
  389. * Updates a song
  390. *
  391. * @param {object} session - the session object automatically added by the websocket
  392. * @param {string} songId - the song id
  393. * @param {object} song - the updated song object
  394. * @param {Function} cb
  395. */
  396. update: isAdminRequired(async function update(session, songId, song, cb) {
  397. const songModel = await DBModule.runJob("GET_MODEL", { modelName: "song" }, this);
  398. let existingSong = null;
  399. async.waterfall(
  400. [
  401. next => {
  402. songModel.findOne({ _id: songId }, next);
  403. },
  404. (_existingSong, next) => {
  405. existingSong = _existingSong;
  406. songModel.updateOne({ _id: songId }, song, { runValidators: true }, next);
  407. },
  408. (res, next) => {
  409. SongsModule.runJob("UPDATE_SONG", { songId }, this)
  410. .then(song => {
  411. existingSong.genres
  412. .concat(song.genres)
  413. .filter((value, index, self) => self.indexOf(value) === index)
  414. .forEach(genre => {
  415. PlaylistsModule.runJob("AUTOFILL_GENRE_PLAYLIST", { genre })
  416. .then(() => {})
  417. .catch(() => {});
  418. });
  419. next(null, song);
  420. })
  421. .catch(next);
  422. }
  423. ],
  424. async (err, song) => {
  425. if (err) {
  426. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  427. this.log("ERROR", "SONGS_UPDATE", `Failed to update song "${songId}". "${err}"`);
  428. return cb({ status: "error", message: err });
  429. }
  430. this.log("SUCCESS", "SONGS_UPDATE", `Successfully updated song "${songId}".`);
  431. return cb({
  432. status: "success",
  433. message: "Song has been successfully updated",
  434. data: { song }
  435. });
  436. }
  437. );
  438. }),
  439. /**
  440. * Removes a song
  441. *
  442. * @param session
  443. * @param songId - the song id
  444. * @param cb
  445. */
  446. remove: isAdminRequired(async function remove(session, songId, cb) {
  447. const songModel = await DBModule.runJob("GET_MODEL", { modelName: "song" }, this);
  448. const stationModel = await DBModule.runJob("GET_MODEL", { modelName: "station" }, this);
  449. async.waterfall(
  450. [
  451. next => {
  452. songModel.findOne({ _id: songId }, next);
  453. },
  454. (song, next) => {
  455. PlaylistsModule.runJob("GET_PLAYLISTS_WITH_SONG", { songId }, this)
  456. .then(res => {
  457. async.eachLimit(
  458. res.playlists,
  459. 1,
  460. (playlist, next) => {
  461. WSModule.runJob(
  462. "RUN_ACTION2",
  463. {
  464. session,
  465. namespace: "playlists",
  466. action: "removeSongFromPlaylist",
  467. args: [song.youtubeId, playlist._id]
  468. },
  469. this
  470. )
  471. .then(res => {
  472. if (res.status === "error") next(res.message);
  473. else next();
  474. })
  475. .catch(err => {
  476. next(err);
  477. });
  478. },
  479. err => {
  480. if (err) next(err);
  481. else next(null, song);
  482. }
  483. );
  484. })
  485. .catch(err => next(err));
  486. },
  487. (song, next) => {
  488. stationModel.find({ "queue._id": songId }, (err, stations) => {
  489. if (err) next(err);
  490. else {
  491. async.eachLimit(
  492. stations,
  493. 1,
  494. (station, next) => {
  495. WSModule.runJob(
  496. "RUN_ACTION2",
  497. {
  498. session,
  499. namespace: "stations",
  500. action: "removeFromQueue",
  501. args: [station._id, song.youtubeId]
  502. },
  503. this
  504. )
  505. .then(res => {
  506. if (
  507. res.status === "error" &&
  508. res.message !== "Station not found" &&
  509. res.message !== "Song is not currently in the queue."
  510. )
  511. next(res.message);
  512. else next();
  513. })
  514. .catch(err => {
  515. next(err);
  516. });
  517. },
  518. err => {
  519. if (err) next(err);
  520. else next();
  521. }
  522. );
  523. }
  524. });
  525. },
  526. next => {
  527. stationModel.find({ "currentSong._id": songId }, (err, stations) => {
  528. if (err) next(err);
  529. else {
  530. async.eachLimit(
  531. stations,
  532. 1,
  533. (station, next) => {
  534. StationsModule.runJob(
  535. "SKIP_STATION",
  536. { stationId: station._id, natural: false },
  537. this
  538. )
  539. .then(() => {
  540. next();
  541. })
  542. .catch(err => {
  543. if (err.message === "Station not found.") next();
  544. else next(err);
  545. });
  546. },
  547. err => {
  548. if (err) next(err);
  549. else next();
  550. }
  551. );
  552. }
  553. });
  554. },
  555. next => {
  556. songModel.deleteOne({ _id: songId }, err => {
  557. if (err) next(err);
  558. else next();
  559. });
  560. },
  561. next => {
  562. CacheModule.runJob("HDEL", { table: "songs", key: songId }, this)
  563. .then(() => {
  564. next();
  565. })
  566. .catch(next);
  567. }
  568. ],
  569. async err => {
  570. if (err) {
  571. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  572. this.log("ERROR", "SONGS_REMOVE", `Failed to remove song "${songId}". "${err}"`);
  573. return cb({ status: "error", message: err });
  574. }
  575. this.log("SUCCESS", "SONGS_REMOVE", `Successfully removed song "${songId}".`);
  576. CacheModule.runJob("PUB", {
  577. channel: "song.removed",
  578. value: { songId }
  579. });
  580. return cb({
  581. status: "success",
  582. message: "Song has been successfully removed"
  583. });
  584. }
  585. );
  586. }),
  587. /**
  588. * Removes many songs
  589. *
  590. * @param session
  591. * @param songIds - array of song ids
  592. * @param cb
  593. */
  594. removeMany: isAdminRequired(async function remove(session, songIds, cb) {
  595. const successful = [];
  596. const failed = [];
  597. async.waterfall(
  598. [
  599. next => {
  600. async.eachLimit(
  601. songIds,
  602. 1,
  603. (songId, next) => {
  604. WSModule.runJob(
  605. "RUN_ACTION2",
  606. {
  607. session,
  608. namespace: "songs",
  609. action: "remove",
  610. args: [songId]
  611. },
  612. this
  613. )
  614. .then(res => {
  615. if (res.status === "error") failed.push(songId);
  616. else successful.push(songId);
  617. next();
  618. })
  619. .catch(err => {
  620. next(err);
  621. });
  622. },
  623. err => {
  624. if (err) next(err);
  625. else next();
  626. }
  627. );
  628. }
  629. ],
  630. async err => {
  631. if (err) {
  632. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  633. this.log("ERROR", "SONGS_REMOVE_MANY", `Failed to remove songs "${failed.join(", ")}". "${err}"`);
  634. return cb({ status: "error", message: err });
  635. }
  636. let message = "";
  637. if (successful.length === 1) message += `1 song has been successfully removed`;
  638. else message += `${successful.length} songs have been successfully removed`;
  639. if (failed.length > 0) {
  640. this.log("ERROR", "SONGS_REMOVE_MANY", `Failed to remove songs "${failed.join(", ")}". "${err}"`);
  641. if (failed.length === 1) message += `, failed to remove 1 song`;
  642. else message += `, failed to remove ${failed.length} songs`;
  643. }
  644. this.log("SUCCESS", "SONGS_REMOVE_MANY", `${message} "${successful.join(", ")}"`);
  645. return cb({
  646. status: "success",
  647. message
  648. });
  649. }
  650. );
  651. }),
  652. /**
  653. * Searches through official songs
  654. *
  655. * @param {object} session - the session object automatically added by the websocket
  656. * @param {string} query - the query
  657. * @param {string} page - the page
  658. * @param {Function} cb - gets called with the result
  659. */
  660. searchOfficial: isLoginRequired(async function searchOfficial(session, query, page, cb) {
  661. async.waterfall(
  662. [
  663. next => {
  664. if ((!query && query !== "") || typeof query !== "string") next("Invalid query.");
  665. else next();
  666. },
  667. next => {
  668. SongsModule.runJob("SEARCH", {
  669. query,
  670. includeVerified: true,
  671. trimmed: true,
  672. page
  673. })
  674. .then(response => {
  675. next(null, response);
  676. })
  677. .catch(err => {
  678. next(err);
  679. });
  680. }
  681. ],
  682. async (err, data) => {
  683. if (err) {
  684. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  685. this.log("ERROR", "SONGS_SEARCH_OFFICIAL", `Searching songs failed. "${err}"`);
  686. return cb({ status: "error", message: err });
  687. }
  688. this.log("SUCCESS", "SONGS_SEARCH_OFFICIAL", "Searching songs successful.");
  689. return cb({ status: "success", data });
  690. }
  691. );
  692. }),
  693. /**
  694. * Requests a song
  695. *
  696. * @param {object} session - the session object automatically added by the websocket
  697. * @param {string} youtubeId - the youtube id of the song that gets requested
  698. * @param {string} returnSong - returns the simple song
  699. * @param {Function} cb - gets called with the result
  700. */
  701. request: isLoginRequired(async function add(session, youtubeId, returnSong, cb) {
  702. SongsModule.runJob("REQUEST_SONG", { youtubeId, userId: session.userId }, this)
  703. .then(response => {
  704. this.log(
  705. "SUCCESS",
  706. "SONGS_REQUEST",
  707. `User "${session.userId}" successfully requested song "${youtubeId}".`
  708. );
  709. return cb({
  710. status: "success",
  711. message: "Successfully requested that song",
  712. song: returnSong ? response.song : null
  713. });
  714. })
  715. .catch(async _err => {
  716. const err = await UtilsModule.runJob("GET_ERROR", { error: _err }, this);
  717. this.log(
  718. "ERROR",
  719. "SONGS_REQUEST",
  720. `Requesting song "${youtubeId}" failed for user ${session.userId}. "${err}"`
  721. );
  722. return cb({ status: "error", message: err, song: returnSong && _err.data ? _err.data.song : null });
  723. });
  724. }),
  725. /**
  726. * Verifies a song
  727. *
  728. * @param session
  729. * @param songId - the song id
  730. * @param cb
  731. */
  732. verify: isAdminRequired(async function add(session, songId, cb) {
  733. const SongModel = await DBModule.runJob("GET_MODEL", { modelName: "song" }, this);
  734. async.waterfall(
  735. [
  736. next => {
  737. SongModel.findOne({ _id: songId }, next);
  738. },
  739. (song, next) => {
  740. if (!song) return next("This song is not in the database.");
  741. return next(null, song);
  742. },
  743. (song, next) => {
  744. const oldStatus = false;
  745. song.verifiedBy = session.userId;
  746. song.verifiedAt = Date.now();
  747. song.verified = true;
  748. song.save(err => next(err, song, oldStatus));
  749. },
  750. (song, oldStatus, next) => {
  751. song.genres.forEach(genre => {
  752. PlaylistsModule.runJob("AUTOFILL_GENRE_PLAYLIST", { genre })
  753. .then(() => {})
  754. .catch(() => {});
  755. });
  756. SongsModule.runJob("UPDATE_SONG", { songId: song._id, oldStatus });
  757. next(null, song, oldStatus);
  758. }
  759. ],
  760. async err => {
  761. if (err) {
  762. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  763. this.log("ERROR", "SONGS_VERIFY", `User "${session.userId}" failed to verify song. "${err}"`);
  764. return cb({ status: "error", message: err });
  765. }
  766. this.log("SUCCESS", "SONGS_VERIFY", `User "${session.userId}" successfully verified song "${songId}".`);
  767. return cb({
  768. status: "success",
  769. message: "Song has been verified successfully."
  770. });
  771. }
  772. );
  773. // TODO Check if video is in queue and Add the song to the appropriate stations
  774. }),
  775. /**
  776. * Verify many songs
  777. *
  778. * @param session
  779. * @param songIds - array of song ids
  780. * @param cb
  781. */
  782. verifyMany: isAdminRequired(async function verifyMany(session, songIds, cb) {
  783. const successful = [];
  784. const failed = [];
  785. async.waterfall(
  786. [
  787. next => {
  788. async.eachLimit(
  789. songIds,
  790. 1,
  791. (songId, next) => {
  792. WSModule.runJob(
  793. "RUN_ACTION2",
  794. {
  795. session,
  796. namespace: "songs",
  797. action: "verify",
  798. args: [songId]
  799. },
  800. this
  801. )
  802. .then(res => {
  803. if (res.status === "error") failed.push(songId);
  804. else successful.push(songId);
  805. next();
  806. })
  807. .catch(err => {
  808. next(err);
  809. });
  810. },
  811. err => {
  812. if (err) next(err);
  813. else next();
  814. }
  815. );
  816. }
  817. ],
  818. async err => {
  819. if (err) {
  820. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  821. this.log("ERROR", "SONGS_VERIFY_MANY", `Failed to verify songs "${failed.join(", ")}". "${err}"`);
  822. return cb({ status: "error", message: err });
  823. }
  824. let message = "";
  825. if (successful.length === 1) message += `1 song has been successfully verified`;
  826. else message += `${successful.length} songs have been successfully verified`;
  827. if (failed.length > 0) {
  828. this.log("ERROR", "SONGS_VERIFY_MANY", `Failed to verify songs "${failed.join(", ")}". "${err}"`);
  829. if (failed.length === 1) message += `, failed to verify 1 song`;
  830. else message += `, failed to verify ${failed.length} songs`;
  831. }
  832. this.log("SUCCESS", "SONGS_VERIFY_MANY", `${message} "${successful.join(", ")}"`);
  833. return cb({
  834. status: "success",
  835. message
  836. });
  837. }
  838. );
  839. }),
  840. /**
  841. * Un-verifies a song
  842. *
  843. * @param session
  844. * @param songId - the song id
  845. * @param cb
  846. */
  847. unverify: isAdminRequired(async function add(session, songId, cb) {
  848. const SongModel = await DBModule.runJob("GET_MODEL", { modelName: "song" }, this);
  849. async.waterfall(
  850. [
  851. next => {
  852. SongModel.findOne({ _id: songId }, next);
  853. },
  854. (song, next) => {
  855. if (!song) return next("This song is not in the database.");
  856. return next(null, song);
  857. },
  858. (song, next) => {
  859. song.verified = false;
  860. song.save(err => {
  861. next(err, song);
  862. });
  863. },
  864. (song, next) => {
  865. song.genres.forEach(genre => {
  866. PlaylistsModule.runJob("AUTOFILL_GENRE_PLAYLIST", { genre })
  867. .then(() => {})
  868. .catch(() => {});
  869. });
  870. SongsModule.runJob("UPDATE_SONG", { songId, oldStatus: true });
  871. next(null);
  872. }
  873. ],
  874. async err => {
  875. if (err) {
  876. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  877. this.log("ERROR", "SONGS_UNVERIFY", `User "${session.userId}" failed to verify song. "${err}"`);
  878. return cb({ status: "error", message: err });
  879. }
  880. this.log(
  881. "SUCCESS",
  882. "SONGS_UNVERIFY",
  883. `User "${session.userId}" successfully unverified song "${songId}".`
  884. );
  885. return cb({
  886. status: "success",
  887. message: "Song has been unverified successfully."
  888. });
  889. }
  890. );
  891. // TODO Check if video is in queue and Add the song to the appropriate stations
  892. }),
  893. /**
  894. * Unverify many songs
  895. *
  896. * @param session
  897. * @param songIds - array of song ids
  898. * @param cb
  899. */
  900. unverifyMany: isAdminRequired(async function unverifyMany(session, songIds, cb) {
  901. const successful = [];
  902. const failed = [];
  903. async.waterfall(
  904. [
  905. next => {
  906. async.eachLimit(
  907. songIds,
  908. 1,
  909. (songId, next) => {
  910. WSModule.runJob(
  911. "RUN_ACTION2",
  912. {
  913. session,
  914. namespace: "songs",
  915. action: "unverify",
  916. args: [songId]
  917. },
  918. this
  919. )
  920. .then(res => {
  921. if (res.status === "error") failed.push(songId);
  922. else successful.push(songId);
  923. next();
  924. })
  925. .catch(err => {
  926. next(err);
  927. });
  928. },
  929. err => {
  930. if (err) next(err);
  931. else next();
  932. }
  933. );
  934. }
  935. ],
  936. async err => {
  937. if (err) {
  938. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  939. this.log(
  940. "ERROR",
  941. "SONGS_UNVERIFY_MANY",
  942. `Failed to unverify songs "${failed.join(", ")}". "${err}"`
  943. );
  944. return cb({ status: "error", message: err });
  945. }
  946. let message = "";
  947. if (successful.length === 1) message += `1 song has been successfully unverified`;
  948. else message += `${successful.length} songs have been successfully unverified`;
  949. if (failed.length > 0) {
  950. this.log(
  951. "ERROR",
  952. "SONGS_UNVERIFY_MANY",
  953. `Failed to unverify songs "${failed.join(", ")}". "${err}"`
  954. );
  955. if (failed.length === 1) message += `, failed to unverify 1 song`;
  956. else message += `, failed to unverify ${failed.length} songs`;
  957. }
  958. this.log("SUCCESS", "SONGS_UNVERIFY_MANY", `${message} "${successful.join(", ")}"`);
  959. return cb({
  960. status: "success",
  961. message
  962. });
  963. }
  964. );
  965. }),
  966. /**
  967. * Requests a set of songs
  968. *
  969. * @param {object} session - the session object automatically added by the websocket
  970. * @param {string} url - the url of the the YouTube playlist
  971. * @param {boolean} musicOnly - whether to only get music from the playlist
  972. * @param {Function} cb - gets called with the result
  973. */
  974. requestSet: isLoginRequired(function requestSet(session, url, musicOnly, returnSongs, cb) {
  975. async.waterfall(
  976. [
  977. next => {
  978. YouTubeModule.runJob(
  979. "GET_PLAYLIST",
  980. {
  981. url,
  982. musicOnly
  983. },
  984. this
  985. )
  986. .then(res => {
  987. next(null, res.songs);
  988. })
  989. .catch(next);
  990. },
  991. (youtubeIds, next) => {
  992. let successful = 0;
  993. let songs = {};
  994. let failed = 0;
  995. let alreadyInDatabase = 0;
  996. if (youtubeIds.length === 0) next();
  997. async.eachOfLimit(
  998. youtubeIds,
  999. 1,
  1000. (youtubeId, index, next) => {
  1001. WSModule.runJob(
  1002. "RUN_ACTION2",
  1003. {
  1004. session,
  1005. namespace: "songs",
  1006. action: "request",
  1007. args: [youtubeId, returnSongs]
  1008. },
  1009. this
  1010. )
  1011. .then(res => {
  1012. if (res.status === "success") successful += 1;
  1013. else failed += 1;
  1014. if (res.message === "This song is already in the database.") alreadyInDatabase += 1;
  1015. if (res.song) songs[index] = res.song;
  1016. else songs[index] = null;
  1017. })
  1018. .catch(() => {
  1019. failed += 1;
  1020. })
  1021. .finally(() => {
  1022. next();
  1023. });
  1024. },
  1025. () => {
  1026. if (returnSongs)
  1027. songs = Object.keys(songs)
  1028. .sort()
  1029. .map(key => songs[key]);
  1030. next(null, { successful, failed, alreadyInDatabase, songs });
  1031. }
  1032. );
  1033. }
  1034. ],
  1035. async (err, response) => {
  1036. if (err) {
  1037. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  1038. this.log(
  1039. "ERROR",
  1040. "REQUEST_SET",
  1041. `Importing a YouTube playlist to be requested failed for user "${session.userId}". "${err}"`
  1042. );
  1043. return cb({ status: "error", message: err });
  1044. }
  1045. this.log(
  1046. "SUCCESS",
  1047. "REQUEST_SET",
  1048. `Successfully imported a YouTube playlist to be requested for user "${session.userId}".`
  1049. );
  1050. return cb({
  1051. status: "success",
  1052. message: `Playlist is done importing. ${response.successful} were added succesfully, ${response.failed} failed (${response.alreadyInDatabase} were already in database)`,
  1053. songs: returnSongs ? response.songs : null
  1054. });
  1055. }
  1056. );
  1057. }),
  1058. /**
  1059. * Likes a song
  1060. *
  1061. * @param session
  1062. * @param youtubeId - the youtube id
  1063. * @param cb
  1064. */
  1065. like: isLoginRequired(async function like(session, youtubeId, cb) {
  1066. const userModel = await DBModule.runJob("GET_MODEL", { modelName: "user" }, this);
  1067. const songModel = await DBModule.runJob("GET_MODEL", { modelName: "song" }, this);
  1068. async.waterfall(
  1069. [
  1070. next => songModel.findOne({ youtubeId }, next),
  1071. (song, next) => {
  1072. if (!song) return next("No song found with that id.");
  1073. return next(null, song);
  1074. },
  1075. (song, next) => userModel.findOne({ _id: session.userId }, (err, user) => next(err, song, user)),
  1076. (song, user, next) => {
  1077. if (!user) return next("User does not exist.");
  1078. return this.module
  1079. .runJob(
  1080. "RUN_ACTION2",
  1081. {
  1082. session,
  1083. namespace: "playlists",
  1084. action: "removeSongFromPlaylist",
  1085. args: [youtubeId, user.dislikedSongsPlaylist]
  1086. },
  1087. this
  1088. )
  1089. .then(res => {
  1090. if (res.status === "error")
  1091. return next("Unable to remove song from the 'Disliked Songs' playlist.");
  1092. return next(null, song, user.likedSongsPlaylist);
  1093. })
  1094. .catch(err => next(err));
  1095. },
  1096. (song, likedSongsPlaylist, next) =>
  1097. this.module
  1098. .runJob(
  1099. "RUN_ACTION2",
  1100. {
  1101. session,
  1102. namespace: "playlists",
  1103. action: "addSongToPlaylist",
  1104. args: [false, youtubeId, likedSongsPlaylist]
  1105. },
  1106. this
  1107. )
  1108. .then(res => {
  1109. if (res.status === "error") {
  1110. if (res.message === "That song is already in the playlist")
  1111. return next("You have already liked this song.");
  1112. return next("Unable to add song to the 'Liked Songs' playlist.");
  1113. }
  1114. return next(null, song);
  1115. })
  1116. .catch(err => next(err)),
  1117. (song, next) => {
  1118. SongsModule.runJob("RECALCULATE_SONG_RATINGS", { songId: song._id, youtubeId })
  1119. .then(ratings => next(null, song, ratings))
  1120. .catch(err => next(err));
  1121. }
  1122. ],
  1123. async (err, song, ratings) => {
  1124. if (err) {
  1125. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  1126. this.log(
  1127. "ERROR",
  1128. "SONGS_LIKE",
  1129. `User "${session.userId}" failed to like song ${youtubeId}. "${err}"`
  1130. );
  1131. return cb({ status: "error", message: err });
  1132. }
  1133. const { likes, dislikes } = ratings;
  1134. SongsModule.runJob("UPDATE_SONG", { songId: song._id });
  1135. CacheModule.runJob("PUB", {
  1136. channel: "song.like",
  1137. value: JSON.stringify({
  1138. youtubeId,
  1139. userId: session.userId,
  1140. likes,
  1141. dislikes
  1142. })
  1143. });
  1144. ActivitiesModule.runJob("ADD_ACTIVITY", {
  1145. userId: session.userId,
  1146. type: "song__like",
  1147. payload: {
  1148. message: `Liked song <youtubeId>${song.title} by ${song.artists.join(", ")}</youtubeId>`,
  1149. youtubeId,
  1150. thumbnail: song.thumbnail
  1151. }
  1152. });
  1153. return cb({
  1154. status: "success",
  1155. message: "You have successfully liked this song."
  1156. });
  1157. }
  1158. );
  1159. }),
  1160. /**
  1161. * Dislikes a song
  1162. *
  1163. * @param session
  1164. * @param youtubeId - the youtube id
  1165. * @param cb
  1166. */
  1167. dislike: isLoginRequired(async function dislike(session, youtubeId, cb) {
  1168. const userModel = await DBModule.runJob("GET_MODEL", { modelName: "user" }, this);
  1169. const songModel = await DBModule.runJob("GET_MODEL", { modelName: "song" }, this);
  1170. async.waterfall(
  1171. [
  1172. next => {
  1173. songModel.findOne({ youtubeId }, next);
  1174. },
  1175. (song, next) => {
  1176. if (!song) return next("No song found with that id.");
  1177. return next(null, song);
  1178. },
  1179. (song, next) => userModel.findOne({ _id: session.userId }, (err, user) => next(err, song, user)),
  1180. (song, user, next) => {
  1181. if (!user) return next("User does not exist.");
  1182. return this.module
  1183. .runJob(
  1184. "RUN_ACTION2",
  1185. {
  1186. session,
  1187. namespace: "playlists",
  1188. action: "removeSongFromPlaylist",
  1189. args: [youtubeId, user.likedSongsPlaylist]
  1190. },
  1191. this
  1192. )
  1193. .then(res => {
  1194. if (res.status === "error")
  1195. return next("Unable to remove song from the 'Liked Songs' playlist.");
  1196. return next(null, song, user.dislikedSongsPlaylist);
  1197. })
  1198. .catch(err => next(err));
  1199. },
  1200. (song, dislikedSongsPlaylist, next) =>
  1201. this.module
  1202. .runJob(
  1203. "RUN_ACTION2",
  1204. {
  1205. session,
  1206. namespace: "playlists",
  1207. action: "addSongToPlaylist",
  1208. args: [false, youtubeId, dislikedSongsPlaylist]
  1209. },
  1210. this
  1211. )
  1212. .then(res => {
  1213. if (res.status === "error") {
  1214. if (res.message === "That song is already in the playlist")
  1215. return next("You have already disliked this song.");
  1216. return next("Unable to add song to the 'Disliked Songs' playlist.");
  1217. }
  1218. return next(null, song);
  1219. })
  1220. .catch(err => next(err)),
  1221. (song, next) => {
  1222. SongsModule.runJob("RECALCULATE_SONG_RATINGS", { songId: song._id, youtubeId })
  1223. .then(ratings => next(null, song, ratings))
  1224. .catch(err => next(err));
  1225. }
  1226. ],
  1227. async (err, song, ratings) => {
  1228. if (err) {
  1229. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  1230. this.log(
  1231. "ERROR",
  1232. "SONGS_DISLIKE",
  1233. `User "${session.userId}" failed to dislike song ${youtubeId}. "${err}"`
  1234. );
  1235. return cb({ status: "error", message: err });
  1236. }
  1237. const { likes, dislikes } = ratings;
  1238. SongsModule.runJob("UPDATE_SONG", { songId: song._id });
  1239. CacheModule.runJob("PUB", {
  1240. channel: "song.dislike",
  1241. value: JSON.stringify({
  1242. youtubeId,
  1243. userId: session.userId,
  1244. likes,
  1245. dislikes
  1246. })
  1247. });
  1248. ActivitiesModule.runJob("ADD_ACTIVITY", {
  1249. userId: session.userId,
  1250. type: "song__dislike",
  1251. payload: {
  1252. message: `Disliked song <youtubeId>${song.title} by ${song.artists.join(", ")}</youtubeId>`,
  1253. youtubeId,
  1254. thumbnail: song.thumbnail
  1255. }
  1256. });
  1257. return cb({
  1258. status: "success",
  1259. message: "You have successfully disliked this song."
  1260. });
  1261. }
  1262. );
  1263. }),
  1264. /**
  1265. * Undislikes a song
  1266. *
  1267. * @param session
  1268. * @param youtubeId - the youtube id
  1269. * @param cb
  1270. */
  1271. undislike: isLoginRequired(async function undislike(session, youtubeId, cb) {
  1272. const userModel = await DBModule.runJob("GET_MODEL", { modelName: "user" }, this);
  1273. const songModel = await DBModule.runJob("GET_MODEL", { modelName: "song" }, this);
  1274. async.waterfall(
  1275. [
  1276. next => {
  1277. songModel.findOne({ youtubeId }, next);
  1278. },
  1279. (song, next) => {
  1280. if (!song) return next("No song found with that id.");
  1281. return next(null, song);
  1282. },
  1283. (song, next) => userModel.findOne({ _id: session.userId }, (err, user) => next(err, song, user)),
  1284. (song, user, next) => {
  1285. if (!user) return next("User does not exist.");
  1286. return this.module
  1287. .runJob(
  1288. "RUN_ACTION2",
  1289. {
  1290. session,
  1291. namespace: "playlists",
  1292. action: "removeSongFromPlaylist",
  1293. args: [youtubeId, user.dislikedSongsPlaylist]
  1294. },
  1295. this
  1296. )
  1297. .then(res => {
  1298. if (res.status === "error")
  1299. return next("Unable to remove song from the 'Disliked Songs' playlist.");
  1300. return next(null, song, user.likedSongsPlaylist);
  1301. })
  1302. .catch(err => next(err));
  1303. },
  1304. (song, likedSongsPlaylist, next) => {
  1305. this.module
  1306. .runJob(
  1307. "RUN_ACTION2",
  1308. {
  1309. session,
  1310. namespace: "playlists",
  1311. action: "removeSongFromPlaylist",
  1312. args: [youtubeId, likedSongsPlaylist]
  1313. },
  1314. this
  1315. )
  1316. .then(res => {
  1317. if (res.status === "error")
  1318. return next("Unable to remove song from the 'Liked Songs' playlist.");
  1319. return next(null, song);
  1320. })
  1321. .catch(err => next(err));
  1322. },
  1323. (song, next) => {
  1324. SongsModule.runJob("RECALCULATE_SONG_RATINGS", { songId: song._id, youtubeId })
  1325. .then(ratings => next(null, song, ratings))
  1326. .catch(err => next(err));
  1327. }
  1328. ],
  1329. async (err, song, ratings) => {
  1330. if (err) {
  1331. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  1332. this.log(
  1333. "ERROR",
  1334. "SONGS_UNDISLIKE",
  1335. `User "${session.userId}" failed to undislike song ${youtubeId}. "${err}"`
  1336. );
  1337. return cb({ status: "error", message: err });
  1338. }
  1339. const { likes, dislikes } = ratings;
  1340. SongsModule.runJob("UPDATE_SONG", { songId: song._id });
  1341. CacheModule.runJob("PUB", {
  1342. channel: "song.undislike",
  1343. value: JSON.stringify({
  1344. youtubeId,
  1345. userId: session.userId,
  1346. likes,
  1347. dislikes
  1348. })
  1349. });
  1350. ActivitiesModule.runJob("ADD_ACTIVITY", {
  1351. userId: session.userId,
  1352. type: "song__undislike",
  1353. payload: {
  1354. message: `Removed <youtubeId>${song.title} by ${song.artists.join(
  1355. ", "
  1356. )}</youtubeId> from your Disliked Songs`,
  1357. youtubeId,
  1358. thumbnail: song.thumbnail
  1359. }
  1360. });
  1361. return cb({
  1362. status: "success",
  1363. message: "You have successfully undisliked this song."
  1364. });
  1365. }
  1366. );
  1367. }),
  1368. /**
  1369. * Unlikes a song
  1370. *
  1371. * @param session
  1372. * @param youtubeId - the youtube id
  1373. * @param cb
  1374. */
  1375. unlike: isLoginRequired(async function unlike(session, youtubeId, cb) {
  1376. const userModel = await DBModule.runJob("GET_MODEL", { modelName: "user" }, this);
  1377. const songModel = await DBModule.runJob("GET_MODEL", { modelName: "song" }, this);
  1378. async.waterfall(
  1379. [
  1380. next => {
  1381. songModel.findOne({ youtubeId }, next);
  1382. },
  1383. (song, next) => {
  1384. if (!song) return next("No song found with that id.");
  1385. return next(null, song);
  1386. },
  1387. (song, next) => userModel.findOne({ _id: session.userId }, (err, user) => next(err, song, user)),
  1388. (song, user, next) => {
  1389. if (!user) return next("User does not exist.");
  1390. return this.module
  1391. .runJob(
  1392. "RUN_ACTION2",
  1393. {
  1394. session,
  1395. namespace: "playlists",
  1396. action: "removeSongFromPlaylist",
  1397. args: [youtubeId, user.dislikedSongsPlaylist]
  1398. },
  1399. this
  1400. )
  1401. .then(res => {
  1402. if (res.status === "error")
  1403. return next("Unable to remove song from the 'Disliked Songs' playlist.");
  1404. return next(null, song, user.likedSongsPlaylist);
  1405. })
  1406. .catch(err => next(err));
  1407. },
  1408. (song, likedSongsPlaylist, next) => {
  1409. this.module
  1410. .runJob(
  1411. "RUN_ACTION2",
  1412. {
  1413. session,
  1414. namespace: "playlists",
  1415. action: "removeSongFromPlaylist",
  1416. args: [youtubeId, likedSongsPlaylist]
  1417. },
  1418. this
  1419. )
  1420. .then(res => {
  1421. if (res.status === "error")
  1422. return next("Unable to remove song from the 'Liked Songs' playlist.");
  1423. return next(null, song);
  1424. })
  1425. .catch(err => next(err));
  1426. },
  1427. (song, next) => {
  1428. SongsModule.runJob("RECALCULATE_SONG_RATINGS", { songId: song._id, youtubeId })
  1429. .then(ratings => next(null, song, ratings))
  1430. .catch(err => next(err));
  1431. }
  1432. ],
  1433. async (err, song, ratings) => {
  1434. if (err) {
  1435. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  1436. this.log(
  1437. "ERROR",
  1438. "SONGS_UNLIKE",
  1439. `User "${session.userId}" failed to unlike song ${youtubeId}. "${err}"`
  1440. );
  1441. return cb({ status: "error", message: err });
  1442. }
  1443. const { likes, dislikes } = ratings;
  1444. SongsModule.runJob("UPDATE_SONG", { songId: song._id });
  1445. CacheModule.runJob("PUB", {
  1446. channel: "song.unlike",
  1447. value: JSON.stringify({
  1448. youtubeId,
  1449. userId: session.userId,
  1450. likes,
  1451. dislikes
  1452. })
  1453. });
  1454. ActivitiesModule.runJob("ADD_ACTIVITY", {
  1455. userId: session.userId,
  1456. type: "song__unlike",
  1457. payload: {
  1458. message: `Removed <youtubeId>${song.title} by ${song.artists.join(
  1459. ", "
  1460. )}</youtubeId> from your Liked Songs`,
  1461. youtubeId,
  1462. thumbnail: song.thumbnail
  1463. }
  1464. });
  1465. return cb({
  1466. status: "success",
  1467. message: "You have successfully unliked this song."
  1468. });
  1469. }
  1470. );
  1471. }),
  1472. /**
  1473. * Gets song ratings
  1474. *
  1475. * @param session
  1476. * @param songId - the Musare song id
  1477. * @param cb
  1478. */
  1479. getSongRatings: isLoginRequired(async function getSongRatings(session, songId, cb) {
  1480. async.waterfall(
  1481. [
  1482. next => {
  1483. SongsModule.runJob("GET_SONG", { songId }, this)
  1484. .then(res => next(null, res.song))
  1485. .catch(next);
  1486. },
  1487. (song, next) => {
  1488. next(null, {
  1489. likes: song.likes,
  1490. dislikes: song.dislikes
  1491. });
  1492. }
  1493. ],
  1494. async (err, ratings) => {
  1495. if (err) {
  1496. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  1497. this.log(
  1498. "ERROR",
  1499. "SONGS_GET_RATINGS",
  1500. `User "${session.userId}" failed to get ratings for ${songId}. "${err}"`
  1501. );
  1502. return cb({ status: "error", message: err });
  1503. }
  1504. const { likes, dislikes } = ratings;
  1505. return cb({
  1506. status: "success",
  1507. data: {
  1508. likes,
  1509. dislikes
  1510. }
  1511. });
  1512. }
  1513. );
  1514. }),
  1515. /**
  1516. * Gets user's own song ratings
  1517. *
  1518. * @param session
  1519. * @param youtubeId - the youtube id
  1520. * @param cb
  1521. */
  1522. getOwnSongRatings: isLoginRequired(async function getOwnSongRatings(session, youtubeId, cb) {
  1523. const playlistModel = await DBModule.runJob("GET_MODEL", { modelName: "playlist" }, this);
  1524. const songModel = await DBModule.runJob("GET_MODEL", { modelName: "song" }, this);
  1525. async.waterfall(
  1526. [
  1527. next => songModel.findOne({ youtubeId }, next),
  1528. (song, next) => {
  1529. if (!song) return next("No song found with that id.");
  1530. return next(null);
  1531. },
  1532. next =>
  1533. playlistModel.findOne(
  1534. { createdBy: session.userId, displayName: "Liked Songs" },
  1535. (err, playlist) => {
  1536. if (err) return next(err);
  1537. if (!playlist) return next("'Liked Songs' playlist does not exist.");
  1538. let isLiked = false;
  1539. Object.values(playlist.songs).forEach(song => {
  1540. // song is found in 'liked songs' playlist
  1541. if (song.youtubeId === youtubeId) isLiked = true;
  1542. });
  1543. return next(null, isLiked);
  1544. }
  1545. ),
  1546. (isLiked, next) =>
  1547. playlistModel.findOne(
  1548. { createdBy: session.userId, displayName: "Disliked Songs" },
  1549. (err, playlist) => {
  1550. if (err) return next(err);
  1551. if (!playlist) return next("'Disliked Songs' playlist does not exist.");
  1552. const ratings = { isLiked, isDisliked: false };
  1553. Object.values(playlist.songs).forEach(song => {
  1554. // song is found in 'disliked songs' playlist
  1555. if (song.youtubeId === youtubeId) ratings.isDisliked = true;
  1556. });
  1557. return next(null, ratings);
  1558. }
  1559. )
  1560. ],
  1561. async (err, ratings) => {
  1562. if (err) {
  1563. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  1564. this.log(
  1565. "ERROR",
  1566. "SONGS_GET_OWN_RATINGS",
  1567. `User "${session.userId}" failed to get ratings for ${youtubeId}. "${err}"`
  1568. );
  1569. return cb({ status: "error", message: err });
  1570. }
  1571. const { isLiked, isDisliked } = ratings;
  1572. return cb({
  1573. status: "success",
  1574. data: {
  1575. youtubeId,
  1576. liked: isLiked,
  1577. disliked: isDisliked
  1578. }
  1579. });
  1580. }
  1581. );
  1582. }),
  1583. /**
  1584. * Gets a list of all genres
  1585. *
  1586. * @param session
  1587. * @param cb
  1588. */
  1589. getGenres: isAdminRequired(function getGenres(session, cb) {
  1590. async.waterfall(
  1591. [
  1592. next => {
  1593. SongsModule.runJob("GET_GENRES", this)
  1594. .then(res => {
  1595. next(null, res.genres);
  1596. })
  1597. .catch(next);
  1598. }
  1599. ],
  1600. async (err, genres) => {
  1601. if (err && err !== true) {
  1602. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  1603. this.log("ERROR", "GET_GENRES", `User ${session.userId} failed to get genres. '${err}'`);
  1604. cb({ status: "error", message: err });
  1605. } else {
  1606. this.log("SUCCESS", "GET_GENRES", `User ${session.userId} has successfully got the genres.`);
  1607. cb({
  1608. status: "success",
  1609. message: "Successfully got genres.",
  1610. data: {
  1611. items: genres
  1612. }
  1613. });
  1614. }
  1615. }
  1616. );
  1617. }),
  1618. /**
  1619. * Bulk update genres for selected songs
  1620. *
  1621. * @param session
  1622. * @param method Whether to add, remove or replace genres
  1623. * @param genres Array of genres to apply
  1624. * @param songIds Array of songIds to apply genres to
  1625. * @param cb
  1626. */
  1627. editGenres: isAdminRequired(async function editGenres(session, method, genres, songIds, cb) {
  1628. const songModel = await DBModule.runJob("GET_MODEL", { modelName: "song" }, this);
  1629. async.waterfall(
  1630. [
  1631. next => {
  1632. songModel.find({ _id: { $in: songIds } }, next);
  1633. },
  1634. (songs, next) => {
  1635. const songsFound = songs.map(song => song._id);
  1636. if (songsFound.length > 0) next(null, songsFound);
  1637. else next("None of the specified songs were found.");
  1638. },
  1639. (songsFound, next) => {
  1640. const query = {};
  1641. if (method === "add") {
  1642. query.$push = { genres: { $each: genres } };
  1643. } else if (method === "remove") {
  1644. query.$pullAll = { genres };
  1645. } else if (method === "replace") {
  1646. query.$set = { genres };
  1647. } else {
  1648. next("Invalid method.");
  1649. }
  1650. songModel.updateMany({ _id: { $in: songsFound } }, query, { runValidators: true }, err => {
  1651. if (err) next(err);
  1652. async.eachLimit(
  1653. songsFound,
  1654. 1,
  1655. (songId, next) => {
  1656. SongsModule.runJob("UPDATE_SONG", { songId });
  1657. next();
  1658. },
  1659. next
  1660. );
  1661. });
  1662. }
  1663. ],
  1664. async err => {
  1665. if (err && err !== true) {
  1666. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  1667. this.log("ERROR", "EDIT_GENRES", `User ${session.userId} failed to edit genres. '${err}'`);
  1668. cb({ status: "error", message: err });
  1669. } else {
  1670. this.log("SUCCESS", "EDIT_GENRES", `User ${session.userId} has successfully edited genres.`);
  1671. cb({
  1672. status: "success",
  1673. message: "Successfully edited genres."
  1674. });
  1675. }
  1676. }
  1677. );
  1678. }),
  1679. /**
  1680. * Gets a list of all artists
  1681. *
  1682. * @param session
  1683. * @param cb
  1684. */
  1685. getArtists: isAdminRequired(function getArtists(session, cb) {
  1686. async.waterfall(
  1687. [
  1688. next => {
  1689. SongsModule.runJob("GET_ARTISTS", this)
  1690. .then(res => {
  1691. next(null, res.artists);
  1692. })
  1693. .catch(next);
  1694. }
  1695. ],
  1696. async (err, artists) => {
  1697. if (err && err !== true) {
  1698. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  1699. this.log("ERROR", "GET_ARTISTS", `User ${session.userId} failed to get artists. '${err}'`);
  1700. cb({ status: "error", message: err });
  1701. } else {
  1702. this.log("SUCCESS", "GET_ARTISTS", `User ${session.userId} has successfully got the artists.`);
  1703. cb({
  1704. status: "success",
  1705. message: "Successfully got artists.",
  1706. data: {
  1707. items: artists
  1708. }
  1709. });
  1710. }
  1711. }
  1712. );
  1713. }),
  1714. /**
  1715. * Bulk update artists for selected songs
  1716. *
  1717. * @param session
  1718. * @param method Whether to add, remove or replace artists
  1719. * @param artists Array of artists to apply
  1720. * @param songIds Array of songIds to apply artists to
  1721. * @param cb
  1722. */
  1723. editArtists: isAdminRequired(async function editArtists(session, method, artists, songIds, cb) {
  1724. const songModel = await DBModule.runJob("GET_MODEL", { modelName: "song" }, this);
  1725. async.waterfall(
  1726. [
  1727. next => {
  1728. songModel.find({ _id: { $in: songIds } }, next);
  1729. },
  1730. (songs, next) => {
  1731. const songsFound = songs.map(song => song._id);
  1732. if (songsFound.length > 0) next(null, songsFound);
  1733. else next("None of the specified songs were found.");
  1734. },
  1735. (songsFound, next) => {
  1736. const query = {};
  1737. if (method === "add") {
  1738. query.$push = { artists: { $each: artists } };
  1739. } else if (method === "remove") {
  1740. query.$pullAll = { artists };
  1741. } else if (method === "replace") {
  1742. query.$set = { artists };
  1743. } else {
  1744. next("Invalid method.");
  1745. }
  1746. songModel.updateMany({ _id: { $in: songsFound } }, query, { runValidators: true }, err => {
  1747. if (err) next(err);
  1748. async.eachLimit(
  1749. songsFound,
  1750. 1,
  1751. (songId, next) => {
  1752. SongsModule.runJob("UPDATE_SONG", { songId });
  1753. next();
  1754. },
  1755. next
  1756. );
  1757. });
  1758. }
  1759. ],
  1760. async err => {
  1761. if (err && err !== true) {
  1762. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  1763. this.log("ERROR", "EDIT_ARTISTS", `User ${session.userId} failed to edit artists. '${err}'`);
  1764. cb({ status: "error", message: err });
  1765. } else {
  1766. this.log("SUCCESS", "EDIT_ARTISTS", `User ${session.userId} has successfully edited artists.`);
  1767. cb({
  1768. status: "success",
  1769. message: "Successfully edited artists."
  1770. });
  1771. }
  1772. }
  1773. );
  1774. }),
  1775. /**
  1776. * Gets a list of all tags
  1777. *
  1778. * @param session
  1779. * @param cb
  1780. */
  1781. getTags: isAdminRequired(function getTags(session, cb) {
  1782. async.waterfall(
  1783. [
  1784. next => {
  1785. SongsModule.runJob("GET_TAGS", this)
  1786. .then(res => {
  1787. next(null, res.tags);
  1788. })
  1789. .catch(next);
  1790. }
  1791. ],
  1792. async (err, tags) => {
  1793. if (err && err !== true) {
  1794. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  1795. this.log("ERROR", "GET_TAGS", `User ${session.userId} failed to get tags. '${err}'`);
  1796. cb({ status: "error", message: err });
  1797. } else {
  1798. this.log("SUCCESS", "GET_TAGS", `User ${session.userId} has successfully got the tags.`);
  1799. cb({
  1800. status: "success",
  1801. message: "Successfully got tags.",
  1802. data: {
  1803. items: tags
  1804. }
  1805. });
  1806. }
  1807. }
  1808. );
  1809. }),
  1810. /**
  1811. * Bulk update tags for selected songs
  1812. *
  1813. * @param session
  1814. * @param method Whether to add, remove or replace tags
  1815. * @param tags Array of tags to apply
  1816. * @param songIds Array of songIds to apply tags to
  1817. * @param cb
  1818. */
  1819. editTags: isAdminRequired(async function editTags(session, method, tags, songIds, cb) {
  1820. const songModel = await DBModule.runJob("GET_MODEL", { modelName: "song" }, this);
  1821. async.waterfall(
  1822. [
  1823. next => {
  1824. songModel.find({ _id: { $in: songIds } }, next);
  1825. },
  1826. (songs, next) => {
  1827. const songsFound = songs.map(song => song._id);
  1828. if (songsFound.length > 0) next(null, songsFound);
  1829. else next("None of the specified songs were found.");
  1830. },
  1831. (songsFound, next) => {
  1832. const query = {};
  1833. if (method === "add") {
  1834. query.$push = { tags: { $each: tags } };
  1835. } else if (method === "remove") {
  1836. query.$pullAll = { tags };
  1837. } else if (method === "replace") {
  1838. query.$set = { tags };
  1839. } else {
  1840. next("Invalid method.");
  1841. }
  1842. songModel.updateMany({ _id: { $in: songsFound } }, query, { runValidators: true }, err => {
  1843. if (err) next(err);
  1844. async.eachLimit(
  1845. songsFound,
  1846. 1,
  1847. (songId, next) => {
  1848. SongsModule.runJob("UPDATE_SONG", { songId });
  1849. next();
  1850. },
  1851. next
  1852. );
  1853. });
  1854. }
  1855. ],
  1856. async err => {
  1857. if (err && err !== true) {
  1858. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  1859. this.log("ERROR", "EDIT_TAGS", `User ${session.userId} failed to edit tags. '${err}'`);
  1860. cb({ status: "error", message: err });
  1861. } else {
  1862. this.log("SUCCESS", "EDIT_TAGS", `User ${session.userId} has successfully edited tags.`);
  1863. cb({
  1864. status: "success",
  1865. message: "Successfully edited tags."
  1866. });
  1867. }
  1868. }
  1869. );
  1870. })
  1871. };