stations.js 56 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268
  1. import async from "async";
  2. import { isLoginRequired, isOwnerRequired } from "./hooks";
  3. import moduleManager from "../../index";
  4. const DBModule = moduleManager.modules.db;
  5. const UtilsModule = moduleManager.modules.utils;
  6. const IOModule = moduleManager.modules.io;
  7. const SongsModule = moduleManager.modules.songs;
  8. const CacheModule = moduleManager.modules.cache;
  9. const NotificationsModule = moduleManager.modules.notifications;
  10. const StationsModule = moduleManager.modules.stations;
  11. const ActivitiesModule = moduleManager.modules.activities;
  12. const YouTubeModule = moduleManager.modules.youtube;
  13. CacheModule.runJob("SUB", {
  14. channel: "station.updateUsers",
  15. cb: stationId => {
  16. const list = StationsModule.usersPerStation[stationId] || [];
  17. IOModule.runJob("EMIT_TO_ROOM", {
  18. room: `station.${stationId}`,
  19. args: ["event:users.updated", list]
  20. });
  21. }
  22. });
  23. CacheModule.runJob("SUB", {
  24. channel: "station.updateUserCount",
  25. cb: stationId => {
  26. const count = StationsModule.usersPerStationCount[stationId] || 0;
  27. IOModule.runJob("EMIT_TO_ROOM", {
  28. room: `station.${stationId}`,
  29. args: ["event:userCount.updated", count]
  30. });
  31. StationsModule.runJob("GET_STATION", { stationId }).then(async station => {
  32. if (station.privacy === "public")
  33. IOModule.runJob("EMIT_TO_ROOM", {
  34. room: "home",
  35. args: ["event:userCount.updated", stationId, count]
  36. });
  37. else {
  38. const sockets = await IOModule.runJob("GET_ROOM_SOCKETS", {
  39. room: "home"
  40. });
  41. Object.keys(sockets).forEach(socketKey => {
  42. const socket = sockets[socketKey];
  43. const { session } = socket;
  44. if (session.sessionId) {
  45. CacheModule.runJob("HGET", {
  46. table: "sessions",
  47. key: session.sessionId
  48. }).then(session => {
  49. if (session)
  50. DBModule.runJob("GET_MODEL", {
  51. modelName: "user"
  52. }).then(userModel =>
  53. userModel.findOne({ _id: session.userId }, (err, user) => {
  54. if (user.role === "admin")
  55. socket.emit("event:userCount.updated", stationId, count);
  56. else if (station.type === "community" && station.owner === session.userId)
  57. socket.emit("event:userCount.updated", stationId, count);
  58. })
  59. );
  60. });
  61. }
  62. });
  63. }
  64. });
  65. }
  66. });
  67. CacheModule.runJob("SUB", {
  68. channel: "station.queueLockToggled",
  69. cb: data => {
  70. IOModule.runJob("EMIT_TO_ROOM", {
  71. room: `station.${data.stationId}`,
  72. args: ["event:queueLockToggled", data.locked]
  73. });
  74. }
  75. });
  76. CacheModule.runJob("SUB", {
  77. channel: "station.updatePartyMode",
  78. cb: data => {
  79. IOModule.runJob("EMIT_TO_ROOM", {
  80. room: `station.${data.stationId}`,
  81. args: ["event:partyMode.updated", data.partyMode]
  82. });
  83. }
  84. });
  85. CacheModule.runJob("SUB", {
  86. channel: "privatePlaylist.selected",
  87. cb: data => {
  88. IOModule.runJob("EMIT_TO_ROOM", {
  89. room: `station.${data.stationId}`,
  90. args: ["event:privatePlaylist.selected", data.playlistId]
  91. });
  92. }
  93. });
  94. CacheModule.runJob("SUB", {
  95. channel: "station.pause",
  96. cb: stationId => {
  97. StationsModule.runJob("GET_STATION", { stationId }).then(station => {
  98. IOModule.runJob("EMIT_TO_ROOM", {
  99. room: `station.${stationId}`,
  100. args: ["event:stations.pause", { pausedAt: station.pausedAt }]
  101. });
  102. StationsModule.runJob("GET_SOCKETS_THAT_CAN_KNOW_ABOUT_STATION", {
  103. room: `home`,
  104. station
  105. })
  106. .then(response => {
  107. const { socketsThatCan } = response;
  108. socketsThatCan.forEach(socket => {
  109. socket.emit("event:station.pause", { stationId });
  110. });
  111. });
  112. });
  113. }
  114. });
  115. CacheModule.runJob("SUB", {
  116. channel: "station.resume",
  117. cb: stationId => {
  118. StationsModule.runJob("GET_STATION", { stationId }).then(station => {
  119. IOModule.runJob("EMIT_TO_ROOM", {
  120. room: `station.${stationId}`,
  121. args: ["event:stations.resume", { timePaused: station.timePaused }]
  122. });
  123. StationsModule.runJob("GET_SOCKETS_THAT_CAN_KNOW_ABOUT_STATION", {
  124. room: `home`,
  125. station
  126. })
  127. .then(response => {
  128. const { socketsThatCan } = response;
  129. socketsThatCan.forEach(socket => {
  130. socket.emit("event:station.resume", { stationId });
  131. });
  132. })
  133. .catch(console.log);
  134. });
  135. }
  136. });
  137. CacheModule.runJob("SUB", {
  138. channel: "station.privacyUpdate",
  139. cb: response => {
  140. const { stationId, previousPrivacy } = response;
  141. StationsModule.runJob("GET_STATION", { stationId }).then(station => {
  142. if (previousPrivacy !== station.privacy) {
  143. if (station.privacy === "public") {
  144. // Station became public
  145. IOModule.runJob("EMIT_TO_ROOM", {
  146. room: "home",
  147. args: ["event:stations.created", station]
  148. });
  149. } else if (previousPrivacy === "public") {
  150. // Station became hidden
  151. StationsModule.runJob("GET_SOCKETS_THAT_CAN_KNOW_ABOUT_STATION", {
  152. room: `home`,
  153. station
  154. }).then(response => {
  155. const { socketsThatCan, socketsThatCannot } = response;
  156. socketsThatCan.forEach(socket => {
  157. socket.emit("event:station.updatePrivacy", { stationId, privacy: station.privacy });
  158. });
  159. socketsThatCannot.forEach(socket => {
  160. socket.emit("event:station.removed", { stationId });
  161. });
  162. });
  163. } else {
  164. // Station was hidden and is still hidden
  165. StationsModule.runJob("GET_SOCKETS_THAT_CAN_KNOW_ABOUT_STATION", {
  166. room: `home`,
  167. station
  168. }).then(response => {
  169. const { socketsThatCan } = response;
  170. socketsThatCan.forEach(socket => {
  171. socket.emit("event:station.updatePrivacy", { stationId, privacy: station.privacy });
  172. });
  173. });
  174. }
  175. }
  176. });
  177. }
  178. });
  179. CacheModule.runJob("SUB", {
  180. channel: "station.nameUpdate",
  181. cb: response => {
  182. const { stationId } = response;
  183. StationsModule.runJob("GET_STATION", { stationId }).then(station => {
  184. StationsModule.runJob("GET_SOCKETS_THAT_CAN_KNOW_ABOUT_STATION", {
  185. room: `home`,
  186. station
  187. }).then(response => {
  188. const { socketsThatCan } = response;
  189. socketsThatCan.forEach(socket => {
  190. socket.emit("event:station.updateName", { stationId, name: station.name });
  191. });
  192. });
  193. });
  194. }
  195. });
  196. CacheModule.runJob("SUB", {
  197. channel: "station.displayNameUpdate",
  198. cb: response => {
  199. const { stationId } = response;
  200. StationsModule.runJob("GET_STATION", { stationId }).then(station => {
  201. StationsModule.runJob("GET_SOCKETS_THAT_CAN_KNOW_ABOUT_STATION", {
  202. room: `home`,
  203. station
  204. }).then(response => {
  205. const { socketsThatCan } = response;
  206. socketsThatCan.forEach(socket => {
  207. socket.emit("event:station.updateDisplayName", { stationId, displayName: station.displayName });
  208. });
  209. });
  210. });
  211. }
  212. });
  213. CacheModule.runJob("SUB", {
  214. channel: "station.descriptionUpdate",
  215. cb: response => {
  216. const { stationId } = response;
  217. StationsModule.runJob("GET_STATION", { stationId }).then(station => {
  218. StationsModule.runJob("GET_SOCKETS_THAT_CAN_KNOW_ABOUT_STATION", {
  219. room: `home`,
  220. station
  221. }).then(response => {
  222. const { socketsThatCan } = response;
  223. socketsThatCan.forEach(socket => {
  224. socket.emit("event:station.updateDescription", { stationId, description: station.description });
  225. });
  226. });
  227. });
  228. }
  229. });
  230. CacheModule.runJob("SUB", {
  231. channel: "station.queueUpdate",
  232. cb: stationId => {
  233. StationsModule.runJob("GET_STATION", { stationId }).then(station => {
  234. IOModule.runJob("EMIT_TO_ROOM", {
  235. room: `station.${stationId}`,
  236. args: ["event:queue.update", station.queue]
  237. });
  238. });
  239. }
  240. });
  241. CacheModule.runJob("SUB", {
  242. channel: "station.voteSkipSong",
  243. cb: stationId => {
  244. IOModule.runJob("EMIT_TO_ROOM", {
  245. room: `station.${stationId}`,
  246. args: ["event:song.voteSkipSong"]
  247. });
  248. }
  249. });
  250. CacheModule.runJob("SUB", {
  251. channel: "station.remove",
  252. cb: stationId => {
  253. IOModule.runJob("EMIT_TO_ROOM", {
  254. room: `station.${stationId}`,
  255. args: ["event:stations.remove"]
  256. });
  257. console.log(111, "REMOVED");
  258. IOModule.runJob("EMIT_TO_ROOM", {
  259. room: `home`,
  260. args: ["event:station.removed", { stationId }]
  261. });
  262. IOModule.runJob("EMIT_TO_ROOM", {
  263. room: "admin.stations",
  264. args: ["event:admin.station.removed", stationId]
  265. });
  266. }
  267. });
  268. CacheModule.runJob("SUB", {
  269. channel: "station.create",
  270. cb: async stationId => {
  271. const userModel = await DBModule.runJob("GET_MODEL", { modelName: "user" });
  272. StationsModule.runJob("INITIALIZE_STATION", { stationId }).then(async response => {
  273. const { station } = response;
  274. station.userCount = StationsModule.usersPerStationCount[stationId] || 0;
  275. IOModule.runJob("EMIT_TO_ROOM", {
  276. room: "admin.stations",
  277. args: ["event:admin.station.added", station]
  278. });
  279. // TODO If community, check if on whitelist
  280. if (station.privacy === "public")
  281. IOModule.runJob("EMIT_TO_ROOM", {
  282. room: "home",
  283. args: ["event:stations.created", station]
  284. });
  285. else {
  286. const sockets = await IOModule.runJob("GET_ROOM_SOCKETS", {
  287. room: "home"
  288. });
  289. Object.keys(sockets).forEach(socketKey => {
  290. const socket = sockets[socketKey];
  291. const { session } = socket;
  292. if (session.sessionId) {
  293. CacheModule.runJob("HGET", {
  294. table: "sessions",
  295. key: session.sessionId
  296. }).then(session => {
  297. if (session) {
  298. userModel.findOne({ _id: session.userId }, (err, user) => {
  299. if (user.role === "admin") socket.emit("event:stations.created", station);
  300. else if (station.type === "community" && station.owner === session.userId)
  301. socket.emit("event:stations.created", station);
  302. });
  303. }
  304. });
  305. }
  306. });
  307. }
  308. });
  309. }
  310. });
  311. export default {
  312. /**
  313. * Get a list of all the stations
  314. *
  315. * @param {object} session - user session
  316. * @param {Function} cb - callback
  317. */
  318. index(session, cb) {
  319. async.waterfall(
  320. [
  321. next => {
  322. CacheModule.runJob("HGETALL", { table: "stations" }, this).then(stations => {
  323. next(null, stations);
  324. });
  325. },
  326. (items, next) => {
  327. const filteredStations = [];
  328. async.each(
  329. items,
  330. (station, next) => {
  331. async.waterfall(
  332. [
  333. next => {
  334. StationsModule.runJob(
  335. "CAN_USER_VIEW_STATION",
  336. {
  337. station,
  338. userId: session.userId,
  339. hideUnlisted: true
  340. },
  341. this
  342. )
  343. .then(exists => {
  344. next(null, exists);
  345. })
  346. .catch(next);
  347. }
  348. ],
  349. (err, exists) => {
  350. if (err) this.log(err);
  351. station.userCount = StationsModule.usersPerStationCount[station._id] || 0;
  352. if (exists) filteredStations.push(station);
  353. next();
  354. }
  355. );
  356. },
  357. () => next(null, filteredStations)
  358. );
  359. }
  360. ],
  361. async (err, stations) => {
  362. if (err) {
  363. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  364. this.log("ERROR", "STATIONS_INDEX", `Indexing stations failed. "${err}"`);
  365. return cb({ status: "failure", message: err });
  366. }
  367. this.log("SUCCESS", "STATIONS_INDEX", `Indexing stations successful.`, false);
  368. return cb({ status: "success", stations });
  369. }
  370. );
  371. },
  372. /**
  373. * Obtains basic metadata of a station in order to format an activity
  374. *
  375. * @param {object} session - user session
  376. * @param {string} stationId - the station id
  377. * @param {Function} cb - callback
  378. */
  379. getStationForActivity(session, stationId, cb) {
  380. async.waterfall(
  381. [
  382. next => {
  383. StationsModule.runJob("GET_STATION", { stationId }, this)
  384. .then(station => {
  385. next(null, station);
  386. })
  387. .catch(next);
  388. }
  389. ],
  390. async (err, station) => {
  391. if (err) {
  392. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  393. this.log(
  394. "ERROR",
  395. "STATIONS_GET_STATION_FOR_ACTIVITY",
  396. `Failed to obtain metadata of station ${stationId} for activity formatting. "${err}"`
  397. );
  398. return cb({ status: "failure", message: err });
  399. }
  400. this.log(
  401. "SUCCESS",
  402. "STATIONS_GET_STATION_FOR_ACTIVITY",
  403. `Obtained metadata of station ${stationId} for activity formatting successfully.`
  404. );
  405. return cb({
  406. status: "success",
  407. data: {
  408. title: station.displayName,
  409. thumbnail: station.currentSong ? station.currentSong.thumbnail : ""
  410. }
  411. });
  412. }
  413. );
  414. },
  415. /**
  416. * Verifies that a station exists
  417. *
  418. * @param {object} session - user session
  419. * @param {string} stationName - the station name
  420. * @param {Function} cb - callback
  421. */
  422. existsByName(session, stationName, cb) {
  423. async.waterfall(
  424. [
  425. next => {
  426. StationsModule.runJob("GET_STATION_BY_NAME", { stationName }, this)
  427. .then(station => {
  428. next(null, station);
  429. })
  430. .catch(next);
  431. },
  432. (station, next) => {
  433. if (!station) return next(null, false);
  434. return StationsModule.runJob(
  435. "CAN_USER_VIEW_STATION",
  436. {
  437. station,
  438. userId: session.userId
  439. },
  440. this
  441. )
  442. .then(exists => {
  443. next(null, exists);
  444. })
  445. .catch(next);
  446. }
  447. ],
  448. async (err, exists) => {
  449. if (err) {
  450. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  451. this.log(
  452. "ERROR",
  453. "STATION_EXISTS_BY_NAME",
  454. `Checking if station "${stationName}" exists failed. "${err}"`
  455. );
  456. return cb({ status: "failure", message: err });
  457. }
  458. this.log(
  459. "SUCCESS",
  460. "STATION_EXISTS_BY_NAME",
  461. `Station "${stationName}" exists successfully.` /* , false */
  462. );
  463. return cb({ status: "success", exists });
  464. }
  465. );
  466. },
  467. /**
  468. * Gets the official playlist for a station
  469. *
  470. * @param {object} session - user session
  471. * @param {string} stationId - the station id
  472. * @param {Function} cb - callback
  473. */
  474. getPlaylist(session, stationId, cb) {
  475. async.waterfall(
  476. [
  477. next => {
  478. StationsModule.runJob("GET_STATION", { stationId }, this)
  479. .then(station => {
  480. next(null, station);
  481. })
  482. .catch(next);
  483. },
  484. (station, next) => {
  485. StationsModule.runJob(
  486. "CAN_USER_VIEW_STATION",
  487. {
  488. station,
  489. userId: session.userId
  490. },
  491. this
  492. )
  493. .then(canView => {
  494. if (canView) return next(null, station);
  495. return next("Insufficient permissions.");
  496. })
  497. .catch(err => next(err));
  498. },
  499. (station, next) => {
  500. if (!station) return next("Station not found.");
  501. if (station.type !== "official") return next("This is not an official station.");
  502. return next();
  503. },
  504. next => {
  505. CacheModule.runJob(
  506. "HGET",
  507. {
  508. table: "officialPlaylists",
  509. key: stationId
  510. },
  511. this
  512. )
  513. .then(playlist => {
  514. next(null, playlist);
  515. })
  516. .catch(next);
  517. },
  518. (playlist, next) => {
  519. if (!playlist) return next("Playlist not found.");
  520. return next(null, playlist);
  521. }
  522. ],
  523. async (err, playlist) => {
  524. if (err) {
  525. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  526. this.log(
  527. "ERROR",
  528. "STATIONS_GET_PLAYLIST",
  529. `Getting playlist for station "${stationId}" failed. "${err}"`
  530. );
  531. return cb({ status: "failure", message: err });
  532. }
  533. this.log(
  534. "SUCCESS",
  535. "STATIONS_GET_PLAYLIST",
  536. `Got playlist for station "${stationId}" successfully.`,
  537. false
  538. );
  539. return cb({ status: "success", data: playlist.songs });
  540. }
  541. );
  542. },
  543. /**
  544. * Joins the station by its name
  545. *
  546. * @param {object} session - user session
  547. * @param {string} stationName - the station name
  548. * @param {Function} cb - callback
  549. */
  550. join(session, stationName, cb) {
  551. async.waterfall(
  552. [
  553. next => {
  554. StationsModule.runJob("GET_STATION_BY_NAME", { stationName }, this)
  555. .then(station => {
  556. next(null, station);
  557. })
  558. .catch(next);
  559. },
  560. (station, next) => {
  561. if (!station) return next("Station not found.");
  562. return StationsModule.runJob(
  563. "CAN_USER_VIEW_STATION",
  564. {
  565. station,
  566. userId: session.userId
  567. },
  568. this
  569. )
  570. .then(canView => {
  571. if (!canView) next("Not allowed to join station.");
  572. else next(null, station);
  573. })
  574. .catch(err => next(err));
  575. },
  576. (station, next) => {
  577. IOModule.runJob("SOCKET_JOIN_ROOM", {
  578. socketId: session.socketId,
  579. room: `station.${station._id}`
  580. });
  581. const data = {
  582. _id: station._id,
  583. type: station.type,
  584. currentSong: station.currentSong,
  585. startedAt: station.startedAt,
  586. paused: station.paused,
  587. timePaused: station.timePaused,
  588. pausedAt: station.pausedAt,
  589. description: station.description,
  590. displayName: station.displayName,
  591. privacy: station.privacy,
  592. locked: station.locked,
  593. partyMode: station.partyMode,
  594. owner: station.owner,
  595. privatePlaylist: station.privatePlaylist,
  596. genres: station.genres,
  597. blacklistedGenres: station.blacklistedGenres
  598. };
  599. StationsModule.userList[session.socketId] = station._id;
  600. next(null, data);
  601. },
  602. (data, next) => {
  603. data = JSON.parse(JSON.stringify(data));
  604. data.userCount = StationsModule.usersPerStationCount[data._id] || 0;
  605. data.users = StationsModule.usersPerStation[data._id] || [];
  606. if (!data.currentSong || !data.currentSong.title) return next(null, data);
  607. IOModule.runJob("SOCKET_JOIN_SONG_ROOM", {
  608. socketId: session.socketId,
  609. room: `song.${data.currentSong.songId}`
  610. });
  611. data.currentSong.skipVotes = data.currentSong.skipVotes.length;
  612. return SongsModule.runJob(
  613. "GET_SONG_FROM_ID",
  614. {
  615. songId: data.currentSong.songId
  616. },
  617. this
  618. )
  619. .then(response => {
  620. const { song } = response;
  621. if (song) {
  622. data.currentSong.likes = song.likes;
  623. data.currentSong.dislikes = song.dislikes;
  624. } else {
  625. data.currentSong.likes = -1;
  626. data.currentSong.dislikes = -1;
  627. }
  628. })
  629. .catch(() => {
  630. data.currentSong.likes = -1;
  631. data.currentSong.dislikes = -1;
  632. })
  633. .finally(() => {
  634. next(null, data);
  635. });
  636. }
  637. ],
  638. async (err, data) => {
  639. if (err) {
  640. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  641. this.log("ERROR", "STATIONS_JOIN", `Joining station "${stationName}" failed. "${err}"`);
  642. return cb({ status: "failure", message: err });
  643. }
  644. this.log("SUCCESS", "STATIONS_JOIN", `Joined station "${data._id}" successfully.`);
  645. return cb({ status: "success", data });
  646. }
  647. );
  648. },
  649. /**
  650. * Toggles if a station is locked
  651. *
  652. * @param session
  653. * @param stationId - the station id
  654. * @param cb
  655. */
  656. toggleLock: isOwnerRequired(async function toggleLock(session, stationId, cb) {
  657. const stationModel = await DBModule.runJob(
  658. "GET_MODEL",
  659. {
  660. modelName: "station"
  661. },
  662. this
  663. );
  664. async.waterfall(
  665. [
  666. next => {
  667. StationsModule.runJob("GET_STATION", { stationId }, this)
  668. .then(station => {
  669. next(null, station);
  670. })
  671. .catch(next);
  672. },
  673. (station, next) => {
  674. stationModel.updateOne({ _id: stationId }, { $set: { locked: !station.locked } }, next);
  675. },
  676. (res, next) => {
  677. StationsModule.runJob("UPDATE_STATION", { stationId }, this)
  678. .then(station => {
  679. next(null, station);
  680. })
  681. .catch(next);
  682. }
  683. ],
  684. async (err, station) => {
  685. if (err) {
  686. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  687. this.log(
  688. "ERROR",
  689. "STATIONS_UPDATE_LOCKED_STATUS",
  690. `Toggling the queue lock for station "${stationId}" failed. "${err}"`
  691. );
  692. return cb({ status: "failure", message: err });
  693. }
  694. this.log(
  695. "SUCCESS",
  696. "STATIONS_UPDATE_LOCKED_STATUS",
  697. `Toggled the queue lock for station "${stationId}" successfully to "${station.locked}".`
  698. );
  699. CacheModule.runJob("PUB", {
  700. channel: "station.queueLockToggled",
  701. value: {
  702. stationId,
  703. locked: station.locked
  704. }
  705. });
  706. return cb({ status: "success", data: station.locked });
  707. }
  708. );
  709. }),
  710. /**
  711. * Votes to skip a station
  712. *
  713. * @param session
  714. * @param stationId - the station id
  715. * @param cb
  716. */
  717. voteSkip: isLoginRequired(async function voteSkip(session, stationId, cb) {
  718. const stationModel = await DBModule.runJob(
  719. "GET_MODEL",
  720. {
  721. modelName: "station"
  722. },
  723. this
  724. );
  725. let skipVotes = 0;
  726. let shouldSkip = false;
  727. async.waterfall(
  728. [
  729. next => {
  730. StationsModule.runJob("GET_STATION", { stationId }, this)
  731. .then(station => {
  732. next(null, station);
  733. })
  734. .catch(next);
  735. },
  736. (station, next) => {
  737. if (!station) return next("Station not found.");
  738. return StationsModule.runJob(
  739. "CAN_USER_VIEW_STATION",
  740. {
  741. station,
  742. userId: session.userId
  743. },
  744. this
  745. )
  746. .then(canView => {
  747. if (canView) return next(null, station);
  748. return next("Insufficient permissions.");
  749. })
  750. .catch(err => next(err));
  751. },
  752. (station, next) => {
  753. if (!station.currentSong) return next("There is currently no song to skip.");
  754. if (station.currentSong.skipVotes.indexOf(session.userId) !== -1)
  755. return next("You have already voted to skip this song.");
  756. return next(null, station);
  757. },
  758. (station, next) => {
  759. stationModel.updateOne(
  760. { _id: stationId },
  761. { $push: { "currentSong.skipVotes": session.userId } },
  762. next
  763. );
  764. },
  765. (res, next) => {
  766. StationsModule.runJob("UPDATE_STATION", { stationId }, this)
  767. .then(station => {
  768. next(null, station);
  769. })
  770. .catch(next);
  771. },
  772. (station, next) => {
  773. if (!station) return next("Station not found.");
  774. return next(null, station);
  775. },
  776. (station, next) => {
  777. skipVotes = station.currentSong.skipVotes.length;
  778. IOModule.runJob(
  779. "GET_ROOM_SOCKETS",
  780. {
  781. room: `station.${stationId}`
  782. },
  783. this
  784. )
  785. .then(sockets => {
  786. next(null, sockets);
  787. })
  788. .catch(next);
  789. },
  790. (sockets, next) => {
  791. if (sockets.length <= skipVotes) shouldSkip = true;
  792. next();
  793. }
  794. ],
  795. async err => {
  796. if (err) {
  797. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  798. this.log("ERROR", "STATIONS_VOTE_SKIP", `Vote skipping station "${stationId}" failed. "${err}"`);
  799. return cb({ status: "failure", message: err });
  800. }
  801. this.log("SUCCESS", "STATIONS_VOTE_SKIP", `Vote skipping "${stationId}" successful.`);
  802. CacheModule.runJob("PUB", {
  803. channel: "station.voteSkipSong",
  804. value: stationId
  805. });
  806. if (shouldSkip) StationsModule.runJob("SKIP_STATION", { stationId });
  807. return cb({
  808. status: "success",
  809. message: "Successfully voted to skip the song."
  810. });
  811. }
  812. );
  813. }),
  814. /**
  815. * Force skips a station
  816. *
  817. * @param session
  818. * @param stationId - the station id
  819. * @param cb
  820. */
  821. forceSkip: isOwnerRequired(function forceSkip(session, stationId, cb) {
  822. async.waterfall(
  823. [
  824. next => {
  825. StationsModule.runJob("GET_STATION", { stationId }, this)
  826. .then(station => {
  827. next(null, station);
  828. })
  829. .catch(next);
  830. },
  831. (station, next) => {
  832. if (!station) return next("Station not found.");
  833. return next();
  834. }
  835. ],
  836. async err => {
  837. if (err) {
  838. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  839. this.log("ERROR", "STATIONS_FORCE_SKIP", `Force skipping station "${stationId}" failed. "${err}"`);
  840. return cb({ status: "failure", message: err });
  841. }
  842. StationsModule.runJob("SKIP_STATION", { stationId });
  843. this.log("SUCCESS", "STATIONS_FORCE_SKIP", `Force skipped station "${stationId}" successfully.`);
  844. return cb({
  845. status: "success",
  846. message: "Successfully skipped station."
  847. });
  848. }
  849. );
  850. }),
  851. /**
  852. * Leaves the user's current station
  853. *
  854. * @param {object} session - user session
  855. * @param {string} stationId - id of station to leave
  856. * @param {Function} cb - callback
  857. */
  858. leave(session, stationId, cb) {
  859. async.waterfall(
  860. [
  861. next => {
  862. StationsModule.runJob("GET_STATION", { stationId }, this)
  863. .then(station => {
  864. next(null, station);
  865. })
  866. .catch(next);
  867. },
  868. (station, next) => {
  869. if (!station) return next("Station not found.");
  870. return next();
  871. }
  872. ],
  873. async (err, userCount) => {
  874. if (err) {
  875. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  876. this.log("ERROR", "STATIONS_LEAVE", `Leaving station "${stationId}" failed. "${err}"`);
  877. return cb({ status: "failure", message: err });
  878. }
  879. this.log("SUCCESS", "STATIONS_LEAVE", `Left station "${stationId}" successfully.`);
  880. IOModule.runJob("SOCKET_LEAVE_ROOMS", { socketId: session });
  881. delete StationsModule.userList[session.socketId];
  882. return cb({
  883. status: "success",
  884. message: "Successfully left station.",
  885. userCount
  886. });
  887. }
  888. );
  889. },
  890. /**
  891. * Updates a station's name
  892. *
  893. * @param session
  894. * @param stationId - the station id
  895. * @param newName - the new station name
  896. * @param cb
  897. */
  898. updateName: isOwnerRequired(async function updateName(session, stationId, newName, cb) {
  899. const stationModel = await DBModule.runJob(
  900. "GET_MODEL",
  901. {
  902. modelName: "station"
  903. },
  904. this
  905. );
  906. async.waterfall(
  907. [
  908. next => {
  909. stationModel.updateOne(
  910. { _id: stationId },
  911. { $set: { name: newName } },
  912. { runValidators: true },
  913. next
  914. );
  915. },
  916. (res, next) => {
  917. StationsModule.runJob("UPDATE_STATION", { stationId }, this)
  918. .then(station => {
  919. next(null, station);
  920. })
  921. .catch(next);
  922. }
  923. ],
  924. async err => {
  925. if (err) {
  926. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  927. this.log(
  928. "ERROR",
  929. "STATIONS_UPDATE_NAME",
  930. `Updating station "${stationId}" name to "${newName}" failed. "${err}"`
  931. );
  932. return cb({ status: "failure", message: err });
  933. }
  934. this.log(
  935. "SUCCESS",
  936. "STATIONS_UPDATE_NAME",
  937. `Updated station "${stationId}" name to "${newName}" successfully.`
  938. );
  939. CacheModule.runJob("PUB", {
  940. channel: "station.nameUpdate",
  941. value: { stationId }
  942. });
  943. return cb({
  944. status: "success",
  945. message: "Successfully updated the name."
  946. });
  947. }
  948. );
  949. }),
  950. /**
  951. * Updates a station's display name
  952. *
  953. * @param session
  954. * @param stationId - the station id
  955. * @param newDisplayName - the new station display name
  956. * @param cb
  957. */
  958. updateDisplayName: isOwnerRequired(async function updateDisplayName(session, stationId, newDisplayName, cb) {
  959. const stationModel = await DBModule.runJob(
  960. "GET_MODEL",
  961. {
  962. modelName: "station"
  963. },
  964. this
  965. );
  966. async.waterfall(
  967. [
  968. next => {
  969. stationModel.updateOne(
  970. { _id: stationId },
  971. { $set: { displayName: newDisplayName } },
  972. { runValidators: true },
  973. next
  974. );
  975. },
  976. (res, next) => {
  977. StationsModule.runJob("UPDATE_STATION", { stationId }, this)
  978. .then(station => {
  979. next(null, station);
  980. })
  981. .catch(next);
  982. }
  983. ],
  984. async err => {
  985. if (err) {
  986. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  987. this.log(
  988. "ERROR",
  989. "STATIONS_UPDATE_DISPLAY_NAME",
  990. `Updating station "${stationId}" displayName to "${newDisplayName}" failed. "${err}"`
  991. );
  992. return cb({ status: "failure", message: err });
  993. }
  994. this.log(
  995. "SUCCESS",
  996. "STATIONS_UPDATE_DISPLAY_NAME",
  997. `Updated station "${stationId}" displayName to "${newDisplayName}" successfully.`
  998. );
  999. CacheModule.runJob("PUB", {
  1000. channel: "station.displayNameUpdate",
  1001. value: { stationId }
  1002. });
  1003. return cb({
  1004. status: "success",
  1005. message: "Successfully updated the display name."
  1006. });
  1007. }
  1008. );
  1009. }),
  1010. /**
  1011. * Updates a station's description
  1012. *
  1013. * @param session
  1014. * @param stationId - the station id
  1015. * @param newDescription - the new station description
  1016. * @param cb
  1017. */
  1018. updateDescription: isOwnerRequired(async function updateDescription(session, stationId, newDescription, cb) {
  1019. const stationModel = await DBModule.runJob(
  1020. "GET_MODEL",
  1021. {
  1022. modelName: "station"
  1023. },
  1024. this
  1025. );
  1026. async.waterfall(
  1027. [
  1028. next => {
  1029. stationModel.updateOne(
  1030. { _id: stationId },
  1031. { $set: { description: newDescription } },
  1032. { runValidators: true },
  1033. next
  1034. );
  1035. },
  1036. (res, next) => {
  1037. StationsModule.runJob("UPDATE_STATION", { stationId }, this)
  1038. .then(station => {
  1039. next(null, station);
  1040. })
  1041. .catch(next);
  1042. }
  1043. ],
  1044. async err => {
  1045. if (err) {
  1046. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  1047. this.log(
  1048. "ERROR",
  1049. "STATIONS_UPDATE_DESCRIPTION",
  1050. `Updating station "${stationId}" description to "${newDescription}" failed. "${err}"`
  1051. );
  1052. return cb({ status: "failure", message: err });
  1053. }
  1054. this.log(
  1055. "SUCCESS",
  1056. "STATIONS_UPDATE_DESCRIPTION",
  1057. `Updated station "${stationId}" description to "${newDescription}" successfully.`
  1058. );
  1059. CacheModule.runJob("PUB", {
  1060. channel: "station.descriptionUpdate",
  1061. value: { stationId }
  1062. });
  1063. return cb({
  1064. status: "success",
  1065. message: "Successfully updated the description."
  1066. });
  1067. }
  1068. );
  1069. }),
  1070. /**
  1071. * Updates a station's privacy
  1072. *
  1073. * @param session
  1074. * @param stationId - the station id
  1075. * @param newPrivacy - the new station privacy
  1076. * @param cb
  1077. */
  1078. updatePrivacy: isOwnerRequired(async function updatePrivacy(session, stationId, newPrivacy, cb) {
  1079. const stationModel = await DBModule.runJob(
  1080. "GET_MODEL",
  1081. {
  1082. modelName: "station"
  1083. },
  1084. this
  1085. );
  1086. let previousPrivacy = null;
  1087. async.waterfall(
  1088. [
  1089. next => {
  1090. stationModel.findOne({ _id: stationId }, next);
  1091. },
  1092. (station, next) => {
  1093. if (!station) next("No station found.");
  1094. else {
  1095. previousPrivacy = station.privacy;
  1096. next();
  1097. }
  1098. },
  1099. next => {
  1100. stationModel.updateOne(
  1101. { _id: stationId },
  1102. { $set: { privacy: newPrivacy } },
  1103. { runValidators: true },
  1104. next
  1105. );
  1106. },
  1107. (res, next) => {
  1108. StationsModule.runJob("UPDATE_STATION", { stationId }, this)
  1109. .then(station => {
  1110. next(null, station);
  1111. })
  1112. .catch(next);
  1113. }
  1114. ],
  1115. async err => {
  1116. if (err) {
  1117. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  1118. this.log(
  1119. "ERROR",
  1120. "STATIONS_UPDATE_PRIVACY",
  1121. `Updating station "${stationId}" privacy to "${newPrivacy}" failed. "${err}"`
  1122. );
  1123. return cb({ status: "failure", message: err });
  1124. }
  1125. this.log(
  1126. "SUCCESS",
  1127. "STATIONS_UPDATE_PRIVACY",
  1128. `Updated station "${stationId}" privacy to "${newPrivacy}" successfully.`
  1129. );
  1130. CacheModule.runJob("PUB", {
  1131. channel: "station.privacyUpdate",
  1132. value: { stationId, previousPrivacy }
  1133. });
  1134. return cb({
  1135. status: "success",
  1136. message: "Successfully updated the privacy."
  1137. });
  1138. }
  1139. );
  1140. }),
  1141. /**
  1142. * Updates a station's genres
  1143. *
  1144. * @param session
  1145. * @param stationId - the station id
  1146. * @param newGenres - the new station genres
  1147. * @param cb
  1148. */
  1149. updateGenres: isOwnerRequired(async function updateGenres(session, stationId, newGenres, cb) {
  1150. const stationModel = await DBModule.runJob(
  1151. "GET_MODEL",
  1152. {
  1153. modelName: "station"
  1154. },
  1155. this
  1156. );
  1157. async.waterfall(
  1158. [
  1159. next => {
  1160. stationModel.updateOne(
  1161. { _id: stationId },
  1162. { $set: { genres: newGenres } },
  1163. { runValidators: true },
  1164. next
  1165. );
  1166. },
  1167. (res, next) => {
  1168. StationsModule.runJob("UPDATE_STATION", { stationId }, this)
  1169. .then(station => {
  1170. next(null, station);
  1171. })
  1172. .catch(next);
  1173. }
  1174. ],
  1175. async err => {
  1176. if (err) {
  1177. err = await UtilsModule.runJob("GET_ERROR", { error: err });
  1178. this.log(
  1179. "ERROR",
  1180. "STATIONS_UPDATE_GENRES",
  1181. `Updating station "${stationId}" genres to "${newGenres}" failed. "${err}"`
  1182. );
  1183. return cb({ status: "failure", message: err });
  1184. }
  1185. this.log(
  1186. "SUCCESS",
  1187. "STATIONS_UPDATE_GENRES",
  1188. `Updated station "${stationId}" genres to "${newGenres}" successfully.`
  1189. );
  1190. return cb({
  1191. status: "success",
  1192. message: "Successfully updated the genres."
  1193. });
  1194. }
  1195. );
  1196. }),
  1197. /**
  1198. * Updates a station's blacklisted genres
  1199. *
  1200. * @param session
  1201. * @param stationId - the station id
  1202. * @param newBlacklistedGenres - the new station blacklisted genres
  1203. * @param cb
  1204. */
  1205. updateBlacklistedGenres: isOwnerRequired(async function updateBlacklistedGenres(
  1206. session,
  1207. stationId,
  1208. newBlacklistedGenres,
  1209. cb
  1210. ) {
  1211. const stationModel = await DBModule.runJob(
  1212. "GET_MODEL",
  1213. {
  1214. modelName: "station"
  1215. },
  1216. this
  1217. );
  1218. async.waterfall(
  1219. [
  1220. next => {
  1221. stationModel.updateOne(
  1222. { _id: stationId },
  1223. {
  1224. $set: {
  1225. blacklistedGenres: newBlacklistedGenres
  1226. }
  1227. },
  1228. { runValidators: true },
  1229. next
  1230. );
  1231. },
  1232. (res, next) => {
  1233. StationsModule.runJob("UPDATE_STATION", { stationId }, this)
  1234. .then(station => {
  1235. next(null, station);
  1236. })
  1237. .catch(next);
  1238. }
  1239. ],
  1240. async err => {
  1241. if (err) {
  1242. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  1243. this.log(
  1244. "ERROR",
  1245. "STATIONS_UPDATE_BLACKLISTED_GENRES",
  1246. `Updating station "${stationId}" blacklisted genres to "${newBlacklistedGenres}" failed. "${err}"`
  1247. );
  1248. return cb({ status: "failure", message: err });
  1249. }
  1250. this.log(
  1251. "SUCCESS",
  1252. "STATIONS_UPDATE_BLACKLISTED_GENRES",
  1253. `Updated station "${stationId}" blacklisted genres to "${newBlacklistedGenres}" successfully.`
  1254. );
  1255. return cb({
  1256. status: "success",
  1257. message: "Successfully updated the blacklisted genres."
  1258. });
  1259. }
  1260. );
  1261. }),
  1262. /**
  1263. * Updates a station's party mode
  1264. *
  1265. * @param session
  1266. * @param stationId - the station id
  1267. * @param newPartyMode - the new station party mode
  1268. * @param cb
  1269. */
  1270. updatePartyMode: isOwnerRequired(async function updatePartyMode(session, stationId, newPartyMode, cb) {
  1271. const stationModel = await DBModule.runJob(
  1272. "GET_MODEL",
  1273. {
  1274. modelName: "station"
  1275. },
  1276. this
  1277. );
  1278. async.waterfall(
  1279. [
  1280. next => {
  1281. StationsModule.runJob("GET_STATION", { stationId }, this)
  1282. .then(station => {
  1283. next(null, station);
  1284. })
  1285. .catch(next);
  1286. },
  1287. (station, next) => {
  1288. if (!station) return next("Station not found.");
  1289. if (station.partyMode === newPartyMode)
  1290. return next(`The party mode was already ${newPartyMode ? "enabled." : "disabled."}`);
  1291. return stationModel.updateOne(
  1292. { _id: stationId },
  1293. { $set: { partyMode: newPartyMode } },
  1294. { runValidators: true },
  1295. next
  1296. );
  1297. },
  1298. (res, next) => {
  1299. StationsModule.runJob("UPDATE_STATION", { stationId }, this)
  1300. .then(station => {
  1301. next(null, station);
  1302. })
  1303. .catch(next);
  1304. }
  1305. ],
  1306. async err => {
  1307. if (err) {
  1308. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  1309. this.log(
  1310. "ERROR",
  1311. "STATIONS_UPDATE_PARTY_MODE",
  1312. `Updating station "${stationId}" party mode to "${newPartyMode}" failed. "${err}"`
  1313. );
  1314. return cb({ status: "failure", message: err });
  1315. }
  1316. this.log(
  1317. "SUCCESS",
  1318. "STATIONS_UPDATE_PARTY_MODE",
  1319. `Updated station "${stationId}" party mode to "${newPartyMode}" successfully.`
  1320. );
  1321. CacheModule.runJob("PUB", {
  1322. channel: "station.updatePartyMode",
  1323. value: {
  1324. stationId,
  1325. partyMode: newPartyMode
  1326. }
  1327. });
  1328. StationsModule.runJob("SKIP_STATION", { stationId });
  1329. return cb({
  1330. status: "success",
  1331. message: "Successfully updated the party mode."
  1332. });
  1333. }
  1334. );
  1335. }),
  1336. /**
  1337. * Pauses a station
  1338. *
  1339. * @param session
  1340. * @param stationId - the station id
  1341. * @param cb
  1342. */
  1343. pause: isOwnerRequired(async function pause(session, stationId, cb) {
  1344. const stationModel = await DBModule.runJob(
  1345. "GET_MODEL",
  1346. {
  1347. modelName: "station"
  1348. },
  1349. this
  1350. );
  1351. async.waterfall(
  1352. [
  1353. next => {
  1354. StationsModule.runJob("GET_STATION", { stationId }, this)
  1355. .then(station => {
  1356. next(null, station);
  1357. })
  1358. .catch(next);
  1359. },
  1360. (station, next) => {
  1361. if (!station) return next("Station not found.");
  1362. if (station.paused) return next("That station was already paused.");
  1363. return stationModel.updateOne(
  1364. { _id: stationId },
  1365. { $set: { paused: true, pausedAt: Date.now() } },
  1366. next
  1367. );
  1368. },
  1369. (res, next) => {
  1370. StationsModule.runJob("UPDATE_STATION", { stationId }, this)
  1371. .then(station => {
  1372. next(null, station);
  1373. })
  1374. .catch(next);
  1375. }
  1376. ],
  1377. async err => {
  1378. if (err) {
  1379. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  1380. this.log("ERROR", "STATIONS_PAUSE", `Pausing station "${stationId}" failed. "${err}"`);
  1381. return cb({ status: "failure", message: err });
  1382. }
  1383. this.log("SUCCESS", "STATIONS_PAUSE", `Paused station "${stationId}" successfully.`);
  1384. CacheModule.runJob("PUB", {
  1385. channel: "station.pause",
  1386. value: stationId
  1387. });
  1388. NotificationsModule.runJob("UNSCHEDULE", {
  1389. name: `stations.nextSong?id=${stationId}`
  1390. });
  1391. return cb({
  1392. status: "success",
  1393. message: "Successfully paused."
  1394. });
  1395. }
  1396. );
  1397. }),
  1398. /**
  1399. * Resumes a station
  1400. *
  1401. * @param session
  1402. * @param stationId - the station id
  1403. * @param cb
  1404. */
  1405. resume: isOwnerRequired(async function resume(session, stationId, cb) {
  1406. const stationModel = await DBModule.runJob(
  1407. "GET_MODEL",
  1408. {
  1409. modelName: "station"
  1410. },
  1411. this
  1412. );
  1413. async.waterfall(
  1414. [
  1415. next => {
  1416. StationsModule.runJob("GET_STATION", { stationId }, this)
  1417. .then(station => {
  1418. next(null, station);
  1419. })
  1420. .catch(next);
  1421. },
  1422. (station, next) => {
  1423. if (!station) return next("Station not found.");
  1424. if (!station.paused) return next("That station is not paused.");
  1425. station.timePaused += Date.now() - station.pausedAt;
  1426. return stationModel.updateOne(
  1427. { _id: stationId },
  1428. {
  1429. $set: { paused: false },
  1430. $inc: { timePaused: Date.now() - station.pausedAt }
  1431. },
  1432. next
  1433. );
  1434. },
  1435. (res, next) => {
  1436. StationsModule.runJob("UPDATE_STATION", { stationId }, this)
  1437. .then(station => {
  1438. next(null, station);
  1439. })
  1440. .catch(next);
  1441. }
  1442. ],
  1443. async err => {
  1444. if (err) {
  1445. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  1446. this.log("ERROR", "STATIONS_RESUME", `Resuming station "${stationId}" failed. "${err}"`);
  1447. return cb({ status: "failure", message: err });
  1448. }
  1449. this.log("SUCCESS", "STATIONS_RESUME", `Resuming station "${stationId}" successfully.`);
  1450. CacheModule.runJob("PUB", {
  1451. channel: "station.resume",
  1452. value: stationId
  1453. });
  1454. return cb({
  1455. status: "success",
  1456. message: "Successfully resumed."
  1457. });
  1458. }
  1459. );
  1460. }),
  1461. /**
  1462. * Removes a station
  1463. *
  1464. * @param session
  1465. * @param stationId - the station id
  1466. * @param cb
  1467. */
  1468. remove: isOwnerRequired(async function remove(session, stationId, cb) {
  1469. const stationModel = await DBModule.runJob(
  1470. "GET_MODEL",
  1471. {
  1472. modelName: "station"
  1473. },
  1474. this
  1475. );
  1476. async.waterfall(
  1477. [
  1478. next => {
  1479. stationModel.deleteOne({ _id: stationId }, err => next(err));
  1480. },
  1481. next => {
  1482. CacheModule.runJob("HDEL", { table: "stations", key: stationId }, this).then(next).catch(next);
  1483. }
  1484. ],
  1485. async err => {
  1486. if (err) {
  1487. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  1488. this.log("ERROR", "STATIONS_REMOVE", `Removing station "${stationId}" failed. "${err}"`);
  1489. return cb({ status: "failure", message: err });
  1490. }
  1491. this.log("SUCCESS", "STATIONS_REMOVE", `Removing station "${stationId}" successfully.`);
  1492. CacheModule.runJob("PUB", {
  1493. channel: "station.remove",
  1494. value: stationId
  1495. });
  1496. ActivitiesModule.runJob("ADD_ACTIVITY", {
  1497. userId: session.userId,
  1498. activityType: "deleted_station",
  1499. payload: [stationId]
  1500. });
  1501. return cb({
  1502. status: "success",
  1503. message: "Successfully removed."
  1504. });
  1505. }
  1506. );
  1507. }),
  1508. /**
  1509. * Create a station
  1510. *
  1511. * @param session
  1512. * @param data - the station data
  1513. * @param cb
  1514. */
  1515. create: isLoginRequired(async function create(session, data, cb) {
  1516. const userModel = await DBModule.runJob("GET_MODEL", { modelName: "user" }, this);
  1517. const stationModel = await DBModule.runJob(
  1518. "GET_MODEL",
  1519. {
  1520. modelName: "station"
  1521. },
  1522. this
  1523. );
  1524. data.name = data.name.toLowerCase();
  1525. const blacklist = [
  1526. "country",
  1527. "edm",
  1528. "musare",
  1529. "hip-hop",
  1530. "rap",
  1531. "top-hits",
  1532. "todays-hits",
  1533. "old-school",
  1534. "christmas",
  1535. "about",
  1536. "support",
  1537. "staff",
  1538. "help",
  1539. "news",
  1540. "terms",
  1541. "privacy",
  1542. "profile",
  1543. "c",
  1544. "community",
  1545. "tos",
  1546. "login",
  1547. "register",
  1548. "p",
  1549. "official",
  1550. "o",
  1551. "trap",
  1552. "faq",
  1553. "team",
  1554. "donate",
  1555. "buy",
  1556. "shop",
  1557. "forums",
  1558. "explore",
  1559. "settings",
  1560. "admin",
  1561. "auth",
  1562. "reset_password"
  1563. ];
  1564. async.waterfall(
  1565. [
  1566. next => {
  1567. if (!data) return next("Invalid data.");
  1568. return next();
  1569. },
  1570. next => {
  1571. stationModel.findOne(
  1572. {
  1573. $or: [
  1574. { name: data.name },
  1575. {
  1576. displayName: new RegExp(`^${data.displayName}$`, "i")
  1577. }
  1578. ]
  1579. },
  1580. next
  1581. );
  1582. },
  1583. // eslint-disable-next-line consistent-return
  1584. (station, next) => {
  1585. this.log(station);
  1586. if (station) return next("A station with that name or display name already exists.");
  1587. const { name, displayName, description, genres, playlist, type, blacklistedGenres } = data;
  1588. if (type === "official") {
  1589. return userModel.findOne({ _id: session.userId }, (err, user) => {
  1590. if (err) return next(err);
  1591. if (!user) return next("User not found.");
  1592. if (user.role !== "admin") return next("Admin required.");
  1593. return stationModel.create(
  1594. {
  1595. name,
  1596. displayName,
  1597. description,
  1598. type,
  1599. privacy: "private",
  1600. playlist,
  1601. genres,
  1602. blacklistedGenres,
  1603. currentSong: StationsModule.defaultSong
  1604. },
  1605. next
  1606. );
  1607. });
  1608. }
  1609. if (type === "community") {
  1610. if (blacklist.indexOf(name) !== -1)
  1611. return next("That name is blacklisted. Please use a different name.");
  1612. return stationModel.create(
  1613. {
  1614. name,
  1615. displayName,
  1616. description,
  1617. type,
  1618. privacy: "private",
  1619. owner: session.userId,
  1620. queue: [],
  1621. currentSong: null
  1622. },
  1623. next
  1624. );
  1625. }
  1626. }
  1627. ],
  1628. async (err, station) => {
  1629. if (err) {
  1630. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  1631. this.log("ERROR", "STATIONS_CREATE", `Creating station failed. "${err}"`);
  1632. return cb({ status: "failure", message: err });
  1633. }
  1634. this.log("SUCCESS", "STATIONS_CREATE", `Created station "${station._id}" successfully.`);
  1635. CacheModule.runJob("PUB", {
  1636. channel: "station.create",
  1637. value: station._id
  1638. });
  1639. ActivitiesModule.runJob("ADD_ACTIVITY", {
  1640. userId: session.userId,
  1641. activityType: "created_station",
  1642. payload: [station._id]
  1643. });
  1644. return cb({
  1645. status: "success",
  1646. message: "Successfully created station."
  1647. });
  1648. }
  1649. );
  1650. }),
  1651. /**
  1652. * Adds song to station queue
  1653. *
  1654. * @param session
  1655. * @param stationId - the station id
  1656. * @param songId - the song id
  1657. * @param cb
  1658. */
  1659. addToQueue: isLoginRequired(async function addToQueue(session, stationId, songId, cb) {
  1660. const userModel = await DBModule.runJob("GET_MODEL", { modelName: "user" }, this);
  1661. const stationModel = await DBModule.runJob(
  1662. "GET_MODEL",
  1663. {
  1664. modelName: "station"
  1665. },
  1666. this
  1667. );
  1668. async.waterfall(
  1669. [
  1670. next => {
  1671. StationsModule.runJob("GET_STATION", { stationId }, this)
  1672. .then(station => {
  1673. next(null, station);
  1674. })
  1675. .catch(next);
  1676. },
  1677. (station, next) => {
  1678. if (!station) return next("Station not found.");
  1679. if (station.locked) {
  1680. return userModel.findOne({ _id: session.userId }, (err, user) => {
  1681. if (user.role !== "admin" && station.owner !== session.userId)
  1682. return next("Only owners and admins can add songs to a locked queue.");
  1683. return next(null, station);
  1684. });
  1685. }
  1686. return next(null, station);
  1687. },
  1688. (station, next) => {
  1689. if (station.type !== "community") return next("That station is not a community station.");
  1690. return StationsModule.runJob(
  1691. "CAN_USER_VIEW_STATION",
  1692. {
  1693. station,
  1694. userId: session.userId
  1695. },
  1696. this
  1697. )
  1698. .then(canView => {
  1699. if (canView) return next(null, station);
  1700. return next("Insufficient permissions.");
  1701. })
  1702. .catch(err => next(err));
  1703. },
  1704. (station, next) => {
  1705. if (station.currentSong && station.currentSong.songId === songId)
  1706. return next("That song is currently playing.");
  1707. return async.each(
  1708. station.queue,
  1709. (queueSong, next) => {
  1710. if (queueSong.songId === songId) return next("That song is already in the queue.");
  1711. return next();
  1712. },
  1713. err => next(err, station)
  1714. );
  1715. },
  1716. (station, next) => {
  1717. SongsModule.runJob("GET_SONG_FROM_ID", { songId }, this)
  1718. .then(res => {
  1719. if (res.song) return next(null, res.song, station);
  1720. return YouTubeModule.runJob("GET_SONG", { songId }, this)
  1721. .then(response => {
  1722. const { song } = response;
  1723. song.artists = [];
  1724. song.skipDuration = 0;
  1725. song.likes = -1;
  1726. song.dislikes = -1;
  1727. song.thumbnail = "empty";
  1728. song.explicit = false;
  1729. return next(null, song, station);
  1730. })
  1731. .catch(err => next(err));
  1732. })
  1733. .catch(err => next(err));
  1734. },
  1735. (song, station, next) => {
  1736. const { queue } = station;
  1737. song.requestedBy = session.userId;
  1738. song.requestedAt = Date.now();
  1739. queue.push(song);
  1740. let totalDuration = 0;
  1741. queue.forEach(song => {
  1742. totalDuration += song.duration;
  1743. });
  1744. if (totalDuration >= 3600 * 3) return next("The max length of the queue is 3 hours.");
  1745. return next(null, song, station);
  1746. },
  1747. (song, station, next) => {
  1748. const { queue } = station;
  1749. if (queue.length === 0) return next(null, song, station);
  1750. let totalDuration = 0;
  1751. const userId = queue[queue.length - 1].requestedBy;
  1752. station.queue.forEach(song => {
  1753. if (userId === song.requestedBy) {
  1754. totalDuration += song.duration;
  1755. }
  1756. });
  1757. if (totalDuration >= 900) return next("The max length of songs per user is 15 minutes.");
  1758. return next(null, song, station);
  1759. },
  1760. (song, station, next) => {
  1761. const { queue } = station;
  1762. if (queue.length === 0) return next(null, song);
  1763. let totalSongs = 0;
  1764. const userId = queue[queue.length - 1].requestedBy;
  1765. queue.forEach(song => {
  1766. if (userId === song.requestedBy) {
  1767. totalSongs += 1;
  1768. }
  1769. });
  1770. if (totalSongs <= 2) return next(null, song);
  1771. if (totalSongs > 3)
  1772. return next("The max amount of songs per user is 3, and only 2 in a row is allowed.");
  1773. if (queue[queue.length - 2].requestedBy !== userId || queue[queue.length - 3] !== userId)
  1774. return next("The max amount of songs per user is 3, and only 2 in a row is allowed.");
  1775. return next(null, song);
  1776. },
  1777. (song, next) => {
  1778. stationModel.updateOne(
  1779. { _id: stationId },
  1780. { $push: { queue: song } },
  1781. { runValidators: true },
  1782. next
  1783. );
  1784. },
  1785. (res, next) => {
  1786. StationsModule.runJob("UPDATE_STATION", { stationId }, this)
  1787. .then(station => {
  1788. next(null, station);
  1789. })
  1790. .catch(next);
  1791. }
  1792. ],
  1793. async err => {
  1794. if (err) {
  1795. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  1796. this.log(
  1797. "ERROR",
  1798. "STATIONS_ADD_SONG_TO_QUEUE",
  1799. `Adding song "${songId}" to station "${stationId}" queue failed. "${err}"`
  1800. );
  1801. return cb({ status: "failure", message: err });
  1802. }
  1803. this.log(
  1804. "SUCCESS",
  1805. "STATIONS_ADD_SONG_TO_QUEUE",
  1806. `Added song "${songId}" to station "${stationId}" successfully.`
  1807. );
  1808. CacheModule.runJob("PUB", {
  1809. channel: "station.queueUpdate",
  1810. value: stationId
  1811. });
  1812. return cb({
  1813. status: "success",
  1814. message: "Successfully added song to queue."
  1815. });
  1816. }
  1817. );
  1818. }),
  1819. /**
  1820. * Removes song from station queue
  1821. *
  1822. * @param session
  1823. * @param stationId - the station id
  1824. * @param songId - the song id
  1825. * @param cb
  1826. */
  1827. removeFromQueue: isOwnerRequired(async function removeFromQueue(session, stationId, songId, cb) {
  1828. const stationModel = await DBModule.runJob(
  1829. "GET_MODEL",
  1830. {
  1831. modelName: "station"
  1832. },
  1833. this
  1834. );
  1835. async.waterfall(
  1836. [
  1837. next => {
  1838. if (!songId) return next("Invalid song id.");
  1839. return StationsModule.runJob("GET_STATION", { stationId }, this)
  1840. .then(station => {
  1841. next(null, station);
  1842. })
  1843. .catch(next);
  1844. },
  1845. (station, next) => {
  1846. if (!station) return next("Station not found.");
  1847. if (station.type !== "community") return next("Station is not a community station.");
  1848. return async.each(
  1849. station.queue,
  1850. (queueSong, next) => {
  1851. if (queueSong.songId === songId) return next(true);
  1852. return next();
  1853. },
  1854. err => {
  1855. if (err === true) return next();
  1856. return next("Song is not currently in the queue.");
  1857. }
  1858. );
  1859. },
  1860. next => {
  1861. stationModel.updateOne({ _id: stationId }, { $pull: { queue: { songId } } }, next);
  1862. },
  1863. (res, next) => {
  1864. StationsModule.runJob("UPDATE_STATION", { stationId }, this)
  1865. .then(station => {
  1866. next(null, station);
  1867. })
  1868. .catch(next);
  1869. }
  1870. ],
  1871. async err => {
  1872. if (err) {
  1873. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  1874. this.log(
  1875. "ERROR",
  1876. "STATIONS_REMOVE_SONG_TO_QUEUE",
  1877. `Removing song "${songId}" from station "${stationId}" queue failed. "${err}"`
  1878. );
  1879. return cb({ status: "failure", message: err });
  1880. }
  1881. this.log(
  1882. "SUCCESS",
  1883. "STATIONS_REMOVE_SONG_TO_QUEUE",
  1884. `Removed song "${songId}" from station "${stationId}" successfully.`
  1885. );
  1886. CacheModule.runJob("PUB", {
  1887. channel: "station.queueUpdate",
  1888. value: stationId
  1889. });
  1890. return cb({
  1891. status: "success",
  1892. message: "Successfully removed song from queue."
  1893. });
  1894. }
  1895. );
  1896. }),
  1897. /**
  1898. * Gets the queue from a station
  1899. *
  1900. * @param {object} session - user session
  1901. * @param {string} stationId - the station id
  1902. * @param {Function} cb - callback
  1903. */
  1904. getQueue(session, stationId, cb) {
  1905. async.waterfall(
  1906. [
  1907. next => {
  1908. StationsModule.runJob("GET_STATION", { stationId }, this)
  1909. .then(station => {
  1910. next(null, station);
  1911. })
  1912. .catch(next);
  1913. },
  1914. (station, next) => {
  1915. if (!station) return next("Station not found.");
  1916. if (station.type !== "community") return next("Station is not a community station.");
  1917. return next(null, station);
  1918. },
  1919. (station, next) => {
  1920. StationsModule.runJob(
  1921. "CAN_USER_VIEW_STATION",
  1922. {
  1923. station,
  1924. userId: session.userId
  1925. },
  1926. this
  1927. )
  1928. .then(canView => {
  1929. if (canView) return next(null, station);
  1930. return next("Insufficient permissions.");
  1931. })
  1932. .catch(err => next(err));
  1933. }
  1934. ],
  1935. async (err, station) => {
  1936. if (err) {
  1937. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  1938. this.log(
  1939. "ERROR",
  1940. "STATIONS_GET_QUEUE",
  1941. `Getting queue for station "${stationId}" failed. "${err}"`
  1942. );
  1943. return cb({ status: "failure", message: err });
  1944. }
  1945. this.log("SUCCESS", "STATIONS_GET_QUEUE", `Got queue for station "${stationId}" successfully.`);
  1946. return cb({
  1947. status: "success",
  1948. message: "Successfully got queue.",
  1949. queue: station.queue
  1950. });
  1951. }
  1952. );
  1953. },
  1954. /**
  1955. * Selects a private playlist for a station
  1956. *
  1957. * @param session
  1958. * @param stationId - the station id
  1959. * @param playlistId - the private playlist id
  1960. * @param cb
  1961. */
  1962. selectPrivatePlaylist: isOwnerRequired(async function selectPrivatePlaylist(session, stationId, playlistId, cb) {
  1963. const stationModel = await DBModule.runJob(
  1964. "GET_MODEL",
  1965. {
  1966. modelName: "station"
  1967. },
  1968. this
  1969. );
  1970. const playlistModel = await DBModule.runJob(
  1971. "GET_MODEL",
  1972. {
  1973. modelName: "playlist"
  1974. },
  1975. this
  1976. );
  1977. async.waterfall(
  1978. [
  1979. next => {
  1980. StationsModule.runJob("GET_STATION", { stationId }, this)
  1981. .then(station => {
  1982. next(null, station);
  1983. })
  1984. .catch(next);
  1985. },
  1986. (station, next) => {
  1987. if (!station) return next("Station not found.");
  1988. if (station.type !== "community") return next("Station is not a community station.");
  1989. if (station.privatePlaylist === playlistId)
  1990. return next("That private playlist is already selected.");
  1991. return playlistModel.findOne({ _id: playlistId }, next);
  1992. },
  1993. (playlist, next) => {
  1994. if (!playlist) return next("Playlist not found.");
  1995. const currentSongIndex = playlist.songs.length > 0 ? playlist.songs.length - 1 : 0;
  1996. return stationModel.updateOne(
  1997. { _id: stationId },
  1998. {
  1999. $set: {
  2000. privatePlaylist: playlistId,
  2001. currentSongIndex
  2002. }
  2003. },
  2004. { runValidators: true },
  2005. next
  2006. );
  2007. },
  2008. (res, next) => {
  2009. StationsModule.runJob("UPDATE_STATION", { stationId }, this)
  2010. .then(station => {
  2011. next(null, station);
  2012. })
  2013. .catch(next);
  2014. }
  2015. ],
  2016. async (err, station) => {
  2017. if (err) {
  2018. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  2019. this.log(
  2020. "ERROR",
  2021. "STATIONS_SELECT_PRIVATE_PLAYLIST",
  2022. `Selecting private playlist "${playlistId}" for station "${stationId}" failed. "${err}"`
  2023. );
  2024. return cb({ status: "failure", message: err });
  2025. }
  2026. this.log(
  2027. "SUCCESS",
  2028. "STATIONS_SELECT_PRIVATE_PLAYLIST",
  2029. `Selected private playlist "${playlistId}" for station "${stationId}" successfully.`
  2030. );
  2031. NotificationsModule.runJob("UNSCHEDULE", {
  2032. name: `stations.nextSong?id${stationId}`
  2033. });
  2034. if (!station.partyMode) StationsModule.runJob("SKIP_STATION", { stationId });
  2035. CacheModule.runJob("PUB", {
  2036. channel: "privatePlaylist.selected",
  2037. value: {
  2038. playlistId,
  2039. stationId
  2040. }
  2041. });
  2042. return cb({
  2043. status: "success",
  2044. message: "Successfully selected playlist."
  2045. });
  2046. }
  2047. );
  2048. }),
  2049. favoriteStation: isLoginRequired(async function favoriteStation(session, stationId, cb) {
  2050. const userModel = await DBModule.runJob("GET_MODEL", { modelName: "user" }, this);
  2051. async.waterfall(
  2052. [
  2053. next => {
  2054. StationsModule.runJob("GET_STATION", { stationId }, this)
  2055. .then(station => {
  2056. next(null, station);
  2057. })
  2058. .catch(next);
  2059. },
  2060. (station, next) => {
  2061. if (!station) return next("Station not found.");
  2062. return StationsModule.runJob(
  2063. "CAN_USER_VIEW_STATION",
  2064. {
  2065. station,
  2066. userId: session.userId
  2067. },
  2068. this
  2069. )
  2070. .then(canView => {
  2071. if (canView) return next();
  2072. return next("Insufficient permissions.");
  2073. })
  2074. .catch(err => next(err));
  2075. },
  2076. next => {
  2077. userModel.updateOne({ _id: session.userId }, { $addToSet: { favoriteStations: stationId } }, next);
  2078. },
  2079. (res, next) => {
  2080. if (res.nModified === 0) return next("The station was already favorited.");
  2081. return next();
  2082. }
  2083. ],
  2084. async err => {
  2085. if (err) {
  2086. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  2087. this.log("ERROR", "FAVORITE_STATION", `Favoriting station "${stationId}" failed. "${err}"`);
  2088. return cb({ status: "failure", message: err });
  2089. }
  2090. this.log("SUCCESS", "FAVORITE_STATION", `Favorited station "${stationId}" successfully.`);
  2091. CacheModule.runJob("PUB", {
  2092. channel: "user.favoritedStation",
  2093. value: {
  2094. userId: session.userId,
  2095. stationId
  2096. }
  2097. });
  2098. return cb({
  2099. status: "success",
  2100. message: "Succesfully favorited station."
  2101. });
  2102. }
  2103. );
  2104. }),
  2105. unfavoriteStation: isLoginRequired(async function unfavoriteStation(session, stationId, cb) {
  2106. const userModel = await DBModule.runJob("GET_MODEL", { modelName: "user" }, this);
  2107. async.waterfall(
  2108. [
  2109. next => {
  2110. userModel.updateOne({ _id: session.userId }, { $pull: { favoriteStations: stationId } }, next);
  2111. },
  2112. (res, next) => {
  2113. if (res.nModified === 0) return next("The station wasn't favorited.");
  2114. return next();
  2115. }
  2116. ],
  2117. async err => {
  2118. if (err) {
  2119. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  2120. this.log("ERROR", "UNFAVORITE_STATION", `Unfavoriting station "${stationId}" failed. "${err}"`);
  2121. return cb({ status: "failure", message: err });
  2122. }
  2123. this.log("SUCCESS", "UNFAVORITE_STATION", `Unfavorited station "${stationId}" successfully.`);
  2124. CacheModule.runJob("PUB", {
  2125. channel: "user.unfavoritedStation",
  2126. value: {
  2127. userId: session.userId,
  2128. stationId
  2129. }
  2130. });
  2131. return cb({
  2132. status: "success",
  2133. message: "Succesfully unfavorited station."
  2134. });
  2135. }
  2136. );
  2137. })
  2138. };