stations.js 36 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123
  1. 'use strict';
  2. const async = require('async'),
  3. request = require('request'),
  4. config = require('config'),
  5. _ = require('underscore')._;
  6. const io = require('../io');
  7. const db = require('../db');
  8. const cache = require('../cache');
  9. const notifications = require('../notifications');
  10. const utils = require('../utils');
  11. const logger = require('../logger');
  12. const stations = require('../stations');
  13. const songs = require('../songs');
  14. const hooks = require('./hooks');
  15. let userList = {};
  16. let usersPerStation = {};
  17. let usersPerStationCount = {};
  18. setInterval(() => {
  19. let stationsCountUpdated = [];
  20. let stationsUpdated = [];
  21. let oldUsersPerStation = usersPerStation;
  22. usersPerStation = {};
  23. let oldUsersPerStationCount = usersPerStationCount;
  24. usersPerStationCount = {};
  25. async.each(Object.keys(userList), function(socketId, next) {
  26. let socket = utils.socketFromSession(socketId);
  27. let stationId = userList[socketId];
  28. if (!socket || Object.keys(socket.rooms).indexOf(`station.${stationId}`) === -1) {
  29. if (stationsCountUpdated.indexOf(stationId) === -1) stationsCountUpdated.push(stationId);
  30. if (stationsUpdated.indexOf(stationId) === -1) stationsUpdated.push(stationId);
  31. delete userList[socketId];
  32. return next();
  33. }
  34. if (!usersPerStationCount[stationId]) usersPerStationCount[stationId] = 0;
  35. usersPerStationCount[stationId]++;
  36. if (!usersPerStation[stationId]) usersPerStation[stationId] = [];
  37. async.waterfall([
  38. (next) => {
  39. if (!socket.session || !socket.session.sessionId) return next('No session found.');
  40. cache.hget('sessions', socket.session.sessionId, next);
  41. },
  42. (session, next) => {
  43. if (!session) return next('Session not found.');
  44. db.models.user.findOne({_id: session.userId}, next);
  45. },
  46. (user, next) => {
  47. if (!user) return next('User not found.');
  48. if (usersPerStation[stationId].indexOf(user.username) !== -1) return next('User already in the list.');
  49. next(null, user.username);
  50. }
  51. ], (err, username) => {
  52. if (!err) {
  53. usersPerStation[stationId].push(username);
  54. }
  55. next();
  56. });
  57. //TODO Code to show users
  58. }, (err) => {
  59. for (let stationId in usersPerStationCount) {
  60. if (oldUsersPerStationCount[stationId] !== usersPerStationCount[stationId]) {
  61. if (stationsCountUpdated.indexOf(stationId) === -1) stationsCountUpdated.push(stationId);
  62. }
  63. }
  64. for (let stationId in usersPerStation) {
  65. if (_.difference(usersPerStation[stationId], oldUsersPerStation[stationId]).length > 0 || _.difference(oldUsersPerStation[stationId], usersPerStation[stationId]).length > 0) {
  66. if (stationsUpdated.indexOf(stationId) === -1) stationsUpdated.push(stationId);
  67. }
  68. }
  69. stationsCountUpdated.forEach((stationId) => {
  70. //logger.info("UPDATE_STATION_USER_COUNT", `Updating user count of ${stationId}.`);
  71. cache.pub('station.updateUserCount', stationId);
  72. });
  73. stationsUpdated.forEach((stationId) => {
  74. //logger.info("UPDATE_STATION_USER_LIST", `Updating user list of ${stationId}.`);
  75. cache.pub('station.updateUsers', stationId);
  76. });
  77. //console.log("Userlist", usersPerStation);
  78. });
  79. }, 3000);
  80. cache.sub('station.updateUsers', stationId => {
  81. let list = usersPerStation[stationId] || [];
  82. utils.emitToRoom(`station.${stationId}`, "event:users.updated", list);
  83. });
  84. cache.sub('station.updateUserCount', stationId => {
  85. let count = usersPerStationCount[stationId] || 0;
  86. utils.emitToRoom(`station.${stationId}`, "event:userCount.updated", count);
  87. stations.getStation(stationId, (err, station) => {
  88. if (station.privacy === 'public') utils.emitToRoom('home', "event:userCount.updated", stationId, count);
  89. else {
  90. let sockets = utils.getRoomSockets('home');
  91. for (let socketId in sockets) {
  92. let socket = sockets[socketId];
  93. let session = sockets[socketId].session;
  94. if (session.sessionId) {
  95. cache.hget('sessions', session.sessionId, (err, session) => {
  96. if (!err && session) {
  97. db.models.user.findOne({_id: session.userId}, (err, user) => {
  98. if (user.role === 'admin') socket.emit("event:userCount.updated", stationId, count);
  99. else if (station.type === "community" && station.owner === session.userId) socket.emit("event:userCount.updated", stationId, count);
  100. });
  101. }
  102. });
  103. }
  104. }
  105. }
  106. })
  107. });
  108. cache.sub('station.queueLockToggled', data => {
  109. utils.emitToRoom(`station.${data.stationId}`, "event:queueLockToggled", data.locked)
  110. });
  111. cache.sub('station.updatePartyMode', data => {
  112. utils.emitToRoom(`station.${data.stationId}`, "event:partyMode.updated", data.partyMode);
  113. });
  114. cache.sub('privatePlaylist.selected', data => {
  115. utils.emitToRoom(`station.${data.stationId}`, "event:privatePlaylist.selected", data.playlistId);
  116. });
  117. cache.sub('station.pause', stationId => {
  118. stations.getStation(stationId, (err, station) => {
  119. utils.emitToRoom(`station.${stationId}`, "event:stations.pause", { pausedAt: station.pausedAt });
  120. });
  121. });
  122. cache.sub('station.resume', stationId => {
  123. stations.getStation(stationId, (err, station) => {
  124. utils.emitToRoom(`station.${stationId}`, "event:stations.resume", { timePaused: station.timePaused });
  125. });
  126. });
  127. cache.sub('station.queueUpdate', stationId => {
  128. stations.getStation(stationId, (err, station) => {
  129. if (!err) utils.emitToRoom(`station.${stationId}`, "event:queue.update", station.queue);
  130. });
  131. });
  132. cache.sub('station.voteSkipSong', stationId => {
  133. utils.emitToRoom(`station.${stationId}`, "event:song.voteSkipSong");
  134. });
  135. cache.sub('station.remove', stationId => {
  136. utils.emitToRoom(`station.${stationId}`, 'event:stations.remove');
  137. utils.emitToRoom('admin.stations', 'event:admin.station.removed', stationId);
  138. });
  139. cache.sub('station.create', stationId => {
  140. stations.initializeStation(stationId, (err, station) => {
  141. station.userCount = usersPerStationCount[stationId] || 0;
  142. if (err) console.error(err);
  143. utils.emitToRoom('admin.stations', 'event:admin.station.added', station);
  144. // TODO If community, check if on whitelist
  145. if (station.privacy === 'public') utils.emitToRoom('home', "event:stations.created", station);
  146. else {
  147. let sockets = utils.getRoomSockets('home');
  148. for (let socketId in sockets) {
  149. let socket = sockets[socketId];
  150. let session = sockets[socketId].session;
  151. if (session.sessionId) {
  152. cache.hget('sessions', session.sessionId, (err, session) => {
  153. if (!err && session) {
  154. db.models.user.findOne({_id: session.userId}, (err, user) => {
  155. if (user.role === 'admin') socket.emit("event:stations.created", station);
  156. else if (station.type === "community" && station.owner === session.userId) socket.emit("event:stations.created", station);
  157. });
  158. }
  159. });
  160. }
  161. }
  162. }
  163. });
  164. });
  165. module.exports = {
  166. /**
  167. * Get a list of all the stations
  168. *
  169. * @param session
  170. * @param cb
  171. * @return {{ status: String, stations: Array }}
  172. */
  173. index: (session, cb) => {
  174. async.waterfall([
  175. (next) => {
  176. cache.hgetall('stations', next);
  177. },
  178. (stations, next) => {
  179. let resultStations = [];
  180. for (let id in stations) {
  181. resultStations.push(stations[id]);
  182. }
  183. next(null, stations);
  184. },
  185. (stations, next) => {
  186. let resultStations = [];
  187. async.each(stations, (station, next) => {
  188. async.waterfall([
  189. (next) => {
  190. if (station.privacy === 'public') return next(true);
  191. if (!session.sessionId) return next(`Insufficient permissions.`);
  192. cache.hget('sessions', session.sessionId, next);
  193. },
  194. (session, next) => {
  195. if (!session) return next(`Insufficient permissions.`);
  196. db.models.user.findOne({_id: session.userId}, next);
  197. },
  198. (user, next) => {
  199. if (!user) return next(`Insufficient permissions.`);
  200. if (user.role === 'admin') return next(true);
  201. if (station.type === 'official') return next(`Insufficient permissions.`);
  202. if (station.owner === session.userId) return next(true);
  203. next(`Insufficient permissions.`);
  204. }
  205. ], (err) => {
  206. station.userCount = usersPerStationCount[station._id] || 0;
  207. if (err === true) resultStations.push(station);
  208. next();
  209. });
  210. }, () => {
  211. next(null, resultStations);
  212. });
  213. }
  214. ], (err, stations) => {
  215. if (err) {
  216. err = utils.getError(err);
  217. logger.error("STATIONS_INDEX", `Indexing stations failed. "${err}"`);
  218. return cb({'status': 'failure', 'message': err});
  219. }
  220. logger.success("STATIONS_INDEX", `Indexing stations successful.`, false);
  221. return cb({'status': 'success', 'stations': stations});
  222. });
  223. },
  224. /**
  225. * Finds a station by name
  226. *
  227. * @param session
  228. * @param stationName - the station name
  229. * @param cb
  230. */
  231. findByName: (session, stationName, cb) => {
  232. async.waterfall([
  233. (next) => {
  234. stations.getStationByName(stationName, next);
  235. },
  236. (station, next) => {
  237. if (!station) return next('Station not found.');
  238. next(null, station);
  239. }
  240. ], (err, station) => {
  241. if (err) {
  242. err = utils.getError(err);
  243. logger.error("STATIONS_FIND_BY_NAME", `Finding station "${stationName}" failed. "${err}"`);
  244. return cb({'status': 'failure', 'message': err});
  245. }
  246. logger.success("STATIONS_FIND_BY_NAME", `Found station "${stationName}" successfully.`, false);
  247. cb({status: 'success', data: station});
  248. });
  249. },
  250. /**
  251. * Gets the official playlist for a station
  252. *
  253. * @param session
  254. * @param stationId - the station id
  255. * @param cb
  256. */
  257. getPlaylist: (session, stationId, cb) => {
  258. async.waterfall([
  259. (next) => {
  260. stations.getStation(stationId, next);
  261. },
  262. (station, next) => {
  263. if (!station) return next('Station not found.');
  264. else if (station.type !== 'official') return next('This is not an official station.');
  265. else next();
  266. },
  267. (next) => {
  268. cache.hget('officialPlaylists', stationId, next);
  269. },
  270. (playlist, next) => {
  271. if (!playlist) return next('Playlist not found.');
  272. next(null, playlist);
  273. }
  274. ], (err, playlist) => {
  275. if (err) {
  276. err = utils.getError(err);
  277. logger.error("STATIONS_GET_PLAYLIST", `Getting playlist for station "${stationId}" failed. "${err}"`);
  278. return cb({ status: 'failure', message: err });
  279. } else {
  280. logger.success("STATIONS_GET_PLAYLIST", `Got playlist for station "${stationId}" successfully.`, false);
  281. cb({ status: 'success', data: playlist.songs });
  282. }
  283. });
  284. },
  285. /**
  286. * Joins the station by its name
  287. *
  288. * @param session
  289. * @param stationName - the station name
  290. * @param cb
  291. * @return {{ status: String, userCount: Integer }}
  292. */
  293. join: (session, stationName, cb) => {
  294. async.waterfall([
  295. (next) => {
  296. stations.getStationByName(stationName, next);
  297. },
  298. (station, next) => {
  299. if (!station) return next('Station not found.');
  300. async.waterfall([
  301. (next) => {
  302. if (station.privacy !== 'private') return next(true);
  303. if (!session.userId) return next('An error occurred while joining the station.');
  304. next();
  305. },
  306. (next) => {
  307. db.models.user.findOne({_id: session.userId}, next);
  308. },
  309. (user, next) => {
  310. if (!user) return next('An error occurred while joining the station.');
  311. if (user.role === 'admin') return next(true);
  312. if (station.type === 'official') return next('An error occurred while joining the station.');
  313. if (station.owner === session.userId) return next(true);
  314. next('An error occurred while joining the station.');
  315. }
  316. ], (err) => {
  317. if (err === true) return next(null, station);
  318. next(utils.getError(err));
  319. });
  320. },
  321. (station, next) => {
  322. utils.socketJoinRoom(session.socketId, `station.${station._id}`);
  323. let data = {
  324. _id: station._id,
  325. type: station.type,
  326. currentSong: station.currentSong,
  327. startedAt: station.startedAt,
  328. paused: station.paused,
  329. timePaused: station.timePaused,
  330. pausedAt: station.pausedAt,
  331. description: station.description,
  332. displayName: station.displayName,
  333. privacy: station.privacy,
  334. locked: station.locked,
  335. partyMode: station.partyMode,
  336. owner: station.owner,
  337. privatePlaylist: station.privatePlaylist
  338. };
  339. userList[session.socketId] = station._id;
  340. next(null, data);
  341. },
  342. (data, next) => {
  343. data.userCount = usersPerStationCount[data._id] || 0;
  344. data.users = usersPerStation[data._id] || [];
  345. if (!data.currentSong || !data.currentSong.title) return next(null, data);
  346. utils.socketJoinSongRoom(session.socketId, `song.${data.currentSong.songId}`);
  347. data.currentSong.skipVotes = data.currentSong.skipVotes.length;
  348. songs.getSongFromId(data.currentSong.songId, (err, song) => {
  349. if (!err && song) {
  350. data.currentSong.likes = song.likes;
  351. data.currentSong.dislikes = song.dislikes;
  352. } else {
  353. data.currentSong.likes = -1;
  354. data.currentSong.dislikes = -1;
  355. }
  356. next(null, data);
  357. });
  358. }
  359. ], (err, data) => {
  360. if (err) {
  361. err = utils.getError(err);
  362. logger.error("STATIONS_JOIN", `Joining station "${stationName}" failed. "${err}"`);
  363. return cb({'status': 'failure', 'message': err});
  364. }
  365. logger.success("STATIONS_JOIN", `Joined station "${data._id}" successfully.`);
  366. cb({status: 'success', data});
  367. });
  368. },
  369. /**
  370. * Toggles if a station is locked
  371. *
  372. * @param session
  373. * @param stationId - the station id
  374. * @param cb
  375. */
  376. toggleLock: hooks.ownerRequired((session, stationId, cb) => {
  377. async.waterfall([
  378. (next) => {
  379. stations.getStation(stationId, next);
  380. },
  381. (station, next) => {
  382. db.models.station.updateOne({ _id: stationId }, { $set: { locked: !station.locked} }, next);
  383. },
  384. (res, next) => {
  385. stations.updateStation(stationId, next);
  386. }
  387. ], (err, station) => {
  388. if (err) {
  389. err = utils.getError(err);
  390. logger.error("STATIONS_UPDATE_LOCKED_STATUS", `Toggling the queue lock for station "${stationId}" failed. "${err}"`);
  391. return cb({ status: 'failure', message: err });
  392. } else {
  393. logger.success("STATIONS_UPDATE_LOCKED_STATUS", `Toggled the queue lock for station "${stationId}" successfully to "${station.locked}".`);
  394. cache.pub('station.queueLockToggled', {stationId, locked: station.locked});
  395. return cb({ status: 'success', data: station.locked });
  396. }
  397. });
  398. }),
  399. /**
  400. * Votes to skip a station
  401. *
  402. * @param session
  403. * @param stationId - the station id
  404. * @param cb
  405. * @param userId
  406. */
  407. voteSkip: hooks.loginRequired((session, stationId, cb, userId) => {
  408. async.waterfall([
  409. (next) => {
  410. stations.getStation(stationId, next);
  411. },
  412. (station, next) => {
  413. if (!station) return next('Station not found.');
  414. utils.canUserBeInStation(station, userId, (canBe) => {
  415. if (canBe) return next(null, station);
  416. return next('Insufficient permissions.');
  417. });
  418. },
  419. (station, next) => {
  420. if (!station.currentSong) return next('There is currently no song to skip.');
  421. if (station.currentSong.skipVotes.indexOf(userId) !== -1) return next('You have already voted to skip this song.');
  422. next(null, station);
  423. },
  424. (station, next) => {
  425. db.models.station.updateOne({_id: stationId}, {$push: {"currentSong.skipVotes": userId}}, next)
  426. },
  427. (res, next) => {
  428. stations.updateStation(stationId, next);
  429. },
  430. (station, next) => {
  431. if (!station) return next('Station not found.');
  432. next(null, station);
  433. }
  434. ], (err, station) => {
  435. if (err) {
  436. err = utils.getError(err);
  437. logger.error("STATIONS_VOTE_SKIP", `Vote skipping station "${stationId}" failed. "${err}"`);
  438. return cb({'status': 'failure', 'message': err});
  439. }
  440. logger.success("STATIONS_VOTE_SKIP", `Vote skipping "${stationId}" successful.`);
  441. cache.pub('station.voteSkipSong', stationId);
  442. if (station.currentSong && station.currentSong.skipVotes.length >= 3) stations.skipStation(stationId)();
  443. cb({ status: 'success', message: 'Successfully voted to skip the song.' });
  444. });
  445. }),
  446. /**
  447. * Force skips a station
  448. *
  449. * @param session
  450. * @param stationId - the station id
  451. * @param cb
  452. */
  453. forceSkip: hooks.ownerRequired((session, stationId, cb) => {
  454. async.waterfall([
  455. (next) => {
  456. stations.getStation(stationId, next);
  457. },
  458. (station, next) => {
  459. if (!station) return next('Station not found.');
  460. next();
  461. }
  462. ], (err) => {
  463. if (err) {
  464. err = utils.getError(err);
  465. logger.error("STATIONS_FORCE_SKIP", `Force skipping station "${stationId}" failed. "${err}"`);
  466. return cb({'status': 'failure', 'message': err});
  467. }
  468. notifications.unschedule(`stations.nextSong?id=${stationId}`);
  469. stations.skipStation(stationId)();
  470. logger.success("STATIONS_FORCE_SKIP", `Force skipped station "${stationId}" successfully.`);
  471. return cb({'status': 'success', 'message': 'Successfully skipped station.'});
  472. });
  473. }),
  474. /**
  475. * Leaves the user's current station
  476. *
  477. * @param session
  478. * @param stationId
  479. * @param cb
  480. * @return {{ status: String, userCount: Integer }}
  481. */
  482. leave: (session, stationId, cb) => {
  483. async.waterfall([
  484. (next) => {
  485. stations.getStation(stationId, next);
  486. },
  487. (station, next) => {
  488. if (!station) return next('Station not found.');
  489. next();
  490. }
  491. ], (err, userCount) => {
  492. if (err) {
  493. err = utils.getError(err);
  494. logger.error("STATIONS_LEAVE", `Leaving station "${stationId}" failed. "${err}"`);
  495. return cb({'status': 'failure', 'message': err});
  496. }
  497. logger.success("STATIONS_LEAVE", `Left station "${stationId}" successfully.`);
  498. utils.socketLeaveRooms(session);
  499. delete userList[session.socketId];
  500. return cb({'status': 'success', 'message': 'Successfully left station.', userCount});
  501. });
  502. },
  503. /**
  504. * Updates a station's name
  505. *
  506. * @param session
  507. * @param stationId - the station id
  508. * @param newName - the new station name
  509. * @param cb
  510. */
  511. updateName: hooks.ownerRequired((session, stationId, newName, cb) => {
  512. async.waterfall([
  513. (next) => {
  514. db.models.station.updateOne({_id: stationId}, {$set: {name: newName}}, {runValidators: true}, next);
  515. },
  516. (res, next) => {
  517. stations.updateStation(stationId, next);
  518. }
  519. ], (err) => {
  520. if (err) {
  521. err = utils.getError(err);
  522. logger.error("STATIONS_UPDATE_DISPLAY_NAME", `Updating station "${stationId}" displayName to "${newName}" failed. "${err}"`);
  523. return cb({'status': 'failure', 'message': err});
  524. }
  525. logger.success("STATIONS_UPDATE_DISPLAY_NAME", `Updated station "${stationId}" displayName to "${newName}" successfully.`);
  526. return cb({'status': 'success', 'message': 'Successfully updated the name.'});
  527. });
  528. }),
  529. /**
  530. * Updates a station's display name
  531. *
  532. * @param session
  533. * @param stationId - the station id
  534. * @param newDisplayName - the new station display name
  535. * @param cb
  536. */
  537. updateDisplayName: hooks.ownerRequired((session, stationId, newDisplayName, cb) => {
  538. async.waterfall([
  539. (next) => {
  540. db.models.station.updateOne({_id: stationId}, {$set: {displayName: newDisplayName}}, {runValidators: true}, next);
  541. },
  542. (res, next) => {
  543. stations.updateStation(stationId, next);
  544. }
  545. ], (err) => {
  546. if (err) {
  547. err = utils.getError(err);
  548. logger.error("STATIONS_UPDATE_DISPLAY_NAME", `Updating station "${stationId}" displayName to "${newDisplayName}" failed. "${err}"`);
  549. return cb({'status': 'failure', 'message': err});
  550. }
  551. logger.success("STATIONS_UPDATE_DISPLAY_NAME", `Updated station "${stationId}" displayName to "${newDisplayName}" successfully.`);
  552. return cb({'status': 'success', 'message': 'Successfully updated the display name.'});
  553. });
  554. }),
  555. /**
  556. * Updates a station's description
  557. *
  558. * @param session
  559. * @param stationId - the station id
  560. * @param newDescription - the new station description
  561. * @param cb
  562. */
  563. updateDescription: hooks.ownerRequired((session, stationId, newDescription, cb) => {
  564. async.waterfall([
  565. (next) => {
  566. db.models.station.updateOne({_id: stationId}, {$set: {description: newDescription}}, {runValidators: true}, next);
  567. },
  568. (res, next) => {
  569. stations.updateStation(stationId, next);
  570. }
  571. ], (err) => {
  572. if (err) {
  573. err = utils.getError(err);
  574. logger.error("STATIONS_UPDATE_DESCRIPTION", `Updating station "${stationId}" description to "${newDescription}" failed. "${err}"`);
  575. return cb({'status': 'failure', 'message': err});
  576. }
  577. logger.success("STATIONS_UPDATE_DESCRIPTION", `Updated station "${stationId}" description to "${newDescription}" successfully.`);
  578. return cb({'status': 'success', 'message': 'Successfully updated the description.'});
  579. });
  580. }),
  581. /**
  582. * Updates a station's privacy
  583. *
  584. * @param session
  585. * @param stationId - the station id
  586. * @param newPrivacy - the new station privacy
  587. * @param cb
  588. */
  589. updatePrivacy: hooks.ownerRequired((session, stationId, newPrivacy, cb) => {
  590. async.waterfall([
  591. (next) => {
  592. db.models.station.updateOne({_id: stationId}, {$set: {privacy: newPrivacy}}, {runValidators: true}, next);
  593. },
  594. (res, next) => {
  595. stations.updateStation(stationId, next);
  596. }
  597. ], (err) => {
  598. if (err) {
  599. err = utils.getError(err);
  600. logger.error("STATIONS_UPDATE_PRIVACY", `Updating station "${stationId}" privacy to "${newPrivacy}" failed. "${err}"`);
  601. return cb({'status': 'failure', 'message': err});
  602. }
  603. logger.success("STATIONS_UPDATE_PRIVACY", `Updated station "${stationId}" privacy to "${newPrivacy}" successfully.`);
  604. return cb({'status': 'success', 'message': 'Successfully updated the privacy.'});
  605. });
  606. }),
  607. /**
  608. * Updates a station's party mode
  609. *
  610. * @param session
  611. * @param stationId - the station id
  612. * @param newPartyMode - the new station party mode
  613. * @param cb
  614. */
  615. updatePartyMode: hooks.ownerRequired((session, stationId, newPartyMode, cb) => {
  616. async.waterfall([
  617. (next) => {
  618. stations.getStation(stationId, next);
  619. },
  620. (station, next) => {
  621. if (!station) return next('Station not found.');
  622. if (station.partyMode === newPartyMode) return next('The party mode was already ' + ((newPartyMode) ? 'enabled.' : 'disabled.'));
  623. db.models.station.updateOne({_id: stationId}, {$set: {partyMode: newPartyMode}}, {runValidators: true}, next);
  624. },
  625. (res, next) => {
  626. stations.updateStation(stationId, next);
  627. }
  628. ], (err) => {
  629. if (err) {
  630. err = utils.getError(err);
  631. logger.error("STATIONS_UPDATE_PARTY_MODE", `Updating station "${stationId}" party mode to "${newPartyMode}" failed. "${err}"`);
  632. return cb({'status': 'failure', 'message': err});
  633. }
  634. logger.success("STATIONS_UPDATE_PARTY_MODE", `Updated station "${stationId}" party mode to "${newPartyMode}" successfully.`);
  635. cache.pub('station.updatePartyMode', {stationId: stationId, partyMode: newPartyMode});
  636. stations.skipStation(stationId)();
  637. return cb({'status': 'success', 'message': 'Successfully updated the party mode.'});
  638. });
  639. }),
  640. /**
  641. * Pauses a station
  642. *
  643. * @param session
  644. * @param stationId - the station id
  645. * @param cb
  646. */
  647. pause: hooks.ownerRequired((session, stationId, cb) => {
  648. async.waterfall([
  649. (next) => {
  650. stations.getStation(stationId, next);
  651. },
  652. (station, next) => {
  653. if (!station) return next('Station not found.');
  654. if (station.paused) return next('That station was already paused.');
  655. db.models.station.updateOne({_id: stationId}, {$set: {paused: true, pausedAt: Date.now()}}, next);
  656. },
  657. (res, next) => {
  658. stations.updateStation(stationId, next);
  659. }
  660. ], (err) => {
  661. if (err) {
  662. err = utils.getError(err);
  663. logger.error("STATIONS_PAUSE", `Pausing station "${stationId}" failed. "${err}"`);
  664. return cb({'status': 'failure', 'message': err});
  665. }
  666. logger.success("STATIONS_PAUSE", `Paused station "${stationId}" successfully.`);
  667. cache.pub('station.pause', stationId);
  668. notifications.unschedule(`stations.nextSong?id=${stationId}`);
  669. return cb({'status': 'success', 'message': 'Successfully paused.'});
  670. });
  671. }),
  672. /**
  673. * Resumes a station
  674. *
  675. * @param session
  676. * @param stationId - the station id
  677. * @param cb
  678. */
  679. resume: hooks.ownerRequired((session, stationId, cb) => {
  680. async.waterfall([
  681. (next) => {
  682. stations.getStation(stationId, next);
  683. },
  684. (station, next) => {
  685. if (!station) return next('Station not found.');
  686. if (!station.paused) return next('That station is not paused.');
  687. station.timePaused += (Date.now() - station.pausedAt);
  688. db.models.station.updateOne({_id: stationId}, {$set: {paused: false}, $inc: {timePaused: Date.now() - station.pausedAt}}, next);
  689. },
  690. (res, next) => {
  691. stations.updateStation(stationId, next);
  692. }
  693. ], (err) => {
  694. if (err) {
  695. err = utils.getError(err);
  696. logger.error("STATIONS_RESUME", `Resuming station "${stationId}" failed. "${err}"`);
  697. return cb({'status': 'failure', 'message': err});
  698. }
  699. logger.success("STATIONS_RESUME", `Resuming station "${stationId}" successfully.`);
  700. cache.pub('station.resume', stationId);
  701. return cb({'status': 'success', 'message': 'Successfully resumed.'});
  702. });
  703. }),
  704. /**
  705. * Removes a station
  706. *
  707. * @param session
  708. * @param stationId - the station id
  709. * @param cb
  710. */
  711. remove: hooks.ownerRequired((session, stationId, cb) => {
  712. async.waterfall([
  713. (next) => {
  714. db.models.station.deleteOne({ _id: stationId }, err => next(err));
  715. },
  716. (next) => {
  717. cache.hdel('stations', stationId, err => next(err));
  718. }
  719. ], (err) => {
  720. if (err) {
  721. err = utils.getError(err);
  722. logger.error("STATIONS_REMOVE", `Removing station "${stationId}" failed. "${err}"`);
  723. return cb({ 'status': 'failure', 'message': err });
  724. }
  725. logger.success("STATIONS_REMOVE", `Removing station "${stationId}" successfully.`);
  726. cache.pub('station.remove', stationId);
  727. return cb({ 'status': 'success', 'message': 'Successfully removed.' });
  728. });
  729. }),
  730. /**
  731. * Create a station
  732. *
  733. * @param session
  734. * @param data - the station data
  735. * @param cb
  736. * @param userId
  737. */
  738. create: hooks.loginRequired((session, data, cb, userId) => {
  739. data.name = data.name.toLowerCase();
  740. let blacklist = ["country", "edm", "musare", "hip-hop", "rap", "top-hits", "todays-hits", "old-school", "christmas", "about", "support", "staff", "help", "news", "terms", "privacy", "profile", "c", "community", "tos", "login", "register", "p", "official", "o", "trap", "faq", "team", "donate", "buy", "shop", "forums", "explore", "settings", "admin", "auth", "reset_password"];
  741. async.waterfall([
  742. (next) => {
  743. if (!data) return next('Invalid data.');
  744. next();
  745. },
  746. (next) => {
  747. db.models.station.findOne({ $or: [{name: data.name}, {displayName: new RegExp(`^${data.displayName}$`, 'i')}] }, next);
  748. },
  749. (station, next) => {
  750. if (station) return next('A station with that name or display name already exists.');
  751. const { name, displayName, description, genres, playlist, type, blacklistedGenres } = data;
  752. if (type === 'official') {
  753. db.models.user.findOne({_id: userId}, (err, user) => {
  754. if (err) return next(err);
  755. if (!user) return next('User not found.');
  756. if (user.role !== 'admin') return next('Admin required.');
  757. db.models.station.create({
  758. name,
  759. displayName,
  760. description,
  761. type,
  762. privacy: 'private',
  763. playlist,
  764. genres,
  765. blacklistedGenres,
  766. currentSong: stations.defaultSong
  767. }, next);
  768. });
  769. } else if (type === 'community') {
  770. if (blacklist.indexOf(name) !== -1) return next('That name is blacklisted. Please use a different name.');
  771. db.models.station.create({
  772. name,
  773. displayName,
  774. description,
  775. type,
  776. privacy: 'private',
  777. owner: userId,
  778. queue: [],
  779. currentSong: null
  780. }, next);
  781. }
  782. }
  783. ], (err, station) => {
  784. if (err) {
  785. err = utils.getError(err);
  786. logger.error("STATIONS_CREATE", `Creating station failed. "${err}"`);
  787. return cb({'status': 'failure', 'message': err});
  788. }
  789. logger.success("STATIONS_CREATE", `Created station "${station._id}" successfully.`);
  790. cache.pub('station.create', station._id);
  791. return cb({'status': 'success', 'message': 'Successfully created station.'});
  792. });
  793. }),
  794. /**
  795. * Adds song to station queue
  796. *
  797. * @param session
  798. * @param stationId - the station id
  799. * @param songId - the song id
  800. * @param cb
  801. * @param userId
  802. */
  803. addToQueue: hooks.loginRequired((session, stationId, songId, cb, userId) => {
  804. async.waterfall([
  805. (next) => {
  806. stations.getStation(stationId, next);
  807. },
  808. (station, next) => {
  809. if (!station) return next('Station not found.');
  810. if (station.locked) {
  811. db.models.user.findOne({ _id: userId }, (err, user) => {
  812. if (user.role !== 'admin' && station.owner !== userId) return next('Only owners and admins can add songs to a locked queue.');
  813. else return next(null, station);
  814. });
  815. } else {
  816. return next(null, station);
  817. }
  818. },
  819. (station, next) => {
  820. if (station.type !== 'community') return next('That station is not a community station.');
  821. utils.canUserBeInStation(station, userId, (canBe) => {
  822. if (canBe) return next(null, station);
  823. return next('Insufficient permissions.');
  824. });
  825. },
  826. (station, next) => {
  827. if (station.currentSong && station.currentSong.songId === songId) return next('That song is currently playing.');
  828. async.each(station.queue, (queueSong, next) => {
  829. if (queueSong.songId === songId) return next('That song is already in the queue.');
  830. next();
  831. }, (err) => {
  832. next(err, station);
  833. });
  834. },
  835. (station, next) => {
  836. songs.getSong(songId, (err, song) => {
  837. if (!err && song) return next(null, song, station);
  838. utils.getSongFromYouTube(songId, (song) => {
  839. song.artists = [];
  840. song.skipDuration = 0;
  841. song.likes = -1;
  842. song.dislikes = -1;
  843. song.thumbnail = "empty";
  844. song.explicit = false;
  845. next(null, song, station);
  846. });
  847. });
  848. },
  849. (song, station, next) => {
  850. let queue = station.queue;
  851. song.requestedBy = userId;
  852. queue.push(song);
  853. let totalDuration = 0;
  854. queue.forEach((song) => {
  855. totalDuration += song.duration;
  856. });
  857. if (totalDuration >= 3600 * 3) return next('The max length of the queue is 3 hours.');
  858. next(null, song, station);
  859. },
  860. (song, station, next) => {
  861. let queue = station.queue;
  862. if (queue.length === 0) return next(null, song, station);
  863. let totalDuration = 0;
  864. const userId = queue[queue.length - 1].requestedBy;
  865. station.queue.forEach((song) => {
  866. if (userId === song.requestedBy) {
  867. totalDuration += song.duration;
  868. }
  869. });
  870. if(totalDuration >= 900) return next('The max length of songs per user is 15 minutes.');
  871. next(null, song, station);
  872. },
  873. (song, station, next) => {
  874. let queue = station.queue;
  875. if (queue.length === 0) return next(null, song);
  876. let totalSongs = 0;
  877. const userId = queue[queue.length - 1].requestedBy;
  878. queue.forEach((song) => {
  879. if (userId === song.requestedBy) {
  880. totalSongs++;
  881. }
  882. });
  883. if (totalSongs <= 2) return next(null, song);
  884. if (totalSongs > 3) return next('The max amount of songs per user is 3, and only 2 in a row is allowed.');
  885. if (queue[queue.length - 2].requestedBy !== userId || queue[queue.length - 3] !== userId) return next('The max amount of songs per user is 3, and only 2 in a row is allowed.');
  886. next(null, song);
  887. },
  888. (song, next) => {
  889. db.models.station.updateOne({_id: stationId}, {$push: {queue: song}}, {runValidators: true}, next);
  890. },
  891. (res, next) => {
  892. stations.updateStation(stationId, next);
  893. }
  894. ], (err, station) => {
  895. if (err) {
  896. err = utils.getError(err);
  897. logger.error("STATIONS_ADD_SONG_TO_QUEUE", `Adding song "${songId}" to station "${stationId}" queue failed. "${err}"`);
  898. return cb({'status': 'failure', 'message': err});
  899. }
  900. logger.success("STATIONS_ADD_SONG_TO_QUEUE", `Added song "${songId}" to station "${stationId}" successfully.`);
  901. cache.pub('station.queueUpdate', stationId);
  902. return cb({'status': 'success', 'message': 'Successfully added song to queue.'});
  903. });
  904. }),
  905. /**
  906. * Removes song from station queue
  907. *
  908. * @param session
  909. * @param stationId - the station id
  910. * @param songId - the song id
  911. * @param cb
  912. * @param userId
  913. */
  914. removeFromQueue: hooks.ownerRequired((session, stationId, songId, cb, userId) => {
  915. async.waterfall([
  916. (next) => {
  917. if (!songId) return next('Invalid song id.');
  918. stations.getStation(stationId, next);
  919. },
  920. (station, next) => {
  921. if (!station) return next('Station not found.');
  922. if (station.type !== 'community') return next('Station is not a community station.');
  923. async.each(station.queue, (queueSong, next) => {
  924. if (queueSong.songId === songId) return next(true);
  925. next();
  926. }, (err) => {
  927. if (err === true) return next();
  928. next('Song is not currently in the queue.');
  929. });
  930. },
  931. (next) => {
  932. db.models.station.updateOne({_id: stationId}, {$pull: {queue: {songId: songId}}}, next);
  933. },
  934. (res, next) => {
  935. stations.updateStation(stationId, next);
  936. }
  937. ], (err, station) => {
  938. if (err) {
  939. err = utils.getError(err);
  940. logger.error("STATIONS_REMOVE_SONG_TO_QUEUE", `Removing song "${songId}" from station "${stationId}" queue failed. "${err}"`);
  941. return cb({'status': 'failure', 'message': err});
  942. }
  943. logger.success("STATIONS_REMOVE_SONG_TO_QUEUE", `Removed song "${songId}" from station "${stationId}" successfully.`);
  944. cache.pub('station.queueUpdate', stationId);
  945. return cb({'status': 'success', 'message': 'Successfully removed song from queue.'});
  946. });
  947. }),
  948. /**
  949. * Gets the queue from a station
  950. *
  951. * @param session
  952. * @param stationId - the station id
  953. * @param cb
  954. */
  955. getQueue: (session, stationId, cb) => {
  956. async.waterfall([
  957. (next) => {
  958. stations.getStation(stationId, next);
  959. },
  960. (station, next) => {
  961. if (!station) return next('Station not found.');
  962. if (station.type !== 'community') return next('Station is not a community station.');
  963. next(null, station);
  964. },
  965. (station, next) => {
  966. utils.canUserBeInStation(station, session.userId, (canBe) => {
  967. if (canBe) return next(null, station);
  968. return next('Insufficient permissions.');
  969. });
  970. }
  971. ], (err, station) => {
  972. if (err) {
  973. err = utils.getError(err);
  974. logger.error("STATIONS_GET_QUEUE", `Getting queue for station "${stationId}" failed. "${err}"`);
  975. return cb({'status': 'failure', 'message': err});
  976. }
  977. logger.success("STATIONS_GET_QUEUE", `Got queue for station "${stationId}" successfully.`);
  978. return cb({'status': 'success', 'message': 'Successfully got queue.', queue: station.queue});
  979. });
  980. },
  981. /**
  982. * Selects a private playlist for a station
  983. *
  984. * @param session
  985. * @param stationId - the station id
  986. * @param playlistId - the private playlist id
  987. * @param cb
  988. * @param userId
  989. */
  990. selectPrivatePlaylist: hooks.ownerRequired((session, stationId, playlistId, cb, userId) => {
  991. async.waterfall([
  992. (next) => {
  993. stations.getStation(stationId, next);
  994. },
  995. (station, next) => {
  996. if (!station) return next('Station not found.');
  997. if (station.type !== 'community') return next('Station is not a community station.');
  998. if (station.privatePlaylist === playlistId) return next('That private playlist is already selected.');
  999. db.models.playlist.findOne({_id: playlistId}, next);
  1000. },
  1001. (playlist, next) => {
  1002. if (!playlist) return next('Playlist not found.');
  1003. let currentSongIndex = (playlist.songs.length > 0) ? playlist.songs.length - 1 : 0;
  1004. db.models.station.updateOne({_id: stationId}, {$set: {privatePlaylist: playlistId, currentSongIndex: currentSongIndex}}, {runValidators: true}, next);
  1005. },
  1006. (res, next) => {
  1007. stations.updateStation(stationId, next);
  1008. }
  1009. ], (err, station) => {
  1010. if (err) {
  1011. err = utils.getError(err);
  1012. logger.error("STATIONS_SELECT_PRIVATE_PLAYLIST", `Selecting private playlist "${playlistId}" for station "${stationId}" failed. "${err}"`);
  1013. return cb({'status': 'failure', 'message': err});
  1014. }
  1015. logger.success("STATIONS_SELECT_PRIVATE_PLAYLIST", `Selected private playlist "${playlistId}" for station "${stationId}" successfully.`);
  1016. notifications.unschedule(`stations.nextSong?id${stationId}`);
  1017. if (!station.partyMode) stations.skipStation(stationId)();
  1018. cache.pub('privatePlaylist.selected', {playlistId, stationId});
  1019. return cb({'status': 'success', 'message': 'Successfully selected playlist.'});
  1020. });
  1021. }),
  1022. };