songs.js 41 KB

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