songs.js 41 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607
  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. CacheModule.runJob("SUB", {
  13. channel: "song.newUnverifiedSong",
  14. cb: async songId => {
  15. const songModel = await DBModule.runJob("GET_MODEL", {
  16. modelName: "song"
  17. });
  18. songModel.findOne({ _id: songId }, (err, song) => {
  19. WSModule.runJob("EMIT_TO_ROOM", {
  20. room: "admin.unverifiedSongs",
  21. args: ["event:admin.unverifiedSong.created", { data: { song } }]
  22. });
  23. WSModule.runJob("EMIT_TO_ROOM", {
  24. room: `edit-song.${songId}`,
  25. args: ["event:admin.unverifiedSong.created", { data: { song } }]
  26. });
  27. });
  28. }
  29. });
  30. CacheModule.runJob("SUB", {
  31. channel: "song.removedUnverifiedSong",
  32. cb: songId => {
  33. WSModule.runJob("EMIT_TO_ROOM", {
  34. room: "admin.unverifiedSongs",
  35. args: ["event:admin.unverifiedSong.deleted", { data: { songId } }]
  36. });
  37. }
  38. });
  39. CacheModule.runJob("SUB", {
  40. channel: "song.updatedUnverifiedSong",
  41. cb: async songId => {
  42. const songModel = await DBModule.runJob("GET_MODEL", {
  43. modelName: "song"
  44. });
  45. songModel.findOne({ _id: songId }, (err, song) => {
  46. WSModule.runJob("EMIT_TO_ROOM", {
  47. room: "admin.unverifiedSongs",
  48. args: ["event:admin.unverifiedSong.updated", { data: { song } }]
  49. });
  50. });
  51. }
  52. });
  53. CacheModule.runJob("SUB", {
  54. channel: "song.newVerifiedSong",
  55. cb: async songId => {
  56. const songModel = await DBModule.runJob("GET_MODEL", { modelName: "song" });
  57. songModel.findOne({ _id: songId }, (err, song) => {
  58. WSModule.runJob("EMIT_TO_ROOM", {
  59. room: "admin.songs",
  60. args: ["event:admin.verifiedSong.created", { data: { song } }]
  61. });
  62. WSModule.runJob("EMIT_TO_ROOM", {
  63. room: `edit-song.${songId}`,
  64. args: ["event:admin.verifiedSong.created", { data: { song } }]
  65. });
  66. });
  67. }
  68. });
  69. CacheModule.runJob("SUB", {
  70. channel: "song.removedVerifiedSong",
  71. cb: songId => {
  72. WSModule.runJob("EMIT_TO_ROOM", {
  73. room: "admin.songs",
  74. args: ["event:admin.verifiedSong.deleted", { data: { songId } }]
  75. });
  76. }
  77. });
  78. CacheModule.runJob("SUB", {
  79. channel: "song.updatedVerifiedSong",
  80. cb: async songId => {
  81. const songModel = await DBModule.runJob("GET_MODEL", { modelName: "song" });
  82. songModel.findOne({ _id: songId }, (err, song) => {
  83. WSModule.runJob("EMIT_TO_ROOM", {
  84. room: "admin.songs",
  85. args: ["event:admin.verifiedSong.updated", { data: { song } }]
  86. });
  87. });
  88. }
  89. });
  90. CacheModule.runJob("SUB", {
  91. channel: "song.newHiddenSong",
  92. cb: async songId => {
  93. const songModel = await DBModule.runJob("GET_MODEL", {
  94. modelName: "song"
  95. });
  96. songModel.findOne({ _id: songId }, (err, song) => {
  97. WSModule.runJob("EMIT_TO_ROOM", {
  98. room: "admin.hiddenSongs",
  99. args: ["event:admin.hiddenSong.created", { data: { song } }]
  100. });
  101. WSModule.runJob("EMIT_TO_ROOM", {
  102. room: `edit-song.${songId}`,
  103. args: ["event:admin.hiddenSong.created", { data: { song } }]
  104. });
  105. });
  106. }
  107. });
  108. CacheModule.runJob("SUB", {
  109. channel: "song.removedHiddenSong",
  110. cb: songId => {
  111. WSModule.runJob("EMIT_TO_ROOM", {
  112. room: "admin.hiddenSongs",
  113. args: ["event:admin.hiddenSong.deleted", { data: { songId } }]
  114. });
  115. }
  116. });
  117. CacheModule.runJob("SUB", {
  118. channel: "song.updatedHiddenSong",
  119. cb: async songId => {
  120. const songModel = await DBModule.runJob("GET_MODEL", {
  121. modelName: "song"
  122. });
  123. songModel.findOne({ _id: songId }, (err, song) => {
  124. WSModule.runJob("EMIT_TO_ROOM", {
  125. room: "admin.hiddenSongs",
  126. args: ["event:admin.hiddenSong.updated", { data: { song } }]
  127. });
  128. });
  129. }
  130. });
  131. CacheModule.runJob("SUB", {
  132. channel: "song.like",
  133. cb: data => {
  134. WSModule.runJob("EMIT_TO_ROOM", {
  135. room: `song.${data.youtubeId}`,
  136. args: [
  137. "event:song.liked",
  138. {
  139. data: { youtubeId: data.youtubeId, likes: data.likes, dislikes: data.dislikes }
  140. }
  141. ]
  142. });
  143. WSModule.runJob("SOCKETS_FROM_USER", { userId: data.userId }).then(sockets => {
  144. sockets.forEach(socket => {
  145. socket.dispatch("event:song.ratings.updated", {
  146. data: {
  147. youtubeId: data.youtubeId,
  148. liked: true,
  149. disliked: false
  150. }
  151. });
  152. });
  153. });
  154. }
  155. });
  156. CacheModule.runJob("SUB", {
  157. channel: "song.dislike",
  158. cb: data => {
  159. WSModule.runJob("EMIT_TO_ROOM", {
  160. room: `song.${data.youtubeId}`,
  161. args: [
  162. "event:song.disliked",
  163. {
  164. data: { youtubeId: data.youtubeId, likes: data.likes, dislikes: data.dislikes }
  165. }
  166. ]
  167. });
  168. WSModule.runJob("SOCKETS_FROM_USER", { userId: data.userId }).then(sockets => {
  169. sockets.forEach(socket => {
  170. socket.dispatch("event:song.ratings.updated", {
  171. data: {
  172. youtubeId: data.youtubeId,
  173. liked: false,
  174. disliked: true
  175. }
  176. });
  177. });
  178. });
  179. }
  180. });
  181. CacheModule.runJob("SUB", {
  182. channel: "song.unlike",
  183. cb: data => {
  184. WSModule.runJob("EMIT_TO_ROOM", {
  185. room: `song.${data.youtubeId}`,
  186. args: [
  187. "event:song.unliked",
  188. {
  189. data: { youtubeId: data.youtubeId, likes: data.likes, dislikes: data.dislikes }
  190. }
  191. ]
  192. });
  193. WSModule.runJob("SOCKETS_FROM_USER", { userId: data.userId }).then(sockets => {
  194. sockets.forEach(socket => {
  195. socket.dispatch("event:song.ratings.updated", {
  196. data: {
  197. youtubeId: data.youtubeId,
  198. liked: false,
  199. disliked: false
  200. }
  201. });
  202. });
  203. });
  204. }
  205. });
  206. CacheModule.runJob("SUB", {
  207. channel: "song.undislike",
  208. cb: data => {
  209. WSModule.runJob("EMIT_TO_ROOM", {
  210. room: `song.${data.youtubeId}`,
  211. args: [
  212. "event:song.undisliked",
  213. {
  214. data: { youtubeId: data.youtubeId, likes: data.likes, dislikes: data.dislikes }
  215. }
  216. ]
  217. });
  218. WSModule.runJob("SOCKETS_FROM_USER", { userId: data.userId }).then(sockets => {
  219. sockets.forEach(socket => {
  220. socket.dispatch("event:song.ratings.updated", {
  221. data: {
  222. youtubeId: data.youtubeId,
  223. liked: false,
  224. disliked: false
  225. }
  226. });
  227. });
  228. });
  229. }
  230. });
  231. export default {
  232. /**
  233. * Returns the length of the songs list
  234. *
  235. * @param {object} session - the session object automatically added by the websocket
  236. * @param cb
  237. */
  238. length: isAdminRequired(async function length(session, status, cb) {
  239. const songModel = await DBModule.runJob("GET_MODEL", { modelName: "song" }, this);
  240. async.waterfall(
  241. [
  242. next => {
  243. songModel.countDocuments({ status }, next);
  244. }
  245. ],
  246. async (err, count) => {
  247. if (err) {
  248. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  249. this.log(
  250. "ERROR",
  251. "SONGS_LENGTH",
  252. `Failed to get length from songs that have the status ${status}. "${err}"`
  253. );
  254. return cb({ status: "error", message: err });
  255. }
  256. this.log(
  257. "SUCCESS",
  258. "SONGS_LENGTH",
  259. `Got length from songs that have the status ${status} successfully.`
  260. );
  261. return cb({ status: "success", message: "Successfully got length of songs.", data: { length: count } });
  262. }
  263. );
  264. }),
  265. /**
  266. * Gets a set of songs
  267. *
  268. * @param {object} session - the session object automatically added by the websocket
  269. * @param set - the set number to return
  270. * @param cb
  271. */
  272. getSet: isAdminRequired(async function getSet(session, set, status, cb) {
  273. const songModel = await DBModule.runJob("GET_MODEL", { modelName: "song" }, this);
  274. async.waterfall(
  275. [
  276. next => {
  277. songModel
  278. .find({ status })
  279. .skip(15 * (set - 1))
  280. .limit(15)
  281. .exec(next);
  282. }
  283. ],
  284. async (err, songs) => {
  285. if (err) {
  286. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  287. this.log(
  288. "ERROR",
  289. "SONGS_GET_SET",
  290. `Failed to get set from songs that have the status ${status}. "${err}"`
  291. );
  292. return cb({ status: "error", message: err });
  293. }
  294. this.log("SUCCESS", "SONGS_GET_SET", `Got set from songs that have the status ${status} successfully.`);
  295. return cb({ status: "success", message: "Successfully got set of songs.", data: { songs } });
  296. }
  297. );
  298. }),
  299. /**
  300. * Updates all songs
  301. *
  302. * @param {object} session - the session object automatically added by the websocket
  303. * @param cb
  304. */
  305. updateAll: isAdminRequired(async function length(session, cb) {
  306. async.waterfall(
  307. [
  308. next => {
  309. SongsModule.runJob("UPDATE_ALL_SONGS", {}, this)
  310. .then(() => {
  311. next();
  312. })
  313. .catch(err => {
  314. next(err);
  315. });
  316. }
  317. ],
  318. async err => {
  319. if (err) {
  320. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  321. this.log("ERROR", "SONGS_UPDATE_ALL", `Failed to update all songs. "${err}"`);
  322. return cb({ status: "error", message: err });
  323. }
  324. this.log("SUCCESS", "SONGS_UPDATE_ALL", `Updated all songs successfully.`);
  325. return cb({ status: "success", message: "Successfully updated all songs." });
  326. }
  327. );
  328. }),
  329. /**
  330. * Gets a song from the YouTube song id
  331. *
  332. * @param {object} session - the session object automatically added by the websocket
  333. * @param {string} youtubeId - the YouTube song id
  334. * @param {Function} cb
  335. */
  336. getSong: isAdminRequired(function getSong(session, youtubeId, cb) {
  337. async.waterfall(
  338. [
  339. next => {
  340. SongsModule.runJob("GET_SONG_FROM_YOUTUBE_ID", { youtubeId }, this)
  341. .then(song => {
  342. next(null, song);
  343. })
  344. .catch(err => {
  345. next(err);
  346. });
  347. }
  348. ],
  349. async (err, song) => {
  350. if (err) {
  351. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  352. this.log("ERROR", "SONGS_GET_SONG", `Failed to get song ${youtubeId}. "${err}"`);
  353. return cb({ status: "error", message: err });
  354. }
  355. this.log("SUCCESS", "SONGS_GET_SONG", `Got song ${youtubeId} successfully.`);
  356. return cb({ status: "success", data: { song } });
  357. }
  358. );
  359. }),
  360. /**
  361. * Gets a song from the Musare song id
  362. *
  363. * @param {object} session - the session object automatically added by the websocket
  364. * @param {string} songId - the song id
  365. * @param {Function} cb
  366. */
  367. getSongFromSongId: isAdminRequired(function getSong(session, songId, cb) {
  368. async.waterfall(
  369. [
  370. next => {
  371. SongsModule.runJob("GET_SONG", { songId }, this)
  372. .then(response => next(null, response.song))
  373. .catch(err => next(err));
  374. }
  375. ],
  376. async (err, song) => {
  377. if (err) {
  378. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  379. this.log("ERROR", "SONGS_GET_SONG_FROM_MUSARE_ID", `Failed to get song ${songId}. "${err}"`);
  380. return cb({ status: "error", message: err });
  381. }
  382. this.log("SUCCESS", "SONGS_GET_SONG_FROM_MUSARE_ID", `Got song ${songId} successfully.`);
  383. return cb({ status: "success", data: { song } });
  384. }
  385. );
  386. }),
  387. /**
  388. * Obtains basic metadata of a song in order to format an activity
  389. *
  390. * @param {object} session - the session object automatically added by the websocket
  391. * @param {string} youtubeId - the youtube song id
  392. * @param {Function} cb - callback
  393. */
  394. getSongForActivity(session, youtubeId, cb) {
  395. async.waterfall(
  396. [
  397. next => {
  398. SongsModule.runJob("GET_SONG_FROM_YOUTUBE_ID", { youtubeId }, this)
  399. .then(response => next(null, response.song))
  400. .catch(next);
  401. }
  402. ],
  403. async (err, song) => {
  404. if (err) {
  405. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  406. this.log(
  407. "ERROR",
  408. "SONGS_GET_SONG_FOR_ACTIVITY",
  409. `Failed to obtain metadata of song ${youtubeId} for activity formatting. "${err}"`
  410. );
  411. return cb({ status: "error", message: err });
  412. }
  413. if (song) {
  414. this.log(
  415. "SUCCESS",
  416. "SONGS_GET_SONG_FOR_ACTIVITY",
  417. `Obtained metadata of song ${youtubeId} for activity formatting successfully.`
  418. );
  419. return cb({
  420. status: "success",
  421. data: {
  422. title: song.title,
  423. thumbnail: song.thumbnail
  424. }
  425. });
  426. }
  427. this.log(
  428. "ERROR",
  429. "SONGS_GET_SONG_FOR_ACTIVITY",
  430. `Song ${youtubeId} does not exist so failed to obtain for activity formatting.`
  431. );
  432. return cb({ status: "error" });
  433. }
  434. );
  435. },
  436. /**
  437. * Updates a song
  438. *
  439. * @param {object} session - the session object automatically added by the websocket
  440. * @param {string} songId - the song id
  441. * @param {object} song - the updated song object
  442. * @param {Function} cb
  443. */
  444. update: isAdminRequired(async function update(session, songId, song, cb) {
  445. const songModel = await DBModule.runJob("GET_MODEL", { modelName: "song" }, this);
  446. let existingSong = null;
  447. async.waterfall(
  448. [
  449. next => {
  450. songModel.findOne({ _id: songId }, next);
  451. },
  452. (_existingSong, next) => {
  453. existingSong = _existingSong;
  454. songModel.updateOne({ _id: songId }, song, { runValidators: true }, next);
  455. },
  456. (res, next) => {
  457. SongsModule.runJob("UPDATE_SONG", { songId }, this)
  458. .then(song => {
  459. existingSong.genres
  460. .concat(song.genres)
  461. .filter((value, index, self) => self.indexOf(value) === index)
  462. .forEach(genre => {
  463. PlaylistsModule.runJob("AUTOFILL_GENRE_PLAYLIST", { genre })
  464. .then(() => {})
  465. .catch(() => {});
  466. });
  467. next(null, song);
  468. })
  469. .catch(next);
  470. }
  471. ],
  472. async (err, song) => {
  473. if (err) {
  474. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  475. this.log("ERROR", "SONGS_UPDATE", `Failed to update song "${songId}". "${err}"`);
  476. return cb({ status: "error", message: err });
  477. }
  478. this.log("SUCCESS", "SONGS_UPDATE", `Successfully updated song "${songId}".`);
  479. if (song.status === "verified") {
  480. CacheModule.runJob("PUB", {
  481. channel: "song.updatedVerifiedSong",
  482. value: song._id
  483. });
  484. } else if (song.status === "unverified") {
  485. CacheModule.runJob("PUB", {
  486. channel: "song.updatedUnverifiedSong",
  487. value: song._id
  488. });
  489. } else if (song.status === "hidden") {
  490. CacheModule.runJob("PUB", {
  491. channel: "song.updatedHiddenSong",
  492. value: song._id
  493. });
  494. }
  495. return cb({
  496. status: "success",
  497. message: "Song has been successfully updated",
  498. data: { song }
  499. });
  500. }
  501. );
  502. }),
  503. // /**
  504. // * Removes a song
  505. // *
  506. // * @param session
  507. // * @param songId - the song id
  508. // * @param cb
  509. // */
  510. // remove: isAdminRequired(async function remove(session, songId, cb) {
  511. // const songModel = await DBModule.runJob("GET_MODEL", { modelName: "song" }, this);
  512. // let song = null;
  513. // async.waterfall(
  514. // [
  515. // next => {
  516. // songModel.findOne({ _id: songId }, next);
  517. // },
  518. // (_song, next) => {
  519. // song = _song;
  520. // songModel.deleteOne({ _id: songId }, next);
  521. // },
  522. // (res, next) => {
  523. // CacheModule.runJob("HDEL", { table: "songs", key: songId }, this)
  524. // .then(() => {
  525. // next();
  526. // })
  527. // .catch(next)
  528. // .finally(() => {
  529. // song.genres.forEach(genre => {
  530. // PlaylistsModule.runJob("AUTOFILL_GENRE_PLAYLIST", { genre })
  531. // .then(() => {})
  532. // .catch(() => {});
  533. // });
  534. // });
  535. // }
  536. // ],
  537. // async err => {
  538. // if (err) {
  539. // err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  540. // this.log("ERROR", "SONGS_REMOVE", `Failed to remove song "${songId}". "${err}"`);
  541. // return cb({ status: "error", message: err });
  542. // }
  543. // this.log("SUCCESS", "SONGS_REMOVE", `Successfully removed song "${songId}".`);
  544. // if (song.status === "verified") {
  545. // CacheModule.runJob("PUB", {
  546. // channel: "song.removedVerifiedSong",
  547. // value: songId
  548. // });
  549. // }
  550. // if (song.status === "unverified") {
  551. // CacheModule.runJob("PUB", {
  552. // channel: "song.removedUnverifiedSong",
  553. // value: songId
  554. // });
  555. // }
  556. // if (song.status === "hidden") {
  557. // CacheModule.runJob("PUB", {
  558. // channel: "song.removedHiddenSong",
  559. // value: songId
  560. // });
  561. // }
  562. // return cb({
  563. // status: "success",
  564. // message: "Song has been successfully removed"
  565. // });
  566. // }
  567. // );
  568. // }),
  569. /**
  570. * Searches through official songs
  571. *
  572. * @param {object} session - the session object automatically added by the websocket
  573. * @param {string} query - the query
  574. * @param {string} page - the page
  575. * @param {Function} cb - gets called with the result
  576. */
  577. searchOfficial: isLoginRequired(async function searchOfficial(session, query, page, cb) {
  578. async.waterfall(
  579. [
  580. next => {
  581. if ((!query && query !== "") || typeof query !== "string") next("Invalid query.");
  582. else next();
  583. },
  584. next => {
  585. SongsModule.runJob("SEARCH", {
  586. query,
  587. includeVerified: true,
  588. trimmed: true,
  589. page
  590. })
  591. .then(response => {
  592. next(null, response);
  593. })
  594. .catch(err => {
  595. next(err);
  596. });
  597. }
  598. ],
  599. async (err, data) => {
  600. if (err) {
  601. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  602. this.log("ERROR", "SONGS_SEARCH_OFFICIAL", `Searching songs failed. "${err}"`);
  603. return cb({ status: "error", message: err });
  604. }
  605. this.log("SUCCESS", "SONGS_SEARCH_OFFICIAL", "Searching songs successful.");
  606. return cb({ status: "success", data });
  607. }
  608. );
  609. }),
  610. /**
  611. * Requests a song
  612. *
  613. * @param {object} session - the session object automatically added by the websocket
  614. * @param {string} youtubeId - the youtube id of the song that gets requested
  615. * @param {string} returnSong - returns the simple song
  616. * @param {Function} cb - gets called with the result
  617. */
  618. request: isLoginRequired(async function add(session, youtubeId, returnSong, cb) {
  619. SongsModule.runJob("REQUEST_SONG", { youtubeId, userId: session.userId }, this)
  620. .then(response => {
  621. this.log(
  622. "SUCCESS",
  623. "SONGS_REQUEST",
  624. `User "${session.userId}" successfully requested song "${youtubeId}".`
  625. );
  626. return cb({
  627. status: "success",
  628. message: "Successfully requested that song",
  629. song: returnSong ? response.song : null
  630. });
  631. })
  632. .catch(async _err => {
  633. const err = await UtilsModule.runJob("GET_ERROR", { error: _err }, this);
  634. this.log(
  635. "ERROR",
  636. "SONGS_REQUEST",
  637. `Requesting song "${youtubeId}" failed for user ${session.userId}. "${err}"`
  638. );
  639. return cb({ status: "error", message: err, song: (returnSong && _err.data) ? _err.data.song : null });
  640. });
  641. }),
  642. /**
  643. * Hides a song
  644. *
  645. * @param {object} session - the session object automatically added by the websocket
  646. * @param {string} songId - the song id of the song that gets hidden
  647. * @param {Function} cb - gets called with the result
  648. */
  649. hide: isLoginRequired(async function add(session, songId, cb) {
  650. SongsModule.runJob("HIDE_SONG", { songId }, this)
  651. .then(() => {
  652. this.log("SUCCESS", "SONGS_HIDE", `User "${session.userId}" successfully hid song "${songId}".`);
  653. return cb({
  654. status: "success",
  655. message: "Successfully hid that song"
  656. });
  657. })
  658. .catch(async err => {
  659. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  660. this.log("ERROR", "SONGS_HIDE", `Hiding song "${songId}" failed for user ${session.userId}. "${err}"`);
  661. return cb({ status: "error", message: err });
  662. });
  663. }),
  664. /**
  665. * Unhides a song
  666. *
  667. * @param {object} session - the session object automatically added by the websocket
  668. * @param {string} songId - the song id of the song that gets hidden
  669. * @param {Function} cb - gets called with the result
  670. */
  671. unhide: isLoginRequired(async function add(session, songId, cb) {
  672. SongsModule.runJob("UNHIDE_SONG", { songId }, this)
  673. .then(() => {
  674. this.log("SUCCESS", "SONGS_UNHIDE", `User "${session.userId}" successfully unhid song "${songId}".`);
  675. return cb({
  676. status: "success",
  677. message: "Successfully unhid that song"
  678. });
  679. })
  680. .catch(async err => {
  681. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  682. this.log(
  683. "ERROR",
  684. "SONGS_UNHIDE",
  685. `Unhiding song "${songId}" failed for user ${session.userId}. "${err}"`
  686. );
  687. return cb({ status: "error", message: err });
  688. });
  689. }),
  690. /**
  691. * Verifies a song
  692. *
  693. * @param session
  694. * @param songId - the song id
  695. * @param cb
  696. */
  697. verify: isAdminRequired(async function add(session, songId, cb) {
  698. const SongModel = await DBModule.runJob("GET_MODEL", { modelName: "song" }, this);
  699. async.waterfall(
  700. [
  701. next => {
  702. SongModel.findOne({ _id: songId }, next);
  703. },
  704. (song, next) => {
  705. if (!song) return next("This song is not in the database.");
  706. return next(null, song);
  707. },
  708. (song, next) => {
  709. song.verifiedBy = session.userId;
  710. song.verifiedAt = Date.now();
  711. song.status = "verified";
  712. song.save(err => {
  713. next(err, song);
  714. });
  715. },
  716. (song, next) => {
  717. song.genres.forEach(genre => {
  718. PlaylistsModule.runJob("AUTOFILL_GENRE_PLAYLIST", { genre })
  719. .then(() => {})
  720. .catch(() => {});
  721. });
  722. SongsModule.runJob("UPDATE_SONG", { songId: song._id });
  723. next(null, song);
  724. }
  725. ],
  726. async (err, song) => {
  727. if (err) {
  728. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  729. this.log("ERROR", "SONGS_VERIFY", `User "${session.userId}" failed to verify song. "${err}"`);
  730. return cb({ status: "error", message: err });
  731. }
  732. this.log("SUCCESS", "SONGS_VERIFY", `User "${session.userId}" successfully verified song "${songId}".`);
  733. CacheModule.runJob("PUB", {
  734. channel: "song.newVerifiedSong",
  735. value: song._id
  736. });
  737. CacheModule.runJob("PUB", {
  738. channel: "song.removedUnverifiedSong",
  739. value: song._id
  740. });
  741. return cb({
  742. status: "success",
  743. message: "Song has been verified successfully."
  744. });
  745. }
  746. );
  747. // TODO Check if video is in queue and Add the song to the appropriate stations
  748. }),
  749. /**
  750. * Un-verifies a song
  751. *
  752. * @param session
  753. * @param songId - the song id
  754. * @param cb
  755. */
  756. unverify: isAdminRequired(async function add(session, songId, cb) {
  757. const SongModel = await DBModule.runJob("GET_MODEL", { modelName: "song" }, this);
  758. async.waterfall(
  759. [
  760. next => {
  761. SongModel.findOne({ _id: songId }, next);
  762. },
  763. (song, next) => {
  764. if (!song) return next("This song is not in the database.");
  765. return next(null, song);
  766. },
  767. (song, next) => {
  768. song.status = "unverified";
  769. song.save(err => {
  770. next(err, song);
  771. });
  772. },
  773. (song, next) => {
  774. song.genres.forEach(genre => {
  775. PlaylistsModule.runJob("AUTOFILL_GENRE_PLAYLIST", { genre })
  776. .then(() => {})
  777. .catch(() => {});
  778. });
  779. SongsModule.runJob("UPDATE_SONG", { songId });
  780. next(null);
  781. }
  782. ],
  783. async err => {
  784. if (err) {
  785. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  786. this.log("ERROR", "SONGS_UNVERIFY", `User "${session.userId}" failed to verify song. "${err}"`);
  787. return cb({ status: "error", message: err });
  788. }
  789. this.log(
  790. "SUCCESS",
  791. "SONGS_UNVERIFY",
  792. `User "${session.userId}" successfully unverified song "${songId}".`
  793. );
  794. CacheModule.runJob("PUB", {
  795. channel: "song.newUnverifiedSong",
  796. value: songId
  797. });
  798. CacheModule.runJob("PUB", {
  799. channel: "song.removedVerifiedSong",
  800. value: songId
  801. });
  802. return cb({
  803. status: "success",
  804. message: "Song has been unverified successfully."
  805. });
  806. }
  807. );
  808. // TODO Check if video is in queue and Add the song to the appropriate stations
  809. }),
  810. /**
  811. * Requests a set of songs
  812. *
  813. * @param {object} session - the session object automatically added by the websocket
  814. * @param {string} url - the url of the the YouTube playlist
  815. * @param {boolean} musicOnly - whether to only get music from the playlist
  816. * @param {Function} cb - gets called with the result
  817. */
  818. requestSet: isLoginRequired(function requestSet(session, url, musicOnly, returnSongs, cb) {
  819. async.waterfall(
  820. [
  821. next => {
  822. YouTubeModule.runJob(
  823. "GET_PLAYLIST",
  824. {
  825. url,
  826. musicOnly
  827. },
  828. this
  829. )
  830. .then(res => {
  831. next(null, res.songs);
  832. })
  833. .catch(next);
  834. },
  835. (youtubeIds, next) => {
  836. let successful = 0;
  837. let songs = {};
  838. let failed = 0;
  839. let alreadyInDatabase = 0;
  840. if (youtubeIds.length === 0) next();
  841. async.eachOfLimit(
  842. youtubeIds,
  843. 1,
  844. (youtubeId, index, next) => {
  845. WSModule.runJob(
  846. "RUN_ACTION2",
  847. {
  848. session,
  849. namespace: "songs",
  850. action: "request",
  851. args: [youtubeId, returnSongs]
  852. },
  853. this
  854. )
  855. .then(res => {
  856. if (res.status === "success") successful += 1;
  857. else failed += 1;
  858. if (res.message === "This song is already in the database.") alreadyInDatabase += 1;
  859. if (res.song) songs[index] = res.song;
  860. else songs[index] = null;
  861. })
  862. .catch(() => {
  863. failed += 1;
  864. })
  865. .finally(() => {
  866. next();
  867. });
  868. },
  869. () => {
  870. if (returnSongs)
  871. songs = Object.keys(songs).sort().map(key => songs[key]);
  872. next(null, { successful, failed, alreadyInDatabase, songs });
  873. }
  874. );
  875. }
  876. ],
  877. async (err, response) => {
  878. if (err) {
  879. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  880. this.log(
  881. "ERROR",
  882. "REQUEST_SET",
  883. `Importing a YouTube playlist to be requested failed for user "${session.userId}". "${err}"`
  884. );
  885. return cb({ status: "error", message: err });
  886. }
  887. this.log(
  888. "SUCCESS",
  889. "REQUEST_SET",
  890. `Successfully imported a YouTube playlist to be requested for user "${session.userId}".`
  891. );
  892. return cb({
  893. status: "success",
  894. message: `Playlist is done importing. ${response.successful} were added succesfully, ${response.failed} failed (${response.alreadyInDatabase} were already in database)`,
  895. songs: returnSongs ? response.songs : null
  896. });
  897. }
  898. );
  899. }),
  900. // /**
  901. // * Adds a song
  902. // *
  903. // * @param session
  904. // * @param song - the song object
  905. // * @param cb
  906. // */
  907. // add: isAdminRequired(async function add(session, song, cb) {
  908. // const SongModel = await DBModule.runJob("GET_MODEL", { modelName: "song" }, this);
  909. // async.waterfall(
  910. // [
  911. // next => {
  912. // SongModel.findOne({ youtubeId: song.youtubeId }, next);
  913. // },
  914. // (existingSong, next) => {
  915. // if (existingSong) return next("Song is already in rotation.");
  916. // return next();
  917. // },
  918. // next => {
  919. // const newSong = new SongModel(song);
  920. // newSong.verifiedBy = session.userId;
  921. // newSong.verifiedAt = Date.now();
  922. // newSong.save(next);
  923. // },
  924. // (res, next) => {
  925. // this.module
  926. // .runJob(
  927. // "RUN_ACTION2",
  928. // {
  929. // session,
  930. // namespace: "queueSongs",
  931. // action: "remove",
  932. // args: [song._id]
  933. // },
  934. // this
  935. // )
  936. // .finally(() => {
  937. // song.genres.forEach(genre => {
  938. // PlaylistsModule.runJob("AUTOFILL_GENRE_PLAYLIST", { genre })
  939. // .then(() => {})
  940. // .catch(() => {});
  941. // });
  942. // next();
  943. // });
  944. // }
  945. // ],
  946. // async err => {
  947. // if (err) {
  948. // err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  949. // this.log("ERROR", "SONGS_ADD", `User "${session.userId}" failed to add song. "${err}"`);
  950. // return cb({ status: "error", message: err });
  951. // }
  952. // this.log("SUCCESS", "SONGS_ADD", `User "${session.userId}" successfully added song "${song.youtubeId}".`);
  953. // CacheModule.runJob("PUB", {
  954. // channel: "song.added",
  955. // value: song.youtubeId
  956. // });
  957. // return cb({
  958. // status: "success",
  959. // message: "Song has been moved from the queue successfully."
  960. // });
  961. // }
  962. // );
  963. // // TODO Check if video is in queue and Add the song to the appropriate stations
  964. // }),
  965. /**
  966. * Likes a song
  967. *
  968. * @param session
  969. * @param youtubeId - the youtube id
  970. * @param cb
  971. */
  972. like: isLoginRequired(async function like(session, youtubeId, cb) {
  973. const userModel = await DBModule.runJob("GET_MODEL", { modelName: "user" }, this);
  974. const songModel = await DBModule.runJob("GET_MODEL", { modelName: "song" }, this);
  975. async.waterfall(
  976. [
  977. next => songModel.findOne({ youtubeId }, next),
  978. (song, next) => {
  979. if (!song) return next("No song found with that id.");
  980. return next(null, song);
  981. },
  982. (song, next) => userModel.findOne({ _id: session.userId }, (err, user) => next(err, song, user)),
  983. (song, user, next) => {
  984. if (!user) return next("User does not exist.");
  985. return this.module
  986. .runJob(
  987. "RUN_ACTION2",
  988. {
  989. session,
  990. namespace: "playlists",
  991. action: "addSongToPlaylist",
  992. args: [false, youtubeId, user.likedSongsPlaylist]
  993. },
  994. this
  995. )
  996. .then(res => {
  997. if (res.status === "error") {
  998. if (res.message === "That song is already in the playlist")
  999. return next("You have already liked this song.");
  1000. return next("Unable to add song to the 'Liked Songs' playlist.");
  1001. }
  1002. return next(null, song, user.dislikedSongsPlaylist);
  1003. })
  1004. .catch(err => next(err));
  1005. },
  1006. (song, dislikedSongsPlaylist, next) => {
  1007. this.module
  1008. .runJob(
  1009. "RUN_ACTION2",
  1010. {
  1011. session,
  1012. namespace: "playlists",
  1013. action: "removeSongFromPlaylist",
  1014. args: [youtubeId, dislikedSongsPlaylist]
  1015. },
  1016. this
  1017. )
  1018. .then(res => {
  1019. if (res.status === "error")
  1020. return next("Unable to remove song from the 'Disliked Songs' playlist.");
  1021. return next(null, song);
  1022. })
  1023. .catch(err => next(err));
  1024. },
  1025. (song, next) => {
  1026. SongsModule.runJob("RECALCULATE_SONG_RATINGS", { songId: song._id, youtubeId })
  1027. .then(ratings => next(null, song, ratings))
  1028. .catch(err => next(err));
  1029. }
  1030. ],
  1031. async (err, song, { likes, dislikes }) => {
  1032. if (err) {
  1033. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  1034. this.log(
  1035. "ERROR",
  1036. "SONGS_LIKE",
  1037. `User "${session.userId}" failed to like song ${youtubeId}. "${err}"`
  1038. );
  1039. return cb({ status: "error", message: err });
  1040. }
  1041. SongsModule.runJob("UPDATE_SONG", { songId: song._id });
  1042. CacheModule.runJob("PUB", {
  1043. channel: "song.like",
  1044. value: JSON.stringify({
  1045. youtubeId,
  1046. userId: session.userId,
  1047. likes,
  1048. dislikes
  1049. })
  1050. });
  1051. ActivitiesModule.runJob("ADD_ACTIVITY", {
  1052. userId: session.userId,
  1053. type: "song__like",
  1054. payload: {
  1055. message: `Liked song <youtubeId>${song.title} by ${song.artists.join(", ")}</youtubeId>`,
  1056. youtubeId,
  1057. thumbnail: song.thumbnail
  1058. }
  1059. });
  1060. return cb({
  1061. status: "success",
  1062. message: "You have successfully liked this song."
  1063. });
  1064. }
  1065. );
  1066. }),
  1067. /**
  1068. * Dislikes a song
  1069. *
  1070. * @param session
  1071. * @param youtubeId - the youtube id
  1072. * @param cb
  1073. */
  1074. dislike: isLoginRequired(async function dislike(session, youtubeId, cb) {
  1075. const userModel = await DBModule.runJob("GET_MODEL", { modelName: "user" }, this);
  1076. const songModel = await DBModule.runJob("GET_MODEL", { modelName: "song" }, this);
  1077. async.waterfall(
  1078. [
  1079. next => {
  1080. songModel.findOne({ youtubeId }, next);
  1081. },
  1082. (song, next) => {
  1083. if (!song) return next("No song found with that id.");
  1084. return next(null, song);
  1085. },
  1086. (song, next) => userModel.findOne({ _id: session.userId }, (err, user) => next(err, song, user)),
  1087. (song, user, next) => {
  1088. if (!user) return next("User does not exist.");
  1089. return this.module
  1090. .runJob(
  1091. "RUN_ACTION2",
  1092. {
  1093. session,
  1094. namespace: "playlists",
  1095. action: "addSongToPlaylist",
  1096. args: [false, youtubeId, user.dislikedSongsPlaylist]
  1097. },
  1098. this
  1099. )
  1100. .then(res => {
  1101. if (res.status === "error") {
  1102. if (res.message === "That song is already in the playlist")
  1103. return next("You have already disliked this song.");
  1104. return next("Unable to add song to the 'Disliked Songs' playlist.");
  1105. }
  1106. return next(null, song, user.likedSongsPlaylist);
  1107. })
  1108. .catch(err => next(err));
  1109. },
  1110. (song, likedSongsPlaylist, next) => {
  1111. this.module
  1112. .runJob(
  1113. "RUN_ACTION2",
  1114. {
  1115. session,
  1116. namespace: "playlists",
  1117. action: "removeSongFromPlaylist",
  1118. args: [youtubeId, likedSongsPlaylist]
  1119. },
  1120. this
  1121. )
  1122. .then(res => {
  1123. if (res.status === "error")
  1124. return next("Unable to remove song from the 'Liked Songs' playlist.");
  1125. return next(null, song);
  1126. })
  1127. .catch(err => next(err));
  1128. },
  1129. (song, next) => {
  1130. SongsModule.runJob("RECALCULATE_SONG_RATINGS", { songId: song._id, youtubeId })
  1131. .then(ratings => next(null, song, ratings))
  1132. .catch(err => next(err));
  1133. }
  1134. ],
  1135. async (err, song, { likes, dislikes }) => {
  1136. if (err) {
  1137. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  1138. this.log(
  1139. "ERROR",
  1140. "SONGS_DISLIKE",
  1141. `User "${session.userId}" failed to dislike song ${youtubeId}. "${err}"`
  1142. );
  1143. return cb({ status: "error", message: err });
  1144. }
  1145. SongsModule.runJob("UPDATE_SONG", { songId: song._id });
  1146. CacheModule.runJob("PUB", {
  1147. channel: "song.dislike",
  1148. value: JSON.stringify({
  1149. youtubeId,
  1150. userId: session.userId,
  1151. likes,
  1152. dislikes
  1153. })
  1154. });
  1155. ActivitiesModule.runJob("ADD_ACTIVITY", {
  1156. userId: session.userId,
  1157. type: "song__dislike",
  1158. payload: {
  1159. message: `Disliked song <youtubeId>${song.title} by ${song.artists.join(", ")}</youtubeId>`,
  1160. youtubeId,
  1161. thumbnail: song.thumbnail
  1162. }
  1163. });
  1164. return cb({
  1165. status: "success",
  1166. message: "You have successfully disliked this song."
  1167. });
  1168. }
  1169. );
  1170. }),
  1171. /**
  1172. * Undislikes a song
  1173. *
  1174. * @param session
  1175. * @param youtubeId - the youtube id
  1176. * @param cb
  1177. */
  1178. undislike: isLoginRequired(async function undislike(session, youtubeId, cb) {
  1179. const userModel = await DBModule.runJob("GET_MODEL", { modelName: "user" }, this);
  1180. const songModel = await DBModule.runJob("GET_MODEL", { modelName: "song" }, this);
  1181. async.waterfall(
  1182. [
  1183. next => {
  1184. songModel.findOne({ youtubeId }, next);
  1185. },
  1186. (song, next) => {
  1187. if (!song) return next("No song found with that id.");
  1188. return next(null, song);
  1189. },
  1190. (song, next) => userModel.findOne({ _id: session.userId }, (err, user) => next(err, song, user)),
  1191. (song, user, next) => {
  1192. if (!user) return next("User does not exist.");
  1193. return this.module
  1194. .runJob(
  1195. "RUN_ACTION2",
  1196. {
  1197. session,
  1198. namespace: "playlists",
  1199. action: "removeSongFromPlaylist",
  1200. args: [youtubeId, user.dislikedSongsPlaylist]
  1201. },
  1202. this
  1203. )
  1204. .then(res => {
  1205. if (res.status === "error")
  1206. return next("Unable to remove song from the 'Disliked Songs' playlist.");
  1207. return next(null, song, user.likedSongsPlaylist);
  1208. })
  1209. .catch(err => next(err));
  1210. },
  1211. (song, likedSongsPlaylist, next) => {
  1212. this.module
  1213. .runJob(
  1214. "RUN_ACTION2",
  1215. {
  1216. session,
  1217. namespace: "playlists",
  1218. action: "removeSongFromPlaylist",
  1219. args: [youtubeId, likedSongsPlaylist]
  1220. },
  1221. this
  1222. )
  1223. .then(res => {
  1224. if (res.status === "error")
  1225. return next("Unable to remove song from the 'Liked Songs' playlist.");
  1226. return next(null, song);
  1227. })
  1228. .catch(err => next(err));
  1229. },
  1230. (song, next) => {
  1231. SongsModule.runJob("RECALCULATE_SONG_RATINGS", { songId: song._id, youtubeId })
  1232. .then(ratings => next(null, song, ratings))
  1233. .catch(err => next(err));
  1234. }
  1235. ],
  1236. async (err, song, { likes, dislikes }) => {
  1237. if (err) {
  1238. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  1239. this.log(
  1240. "ERROR",
  1241. "SONGS_UNDISLIKE",
  1242. `User "${session.userId}" failed to undislike song ${youtubeId}. "${err}"`
  1243. );
  1244. return cb({ status: "error", message: err });
  1245. }
  1246. SongsModule.runJob("UPDATE_SONG", { songId: song._id });
  1247. CacheModule.runJob("PUB", {
  1248. channel: "song.undislike",
  1249. value: JSON.stringify({
  1250. youtubeId,
  1251. userId: session.userId,
  1252. likes,
  1253. dislikes
  1254. })
  1255. });
  1256. ActivitiesModule.runJob("ADD_ACTIVITY", {
  1257. userId: session.userId,
  1258. type: "song__undislike",
  1259. payload: {
  1260. message: `Removed <youtubeId>${song.title} by ${song.artists.join(
  1261. ", "
  1262. )}</youtubeId> from your Disliked Songs`,
  1263. youtubeId,
  1264. thumbnail: song.thumbnail
  1265. }
  1266. });
  1267. return cb({
  1268. status: "success",
  1269. message: "You have successfully undisliked this song."
  1270. });
  1271. }
  1272. );
  1273. }),
  1274. /**
  1275. * Unlikes a song
  1276. *
  1277. * @param session
  1278. * @param youtubeId - the youtube id
  1279. * @param cb
  1280. */
  1281. unlike: isLoginRequired(async function unlike(session, youtubeId, cb) {
  1282. const userModel = await DBModule.runJob("GET_MODEL", { modelName: "user" }, this);
  1283. const songModel = await DBModule.runJob("GET_MODEL", { modelName: "song" }, this);
  1284. async.waterfall(
  1285. [
  1286. next => {
  1287. songModel.findOne({ youtubeId }, next);
  1288. },
  1289. (song, next) => {
  1290. if (!song) return next("No song found with that id.");
  1291. return next(null, song);
  1292. },
  1293. (song, next) => userModel.findOne({ _id: session.userId }, (err, user) => next(err, song, user)),
  1294. (song, user, next) => {
  1295. if (!user) return next("User does not exist.");
  1296. return this.module
  1297. .runJob(
  1298. "RUN_ACTION2",
  1299. {
  1300. session,
  1301. namespace: "playlists",
  1302. action: "removeSongFromPlaylist",
  1303. args: [youtubeId, user.dislikedSongsPlaylist]
  1304. },
  1305. this
  1306. )
  1307. .then(res => {
  1308. if (res.status === "error")
  1309. return next("Unable to remove song from the 'Disliked Songs' playlist.");
  1310. return next(null, song, user.likedSongsPlaylist);
  1311. })
  1312. .catch(err => next(err));
  1313. },
  1314. (song, likedSongsPlaylist, next) => {
  1315. this.module
  1316. .runJob(
  1317. "RUN_ACTION2",
  1318. {
  1319. session,
  1320. namespace: "playlists",
  1321. action: "removeSongFromPlaylist",
  1322. args: [youtubeId, likedSongsPlaylist]
  1323. },
  1324. this
  1325. )
  1326. .then(res => {
  1327. if (res.status === "error")
  1328. return next("Unable to remove song from the 'Liked Songs' playlist.");
  1329. return next(null, song);
  1330. })
  1331. .catch(err => next(err));
  1332. },
  1333. (song, next) => {
  1334. SongsModule.runJob("RECALCULATE_SONG_RATINGS", { songId: song._id, youtubeId })
  1335. .then(ratings => next(null, song, ratings))
  1336. .catch(err => next(err));
  1337. }
  1338. ],
  1339. async (err, song, { likes, dislikes }) => {
  1340. if (err) {
  1341. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  1342. this.log(
  1343. "ERROR",
  1344. "SONGS_UNLIKE",
  1345. `User "${session.userId}" failed to unlike song ${youtubeId}. "${err}"`
  1346. );
  1347. return cb({ status: "error", message: err });
  1348. }
  1349. SongsModule.runJob("UPDATE_SONG", { songId: song._id });
  1350. CacheModule.runJob("PUB", {
  1351. channel: "song.unlike",
  1352. value: JSON.stringify({
  1353. youtubeId,
  1354. userId: session.userId,
  1355. likes,
  1356. dislikes
  1357. })
  1358. });
  1359. ActivitiesModule.runJob("ADD_ACTIVITY", {
  1360. userId: session.userId,
  1361. type: "song__unlike",
  1362. payload: {
  1363. message: `Removed <youtubeId>${song.title} by ${song.artists.join(
  1364. ", "
  1365. )}</youtubeId> from your Liked Songs`,
  1366. youtubeId,
  1367. thumbnail: song.thumbnail
  1368. }
  1369. });
  1370. return cb({
  1371. status: "success",
  1372. message: "You have successfully unliked this song."
  1373. });
  1374. }
  1375. );
  1376. }),
  1377. /**
  1378. * Gets user's own song ratings
  1379. *
  1380. * @param session
  1381. * @param youtubeId - the youtube id
  1382. * @param cb
  1383. */
  1384. getOwnSongRatings: isLoginRequired(async function getOwnSongRatings(session, youtubeId, cb) {
  1385. const playlistModel = await DBModule.runJob("GET_MODEL", { modelName: "playlist" }, this);
  1386. const songModel = await DBModule.runJob("GET_MODEL", { modelName: "song" }, this);
  1387. async.waterfall(
  1388. [
  1389. next => songModel.findOne({ youtubeId }, next),
  1390. (song, next) => {
  1391. if (!song) return next("No song found with that id.");
  1392. return next(null);
  1393. },
  1394. next =>
  1395. playlistModel.findOne(
  1396. { createdBy: session.userId, displayName: "Liked Songs" },
  1397. (err, playlist) => {
  1398. if (err) return next(err);
  1399. if (!playlist) return next("'Liked Songs' playlist does not exist.");
  1400. let isLiked = false;
  1401. Object.values(playlist.songs).forEach(song => {
  1402. // song is found in 'liked songs' playlist
  1403. if (song.youtubeId === youtubeId) isLiked = true;
  1404. });
  1405. return next(null, isLiked);
  1406. }
  1407. ),
  1408. (isLiked, next) =>
  1409. playlistModel.findOne(
  1410. { createdBy: session.userId, displayName: "Disliked Songs" },
  1411. (err, playlist) => {
  1412. if (err) return next(err);
  1413. if (!playlist) return next("'Disliked Songs' playlist does not exist.");
  1414. const ratings = { isLiked, isDisliked: false };
  1415. Object.values(playlist.songs).forEach(song => {
  1416. // song is found in 'disliked songs' playlist
  1417. if (song.youtubeId === youtubeId) ratings.isDisliked = true;
  1418. });
  1419. return next(null, ratings);
  1420. }
  1421. )
  1422. ],
  1423. async (err, ratings) => {
  1424. if (err) {
  1425. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  1426. this.log(
  1427. "ERROR",
  1428. "SONGS_GET_OWN_RATINGS",
  1429. `User "${session.userId}" failed to get ratings for ${youtubeId}. "${err}"`
  1430. );
  1431. return cb({ status: "error", message: err });
  1432. }
  1433. const { isLiked, isDisliked } = ratings;
  1434. return cb({
  1435. status: "success",
  1436. data: {
  1437. youtubeId,
  1438. liked: isLiked,
  1439. disliked: isDisliked
  1440. }
  1441. });
  1442. }
  1443. );
  1444. })
  1445. };