stations.js 75 KB

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