stations.js 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513
  1. 'use strict';
  2. const async = require('async'),
  3. request = require('request'),
  4. config = require('config');
  5. const io = require('../io');
  6. const db = require('../db');
  7. const cache = require('../cache');
  8. const notifications = require('../notifications');
  9. const utils = require('../utils');
  10. const stations = require('../stations');
  11. const songs = require('../songs');
  12. const hooks = require('./hooks');
  13. cache.sub('station.locked', stationId => {
  14. io.io.to(`station.${stationId}`).emit("event:stations.locked");
  15. });
  16. cache.sub('station.unlocked', stationId => {
  17. io.io.to(`station.${stationId}`).emit("event:stations.unlocked");
  18. });
  19. cache.sub('station.pause', stationId => {
  20. io.io.to(`station.${stationId}`).emit("event:stations.pause");
  21. });
  22. cache.sub('station.resume', stationId => {
  23. stations.getStation(stationId, (err, station) => {
  24. io.io.to(`station.${stationId}`).emit("event:stations.resume", {timePaused: station.timePaused});
  25. });
  26. });
  27. cache.sub('station.queueUpdate', stationId => {
  28. stations.getStation(stationId, (err, station) => {
  29. if (!err) {
  30. io.io.to(`station.${stationId}`).emit("event:queue.update", station.queue);
  31. }
  32. });
  33. });
  34. cache.sub('station.create', stationId => {
  35. stations.initializeStation(stationId, (err, station) => {
  36. //TODO Emit to admin station page
  37. io.io.to('home').emit("event:stations.created", station);
  38. });
  39. });
  40. module.exports = {
  41. /**
  42. * Get a list of all the stations
  43. *
  44. * @param session
  45. * @param cb
  46. * @return {{ status: String, stations: Array }}
  47. */
  48. index: (session, cb) => {
  49. // TODO: the logic should be a bit more personalized to the users preferred genres
  50. // and it should probably just a different cache table then 'stations'
  51. cache.hgetall('stations', (err, stations) => {
  52. if (err && err !== true) {
  53. return cb({
  54. status: 'error',
  55. message: 'An error occurred while obtaining the stations'
  56. });
  57. }
  58. let arr = [];
  59. let done = 0;
  60. for (let prop in stations) {
  61. // TODO If community, check if on whitelist
  62. let station = stations[prop];
  63. if (station.privacy === 'public') add(true, station);
  64. else if (!session.sessionId) add(false);
  65. else {
  66. cache.hget('sessions', session.sessionId, (err, session) => {
  67. if (err || !session) {
  68. add(false);
  69. } else {
  70. db.models.user.findOne({_id: session.userId}, (err, user) => {
  71. if (err || !user) add(false);
  72. else if (user.role === 'admin') add(true, station);
  73. else if (station.type === 'official') add(false);
  74. else if (station.owner === session.userId) add(true, station);
  75. else add(false);
  76. });
  77. }
  78. });
  79. }
  80. }
  81. function add(add, station) {
  82. console.log("ADD!", add, station);
  83. if (add) arr.push(station);
  84. done++;
  85. if (done === Object.keys(stations).length) {
  86. console.log("DONE!", done);
  87. cb({ status: 'success', stations: arr });
  88. }
  89. }
  90. });
  91. },
  92. getPlaylist: (session, stationId, cb) => {
  93. let playlist = [];
  94. stations.getStation(stationId, (err, station) => {
  95. for (let s = 1; s < station.playlist.length; s++) {
  96. songs.getSong(station.playlist[s], (err, song) => {
  97. playlist.push(song);
  98. });
  99. }
  100. });
  101. cb({ status: 'success', data: playlist })
  102. },
  103. /**
  104. * Joins the station by its id
  105. *
  106. * @param session
  107. * @param stationId - the station id
  108. * @param cb
  109. * @return {{ status: String, userCount: Integer }}
  110. */
  111. join: (session, stationId, cb) => {
  112. stations.getStation(stationId, (err, station) => {
  113. if (err && err !== true) {
  114. return cb({ status: 'error', message: 'An error occurred while joining the station' });
  115. }
  116. if (station) {
  117. if (station.privacy !== 'private') {
  118. func();
  119. } else {
  120. // TODO If community, check if on whitelist
  121. if (!session.userId) return cb({ status: 'error', message: 'An error occurred while joining the station1' });
  122. db.models.user.findOne({_id: session.userId}, (err, user) => {
  123. if (err || !user) return cb({ status: 'error', message: 'An error occurred while joining the station2' });
  124. if (user.role === 'admin') return func();
  125. if (station.type === 'official') return cb({ status: 'error', message: 'An error occurred while joining the station3' });
  126. if (station.owner === session.userId) return func();
  127. return cb({ status: 'error', message: 'An error occurred while joining the station4' });
  128. });
  129. }
  130. function func() {
  131. utils.socketJoinRoom(session.socketId, `station.${stationId}`);
  132. if (station.currentSong) {
  133. utils.socketJoinSongRoom(session.socketId, `song.${station.currentSong._id}`);
  134. //TODO Emit to cache, listen on cache
  135. songs.getSong(station.currentSong._id, (err, song) => {
  136. if (!err && song) {
  137. station.currentSong.likes = song.likes;
  138. station.currentSong.dislikes = song.dislikes;
  139. } else {
  140. station.currentSong.likes = -1;
  141. station.currentSong.dislikes = -1;
  142. }
  143. cb({
  144. status: 'success',
  145. data: {
  146. type: station.type,
  147. currentSong: station.currentSong,
  148. startedAt: station.startedAt,
  149. paused: station.paused,
  150. timePaused: station.timePaused,
  151. description: station.description,
  152. displayName: station.displayName,
  153. privacy: station.privacy
  154. }
  155. });
  156. });
  157. } else {
  158. cb({
  159. status: 'success',
  160. data: {
  161. type: station.type,
  162. currentSong: null,
  163. startedAt: station.startedAt,
  164. paused: station.paused,
  165. timePaused: station.timePaused
  166. }
  167. });
  168. }
  169. }
  170. } else {
  171. cb({ status: 'failure', message: `That station doesn't exist` });
  172. }
  173. });
  174. },
  175. /**
  176. * Skips the users current station
  177. *
  178. * @param session
  179. * @param stationId - the station id
  180. * @param cb
  181. * @return {{ status: String, skipCount: Integer }}
  182. */
  183. /*skip: (session, stationId, cb) => {
  184. if (!session) return cb({ status: 'failure', message: 'You must be logged in to skip a song!' });
  185. stations.getStation(stationId, (err, station) => {
  186. if (err && err !== true) {
  187. return cb({ status: 'error', message: 'An error occurred while skipping the station' });
  188. }
  189. if (station) {
  190. cache.client.hincrby('station.skipCounts', session.stationId, 1, (err, skipCount) => {
  191. session.skippedSong = true;
  192. if (err) return cb({ status: 'error', message: 'An error occurred while skipping the station' });
  193. cache.hget('station.userCounts', session.stationId, (err, userCount) => {
  194. cb({ status: 'success', skipCount });
  195. });
  196. });
  197. }
  198. else {
  199. cb({ status: 'failure', message: `That station doesn't exist` });
  200. }
  201. });
  202. },*/
  203. forceSkip: hooks.adminRequired((session, stationId, cb) => {
  204. stations.getStation(stationId, (err, station) => {
  205. if (err && err !== true) {
  206. return cb({ status: 'error', message: 'An error occurred while skipping the station' });
  207. }
  208. if (station) {
  209. notifications.unschedule(`stations.nextSong?id=${stationId}`);
  210. //notifications.schedule(`stations.nextSong?id=${stationId}`, 100);
  211. stations.skipStation(stationId)();
  212. }
  213. else {
  214. cb({ status: 'failure', message: `That station doesn't exist` });
  215. }
  216. });
  217. }),
  218. /**
  219. * Leaves the users current station
  220. *
  221. * @param session
  222. * @param stationId
  223. * @param cb
  224. * @return {{ status: String, userCount: Integer }}
  225. */
  226. leave: (session, stationId, cb) => {
  227. stations.getStation(stationId, (err, station) => {
  228. if (err && err !== true) {
  229. return cb({ status: 'error', message: 'An error occurred while leaving the station' });
  230. }
  231. if (session) session.stationId = null;
  232. else if (station) {
  233. cache.client.hincrby('station.userCounts', stationId, -1, (err, userCount) => {
  234. if (err) return cb({ status: 'error', message: 'An error occurred while leaving the station' });
  235. utils.socketLeaveRooms(session);
  236. cb({ status: 'success', userCount });
  237. });
  238. } else {
  239. cb({ status: 'failure', message: `That station doesn't exist, it may have been deleted` });
  240. }
  241. });
  242. },
  243. updateDisplayName: hooks.adminRequired((session, stationId, newDisplayName, cb) => {
  244. db.models.station.update({_id: stationId}, {$set: {displayName: newDisplayName}}, (err) => {
  245. if (err) return cb({ status: 'failure', message: 'Something went wrong when saving the station.' });
  246. stations.updateStation(stationId, () => {
  247. //TODO Pub/sub for displayName change
  248. cb({ status: 'success', message: 'Successfully updated the display name.' });
  249. })
  250. });
  251. }),
  252. updateDescription: hooks.adminRequired((session, stationId, newDescription, cb) => {
  253. db.models.station.update({_id: stationId}, {$set: {description: newDescription}}, (err) => {
  254. if (err) return cb({ status: 'failure', message: 'Something went wrong when saving the station.' });
  255. stations.updateStation(stationId, () => {
  256. //TODO Pub/sub for description change
  257. cb({ status: 'success', message: 'Successfully updated the description.' });
  258. })
  259. });
  260. }),
  261. updatePrivacy: hooks.adminRequired((session, stationId, newPrivacy, cb) => {
  262. db.models.station.update({_id: stationId}, {$set: {privacy: newPrivacy}}, (err) => {
  263. if (err) return cb({ status: 'failure', message: 'Something went wrong when saving the station.' });
  264. stations.updateStation(stationId, () => {
  265. //TODO Pub/sub for privacy change
  266. cb({ status: 'success', message: 'Successfully updated the privacy.' });
  267. })
  268. });
  269. }),
  270. pause: hooks.adminRequired((session, stationId, cb) => {
  271. stations.getStation(stationId, (err, station) => {
  272. if (err && err !== true) {
  273. return cb({ status: 'error', message: 'An error occurred while pausing the station' });
  274. } else if (station) {
  275. if (!station.paused) {
  276. station.paused = true;
  277. station.pausedAt = Date.now();
  278. db.models.station.update({_id: stationId}, {$set: {paused: true, pausedAt: Date.now()}}, () => {
  279. if (err) return cb({ status: 'failure', message: 'An error occurred while pausing the station.' });
  280. stations.updateStation(stationId, () => {
  281. cache.pub('station.pause', stationId);
  282. notifications.unschedule(`stations.nextSong?id=${stationId}`);
  283. cb({ status: 'success' });
  284. });
  285. });
  286. } else {
  287. cb({ status: 'failure', message: 'That station was already paused.' });
  288. }
  289. cb({ status: 'success' });
  290. } else {
  291. cb({ status: 'failure', message: `That station doesn't exist, it may have been deleted` });
  292. }
  293. });
  294. }),
  295. resume: hooks.adminRequired((session, stationId, cb) => {
  296. stations.getStation(stationId, (err, station) => {
  297. if (err && err !== true) {
  298. return cb({ status: 'error', message: 'An error occurred while resuming the station' });
  299. } else if (station) {
  300. if (station.paused) {
  301. station.paused = false;
  302. station.timePaused += (Date.now() - station.pausedAt);
  303. console.log("&&&", station.timePaused, station.pausedAt, Date.now(), station.timePaused);
  304. db.models.station.update({_id: stationId}, {$set: {paused: false}, $inc: {timePaused: Date.now() - station.pausedAt}}, () => {
  305. stations.updateStation(stationId, (err, station) => {
  306. cache.pub('station.resume', stationId);
  307. cb({ status: 'success' });
  308. });
  309. });
  310. } else {
  311. cb({ status: 'failure', message: 'That station is not paused.' });
  312. }
  313. } else {
  314. cb({ status: 'failure', message: `That station doesn't exist, it may have been deleted` });
  315. }
  316. });
  317. }),
  318. remove: hooks.adminRequired((session, stationId, cb) => {
  319. db.models.station.remove({ _id: stationId });
  320. cache.hdel('stations', stationId, () => {
  321. return cb({ status: 'success', message: 'Station successfully removed' });
  322. });
  323. }),
  324. create: hooks.adminRequired((session, data, cb) => {
  325. async.waterfall([
  326. (next) => {
  327. return (data) ? next() : cb({ 'status': 'failure', 'message': 'Invalid data' });
  328. },
  329. // check the cache for the station
  330. (next) => cache.hget('stations', data._id, next),
  331. // if the cached version exist
  332. (station, next) => {
  333. if (station) return next({ 'status': 'failure', 'message': 'A station with that id already exists' });
  334. db.models.station.findOne({ _id: data._id }, next);
  335. },
  336. (station, next) => {
  337. if (station) return next({ 'status': 'failure', 'message': 'A station with that id already exists' });
  338. const { _id, displayName, description, genres, playlist } = data;
  339. db.models.station.create({
  340. _id,
  341. displayName,
  342. description,
  343. type: "official",
  344. playlist,
  345. genres,
  346. currentSong: stations.defaultSong
  347. }, next);
  348. }
  349. ], (err, station) => {
  350. if (err) {console.log(err); return cb({ 'status': 'failure', 'message': 'Something went wrong.'});}
  351. cache.pub('station.create', data._id);
  352. return cb(null, { 'status': 'success', 'message': 'Successfully created station.' });
  353. });
  354. }),
  355. createCommunity: hooks.loginRequired((session, data, cb) => {
  356. async.waterfall([
  357. (next) => {
  358. return (data) ? next() : cb({ 'status': 'failure', 'message': 'Invalid data' });
  359. },
  360. // check the cache for the station
  361. (next) => cache.hget('stations', data._id, next),
  362. // if the cached version exist
  363. (station, next) => {
  364. if (station) return next({ 'status': 'failure', 'message': 'A station with that id already exists' });
  365. db.models.station.findOne({ _id: data._id }, next);
  366. },
  367. (station, next) => {
  368. if (station) return next({ 'status': 'failure', 'message': 'A station with that id already exists' });
  369. const { _id, displayName, description } = data;
  370. db.models.station.create({
  371. _id,
  372. displayName,
  373. description,
  374. type: "community",
  375. queue: [],
  376. currentSong: null
  377. }, next);
  378. }
  379. ], (err, station) => {
  380. if (err) {console.log(err); throw err;}
  381. cache.pub('station.create', data._id);
  382. return cb({ 'status': 'success', 'message': 'Successfully created station.' });
  383. });
  384. }),
  385. addToQueue: hooks.loginRequired((session, stationId, songId, cb, userId) => {
  386. stations.getStation(stationId, (err, station) => {
  387. if (err) return cb(err);
  388. if (station.type === 'community') {
  389. let has = false;
  390. station.queue.forEach((queueSong) => {
  391. if (queueSong._id === songId) {
  392. has = true;
  393. }
  394. });
  395. if (has) return cb({'status': 'failure', 'message': 'That song has already been added to the queue.'});
  396. if (station.currentSong && station.currentSong._id === songId) return cb({'status': 'failure', 'message': 'That song is currently playing.'});
  397. songs.getSong(songId, (err, song) => {
  398. if (err) {
  399. utils.getSongFromYouTube(songId, (song) => {
  400. song.artists = [];
  401. song.skipDuration = 0;
  402. song.likes = -1;
  403. song.dislikes = -1;
  404. song.thumbnail = "empty";
  405. song.explicit = false;
  406. cont(song);
  407. });
  408. } else cont(song);
  409. function cont(song) {
  410. db.models.station.update({_id: stationId}, {$push: {queue: song}}, (err) => {
  411. console.log(err);
  412. if (err) return cb({'status': 'failure', 'message': 'Something went wrong.'});
  413. stations.updateStation(stationId, (err, station) => {
  414. if (err) return cb(err);
  415. cache.pub('station.queueUpdate', stationId);
  416. cb({'status': 'success', 'message': 'Added that song to the queue.'});
  417. });
  418. });
  419. }
  420. });
  421. } else cb({'status': 'failure', 'message': 'That station is not a community station.'});
  422. });
  423. }),
  424. removeFromQueue: hooks.adminRequired((session, stationId, songId, cb, userId) => {
  425. stations.getStation(stationId, (err, station) => {
  426. if (err) return cb(err);
  427. if (station.type === 'community') {
  428. let has = false;
  429. station.queue.forEach((queueSong) => {
  430. if (queueSong._id === songId) {
  431. has = true;
  432. }
  433. });
  434. if (!has) return cb({'status': 'failure', 'message': 'That song is not in the queue.'});
  435. db.models.update({_id: stationId}, {$pull: {queue: {songId: songId}}}, (err) => {
  436. if (err) return cb({'status': 'failure', 'message': 'Something went wrong.'});
  437. stations.updateStation(stationId, (err, station) => {
  438. if (err) return cb(err);
  439. cache.pub('station.queueUpdate', stationId);
  440. });
  441. });
  442. } else cb({'status': 'failure', 'message': 'That station is not a community station.'});
  443. });
  444. }),
  445. getQueue: hooks.adminRequired((session, stationId, cb) => {
  446. stations.getStation(stationId, (err, station) => {
  447. if (err) return cb(err);
  448. if (!station) return cb({'status': 'failure', 'message': 'Station not found.'});
  449. if (station.type === 'community') {
  450. cb({'status': 'success', queue: station.queue});
  451. } else cb({'status': 'failure', 'message': 'That station is not a community station.'});
  452. });
  453. }),
  454. };