playlists.js 55 KB

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