stations.js 39 KB

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