stations.js 68 KB

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