stations.js 42 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634
  1. import async from "async";
  2. // import mongoose from "mongoose";
  3. import CoreClass from "../core";
  4. let StationsModule;
  5. let CacheModule;
  6. let DBModule;
  7. let UtilsModule;
  8. let WSModule;
  9. let SongsModule;
  10. let PlaylistsModule;
  11. let NotificationsModule;
  12. class _StationsModule extends CoreClass {
  13. // eslint-disable-next-line require-jsdoc
  14. constructor() {
  15. super("stations");
  16. StationsModule = this;
  17. }
  18. /**
  19. * Initialises the stations module
  20. *
  21. * @returns {Promise} - returns promise (reject, resolve)
  22. */
  23. async initialize() {
  24. CacheModule = this.moduleManager.modules.cache;
  25. DBModule = this.moduleManager.modules.db;
  26. UtilsModule = this.moduleManager.modules.utils;
  27. WSModule = this.moduleManager.modules.ws;
  28. SongsModule = this.moduleManager.modules.songs;
  29. PlaylistsModule = this.moduleManager.modules.playlists;
  30. NotificationsModule = this.moduleManager.modules.notifications;
  31. this.defaultSong = {
  32. songId: "60ItHLz5WEA",
  33. title: "Faded - Alan Walker",
  34. duration: 212,
  35. skipDuration: 0,
  36. likes: -1,
  37. dislikes: -1,
  38. requestedAt: Date.now()
  39. };
  40. this.userList = {};
  41. this.usersPerStation = {};
  42. this.usersPerStationCount = {};
  43. // TEMP
  44. CacheModule.runJob("SUB", {
  45. channel: "station.pause",
  46. cb: async stationId => {
  47. NotificationsModule.runJob("REMOVE", {
  48. subscription: `stations.nextSong?id=${stationId}`
  49. }).then();
  50. }
  51. });
  52. CacheModule.runJob("SUB", {
  53. channel: "station.resume",
  54. cb: async stationId => {
  55. StationsModule.runJob("INITIALIZE_STATION", { stationId }).then();
  56. }
  57. });
  58. CacheModule.runJob("SUB", {
  59. channel: "station.queueUpdate",
  60. cb: async stationId => {
  61. StationsModule.runJob("GET_STATION", { stationId }).then(station => {
  62. if (!station.currentSong && station.queue.length > 0) {
  63. StationsModule.runJob("INITIALIZE_STATION", {
  64. stationId
  65. }).then();
  66. }
  67. });
  68. }
  69. });
  70. CacheModule.runJob("SUB", {
  71. channel: "station.newOfficialPlaylist",
  72. cb: async stationId => {
  73. CacheModule.runJob("HGET", {
  74. table: "officialPlaylists",
  75. key: stationId
  76. }).then(playlistObj => {
  77. if (playlistObj) {
  78. WSModule.runJob("EMIT_TO_ROOM", {
  79. room: `station.${stationId}`,
  80. args: ["event:newOfficialPlaylist", playlistObj.songs]
  81. });
  82. }
  83. });
  84. }
  85. });
  86. const stationModel = (this.stationModel = await DBModule.runJob("GET_MODEL", { modelName: "station" }));
  87. const stationSchema = (this.stationSchema = await CacheModule.runJob("GET_SCHEMA", { schemaName: "station" }));
  88. return new Promise((resolve, reject) =>
  89. async.waterfall(
  90. [
  91. next => {
  92. this.setStage(2);
  93. CacheModule.runJob("HGETALL", { table: "stations" })
  94. .then(stations => {
  95. next(null, stations);
  96. })
  97. .catch(next);
  98. },
  99. (stations, next) => {
  100. this.setStage(3);
  101. if (!stations) return next();
  102. const stationIds = Object.keys(stations);
  103. return async.each(
  104. stationIds,
  105. (stationId, next) => {
  106. stationModel.findOne({ _id: stationId }, (err, station) => {
  107. if (err) next(err);
  108. else if (!station) {
  109. CacheModule.runJob("HDEL", {
  110. table: "stations",
  111. key: stationId
  112. })
  113. .then(() => {
  114. next();
  115. })
  116. .catch(next);
  117. } else next();
  118. });
  119. },
  120. next
  121. );
  122. },
  123. next => {
  124. this.setStage(4);
  125. stationModel.find({}, next);
  126. },
  127. (stations, next) => {
  128. this.setStage(5);
  129. async.each(
  130. stations,
  131. (station, next2) => {
  132. async.waterfall(
  133. [
  134. next => {
  135. CacheModule.runJob("HSET", {
  136. table: "stations",
  137. key: station._id,
  138. value: stationSchema(station)
  139. })
  140. .then(station => next(null, station))
  141. .catch(next);
  142. },
  143. (station, next) => {
  144. StationsModule.runJob(
  145. "INITIALIZE_STATION",
  146. {
  147. stationId: station._id
  148. },
  149. null,
  150. -1
  151. )
  152. .then(() => {
  153. next();
  154. })
  155. .catch(next);
  156. }
  157. ],
  158. err => {
  159. next2(err);
  160. }
  161. );
  162. },
  163. next
  164. );
  165. }
  166. ],
  167. async err => {
  168. if (err) {
  169. err = await UtilsModule.runJob("GET_ERROR", {
  170. error: err
  171. });
  172. reject(new Error(err));
  173. } else {
  174. resolve();
  175. }
  176. }
  177. )
  178. );
  179. }
  180. /**
  181. * Initialises a station
  182. *
  183. * @param {object} payload - object that contains the payload
  184. * @param {string} payload.stationId - id of the station to initialise
  185. * @returns {Promise} - returns a promise (resolve, reject)
  186. */
  187. INITIALIZE_STATION(payload) {
  188. return new Promise((resolve, reject) => {
  189. // if (typeof cb !== 'function') cb = ()=>{};
  190. async.waterfall(
  191. [
  192. next => {
  193. StationsModule.runJob(
  194. "GET_STATION",
  195. {
  196. stationId: payload.stationId
  197. },
  198. this
  199. )
  200. .then(station => {
  201. next(null, station);
  202. })
  203. .catch(next);
  204. },
  205. (station, next) => {
  206. if (!station) return next("Station not found.");
  207. return NotificationsModule.runJob(
  208. "UNSCHEDULE",
  209. {
  210. name: `stations.nextSong?id=${station._id}`
  211. },
  212. this
  213. )
  214. .then()
  215. .catch()
  216. .finally(() => {
  217. NotificationsModule.runJob("SUBSCRIBE", {
  218. name: `stations.nextSong?id=${station._id}`,
  219. cb: () =>
  220. StationsModule.runJob("SKIP_STATION", {
  221. stationId: station._id
  222. }),
  223. unique: true,
  224. station
  225. })
  226. .then()
  227. .catch();
  228. if (station.paused) return next(true, station);
  229. return next(null, station);
  230. });
  231. },
  232. (station, next) => {
  233. if (!station.currentSong) {
  234. return StationsModule.runJob(
  235. "SKIP_STATION",
  236. {
  237. stationId: station._id
  238. },
  239. this
  240. )
  241. .then(station => {
  242. next(true, station);
  243. })
  244. .catch(next)
  245. .finally(() => {});
  246. }
  247. let timeLeft =
  248. station.currentSong.duration * 1000 - (Date.now() - station.startedAt - station.timePaused);
  249. if (Number.isNaN(timeLeft)) timeLeft = -1;
  250. if (station.currentSong.duration * 1000 < timeLeft || timeLeft < 0) {
  251. return StationsModule.runJob(
  252. "SKIP_STATION",
  253. {
  254. stationId: station._id
  255. },
  256. this
  257. )
  258. .then(station => {
  259. next(null, station);
  260. })
  261. .catch(next);
  262. }
  263. // name, time, cb, station
  264. NotificationsModule.runJob("SCHEDULE", {
  265. name: `stations.nextSong?id=${station._id}`,
  266. time: timeLeft,
  267. station
  268. });
  269. return next(null, station);
  270. }
  271. ],
  272. async (err, station) => {
  273. if (err && err !== true) {
  274. err = await UtilsModule.runJob(
  275. "GET_ERROR",
  276. {
  277. error: err
  278. },
  279. this
  280. );
  281. reject(new Error(err));
  282. } else resolve(station);
  283. }
  284. );
  285. });
  286. }
  287. /**
  288. * Attempts to get the station from Redis. If it's not in Redis, get it from Mongo and add it to Redis.
  289. *
  290. * @param {object} payload - object that contains the payload
  291. * @param {string} payload.stationId - id of the station
  292. * @returns {Promise} - returns a promise (resolve, reject)
  293. */
  294. GET_STATION(payload) {
  295. return new Promise((resolve, reject) => {
  296. async.waterfall(
  297. [
  298. next => {
  299. CacheModule.runJob("HGET", { table: "stations", key: payload.stationId }, this)
  300. .then(station => next(null, station))
  301. .catch(next);
  302. },
  303. (station, next) => {
  304. if (station) return next(true, station);
  305. return StationsModule.stationModel.findOne({ _id: payload.stationId }, next);
  306. },
  307. (station, next) => {
  308. if (station) {
  309. station = StationsModule.stationSchema(station);
  310. CacheModule.runJob("HSET", {
  311. table: "stations",
  312. key: payload.stationId,
  313. value: station
  314. })
  315. .then()
  316. .catch();
  317. next(true, station);
  318. } else next("Station not found");
  319. }
  320. ],
  321. async (err, station) => {
  322. if (err && err !== true) {
  323. err = await UtilsModule.runJob(
  324. "GET_ERROR",
  325. {
  326. error: err
  327. },
  328. this
  329. );
  330. reject(new Error(err));
  331. } else resolve(station);
  332. }
  333. );
  334. });
  335. }
  336. /**
  337. * Attempts to get a station by name, firstly from Redis. If it's not in Redis, get it from Mongo and add it to Redis.
  338. *
  339. * @param {object} payload - object that contains the payload
  340. * @param {string} payload.stationName - the unique name of the station
  341. * @returns {Promise} - returns a promise (resolve, reject)
  342. */
  343. async GET_STATION_BY_NAME(payload) {
  344. return new Promise((resolve, reject) =>
  345. async.waterfall(
  346. [
  347. next => {
  348. StationsModule.stationModel.findOne({ name: payload.stationName }, next);
  349. },
  350. (station, next) => {
  351. if (station) {
  352. station = StationsModule.stationSchema(station);
  353. CacheModule.runJob("HSET", {
  354. table: "stations",
  355. key: station._id,
  356. value: station
  357. });
  358. next(true, station);
  359. } else next("Station not found");
  360. }
  361. ],
  362. (err, station) => {
  363. if (err && err !== true) return reject(new Error(err));
  364. return resolve(station);
  365. }
  366. )
  367. );
  368. }
  369. /**
  370. * Updates the station in cache from mongo or deletes station in cache if no longer in mongo.
  371. *
  372. * @param {object} payload - object that contains the payload
  373. * @param {string} payload.stationId - the id of the station to update
  374. * @returns {Promise} - returns a promise (resolve, reject)
  375. */
  376. UPDATE_STATION(payload) {
  377. return new Promise((resolve, reject) => {
  378. async.waterfall(
  379. [
  380. next => {
  381. StationsModule.stationModel.findOne({ _id: payload.stationId }, next);
  382. },
  383. (station, next) => {
  384. if (!station) {
  385. CacheModule.runJob("HDEL", {
  386. table: "stations",
  387. key: payload.stationId
  388. })
  389. .then()
  390. .catch();
  391. return next("Station not found");
  392. }
  393. return CacheModule.runJob(
  394. "HSET",
  395. {
  396. table: "stations",
  397. key: payload.stationId,
  398. value: station
  399. },
  400. this
  401. )
  402. .then(station => {
  403. next(null, station);
  404. })
  405. .catch(next);
  406. }
  407. ],
  408. async (err, station) => {
  409. if (err && err !== true) {
  410. err = await UtilsModule.runJob(
  411. "GET_ERROR",
  412. {
  413. error: err
  414. },
  415. this
  416. );
  417. reject(new Error(err));
  418. } else resolve(station);
  419. }
  420. );
  421. });
  422. }
  423. /**
  424. * Fills up the official station playlist queue using the songs from the official station playlist
  425. *
  426. * @param {object} payload - object that contains the payload
  427. * @param {string} payload.stationId - the id of the station
  428. * @returns {Promise} - returns a promise (resolve, reject)
  429. */
  430. FILL_UP_STATION_QUEUE_FROM_STATION_PLAYLIST(payload) {
  431. return new Promise((resolve, reject) => {
  432. const { stationId } = payload;
  433. async.waterfall(
  434. [
  435. next => {
  436. PlaylistsModule.runJob("GET_STATION_PLAYLIST", { stationId, includeSongs: true }, this)
  437. .then(response => {
  438. next(null, response.playlist);
  439. })
  440. .catch(next);
  441. },
  442. (playlist, next) => {
  443. StationsModule.runJob("GET_STATION", { stationId }, this)
  444. .then(station => {
  445. next(null, playlist, station);
  446. })
  447. .catch(next);
  448. },
  449. (playlist, station, next) => {
  450. if (station.playMode === "random") {
  451. UtilsModule.runJob("SHUFFLE", { array: playlist.songs }, this)
  452. .then(response => {
  453. next(null, response.array, station);
  454. })
  455. .catch(next);
  456. } else next(null, playlist.songs, station);
  457. },
  458. (_playlistSongs, station, next) => {
  459. let playlistSongs = JSON.parse(JSON.stringify(_playlistSongs));
  460. if (station.playMode === "sequential") {
  461. if (station.currentSongIndex <= playlistSongs.length) {
  462. const songsToAddToEnd = playlistSongs.splice(0, station.currentSongIndex);
  463. playlistSongs = [...playlistSongs, ...songsToAddToEnd];
  464. }
  465. }
  466. const songsStillNeeded = 50 - station.queue.length;
  467. const currentSongs = station.queue;
  468. const currentSongIds = station.queue.map(song => song.songId);
  469. const songsToAdd = [];
  470. let lastSongAdded = null;
  471. playlistSongs
  472. // .map(song => song._doc)
  473. .every(song => {
  474. if (
  475. songsToAdd.length < songsStillNeeded &&
  476. currentSongIds.indexOf(song.songId) === -1
  477. ) {
  478. lastSongAdded = song;
  479. songsToAdd.push(song);
  480. return true;
  481. }
  482. if (songsToAdd.length >= songsStillNeeded) return false;
  483. return true;
  484. });
  485. let { currentSongIndex } = station;
  486. if (station.playMode === "sequential" && lastSongAdded) {
  487. const indexOfLastSong = _playlistSongs
  488. .map(song => song.songId)
  489. .indexOf(lastSongAdded.songId);
  490. if (indexOfLastSong !== -1) currentSongIndex = indexOfLastSong;
  491. }
  492. const newPlaylist = [...currentSongs, ...songsToAdd].map(song => {
  493. if (!song._id) song._id = null;
  494. return song;
  495. });
  496. next(null, newPlaylist, currentSongIndex);
  497. },
  498. (newPlaylist, currentSongIndex, next) => {
  499. StationsModule.stationModel.updateOne(
  500. { _id: stationId },
  501. { $set: { queue: newPlaylist, currentSongIndex } },
  502. { runValidators: true },
  503. err => {
  504. if (err) next(err);
  505. else
  506. StationsModule.runJob(
  507. "UPDATE_STATION",
  508. {
  509. stationId
  510. },
  511. this
  512. )
  513. .then(() => {
  514. next(null);
  515. })
  516. .catch(next);
  517. }
  518. );
  519. }
  520. ],
  521. err => {
  522. if (err) reject(err);
  523. else resolve();
  524. }
  525. );
  526. });
  527. }
  528. /**
  529. * Gets next station song
  530. *
  531. * @param {object} payload - object that contains the payload
  532. * @param {string} payload.stationId - the id of the station
  533. * @returns {Promise} - returns a promise (resolve, reject)
  534. */
  535. GET_NEXT_STATION_SONG(payload) {
  536. return new Promise((resolve, reject) => {
  537. const { stationId } = payload;
  538. async.waterfall(
  539. [
  540. next => {
  541. StationsModule.runJob("GET_STATION", { stationId }, this)
  542. .then(station => {
  543. next(null, station);
  544. })
  545. .catch(next);
  546. },
  547. (station, next) => {
  548. if (station.queue.length === 0) next("No songs available.");
  549. else {
  550. next(null, station.queue[0]);
  551. }
  552. },
  553. (song, next) => {
  554. if (!song._id) next(null, song);
  555. else
  556. SongsModule.runJob("GET_SONG", { id: song._id }, this)
  557. .then(response => {
  558. const { song } = response;
  559. if (song) {
  560. const newSong = {
  561. _id: song._id,
  562. songId: song.songId,
  563. title: song.title,
  564. artists: song.artists,
  565. duration: song.duration,
  566. thumbnail: song.thumbnail,
  567. requestedAt: song.requestedAt,
  568. likes: song.likes,
  569. dislikes: song.dislikes,
  570. verified: song.verified
  571. };
  572. return next(null, newSong);
  573. }
  574. return next(null, song);
  575. })
  576. .catch(err => {
  577. if (err.message === "Song not found.") {
  578. this.log(
  579. "ERROR",
  580. `In GET_NEXT_STATION_SONG, attempted to get song "${song._id}", but got the error "Song not found.". Ignoring it for now, but this is not normal.`
  581. );
  582. next(null, song);
  583. } else next(err);
  584. });
  585. }
  586. ],
  587. (err, song) => {
  588. if (err) console.log(33333, err, payload);
  589. if (err) reject(err);
  590. else resolve({ song });
  591. }
  592. );
  593. });
  594. }
  595. /**
  596. * Removes first station queue song
  597. *
  598. * @param {object} payload - object that contains the payload
  599. * @param {string} payload.stationId - the id of the station
  600. * @returns {Promise} - returns a promise (resolve, reject)
  601. */
  602. REMOVE_FIRST_QUEUE_SONG(payload) {
  603. return new Promise((resolve, reject) => {
  604. const { stationId } = payload;
  605. async.waterfall(
  606. [
  607. next => {
  608. StationsModule.stationModel.updateOne(
  609. { _id: stationId },
  610. { $pop: { queue: -1 } },
  611. { runValidators: true },
  612. err => {
  613. if (err) next(err);
  614. else
  615. StationsModule.runJob(
  616. "UPDATE_STATION",
  617. {
  618. stationId
  619. },
  620. this
  621. )
  622. .then(() => {
  623. next(null);
  624. })
  625. .catch(next);
  626. }
  627. );
  628. }
  629. ],
  630. err => {
  631. if (err) reject(err);
  632. else resolve();
  633. }
  634. );
  635. });
  636. }
  637. /**
  638. * Skips a station
  639. *
  640. * @param {object} payload - object that contains the payload
  641. * @param {string} payload.stationId - the id of the station to skip
  642. * @returns {Promise} - returns a promise (resolve, reject)
  643. */
  644. SKIP_STATION(payload) {
  645. return new Promise((resolve, reject) => {
  646. StationsModule.log("INFO", `Skipping station ${payload.stationId}.`);
  647. StationsModule.log("STATION_ISSUE", `SKIP_STATION_CB - Station ID: ${payload.stationId}.`);
  648. async.waterfall(
  649. [
  650. // Clears up any existing timers that would skip the station if the song ends
  651. next => {
  652. NotificationsModule.runJob("UNSCHEDULE", {
  653. name: `stations.nextSong?id=${payload.stationId}`
  654. })
  655. .then(() => {
  656. next();
  657. })
  658. .catch(next);
  659. },
  660. // Gets the station object
  661. next => {
  662. StationsModule.runJob(
  663. "GET_STATION",
  664. {
  665. stationId: payload.stationId
  666. },
  667. this
  668. )
  669. .then(station => {
  670. next(null, station);
  671. })
  672. .catch(() => {});
  673. },
  674. // eslint-disable-next-line consistent-return
  675. (station, next) => {
  676. if (!station) return next("Station not found.");
  677. if (station.type === "community" && station.partyMode && station.queue.length === 0)
  678. return next(null, null, station); // Community station with party mode enabled and no songs in the queue
  679. if (station.type === "community" && station.partyMode && station.queue.length > 0) {
  680. // Community station with party mode enabled and songs in the queue
  681. if (station.paused) return next(null, null, station);
  682. StationsModule.runJob("GET_NEXT_STATION_SONG", { stationId: station._id }, this)
  683. .then(response => {
  684. StationsModule.runJob(
  685. "REMOVE_FIRST_QUEUE_SONG",
  686. { stationId: station._id },
  687. this
  688. ).then(() => {
  689. next(null, response.song, station);
  690. });
  691. })
  692. .catch(err => {
  693. if (err === "No songs available.") next(null, null, station);
  694. else next(err);
  695. });
  696. // return StationsModule.stationModel.updateOne(
  697. // { _id: payload.stationId },
  698. // {
  699. // $pull: {
  700. // queue: {
  701. // _id: station.queue[0]._id
  702. // }
  703. // }
  704. // },
  705. // err => {
  706. // if (err) return next(err);
  707. // return next(null, station.queue[0], -12, station);
  708. // }
  709. // );
  710. }
  711. if (station.type === "community" && !station.partyMode) {
  712. StationsModule.runJob(
  713. "FILL_UP_STATION_QUEUE_FROM_STATION_PLAYLIST",
  714. { stationId: station._id },
  715. this
  716. )
  717. .then(() => {
  718. StationsModule.runJob("GET_NEXT_STATION_SONG", { stationId: station._id }, this)
  719. .then(response => {
  720. StationsModule.runJob(
  721. "REMOVE_FIRST_QUEUE_SONG",
  722. { stationId: station._id },
  723. this
  724. ).then(() => {
  725. next(null, response.song, station);
  726. });
  727. })
  728. .catch(err => {
  729. if (err === "No songs available.") next(null, null, station);
  730. else next(err);
  731. });
  732. })
  733. .catch(next);
  734. }
  735. // if (station.type === "community" && !station.partyMode) {
  736. // return DBModule.runJob("GET_MODEL", { modelName: "playlist" }, this).then(playlistModel =>
  737. // playlistModel.findOne({ _id: station.privatePlaylist }, (err, playlist) => {
  738. // if (err) return next(err);
  739. // if (!playlist) return next(null, null, -13, station);
  740. // playlist = playlist.songs;
  741. // if (playlist.length > 0) {
  742. // let currentSongIndex;
  743. // if (station.currentSongIndex < playlist.length - 1)
  744. // currentSongIndex = station.currentSongIndex + 1;
  745. // else currentSongIndex = 0;
  746. // const callback = (err, song) => {
  747. // if (err) return next(err);
  748. // if (song) return next(null, song, currentSongIndex, station);
  749. // const currentSong = {
  750. // songId: playlist[currentSongIndex].songId,
  751. // title: playlist[currentSongIndex].title,
  752. // duration: playlist[currentSongIndex].duration,
  753. // likes: -1,
  754. // dislikes: -1,
  755. // requestedAt: playlist[currentSongIndex].requestedAt
  756. // };
  757. // return next(null, currentSong, currentSongIndex, station);
  758. // };
  759. // if (mongoose.Types.ObjectId.isValid(playlist[currentSongIndex]._id))
  760. // return SongsModule.runJob(
  761. // "GET_SONG",
  762. // {
  763. // id: playlist[currentSongIndex]._id
  764. // },
  765. // this
  766. // )
  767. // .then(response => callback(null, response.song))
  768. // .catch(callback);
  769. // return SongsModule.runJob(
  770. // "GET_SONG_FROM_ID",
  771. // {
  772. // songId: playlist[currentSongIndex].songId
  773. // },
  774. // this
  775. // )
  776. // .then(response => callback(null, response.song))
  777. // .catch(callback);
  778. // }
  779. // return next(null, null, -14, station);
  780. // })
  781. // );
  782. // }
  783. if (station.type === "official") {
  784. StationsModule.runJob(
  785. "FILL_UP_STATION_QUEUE_FROM_STATION_PLAYLIST",
  786. { stationId: station._id },
  787. this
  788. )
  789. .then(() => {
  790. StationsModule.runJob("GET_NEXT_STATION_SONG", { stationId: station._id }, this)
  791. .then(response => {
  792. StationsModule.runJob(
  793. "REMOVE_FIRST_QUEUE_SONG",
  794. { stationId: station._id },
  795. this
  796. )
  797. .then(() => {
  798. next(null, response.song, station);
  799. })
  800. .catch(next);
  801. })
  802. .catch(err => {
  803. if (err === "No songs available.") next(null, null, station);
  804. else next(err);
  805. });
  806. })
  807. .catch(next);
  808. }
  809. },
  810. (song, station, next) => {
  811. const $set = {};
  812. if (song === null) $set.currentSong = null;
  813. else {
  814. $set.currentSong = {
  815. _id: song._id,
  816. songId: song.songId,
  817. title: song.title,
  818. artists: song.artists,
  819. duration: song.duration,
  820. likes: song.likes,
  821. dislikes: song.dislikes,
  822. skipDuration: song.skipDuration,
  823. thumbnail: song.thumbnail,
  824. requestedAt: song.requestedAt
  825. };
  826. }
  827. // if (currentSongIndex >= 0) $set.currentSongIndex = currentSongIndex;
  828. $set.startedAt = Date.now();
  829. $set.timePaused = 0;
  830. if (station.paused) $set.pausedAt = Date.now();
  831. next(null, $set, station);
  832. },
  833. ($set, station, next) => {
  834. StationsModule.stationModel.updateOne({ _id: station._id }, { $set }, err => {
  835. if (err) return next(err);
  836. return StationsModule.runJob("UPDATE_STATION", { stationId: station._id }, this)
  837. .then(station => {
  838. CacheModule.runJob("PUB", {
  839. channel: "station.queueUpdate",
  840. value: payload.stationId
  841. })
  842. .then()
  843. .catch();
  844. next(null, station);
  845. })
  846. .catch(next);
  847. });
  848. }
  849. ],
  850. async (err, station) => {
  851. if (err) {
  852. err = await UtilsModule.runJob(
  853. "GET_ERROR",
  854. {
  855. error: err
  856. },
  857. this
  858. );
  859. StationsModule.log("ERROR", `Skipping station "${payload.stationId}" failed. "${err}"`);
  860. reject(new Error(err));
  861. } else {
  862. if (station.currentSong !== null && station.currentSong.songId !== undefined) {
  863. station.currentSong.skipVotes = 0;
  864. }
  865. // TODO Pub/Sub this
  866. WSModule.runJob("EMIT_TO_ROOM", {
  867. room: `station.${station._id}`,
  868. args: [
  869. "event:songs.next",
  870. {
  871. currentSong: station.currentSong,
  872. startedAt: station.startedAt,
  873. paused: station.paused,
  874. timePaused: 0
  875. }
  876. ]
  877. })
  878. .then()
  879. .catch();
  880. if (station.privacy === "public") {
  881. WSModule.runJob("EMIT_TO_ROOM", {
  882. room: "home",
  883. args: ["event:station.nextSong", station._id, station.currentSong]
  884. })
  885. .then()
  886. .catch();
  887. } else {
  888. const sockets = await WSModule.runJob("GET_SOCKETS_FOR_ROOM", { room: "home" }, this);
  889. sockets.forEach(async socketId => {
  890. const socket = await WSModule.runJob("SOCKET_FROM_SOCKET_ID", { socketId }, this);
  891. const { session } = socket;
  892. if (session.sessionId) {
  893. CacheModule.runJob(
  894. "HGET",
  895. { table: "sessions", key: session.sessionId },
  896. this
  897. // eslint-disable-next-line no-loop-func
  898. ).then(session => {
  899. if (session) {
  900. DBModule.runJob("GET_MODEL", { modelName: "user" }, this).then(
  901. userModel => {
  902. userModel.findOne(
  903. {
  904. _id: session.userId
  905. },
  906. (err, user) => {
  907. if (!err && user) {
  908. if (user.role === "admin")
  909. socket.dispatch(
  910. "event:station.nextSong",
  911. station._id,
  912. station.currentSong
  913. );
  914. else if (
  915. station.type === "community" &&
  916. station.owner === session.userId
  917. )
  918. socket.dispatch(
  919. "event:station.nextSong",
  920. station._id,
  921. station.currentSong
  922. );
  923. }
  924. }
  925. );
  926. }
  927. );
  928. }
  929. });
  930. }
  931. });
  932. }
  933. WSModule.runJob("GET_SOCKETS_FOR_ROOM", { room: `station.${station._id}` }).then(sockets => {
  934. if (station.currentSong !== null && station.currentSong.songId !== undefined) {
  935. WSModule.runJob("SOCKETS_JOIN_SONG_ROOM", {
  936. sockets,
  937. room: `song.${station.currentSong.songId}`
  938. });
  939. if (!station.paused) {
  940. NotificationsModule.runJob("SCHEDULE", {
  941. name: `stations.nextSong?id=${station._id}`,
  942. time: station.currentSong.duration * 1000,
  943. station
  944. });
  945. }
  946. } else {
  947. WSModule.runJob("SOCKETS_LEAVE_SONG_ROOMS", {
  948. sockets
  949. });
  950. }
  951. });
  952. resolve({ station });
  953. }
  954. }
  955. );
  956. });
  957. }
  958. /**
  959. * Checks if a user can view/access a station
  960. *
  961. * @param {object} payload - object that contains the payload
  962. * @param {object} payload.station - the station object of the station in question
  963. * @param {string} payload.userId - the id of the user in question
  964. * @param {boolean} payload.hideUnlisted - whether the user is allowed to see unlisted stations or not
  965. * @returns {Promise} - returns a promise (resolve, reject)
  966. */
  967. CAN_USER_VIEW_STATION(payload) {
  968. return new Promise((resolve, reject) => {
  969. async.waterfall(
  970. [
  971. next => {
  972. if (payload.station.privacy === "public") return next(true);
  973. if (payload.station.privacy === "unlisted")
  974. if (payload.hideUnlisted === true) return next();
  975. else return next(true);
  976. if (!payload.userId) return next("Not allowed");
  977. return next();
  978. },
  979. next => {
  980. DBModule.runJob("GET_MODEL", { modelName: "user" }, this).then(userModel => {
  981. userModel.findOne({ _id: payload.userId }, next);
  982. });
  983. },
  984. (user, next) => {
  985. if (!user) return next("Not allowed");
  986. if (user.role === "admin") return next(true);
  987. if (payload.station.type === "official") return next("Not allowed");
  988. if (payload.station.owner === payload.userId) return next(true);
  989. return next("Not allowed");
  990. }
  991. ],
  992. async errOrResult => {
  993. if (errOrResult !== true && errOrResult !== "Not allowed") {
  994. errOrResult = await UtilsModule.runJob(
  995. "GET_ERROR",
  996. {
  997. error: errOrResult
  998. },
  999. this
  1000. );
  1001. reject(new Error(errOrResult));
  1002. } else {
  1003. resolve(errOrResult === true);
  1004. }
  1005. }
  1006. );
  1007. });
  1008. }
  1009. /**
  1010. * Checks if a user has favorited a station or not
  1011. *
  1012. * @param {object} payload - object that contains the payload
  1013. * @param {object} payload.stationId - the id of the station in question
  1014. * @param {string} payload.userId - the id of the user in question
  1015. * @returns {Promise} - returns a promise (resolve, reject)
  1016. */
  1017. HAS_USER_FAVORITED_STATION(payload) {
  1018. return new Promise((resolve, reject) => {
  1019. async.waterfall(
  1020. [
  1021. next => {
  1022. DBModule.runJob("GET_MODEL", { modelName: "user" }, this).then(userModel => {
  1023. userModel.findOne({ _id: payload.userId }, next);
  1024. });
  1025. },
  1026. (user, next) => {
  1027. if (!user) return next("User not found.");
  1028. if (user.favoriteStations.indexOf(payload.stationId) !== -1) return next(null, true);
  1029. return next(null, false);
  1030. }
  1031. ],
  1032. async (err, isStationFavorited) => {
  1033. if (err && err !== true) {
  1034. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  1035. return reject(new Error(err));
  1036. }
  1037. return resolve(isStationFavorited);
  1038. }
  1039. );
  1040. });
  1041. }
  1042. /**
  1043. * Returns a list of sockets in a room that can and can't know about a station
  1044. *
  1045. * @param {object} payload - the payload object
  1046. * @param {object} payload.station - the station object
  1047. * @param {string} payload.room - the websockets room to get the sockets from
  1048. * @returns {Promise} - returns a promise (resolve, reject)
  1049. */
  1050. GET_SOCKETS_THAT_CAN_KNOW_ABOUT_STATION(payload) {
  1051. return new Promise((resolve, reject) => {
  1052. WSModule.runJob("GET_SOCKETS_FOR_ROOM", { room: payload.room }, this)
  1053. .then(socketsObject => {
  1054. const sockets = Object.keys(socketsObject).map(socketKey => socketsObject[socketKey]);
  1055. let socketsThatCan = [];
  1056. const socketsThatCannot = [];
  1057. if (payload.station.privacy === "public") {
  1058. socketsThatCan = sockets;
  1059. resolve({ socketsThatCan, socketsThatCannot });
  1060. } else {
  1061. async.eachLimit(
  1062. sockets,
  1063. 1,
  1064. (socket, next) => {
  1065. const { session } = socket;
  1066. async.waterfall(
  1067. [
  1068. next => {
  1069. if (!session.sessionId) next("No session id");
  1070. else next();
  1071. },
  1072. next => {
  1073. CacheModule.runJob(
  1074. "HGET",
  1075. {
  1076. table: "sessions",
  1077. key: session.sessionId
  1078. },
  1079. this
  1080. )
  1081. .then(response => {
  1082. next(null, response);
  1083. })
  1084. .catch(next);
  1085. },
  1086. (session, next) => {
  1087. if (!session) next("No session");
  1088. else {
  1089. DBModule.runJob("GET_MODEL", { modelName: "user" }, this)
  1090. .then(userModel => {
  1091. next(null, userModel);
  1092. })
  1093. .catch(next);
  1094. }
  1095. },
  1096. (userModel, next) => {
  1097. if (!userModel) next("No user model");
  1098. else
  1099. userModel.findOne(
  1100. {
  1101. _id: session.userId
  1102. },
  1103. next
  1104. );
  1105. },
  1106. (user, next) => {
  1107. if (!user) next("No user found");
  1108. else if (user.role === "admin") {
  1109. socketsThatCan.push(socket);
  1110. next();
  1111. } else if (
  1112. payload.station.type === "community" &&
  1113. payload.station.owner === session.userId
  1114. ) {
  1115. socketsThatCan.push(socket);
  1116. next();
  1117. }
  1118. }
  1119. ],
  1120. err => {
  1121. if (err) socketsThatCannot.push(socket);
  1122. next();
  1123. }
  1124. );
  1125. },
  1126. err => {
  1127. if (err) reject(err);
  1128. else resolve({ socketsThatCan, socketsThatCannot });
  1129. }
  1130. );
  1131. }
  1132. })
  1133. .catch(reject);
  1134. });
  1135. }
  1136. /**
  1137. * Adds a playlist to be included in a station
  1138. *
  1139. * @param {object} payload - object that contains the payload
  1140. * @param {object} payload.stationId - the id of the station to include the playlist in
  1141. * @param {object} payload.playlistId - the id of the playlist to be included
  1142. * @returns {Promise} - returns a promise (resolve, reject)
  1143. */
  1144. INCLUDE_PLAYLIST(payload) {
  1145. return new Promise((resolve, reject) => {
  1146. async.waterfall(
  1147. [
  1148. next => {
  1149. if (!payload.stationId) next("Please specify a station id");
  1150. else if (!payload.playlistId) next("Please specify a playlist id");
  1151. else next();
  1152. },
  1153. next => {
  1154. StationsModule.runJob("GET_STATION", { stationId: payload.stationId }, this)
  1155. .then(station => {
  1156. next(null, station);
  1157. })
  1158. .catch(next);
  1159. },
  1160. (station, next) => {
  1161. if (station.playlist === payload.playlistId) next("You cannot include the station playlist");
  1162. else if (station.includedPlaylists.indexOf(payload.playlistId) !== -1)
  1163. next("This playlist is already included");
  1164. else if (station.excludedPlaylists.indexOf(payload.playlistId) !== -1)
  1165. next(
  1166. "This playlist is currently excluded, please remove it from there before including it"
  1167. );
  1168. else
  1169. PlaylistsModule.runJob("GET_PLAYLIST", { playlistId: payload.playlistId }, this)
  1170. .then(() => {
  1171. next(null);
  1172. })
  1173. .catch(next);
  1174. },
  1175. next => {
  1176. DBModule.runJob(
  1177. "GET_MODEL",
  1178. {
  1179. modelName: "station"
  1180. },
  1181. this
  1182. ).then(stationModel => {
  1183. stationModel.updateOne(
  1184. { _id: payload.stationId },
  1185. { $push: { includedPlaylists: payload.playlistId } },
  1186. next
  1187. );
  1188. });
  1189. },
  1190. (res, next) => {
  1191. StationsModule.runJob(
  1192. "UPDATE_STATION",
  1193. {
  1194. stationId: payload.stationId
  1195. },
  1196. this
  1197. )
  1198. .then(() => {
  1199. next();
  1200. })
  1201. .catch(next);
  1202. }
  1203. ],
  1204. async err => {
  1205. if (err && err !== true) {
  1206. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  1207. return reject(new Error(err));
  1208. }
  1209. return resolve();
  1210. }
  1211. );
  1212. });
  1213. }
  1214. /**
  1215. * Removes a playlist that is included in a station
  1216. *
  1217. * @param {object} payload - object that contains the payload
  1218. * @param {object} payload.stationId - the id of the station
  1219. * @param {object} payload.playlistId - the id of the playlist
  1220. * @returns {Promise} - returns a promise (resolve, reject)
  1221. */
  1222. REMOVE_INCLUDED_PLAYLIST(payload) {
  1223. return new Promise((resolve, reject) => {
  1224. async.waterfall(
  1225. [
  1226. next => {
  1227. if (!payload.stationId) next("Please specify a station id");
  1228. else if (!payload.playlistId) next("Please specify a playlist id");
  1229. else next();
  1230. },
  1231. next => {
  1232. StationsModule.runJob("GET_STATION", { stationId: payload.stationId }, this)
  1233. .then(station => {
  1234. next(null, station);
  1235. })
  1236. .catch(next);
  1237. },
  1238. (station, next) => {
  1239. if (station.includedPlaylists.indexOf(payload.playlistId) === -1)
  1240. next("This playlist isn't included");
  1241. else next();
  1242. },
  1243. next => {
  1244. DBModule.runJob(
  1245. "GET_MODEL",
  1246. {
  1247. modelName: "station"
  1248. },
  1249. this
  1250. ).then(stationModel => {
  1251. stationModel.updateOne(
  1252. { _id: payload.stationId },
  1253. { $pull: { includedPlaylists: payload.playlistId } },
  1254. next
  1255. );
  1256. });
  1257. },
  1258. (res, next) => {
  1259. StationsModule.runJob(
  1260. "UPDATE_STATION",
  1261. {
  1262. stationId: payload.stationId
  1263. },
  1264. this
  1265. )
  1266. .then(() => {
  1267. next();
  1268. })
  1269. .catch(next);
  1270. }
  1271. ],
  1272. async err => {
  1273. if (err && err !== true) {
  1274. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  1275. return reject(new Error(err));
  1276. }
  1277. return resolve();
  1278. }
  1279. );
  1280. });
  1281. }
  1282. /**
  1283. * Adds a playlist to be excluded in a station
  1284. *
  1285. * @param {object} payload - object that contains the payload
  1286. * @param {object} payload.stationId - the id of the station
  1287. * @param {object} payload.playlistId - the id of the playlist
  1288. * @returns {Promise} - returns a promise (resolve, reject)
  1289. */
  1290. EXCLUDE_PLAYLIST(payload) {
  1291. return new Promise((resolve, reject) => {
  1292. async.waterfall(
  1293. [
  1294. next => {
  1295. if (!payload.stationId) next("Please specify a station id");
  1296. else if (!payload.playlistId) next("Please specify a playlist id");
  1297. else next();
  1298. },
  1299. next => {
  1300. StationsModule.runJob("GET_STATION", { stationId: payload.stationId }, this)
  1301. .then(station => {
  1302. next(null, station);
  1303. })
  1304. .catch(next);
  1305. },
  1306. (station, next) => {
  1307. if (station.playlist === payload.playlistId) next("You cannot exclude the station playlist");
  1308. else if (station.excludedPlaylists.indexOf(payload.playlistId) !== -1)
  1309. next("This playlist is already excluded");
  1310. else if (station.includedPlaylists.indexOf(payload.playlistId) !== -1)
  1311. next(
  1312. "This playlist is currently included, please remove it from there before excluding it"
  1313. );
  1314. else
  1315. PlaylistsModule.runJob("GET_PLAYLIST", { playlistId: payload.playlistId }, this)
  1316. .then(() => {
  1317. next(null);
  1318. })
  1319. .catch(next);
  1320. },
  1321. next => {
  1322. DBModule.runJob(
  1323. "GET_MODEL",
  1324. {
  1325. modelName: "station"
  1326. },
  1327. this
  1328. ).then(stationModel => {
  1329. stationModel.updateOne(
  1330. { _id: payload.stationId },
  1331. { $push: { excludedPlaylists: payload.playlistId } },
  1332. next
  1333. );
  1334. });
  1335. },
  1336. (res, next) => {
  1337. StationsModule.runJob(
  1338. "UPDATE_STATION",
  1339. {
  1340. stationId: payload.stationId
  1341. },
  1342. this
  1343. )
  1344. .then(() => {
  1345. next();
  1346. })
  1347. .catch(next);
  1348. }
  1349. ],
  1350. async err => {
  1351. if (err && err !== true) {
  1352. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  1353. return reject(new Error(err));
  1354. }
  1355. return resolve();
  1356. }
  1357. );
  1358. });
  1359. }
  1360. /**
  1361. * Removes a playlist that is excluded in a station
  1362. *
  1363. * @param {object} payload - object that contains the payload
  1364. * @param {object} payload.stationId - the id of the station
  1365. * @param {object} payload.playlistId - the id of the playlist
  1366. * @returns {Promise} - returns a promise (resolve, reject)
  1367. */
  1368. REMOVE_EXCLUDED_PLAYLIST(payload) {
  1369. return new Promise((resolve, reject) => {
  1370. console.log(112, payload);
  1371. async.waterfall(
  1372. [
  1373. next => {
  1374. if (!payload.stationId) next("Please specify a station id");
  1375. else if (!payload.playlistId) next("Please specify a playlist id");
  1376. else next();
  1377. },
  1378. next => {
  1379. StationsModule.runJob("GET_STATION", { stationId: payload.stationId }, this)
  1380. .then(station => {
  1381. next(null, station);
  1382. })
  1383. .catch(next);
  1384. },
  1385. (station, next) => {
  1386. if (station.excludedPlaylists.indexOf(payload.playlistId) === -1)
  1387. next("This playlist isn't excluded");
  1388. else next();
  1389. },
  1390. next => {
  1391. DBModule.runJob(
  1392. "GET_MODEL",
  1393. {
  1394. modelName: "station"
  1395. },
  1396. this
  1397. ).then(stationModel => {
  1398. stationModel.updateOne(
  1399. { _id: payload.stationId },
  1400. { $pull: { excludedPlaylists: payload.playlistId } },
  1401. next
  1402. );
  1403. });
  1404. },
  1405. (res, next) => {
  1406. StationsModule.runJob(
  1407. "UPDATE_STATION",
  1408. {
  1409. stationId: payload.stationId
  1410. },
  1411. this
  1412. )
  1413. .then(() => {
  1414. next();
  1415. })
  1416. .catch(next);
  1417. }
  1418. ],
  1419. async err => {
  1420. if (err && err !== true) {
  1421. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  1422. return reject(new Error(err));
  1423. }
  1424. return resolve();
  1425. }
  1426. );
  1427. });
  1428. }
  1429. /**
  1430. * Gets stations that include or exclude a specific playlist
  1431. *
  1432. * @param {object} payload - object that contains the payload
  1433. * @param {string} payload.playlistId - the playlist id
  1434. * @returns {Promise} - returns promise (reject, resolve)
  1435. */
  1436. GET_STATIONS_THAT_INCLUDE_OR_EXCLUDE_PLAYLIST(payload) {
  1437. return new Promise((resolve, reject) => {
  1438. DBModule.runJob(
  1439. "GET_MODEL",
  1440. {
  1441. modelName: "station"
  1442. },
  1443. this
  1444. ).then(stationModel => {
  1445. stationModel.find(
  1446. {
  1447. $or: [{ includedPlaylists: payload.playlistId }, { excludedPlaylists: payload.playlistId }]
  1448. },
  1449. (err, stations) => {
  1450. if (err) reject(err);
  1451. else resolve({ stationIds: stations.map(station => station._id) });
  1452. }
  1453. );
  1454. });
  1455. });
  1456. }
  1457. /**
  1458. * Clears every queue
  1459. *
  1460. * @returns {Promise} - returns a promise (resolve, reject)
  1461. */
  1462. CLEAR_EVERY_STATION_QUEUE() {
  1463. return new Promise((resolve, reject) => {
  1464. async.waterfall(
  1465. [
  1466. next => {
  1467. StationsModule.stationModel.updateMany({}, { $set: { queue: [] } }, err => {
  1468. if (err) next(err);
  1469. else {
  1470. StationsModule.stationModel.find({}, (err, stations) => {
  1471. if (err) next(err);
  1472. else {
  1473. async.eachLimit(
  1474. stations,
  1475. 1,
  1476. (station, next) => {
  1477. StationsModule.runJob("UPDATE_STATION", {
  1478. stationId: station._id
  1479. })
  1480. .then(() => next())
  1481. .catch(next);
  1482. CacheModule.runJob("PUB", {
  1483. channel: "station.queueUpdate",
  1484. value: station._id
  1485. })
  1486. .then()
  1487. .catch();
  1488. },
  1489. next
  1490. );
  1491. }
  1492. });
  1493. }
  1494. });
  1495. }
  1496. ],
  1497. err => {
  1498. if (err) reject(err);
  1499. else resolve();
  1500. }
  1501. );
  1502. });
  1503. }
  1504. }
  1505. export default new _StationsModule();