stations.js 73 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829
  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 cb
  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. async () => {
  943. const response = await StationsModule.stationHistoryModel
  944. .find({ stationId }, { documentVersion: 0, __v: 0 })
  945. .sort({ "payload.skippedAt": -1 })
  946. .limit(250);
  947. return response;
  948. }
  949. ],
  950. async (err, history) => {
  951. if (err) {
  952. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  953. this.log(
  954. "ERROR",
  955. "GET_STATION_HISTORY",
  956. `Getting station history for station "${stationId}" failed. "${err}"`
  957. );
  958. return cb({ status: "error", message: err });
  959. }
  960. this.log(
  961. "SUCCESS",
  962. "GET_STATION_HISTORY",
  963. `Got station history for station "${stationId}" successfully.`
  964. );
  965. return cb({ status: "success", data: { history } });
  966. }
  967. );
  968. },
  969. getStationAutofillPlaylistsById(session, stationId, cb) {
  970. async.waterfall(
  971. [
  972. next => {
  973. StationsModule.runJob("GET_STATION", { stationId }, this)
  974. .then(station => {
  975. next(null, station);
  976. })
  977. .catch(next);
  978. },
  979. (station, next) => {
  980. if (!station) return next("Station not found.");
  981. return StationsModule.runJob(
  982. "CAN_USER_VIEW_STATION",
  983. {
  984. station,
  985. userId: session.userId
  986. },
  987. this
  988. )
  989. .then(canView => {
  990. if (!canView) next("Not allowed to get station.");
  991. else next(null, station);
  992. })
  993. .catch(err => next(err));
  994. },
  995. (station, next) => {
  996. const playlists = [];
  997. async.eachLimit(
  998. station.autofill.playlists,
  999. 1,
  1000. (playlistId, next) => {
  1001. PlaylistsModule.runJob("GET_PLAYLIST", { playlistId }, this)
  1002. .then(playlist => {
  1003. playlists.push(playlist);
  1004. next();
  1005. })
  1006. .catch(() => {
  1007. playlists.push(null);
  1008. next();
  1009. });
  1010. },
  1011. err => {
  1012. next(err, playlists);
  1013. }
  1014. );
  1015. }
  1016. ],
  1017. async (err, playlists) => {
  1018. if (err) {
  1019. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  1020. this.log(
  1021. "ERROR",
  1022. "GET_STATION_AUTOFILL_PLAYLISTS_BY_ID",
  1023. `Getting station "${stationId}"'s autofilling playlists failed. "${err}"`
  1024. );
  1025. return cb({ status: "error", message: err });
  1026. }
  1027. this.log(
  1028. "SUCCESS",
  1029. "GET_STATION_AUTOFILL_PLAYLISTS_BY_ID",
  1030. `Got station "${stationId}"'s autofilling playlists successfully.`
  1031. );
  1032. return cb({ status: "success", data: { playlists } });
  1033. }
  1034. );
  1035. },
  1036. getStationBlacklistById(session, stationId, cb) {
  1037. async.waterfall(
  1038. [
  1039. next => {
  1040. StationsModule.runJob("GET_STATION", { stationId }, this)
  1041. .then(station => {
  1042. next(null, station);
  1043. })
  1044. .catch(next);
  1045. },
  1046. (station, next) => {
  1047. if (!station) return next("Station not found.");
  1048. return StationsModule.runJob(
  1049. "CAN_USER_VIEW_STATION",
  1050. {
  1051. station,
  1052. userId: session.userId
  1053. },
  1054. this
  1055. )
  1056. .then(canView => {
  1057. if (!canView) next("Not allowed to get station.");
  1058. else next(null, station);
  1059. })
  1060. .catch(err => next(err));
  1061. },
  1062. (station, next) => {
  1063. const playlists = [];
  1064. async.eachLimit(
  1065. station.blacklist,
  1066. 1,
  1067. (playlistId, next) => {
  1068. PlaylistsModule.runJob("GET_PLAYLIST", { playlistId }, this)
  1069. .then(playlist => {
  1070. playlists.push(playlist);
  1071. next();
  1072. })
  1073. .catch(() => {
  1074. playlists.push(null);
  1075. next();
  1076. });
  1077. },
  1078. err => {
  1079. next(err, playlists);
  1080. }
  1081. );
  1082. }
  1083. ],
  1084. async (err, playlists) => {
  1085. if (err) {
  1086. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  1087. this.log(
  1088. "ERROR",
  1089. "GET_STATION_BLACKLIST_BY_ID",
  1090. `Getting station "${stationId}"'s blacklist failed. "${err}"`
  1091. );
  1092. return cb({ status: "error", message: err });
  1093. }
  1094. this.log(
  1095. "SUCCESS",
  1096. "GET_STATION_BLACKLIST_BY_ID",
  1097. `Got station "${stationId}"'s blacklist successfully.`
  1098. );
  1099. return cb({ status: "success", data: { playlists } });
  1100. }
  1101. );
  1102. },
  1103. /**
  1104. * Toggle votes to skip a station
  1105. *
  1106. * @param session
  1107. * @param stationId - the station id
  1108. * @param cb
  1109. */
  1110. toggleSkipVote: isLoginRequired(async function toggleSkipVote(session, stationId, cb) {
  1111. const stationModel = await DBModule.runJob("GET_MODEL", { modelName: "station" }, this);
  1112. async.waterfall(
  1113. [
  1114. next => {
  1115. StationsModule.runJob("GET_STATION", { stationId }, this)
  1116. .then(station => next(null, station))
  1117. .catch(next);
  1118. },
  1119. (station, next) => {
  1120. if (!station) return next("Station not found.");
  1121. return StationsModule.runJob("CAN_USER_VIEW_STATION", { station, userId: session.userId }, this)
  1122. .then(canView => {
  1123. if (canView) return next(null, station);
  1124. return next("Insufficient permissions.");
  1125. })
  1126. .catch(err => next(err));
  1127. },
  1128. (station, next) => {
  1129. if (!station.currentSong) return next("There is currently no song to skip.");
  1130. const query = {};
  1131. const voted = station.currentSong.skipVotes.indexOf(session.userId) !== -1;
  1132. if (!voted) query.$push = { "currentSong.skipVotes": session.userId };
  1133. else query.$pull = { "currentSong.skipVotes": session.userId };
  1134. return stationModel.updateOne({ _id: stationId }, query, err => {
  1135. if (err) next(err);
  1136. else next(null, !voted);
  1137. });
  1138. },
  1139. (voted, next) => {
  1140. StationsModule.runJob("UPDATE_STATION", { stationId }, this)
  1141. .then(station => {
  1142. next(null, station, voted);
  1143. })
  1144. .catch(next);
  1145. },
  1146. (station, voted, next) => {
  1147. if (!station) return next("Station not found.");
  1148. return StationsModule.runJob("PROCESS_SKIP_VOTES", { stationId }, this)
  1149. .then(() => next(null, voted))
  1150. .catch(next);
  1151. }
  1152. ],
  1153. async (err, voted) => {
  1154. if (err) {
  1155. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  1156. this.log(
  1157. "ERROR",
  1158. "STATIONS_TOGGLE_SKIP_VOTE",
  1159. `Toggling skip vote on "${stationId}" failed. "${err}"`
  1160. );
  1161. return cb({ status: "error", message: err });
  1162. }
  1163. this.log("SUCCESS", "STATIONS_TOGGLE_SKIP_VOTE", `Toggling skip vote on "${stationId}" successful.`);
  1164. CacheModule.runJob("PUB", {
  1165. channel: "station.toggleSkipVote",
  1166. value: { stationId, voted, userId: session.userId }
  1167. });
  1168. return cb({
  1169. status: "success",
  1170. message: voted
  1171. ? "Successfully voted to skip the song."
  1172. : "Successfully removed vote to skip the song.",
  1173. data: { voted }
  1174. });
  1175. }
  1176. );
  1177. }),
  1178. /**
  1179. * Force skips a station
  1180. *
  1181. * @param {object} session - user session
  1182. * @param {string} stationId - the station id
  1183. * @param {Function} cb - callback
  1184. */
  1185. forceSkip(session, stationId, cb) {
  1186. async.waterfall(
  1187. [
  1188. next => {
  1189. hasPermission("stations.skip", session, stationId)
  1190. .then(() => next())
  1191. .catch(next);
  1192. },
  1193. next => {
  1194. StationsModule.runJob("GET_STATION", { stationId }, this)
  1195. .then(station => {
  1196. next(null, station);
  1197. })
  1198. .catch(next);
  1199. },
  1200. (station, next) => {
  1201. if (!station) return next("Station not found.");
  1202. return next();
  1203. }
  1204. ],
  1205. async err => {
  1206. if (err) {
  1207. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  1208. this.log("ERROR", "STATIONS_FORCE_SKIP", `Force skipping station "${stationId}" failed. "${err}"`);
  1209. return cb({ status: "error", message: err });
  1210. }
  1211. StationsModule.runJob("SKIP_STATION", { stationId, natural: false, skipReason: "force_skip" });
  1212. this.log("SUCCESS", "STATIONS_FORCE_SKIP", `Force skipped station "${stationId}" successfully.`);
  1213. return cb({
  1214. status: "success",
  1215. message: "Successfully skipped station."
  1216. });
  1217. }
  1218. );
  1219. },
  1220. /**
  1221. * Leaves the user's current station
  1222. *
  1223. * @param {object} session - user session
  1224. * @param {string} stationId - id of station to leave
  1225. * @param {Function} cb - callback
  1226. */
  1227. leave(session, stationId, cb) {
  1228. async.waterfall(
  1229. [
  1230. next => {
  1231. StationsModule.runJob("GET_STATION", { stationId }, this)
  1232. .then(station => next(null, station))
  1233. .catch(next);
  1234. },
  1235. (station, next) => {
  1236. if (!station) return next("Station not found.");
  1237. return next();
  1238. }
  1239. ],
  1240. async (err, userCount) => {
  1241. if (err) {
  1242. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  1243. this.log("ERROR", "STATIONS_LEAVE", `Leaving station "${stationId}" failed. "${err}"`);
  1244. return cb({ status: "error", message: err });
  1245. }
  1246. this.log("SUCCESS", "STATIONS_LEAVE", `Left station "${stationId}" successfully.`);
  1247. WSModule.runJob("SOCKET_LEAVE_ROOM", { socketId: session.socketId, room: `station.${stationId}` });
  1248. WSModule.runJob("SOCKETS_LEAVE_SONG_ROOMS", { sockets: [session.socketId] });
  1249. delete StationsModule.userList[session.socketId];
  1250. return cb({
  1251. status: "success",
  1252. message: "Successfully left station.",
  1253. data: { userCount }
  1254. });
  1255. }
  1256. );
  1257. },
  1258. /**
  1259. * Updates a station's settings
  1260. *
  1261. * @param {object} session - user session
  1262. * @param {string} stationId - the station id
  1263. * @param {object} newStation - updated station object
  1264. * @param {Function} cb - callback
  1265. */
  1266. async update(session, stationId, newStation, cb) {
  1267. const stationModel = await DBModule.runJob("GET_MODEL", { modelName: "station" }, this);
  1268. const playlistModel = await DBModule.runJob("GET_MODEL", { modelName: "playlist" }, this);
  1269. async.waterfall(
  1270. [
  1271. next => {
  1272. hasPermission("stations.update", session, stationId)
  1273. .then(() => next())
  1274. .catch(next);
  1275. },
  1276. next => {
  1277. if (newStation.requests.autorequestLimit > newStation.requests.limit)
  1278. next("The autorequest limit cannot be higher than the request limit.");
  1279. else next();
  1280. },
  1281. next => {
  1282. stationModel.findOne({ _id: stationId }, next);
  1283. },
  1284. (previousStation, next) => {
  1285. const { name, displayName, description, privacy, requests, autofill, theme, skipVoteThreshold } =
  1286. newStation;
  1287. const { enabled, limit, mode } = autofill;
  1288. // This object makes sure only certain properties can be changed by a user
  1289. const setObject = {
  1290. name,
  1291. displayName,
  1292. description,
  1293. privacy,
  1294. requests,
  1295. "autofill.enabled": enabled,
  1296. "autofill.limit": limit,
  1297. "autofill.mode": mode,
  1298. theme,
  1299. skipVoteThreshold
  1300. };
  1301. stationModel.updateOne({ _id: stationId }, { $set: setObject }, { runValidators: true }, err => {
  1302. next(err, previousStation);
  1303. });
  1304. },
  1305. (previousStation, next) => {
  1306. StationsModule.runJob("UPDATE_STATION", { stationId }, this)
  1307. .then(station => next(null, station, previousStation))
  1308. .catch(next);
  1309. },
  1310. (station, previousStation, next) => {
  1311. if (
  1312. newStation.autofill.enabled &&
  1313. JSON.stringify(newStation.autofill) !== JSON.stringify(previousStation.autofill)
  1314. )
  1315. StationsModule.runJob("AUTOFILL_STATION", { stationId }, this)
  1316. .then(() => {
  1317. CacheModule.runJob("PUB", {
  1318. channel: "station.queueUpdate",
  1319. value: stationId
  1320. })
  1321. .then(() => next(null, station, previousStation))
  1322. .catch(next);
  1323. })
  1324. .catch(err => {
  1325. if (err === "Autofill is disabled in this station" || err === "Autofill limit reached")
  1326. next(null, station, previousStation);
  1327. else next(err);
  1328. });
  1329. else next(null, station, previousStation);
  1330. },
  1331. (station, previousStation, next) => {
  1332. playlistModel.updateOne(
  1333. { _id: station.playlist },
  1334. { $set: { displayName: `Station - ${station.displayName}` } },
  1335. err => {
  1336. next(err, station, previousStation);
  1337. }
  1338. );
  1339. }
  1340. ],
  1341. async (err, station, previousStation) => {
  1342. if (err) {
  1343. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  1344. this.log("ERROR", "STATIONS_UPDATE", `Updating station "${stationId}" failed. "${err}"`);
  1345. return cb({ status: "error", message: err });
  1346. }
  1347. this.log("SUCCESS", "STATIONS_UPDATE", `Updated station "${stationId}" successfully.`);
  1348. CacheModule.runJob("PUB", {
  1349. channel: "station.updated",
  1350. value: { stationId, previousStation }
  1351. });
  1352. return cb({
  1353. status: "success",
  1354. message: "Successfully updated the station."
  1355. });
  1356. }
  1357. );
  1358. },
  1359. /**
  1360. * Pauses a station
  1361. *
  1362. * @param {object} session - user session
  1363. * @param {string} stationId - the station id
  1364. * @param {Function} cb - callback
  1365. */
  1366. async pause(session, stationId, cb) {
  1367. const stationModel = await DBModule.runJob(
  1368. "GET_MODEL",
  1369. {
  1370. modelName: "station"
  1371. },
  1372. this
  1373. );
  1374. async.waterfall(
  1375. [
  1376. next => {
  1377. hasPermission("stations.playback.toggle", session, stationId)
  1378. .then(() => next())
  1379. .catch(next);
  1380. },
  1381. next => {
  1382. StationsModule.runJob("GET_STATION", { stationId }, this)
  1383. .then(station => {
  1384. next(null, station);
  1385. })
  1386. .catch(next);
  1387. },
  1388. (station, next) => {
  1389. if (!station) return next("Station not found.");
  1390. if (station.paused) return next("That station was already paused.");
  1391. return stationModel.updateOne(
  1392. { _id: stationId },
  1393. { $set: { paused: true, pausedAt: Date.now() } },
  1394. next
  1395. );
  1396. },
  1397. (res, next) => {
  1398. StationsModule.runJob("UPDATE_STATION", { stationId }, this)
  1399. .then(() => next())
  1400. .catch(next);
  1401. }
  1402. ],
  1403. async err => {
  1404. if (err) {
  1405. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  1406. this.log("ERROR", "STATIONS_PAUSE", `Pausing station "${stationId}" failed. "${err}"`);
  1407. return cb({ status: "error", message: err });
  1408. }
  1409. this.log("SUCCESS", "STATIONS_PAUSE", `Paused station "${stationId}" successfully.`);
  1410. CacheModule.runJob("PUB", {
  1411. channel: "station.pause",
  1412. value: stationId
  1413. });
  1414. NotificationsModule.runJob("UNSCHEDULE", {
  1415. name: `stations.nextSong?id=${stationId}`
  1416. });
  1417. return cb({
  1418. status: "success",
  1419. message: "Successfully paused."
  1420. });
  1421. }
  1422. );
  1423. },
  1424. /**
  1425. * Resumes a station
  1426. *
  1427. * @param {object} session - user session
  1428. * @param {string} stationId - the station id
  1429. * @param {Function} cb - callback
  1430. */
  1431. async resume(session, stationId, cb) {
  1432. const stationModel = await DBModule.runJob(
  1433. "GET_MODEL",
  1434. {
  1435. modelName: "station"
  1436. },
  1437. this
  1438. );
  1439. async.waterfall(
  1440. [
  1441. next => {
  1442. hasPermission("stations.playback.toggle", session, stationId)
  1443. .then(() => next())
  1444. .catch(next);
  1445. },
  1446. next => {
  1447. StationsModule.runJob("GET_STATION", { stationId }, this)
  1448. .then(station => {
  1449. next(null, station);
  1450. })
  1451. .catch(next);
  1452. },
  1453. (station, next) => {
  1454. if (!station) return next("Station not found.");
  1455. if (!station.paused) return next("That station is not paused.");
  1456. station.timePaused += Date.now() - station.pausedAt;
  1457. return stationModel.updateOne(
  1458. { _id: stationId },
  1459. {
  1460. $set: { paused: false },
  1461. $inc: { timePaused: Date.now() - station.pausedAt }
  1462. },
  1463. next
  1464. );
  1465. },
  1466. (res, next) => {
  1467. StationsModule.runJob("UPDATE_STATION", { stationId }, this)
  1468. .then(() => next())
  1469. .catch(next);
  1470. },
  1471. next => {
  1472. StationsModule.runJob("PROCESS_SKIP_VOTES", { stationId }, this)
  1473. .then(() => next())
  1474. .catch(next);
  1475. }
  1476. ],
  1477. async err => {
  1478. if (err) {
  1479. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  1480. this.log("ERROR", "STATIONS_RESUME", `Resuming station "${stationId}" failed. "${err}"`);
  1481. return cb({ status: "error", message: err });
  1482. }
  1483. this.log("SUCCESS", "STATIONS_RESUME", `Resuming station "${stationId}" successfully.`);
  1484. CacheModule.runJob("PUB", {
  1485. channel: "station.resume",
  1486. value: stationId
  1487. });
  1488. return cb({
  1489. status: "success",
  1490. message: "Successfully resumed."
  1491. });
  1492. }
  1493. );
  1494. },
  1495. /**
  1496. * Removes a station
  1497. *
  1498. * @param {object} session - user session
  1499. * @param {string} stationId - the station id
  1500. * @param {Function} cb - callback
  1501. */
  1502. async remove(session, stationId, cb) {
  1503. const stationModel = await DBModule.runJob("GET_MODEL", { modelName: "station" }, this);
  1504. const userModel = await DBModule.runJob("GET_MODEL", { modelName: "user" }, this);
  1505. async.waterfall(
  1506. [
  1507. next => {
  1508. hasPermission("stations.remove", session, stationId)
  1509. .then(() => next())
  1510. .catch(next);
  1511. },
  1512. next => {
  1513. stationModel.findById(stationId, (err, station) => {
  1514. if (err) return next(err);
  1515. return next(null, station);
  1516. });
  1517. },
  1518. (station, next) => {
  1519. stationModel.deleteOne({ _id: stationId }, err => next(err, station));
  1520. },
  1521. (station, next) => {
  1522. CacheModule.runJob("HDEL", { table: "stations", key: stationId }, this)
  1523. .then(() => next(null, station))
  1524. .catch(next);
  1525. },
  1526. // remove the playlist for the station
  1527. (station, next) => {
  1528. if (station.playlist)
  1529. PlaylistsModule.runJob("DELETE_PLAYLIST", { playlistId: station.playlist })
  1530. .then(() => {})
  1531. .catch(next);
  1532. next(null, station);
  1533. },
  1534. // remove reference to the station id in any array of a user's favorite stations
  1535. (station, next) => {
  1536. userModel.updateMany(
  1537. { favoriteStations: stationId },
  1538. { $pull: { favoriteStations: stationId } },
  1539. err => next(err, station)
  1540. );
  1541. }
  1542. ],
  1543. async (err, station) => {
  1544. if (err) {
  1545. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  1546. this.log("ERROR", "STATIONS_REMOVE", `Removing station "${stationId}" failed. "${err}"`);
  1547. return cb({ status: "error", message: err });
  1548. }
  1549. this.log("SUCCESS", "STATIONS_REMOVE", `Removing station "${stationId}" successfully.`);
  1550. CacheModule.runJob("PUB", {
  1551. channel: "station.remove",
  1552. value: stationId
  1553. });
  1554. ActivitiesModule.runJob("ADD_ACTIVITY", {
  1555. userId: session.userId,
  1556. type: "station__remove",
  1557. payload: { message: `Removed a station named ${station.displayName}` }
  1558. });
  1559. ActivitiesModule.runJob("REMOVE_ACTIVITY_REFERENCES", { type: "stationId", stationId });
  1560. return cb({
  1561. status: "success",
  1562. message: "Successfully removed."
  1563. });
  1564. }
  1565. );
  1566. },
  1567. /**
  1568. * Create a station
  1569. *
  1570. * @param session
  1571. * @param data - the station data
  1572. * @param cb
  1573. */
  1574. create: isLoginRequired(async function create(session, data, cb) {
  1575. const stationModel = await DBModule.runJob("GET_MODEL", { modelName: "station" }, this);
  1576. const playlistModel = await DBModule.runJob("GET_MODEL", { modelName: "playlist" }, this);
  1577. data.name = data.name.toLowerCase();
  1578. let blacklist = [
  1579. "about",
  1580. "support",
  1581. "staff",
  1582. "help",
  1583. "news",
  1584. "terms",
  1585. "privacy",
  1586. "profile",
  1587. "c",
  1588. "community",
  1589. "tos",
  1590. "login",
  1591. "register",
  1592. "p",
  1593. "official",
  1594. "o",
  1595. "faq",
  1596. "team",
  1597. "donate",
  1598. "buy",
  1599. "shop",
  1600. "forums",
  1601. "explore",
  1602. "settings",
  1603. "admin",
  1604. "auth",
  1605. "reset_password",
  1606. "backend",
  1607. "api",
  1608. "songs",
  1609. "playlists",
  1610. "playlist",
  1611. "albums",
  1612. "artists",
  1613. "artist",
  1614. "station"
  1615. ];
  1616. if (data.type === "community") blacklist = [...blacklist, ...config.get("blacklistedCommunityStationNames")];
  1617. async.waterfall(
  1618. [
  1619. next => {
  1620. if (!data) return next("Invalid data.");
  1621. return next();
  1622. },
  1623. next => {
  1624. stationModel.findOne(
  1625. {
  1626. $or: [{ name: data.name }, { displayName: new RegExp(`^${data.displayName}$`, "i") }]
  1627. },
  1628. next
  1629. );
  1630. },
  1631. (station, next) => {
  1632. this.log(station);
  1633. if (station) return next("A station with that name or display name already exists.");
  1634. if (blacklist.indexOf(data.name) !== -1)
  1635. return next("That name is blacklisted. Please use a different name.");
  1636. if (data.type === "official")
  1637. return hasPermission("stations.create.official", session)
  1638. .then(() => next())
  1639. .catch(() => next("Insufficient permissions."));
  1640. return next();
  1641. },
  1642. next => {
  1643. const stationId = mongoose.Types.ObjectId();
  1644. playlistModel.create(
  1645. {
  1646. displayName: `Station - ${data.name}`,
  1647. songs: [],
  1648. createdBy: data.type === "official" ? "Musare" : session.userId,
  1649. createdFor: `${stationId}`,
  1650. createdAt: Date.now(),
  1651. type: "station"
  1652. },
  1653. (err, playlist) => {
  1654. next(err, playlist, stationId);
  1655. }
  1656. );
  1657. },
  1658. (playlist, stationId, next) => {
  1659. const { name, displayName, description, type } = data;
  1660. if (type === "official") {
  1661. stationModel.create(
  1662. {
  1663. _id: stationId,
  1664. name,
  1665. displayName,
  1666. description,
  1667. playlist: playlist._id,
  1668. type,
  1669. privacy: "private",
  1670. queue: [],
  1671. currentSong: null
  1672. },
  1673. next
  1674. );
  1675. } else {
  1676. stationModel.create(
  1677. {
  1678. _id: stationId,
  1679. name,
  1680. displayName,
  1681. description,
  1682. playlist: playlist._id,
  1683. type,
  1684. privacy: "private",
  1685. owner: session.userId,
  1686. queue: [],
  1687. currentSong: null
  1688. },
  1689. next
  1690. );
  1691. }
  1692. }
  1693. ],
  1694. async (err, station) => {
  1695. if (err) {
  1696. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  1697. this.log("ERROR", "STATIONS_CREATE", `Creating station failed. "${err}"`);
  1698. cb({ status: "error", message: err });
  1699. } else {
  1700. this.log("SUCCESS", "STATIONS_CREATE", `Created station "${station._id}" successfully.`);
  1701. CacheModule.runJob("PUB", {
  1702. channel: "station.create",
  1703. value: station._id
  1704. });
  1705. ActivitiesModule.runJob("ADD_ACTIVITY", {
  1706. userId: session.userId,
  1707. type: "station__create",
  1708. payload: {
  1709. message: `Created a station named <stationId>${station.displayName}</stationId>`,
  1710. stationId: station._id
  1711. }
  1712. });
  1713. cb({
  1714. status: "success",
  1715. message: "Successfully created station."
  1716. });
  1717. }
  1718. }
  1719. );
  1720. }),
  1721. /**
  1722. * Adds song to station queue
  1723. *
  1724. * @param session
  1725. * @param stationId - the station id
  1726. * @param mediaSource the song id
  1727. * @param cb
  1728. */
  1729. addToQueue: isLoginRequired(async function addToQueue(session, stationId, mediaSource, requestType, cb) {
  1730. async.waterfall(
  1731. [
  1732. next => {
  1733. StationsModule.runJob("GET_STATION", { stationId }, this)
  1734. .then(station => {
  1735. next(null, station);
  1736. })
  1737. .catch(next);
  1738. },
  1739. (station, next) => {
  1740. if (!station) return next("Station not found.");
  1741. if (!station.requests.enabled) return next("Requests are disabled in this station.");
  1742. if (
  1743. station.requests.access === "owner" ||
  1744. (station.requests.access === "user" && station.privacy === "private")
  1745. ) {
  1746. return hasPermission("stations.request", session, stationId)
  1747. .then(() => next(null, station))
  1748. .catch(() => next("You do not have permission to add songs to queue."));
  1749. }
  1750. return next(null, station);
  1751. },
  1752. (station, next) =>
  1753. StationsModule.runJob(
  1754. "CAN_USER_VIEW_STATION",
  1755. {
  1756. station,
  1757. userId: session.userId
  1758. },
  1759. this
  1760. )
  1761. .then(canView => {
  1762. if (canView) return next();
  1763. return next("Insufficient permissions.");
  1764. })
  1765. .catch(err => next(err)),
  1766. next =>
  1767. StationsModule.runJob(
  1768. "ADD_TO_QUEUE",
  1769. {
  1770. stationId,
  1771. mediaSource,
  1772. requestUser: session.userId,
  1773. requestType
  1774. },
  1775. this
  1776. )
  1777. .then(() => next())
  1778. .catch(next)
  1779. ],
  1780. async err => {
  1781. if (err) {
  1782. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  1783. this.log(
  1784. "ERROR",
  1785. "STATIONS_ADD_SONG_TO_QUEUE",
  1786. `Adding song "${mediaSource}" to station "${stationId}" queue failed. "${err}"`
  1787. );
  1788. return cb({ status: "error", message: err });
  1789. }
  1790. this.log(
  1791. "SUCCESS",
  1792. "STATIONS_ADD_SONG_TO_QUEUE",
  1793. `Added song "${mediaSource}" to station "${stationId}" successfully.`
  1794. );
  1795. return cb({
  1796. status: "success",
  1797. message: "Successfully added song to queue."
  1798. });
  1799. }
  1800. );
  1801. }),
  1802. /**
  1803. * Removes song from station queue
  1804. *
  1805. * @param {object} session - user session
  1806. * @param {string} stationId - the station id
  1807. * @param {string} mediaSource - the media source
  1808. * @param {Function} cb - callback
  1809. */
  1810. async removeFromQueue(session, stationId, mediaSource, cb) {
  1811. async.waterfall(
  1812. [
  1813. next => {
  1814. hasPermission("stations.queue.remove", session, stationId)
  1815. .then(() => next())
  1816. .catch(next);
  1817. },
  1818. next => {
  1819. if (!mediaSource) return next("Invalid media source.");
  1820. return StationsModule.runJob("REMOVE_FROM_QUEUE", { stationId, mediaSource }, this)
  1821. .then(() => next())
  1822. .catch(next);
  1823. }
  1824. ],
  1825. async err => {
  1826. if (err) {
  1827. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  1828. this.log(
  1829. "ERROR",
  1830. "STATIONS_REMOVE_SONG_TO_QUEUE",
  1831. `Removing song "${mediaSource}" from station "${stationId}" queue failed. "${err}"`
  1832. );
  1833. return cb({ status: "error", message: err });
  1834. }
  1835. this.log(
  1836. "SUCCESS",
  1837. "STATIONS_REMOVE_SONG_TO_QUEUE",
  1838. `Removed song "${mediaSource}" from station "${stationId}" successfully.`
  1839. );
  1840. return cb({
  1841. status: "success",
  1842. message: "Successfully removed song from queue."
  1843. });
  1844. }
  1845. );
  1846. },
  1847. /**
  1848. * Gets the queue from a station
  1849. *
  1850. * @param {object} session - user session
  1851. * @param {string} stationId - the station id
  1852. * @param {Function} cb - callback
  1853. */
  1854. getQueue(session, stationId, cb) {
  1855. async.waterfall(
  1856. [
  1857. next => {
  1858. StationsModule.runJob("GET_STATION", { stationId }, this)
  1859. .then(station => next(null, station))
  1860. .catch(next);
  1861. },
  1862. (station, next) => {
  1863. if (!station) return next("Station not found.");
  1864. return next(null, station);
  1865. },
  1866. (station, next) => {
  1867. StationsModule.runJob("CAN_USER_VIEW_STATION", { station, userId: session.userId }, this)
  1868. .then(canView => {
  1869. if (canView) return next(null, station);
  1870. return next("Insufficient permissions.");
  1871. })
  1872. .catch(err => next(err));
  1873. },
  1874. (station, next) => next(null, station.queue)
  1875. ],
  1876. async (err, queue) => {
  1877. if (err) {
  1878. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  1879. this.log(
  1880. "ERROR",
  1881. "STATIONS_GET_QUEUE",
  1882. `Getting queue for station "${stationId}" failed. "${err}"`
  1883. );
  1884. return cb({ status: "error", message: err });
  1885. }
  1886. this.log("SUCCESS", "STATIONS_GET_QUEUE", `Got queue for station "${stationId}" successfully.`);
  1887. return cb({
  1888. status: "success",
  1889. message: "Successfully got queue.",
  1890. data: { queue }
  1891. });
  1892. }
  1893. );
  1894. },
  1895. /**
  1896. * Reposition a song in station queue
  1897. *
  1898. * @param {object} session - user session
  1899. * @param {string} stationId - the station id
  1900. * @param {object} song - contains details about the song that is to be repositioned
  1901. * @param {string} song.mediaSource - the media source of the song
  1902. * @param {number} song.newIndex - the new position for the song in the queue
  1903. * @param {number} song.oldIndex - the old position of the song in the queue
  1904. * @param {Function} cb - callback
  1905. */
  1906. async repositionSongInQueue(session, stationId, song, cb) {
  1907. const stationModel = await DBModule.runJob("GET_MODEL", { modelName: "station" }, this);
  1908. async.waterfall(
  1909. [
  1910. next => {
  1911. hasPermission("stations.queue.reposition", session, stationId)
  1912. .then(() => next())
  1913. .catch(next);
  1914. },
  1915. next => {
  1916. if (!song || !song.mediaSource) return next("You must provide a song to reposition.");
  1917. return next();
  1918. },
  1919. // remove song from queue
  1920. next => {
  1921. stationModel.updateOne(
  1922. { _id: stationId },
  1923. { $pull: { queue: { mediaSource: song.mediaSource } } },
  1924. next
  1925. );
  1926. },
  1927. // add song back to queue (in new position)
  1928. (res, next) => {
  1929. stationModel.updateOne(
  1930. { _id: stationId },
  1931. { $push: { queue: { $each: [song], $position: song.newIndex } } },
  1932. err => next(err)
  1933. );
  1934. },
  1935. // update the cache representation of the station
  1936. next => {
  1937. StationsModule.runJob("UPDATE_STATION", { stationId }, this)
  1938. .then(station => next(null, station))
  1939. .catch(next);
  1940. }
  1941. ],
  1942. async err => {
  1943. if (err) {
  1944. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  1945. this.log(
  1946. "ERROR",
  1947. "STATIONS_REPOSITION_SONG_IN_QUEUE",
  1948. `Repositioning song ${song.mediaSource} in queue of station "${stationId}" failed. "${err}"`
  1949. );
  1950. return cb({ status: "error", message: err });
  1951. }
  1952. this.log(
  1953. "SUCCESS",
  1954. "STATIONS_REPOSITION_SONG_IN_QUEUE",
  1955. `Repositioned song ${song.mediaSource} in queue of station "${stationId}" successfully.`
  1956. );
  1957. CacheModule.runJob("PUB", {
  1958. channel: "station.repositionSongInQueue",
  1959. value: {
  1960. song: {
  1961. mediaSource: song.mediaSource,
  1962. oldIndex: song.oldIndex,
  1963. newIndex: song.newIndex
  1964. },
  1965. stationId
  1966. }
  1967. });
  1968. return cb({
  1969. status: "success",
  1970. message: "Successfully repositioned song in queue."
  1971. });
  1972. }
  1973. );
  1974. },
  1975. /**
  1976. * Autofill a playlist in a station
  1977. *
  1978. * @param {object} session - user session
  1979. * @param {string} stationId - the station id
  1980. * @param {string} playlistId - the playlist id
  1981. * @param {Function} cb - callback
  1982. */
  1983. async autofillPlaylist(session, stationId, playlistId, cb) {
  1984. async.waterfall(
  1985. [
  1986. next => {
  1987. hasPermission("stations.autofill", session, stationId)
  1988. .then(() => next())
  1989. .catch(next);
  1990. },
  1991. next => {
  1992. StationsModule.runJob("GET_STATION", { stationId }, this)
  1993. .then(station => next(null, station))
  1994. .catch(next);
  1995. },
  1996. (station, next) => {
  1997. PlaylistsModule.runJob("GET_PLAYLIST", { playlistId }, this)
  1998. .then(playlist => next(null, station, playlist))
  1999. .catch(next);
  2000. },
  2001. (station, playlist, next) => {
  2002. if (!playlist) return next("Playlist not found");
  2003. if (playlist.privacy !== "public" && playlist.createdBy !== session.userId)
  2004. return hasPermission("playlists.get", session)
  2005. .then(() => next(null, station, playlist))
  2006. .catch(() => next("User unauthorised to view playlist."));
  2007. return next(null, station, playlist);
  2008. },
  2009. (station, playlist, next) => {
  2010. if (!station) return next("Station not found.");
  2011. if (station.type === "official" && ["genre", "admin"].indexOf(playlist.type) === -1)
  2012. return next("Official statuibs are only allowed to autofill genre and admin playlists.");
  2013. if (
  2014. station.type === "community" &&
  2015. ["user", "user-liked", "user-disliked", "genre", "admin"].indexOf(playlist.type) === -1
  2016. )
  2017. return next("Community stations are only allowed to autofill user, genre and admin playlists.");
  2018. if (station.autofill.playlists.indexOf(playlistId) !== -1)
  2019. return next("That playlist is already autofilling.");
  2020. if (station.autofill.mode === "sequential" && station.autofill.playlists.length > 0)
  2021. return next("Error: Only 1 playlist can be autofilling in sequential mode.");
  2022. return next();
  2023. },
  2024. next => {
  2025. StationsModule.runJob("AUTOFILL_PLAYLIST", { stationId, playlistId }, this)
  2026. .then(() => {
  2027. next();
  2028. })
  2029. .catch(next);
  2030. }
  2031. ],
  2032. async err => {
  2033. if (err) {
  2034. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  2035. this.log(
  2036. "ERROR",
  2037. "STATIONS_AUTOFILL_PLAYLIST",
  2038. `Including playlist "${playlistId}" for station "${stationId}" failed. "${err}"`
  2039. );
  2040. return cb({ status: "error", message: err });
  2041. }
  2042. this.log(
  2043. "SUCCESS",
  2044. "STATIONS_AUTOFILL_PLAYLIST",
  2045. `Including playlist "${playlistId}" for station "${stationId}" successfully.`
  2046. );
  2047. PlaylistsModule.runJob("AUTOFILL_STATION_PLAYLIST", { stationId }).then().catch();
  2048. CacheModule.runJob("PUB", {
  2049. channel: "station.autofillPlaylist",
  2050. value: {
  2051. playlistId,
  2052. stationId
  2053. }
  2054. });
  2055. return cb({
  2056. status: "success",
  2057. message: "Successfully added autofill playlist."
  2058. });
  2059. }
  2060. );
  2061. },
  2062. /**
  2063. * Remove autofilled playlist from a station
  2064. *
  2065. * @param {object} session - user session
  2066. * @param {string} stationId - the station id
  2067. * @param {string} playlistId - the playlist id
  2068. * @param {Function} cb - callback
  2069. */
  2070. async removeAutofillPlaylist(session, stationId, playlistId, cb) {
  2071. async.waterfall(
  2072. [
  2073. next => {
  2074. hasPermission("stations.autofill", session, stationId)
  2075. .then(() => next())
  2076. .catch(next);
  2077. },
  2078. next => {
  2079. StationsModule.runJob("GET_STATION", { stationId }, this)
  2080. .then(station => next(null, station))
  2081. .catch(next);
  2082. },
  2083. (station, next) => {
  2084. if (!station) return next("Station not found.");
  2085. if (station.autofill.playlists.indexOf(playlistId) === -1)
  2086. return next("That playlist is not autofilling.");
  2087. return next();
  2088. },
  2089. next => {
  2090. StationsModule.runJob("REMOVE_AUTOFILL_PLAYLIST", { stationId, playlistId }, this)
  2091. .then(() => {
  2092. next();
  2093. })
  2094. .catch(next);
  2095. }
  2096. ],
  2097. async err => {
  2098. if (err) {
  2099. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  2100. this.log(
  2101. "ERROR",
  2102. "STATIONS_REMOVE_AUTOFILL_PLAYLIST",
  2103. `Removing autofill playlist "${playlistId}" for station "${stationId}" failed. "${err}"`
  2104. );
  2105. return cb({ status: "error", message: err });
  2106. }
  2107. this.log(
  2108. "SUCCESS",
  2109. "STATIONS_REMOVE_AUTOFILL_PLAYLIST",
  2110. `Removing autofill playlist "${playlistId}" for station "${stationId}" successfully.`
  2111. );
  2112. PlaylistsModule.runJob("AUTOFILL_STATION_PLAYLIST", { stationId }).then().catch();
  2113. CacheModule.runJob("PUB", {
  2114. channel: "station.removedAutofillPlaylist",
  2115. value: {
  2116. playlistId,
  2117. stationId
  2118. }
  2119. });
  2120. return cb({
  2121. status: "success",
  2122. message: "Successfully removed autofill playlist."
  2123. });
  2124. }
  2125. );
  2126. },
  2127. /**
  2128. * Blacklist a playlist in a station
  2129. *
  2130. * @param {object} session - user session
  2131. * @param {string} stationId - the station id
  2132. * @param {string} playlistId - the playlist id
  2133. * @param {Function} cb - callback
  2134. */
  2135. async blacklistPlaylist(session, stationId, playlistId, cb) {
  2136. async.waterfall(
  2137. [
  2138. next => {
  2139. hasPermission("stations.blacklist", session, stationId)
  2140. .then(() => next())
  2141. .catch(next);
  2142. },
  2143. next => {
  2144. StationsModule.runJob("GET_STATION", { stationId }, this)
  2145. .then(station => next(null, station))
  2146. .catch(next);
  2147. },
  2148. (station, next) => {
  2149. if (!station) return next("Station not found.");
  2150. if (station.blacklist.indexOf(playlistId) !== -1)
  2151. return next("That playlist is already blacklisted.");
  2152. return next();
  2153. },
  2154. next => {
  2155. StationsModule.runJob("BLACKLIST_PLAYLIST", { stationId, playlistId }, this)
  2156. .then(() => {
  2157. next();
  2158. })
  2159. .catch(next);
  2160. }
  2161. ],
  2162. async err => {
  2163. if (err) {
  2164. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  2165. this.log(
  2166. "ERROR",
  2167. "STATIONS_BLACKLIST_PLAYLIST",
  2168. `Blacklisting playlist "${playlistId}" for station "${stationId}" failed. "${err}"`
  2169. );
  2170. return cb({ status: "error", message: err });
  2171. }
  2172. this.log(
  2173. "SUCCESS",
  2174. "STATIONS_BLACKLIST_PLAYLIST",
  2175. `Blacklisting playlist "${playlistId}" for station "${stationId}" successfully.`
  2176. );
  2177. PlaylistsModule.runJob("AUTOFILL_STATION_PLAYLIST", { stationId }).then().catch();
  2178. CacheModule.runJob("PUB", {
  2179. channel: "station.blacklistedPlaylist",
  2180. value: {
  2181. playlistId,
  2182. stationId
  2183. }
  2184. });
  2185. return cb({
  2186. status: "success",
  2187. message: "Successfully blacklisted playlist."
  2188. });
  2189. }
  2190. );
  2191. },
  2192. /**
  2193. * Remove blacklisted a playlist from a station
  2194. *
  2195. * @param {object} session - user session
  2196. * @param {string} stationId - the station id
  2197. * @param {string} playlistId - the playlist id
  2198. * @param {Function} cb - callback
  2199. */
  2200. async removeBlacklistedPlaylist(session, stationId, playlistId, cb) {
  2201. async.waterfall(
  2202. [
  2203. next => {
  2204. hasPermission("stations.blacklist", session, stationId)
  2205. .then(() => next())
  2206. .catch(next);
  2207. },
  2208. next => {
  2209. StationsModule.runJob("GET_STATION", { stationId }, this)
  2210. .then(station => next(null, station))
  2211. .catch(next);
  2212. },
  2213. (station, next) => {
  2214. if (!station) return next("Station not found.");
  2215. if (station.blacklist.indexOf(playlistId) === -1) return next("That playlist is not blacklisted.");
  2216. return next();
  2217. },
  2218. next => {
  2219. StationsModule.runJob("REMOVE_BLACKLISTED_PLAYLIST", { stationId, playlistId }, this)
  2220. .then(() => {
  2221. next();
  2222. })
  2223. .catch(next);
  2224. }
  2225. ],
  2226. async err => {
  2227. if (err) {
  2228. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  2229. this.log(
  2230. "ERROR",
  2231. "STATIONS_REMOVE_BLACKLISTED_PLAYLIST",
  2232. `Removing blacklisted playlist "${playlistId}" for station "${stationId}" failed. "${err}"`
  2233. );
  2234. return cb({ status: "error", message: err });
  2235. }
  2236. this.log(
  2237. "SUCCESS",
  2238. "STATIONS_REMOVE_BLACKLISTED_PLAYLIST",
  2239. `Removing blacklisted playlist "${playlistId}" for station "${stationId}" successfully.`
  2240. );
  2241. PlaylistsModule.runJob("AUTOFILL_STATION_PLAYLIST", { stationId }).then().catch();
  2242. CacheModule.runJob("PUB", {
  2243. channel: "station.removedBlacklistedPlaylist",
  2244. value: {
  2245. playlistId,
  2246. stationId
  2247. }
  2248. });
  2249. return cb({
  2250. status: "success",
  2251. message: "Successfully removed blacklisted playlist."
  2252. });
  2253. }
  2254. );
  2255. },
  2256. favoriteStation: isLoginRequired(async function favoriteStation(session, stationId, cb) {
  2257. const userModel = await DBModule.runJob("GET_MODEL", { modelName: "user" }, this);
  2258. async.waterfall(
  2259. [
  2260. next => {
  2261. StationsModule.runJob("GET_STATION", { stationId }, this)
  2262. .then(station => next(null, station))
  2263. .catch(next);
  2264. },
  2265. (station, next) => {
  2266. if (!station) return next("Station not found.");
  2267. return StationsModule.runJob("CAN_USER_VIEW_STATION", { station, userId: session.userId }, this)
  2268. .then(canView => {
  2269. if (canView) return next(null, station);
  2270. return next("Insufficient permissions.");
  2271. })
  2272. .catch(err => next(err));
  2273. },
  2274. (station, next) => {
  2275. userModel.updateOne(
  2276. { _id: session.userId },
  2277. { $addToSet: { favoriteStations: stationId } },
  2278. (err, res) => next(err, station, res)
  2279. );
  2280. },
  2281. (station, res, next) => {
  2282. if (res.nModified === 0) return next("The station was already favorited.");
  2283. return next(null, station);
  2284. }
  2285. ],
  2286. async (err, station) => {
  2287. if (err) {
  2288. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  2289. this.log("ERROR", "FAVORITE_STATION", `Favoriting station "${stationId}" failed. "${err}"`);
  2290. return cb({ status: "error", message: err });
  2291. }
  2292. this.log("SUCCESS", "FAVORITE_STATION", `Favorited station "${stationId}" successfully.`);
  2293. CacheModule.runJob("PUB", {
  2294. channel: "user.favoritedStation",
  2295. value: {
  2296. userId: session.userId,
  2297. stationId
  2298. }
  2299. });
  2300. ActivitiesModule.runJob("ADD_ACTIVITY", {
  2301. userId: session.userId,
  2302. type: "station__favorite",
  2303. payload: {
  2304. message: `Favorited station <stationId>${station.displayName}</stationId>`,
  2305. stationId
  2306. }
  2307. });
  2308. return cb({
  2309. status: "success",
  2310. message: "Succesfully favorited station."
  2311. });
  2312. }
  2313. );
  2314. }),
  2315. unfavoriteStation: isLoginRequired(async function unfavoriteStation(session, stationId, cb) {
  2316. const userModel = await DBModule.runJob("GET_MODEL", { modelName: "user" }, this);
  2317. async.waterfall(
  2318. [
  2319. next => {
  2320. userModel.updateOne({ _id: session.userId }, { $pull: { favoriteStations: stationId } }, next);
  2321. },
  2322. (res, next) => {
  2323. if (res.nModified === 0) return next("The station wasn't favorited.");
  2324. return next();
  2325. },
  2326. next => {
  2327. StationsModule.runJob("GET_STATION", { stationId }, this)
  2328. .then(station => next(null, station))
  2329. .catch(next);
  2330. }
  2331. ],
  2332. async (err, station) => {
  2333. if (err) {
  2334. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  2335. this.log("ERROR", "UNFAVORITE_STATION", `Unfavoriting station "${stationId}" failed. "${err}"`);
  2336. return cb({ status: "error", message: err });
  2337. }
  2338. this.log("SUCCESS", "UNFAVORITE_STATION", `Unfavorited station "${stationId}" successfully.`);
  2339. CacheModule.runJob("PUB", {
  2340. channel: "user.unfavoritedStation",
  2341. value: {
  2342. userId: session.userId,
  2343. stationId
  2344. }
  2345. });
  2346. ActivitiesModule.runJob("ADD_ACTIVITY", {
  2347. userId: session.userId,
  2348. type: "station__unfavorite",
  2349. payload: {
  2350. message: `Unfavorited station <stationId>${station.displayName}</stationId>`,
  2351. stationId
  2352. }
  2353. });
  2354. return cb({
  2355. status: "success",
  2356. message: "Succesfully unfavorited station."
  2357. });
  2358. }
  2359. );
  2360. }),
  2361. /**
  2362. * Clears every station queue
  2363. *
  2364. * @param {object} session - the session object automatically added by socket.io
  2365. * @param {Function} cb - gets called with the result
  2366. */
  2367. clearEveryStationQueue: useHasPermission(
  2368. "stations.clearEveryStationQueue",
  2369. async function clearEveryStationQueue(session, cb) {
  2370. this.keepLongJob();
  2371. this.publishProgress({
  2372. status: "started",
  2373. title: "Clear every station queue",
  2374. message: "Clearing every station queue.",
  2375. id: this.toString()
  2376. });
  2377. await CacheModule.runJob("RPUSH", { key: `longJobs.${session.userId}`, value: this.toString() }, this);
  2378. await CacheModule.runJob(
  2379. "PUB",
  2380. {
  2381. channel: "longJob.added",
  2382. value: { jobId: this.toString(), userId: session.userId }
  2383. },
  2384. this
  2385. );
  2386. async.waterfall(
  2387. [
  2388. next => {
  2389. StationsModule.runJob("CLEAR_EVERY_STATION_QUEUE", {}, this)
  2390. .then(() => next())
  2391. .catch(next);
  2392. }
  2393. ],
  2394. async err => {
  2395. if (err) {
  2396. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  2397. this.log("ERROR", "CLEAR_EVERY_STATION_QUEUE", `Clearing every station queue failed. "${err}"`);
  2398. this.publishProgress({
  2399. status: "error",
  2400. message: err
  2401. });
  2402. return cb({ status: "error", message: err });
  2403. }
  2404. this.log("SUCCESS", "CLEAR_EVERY_STATION_QUEUE", "Clearing every station queue was successful.");
  2405. this.publishProgress({
  2406. status: "success",
  2407. message: "Successfully cleared every station queue."
  2408. });
  2409. return cb({ status: "success", message: "Successfully cleared every station queue." });
  2410. }
  2411. );
  2412. }
  2413. ),
  2414. /**
  2415. * Reset a station queue
  2416. *
  2417. * @param {object} session - the session object automatically added by socket.io
  2418. * @param {string} stationId - the station id
  2419. * @param {Function} cb - gets called with the result
  2420. */
  2421. async resetQueue(session, stationId, cb) {
  2422. async.waterfall(
  2423. [
  2424. next => {
  2425. hasPermission("stations.queue.reset", session, stationId)
  2426. .then(() => next())
  2427. .catch(next);
  2428. },
  2429. next => {
  2430. StationsModule.runJob("RESET_QUEUE", { stationId }, this)
  2431. .then(() => next())
  2432. .catch(next);
  2433. }
  2434. ],
  2435. async err => {
  2436. if (err) {
  2437. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  2438. this.log("ERROR", "RESET_QUEUE", `Resetting station queue failed. "${err}"`);
  2439. return cb({ status: "error", message: err });
  2440. }
  2441. this.log("SUCCESS", "RESET_QUEUE", "Resetting station queue was successful.");
  2442. return cb({ status: "success", message: "Successfully reset station queue." });
  2443. }
  2444. );
  2445. },
  2446. /**
  2447. * Gets skip votes for a station
  2448. *
  2449. * @param session
  2450. * @param stationId - the station id
  2451. * @param stationId - the song id to get skipvotes for
  2452. * @param cb
  2453. */
  2454. getSkipVotes: isLoginRequired(async function getSkipVotes(session, stationId, songId, cb) {
  2455. async.waterfall(
  2456. [
  2457. next => {
  2458. StationsModule.runJob("GET_STATION", { stationId }, this)
  2459. .then(res => next(null, res.currentSong))
  2460. .catch(console.log);
  2461. },
  2462. (currentSong, next) => {
  2463. if (currentSong && currentSong._id === songId)
  2464. next(null, {
  2465. skipVotes: currentSong.skipVotes.length,
  2466. skipVotesCurrent: true,
  2467. voted: currentSong.skipVotes.indexOf(session.userId) !== -1
  2468. });
  2469. else
  2470. next(null, {
  2471. skipVotes: 0,
  2472. skipVotesCurrent: false,
  2473. voted: false
  2474. });
  2475. }
  2476. ],
  2477. async (err, data) => {
  2478. if (err) {
  2479. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  2480. this.log(
  2481. "ERROR",
  2482. "STATIONS_GET_SKIP_VOTES",
  2483. `User "${session.userId}" failed to get skip votes for ${stationId}. "${err}"`
  2484. );
  2485. return cb({ status: "error", message: err });
  2486. }
  2487. return cb({
  2488. status: "success",
  2489. data
  2490. });
  2491. }
  2492. );
  2493. }),
  2494. /**
  2495. * Add DJ to station
  2496. *
  2497. * @param {object} session - the session object automatically added by socket.io
  2498. * @param {string} stationId - the station id
  2499. * @param {string} userId - the dj user id
  2500. * @param {Function} cb - gets called with the result
  2501. */
  2502. async addDj(session, stationId, userId, cb) {
  2503. async.waterfall(
  2504. [
  2505. next => {
  2506. hasPermission("stations.djs.add", session, stationId)
  2507. .then(() => next())
  2508. .catch(next);
  2509. },
  2510. next => {
  2511. StationsModule.runJob("ADD_DJ", { stationId, userId }, this)
  2512. .then(() => next())
  2513. .catch(next);
  2514. }
  2515. ],
  2516. async err => {
  2517. if (err) {
  2518. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  2519. this.log("ERROR", "ADD_DJ", `Adding DJ failed. "${err}"`);
  2520. return cb({ status: "error", message: err });
  2521. }
  2522. this.log("SUCCESS", "ADD_DJ", "Adding DJ was successful.");
  2523. return cb({ status: "success", message: "Successfully added DJ." });
  2524. }
  2525. );
  2526. },
  2527. /**
  2528. * Remove DJ from station
  2529. *
  2530. * @param {object} session - the session object automatically added by socket.io
  2531. * @param {string} stationId - the station id
  2532. * @param {string} userId - the dj user id
  2533. * @param {Function} cb - gets called with the result
  2534. */
  2535. async removeDj(session, stationId, userId, cb) {
  2536. async.waterfall(
  2537. [
  2538. next => {
  2539. hasPermission("stations.djs.remove", session, stationId)
  2540. .then(() => next())
  2541. .catch(next);
  2542. },
  2543. next => {
  2544. StationsModule.runJob("REMOVE_DJ", { stationId, userId }, this)
  2545. .then(() => next())
  2546. .catch(next);
  2547. }
  2548. ],
  2549. async err => {
  2550. if (err) {
  2551. err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
  2552. this.log("ERROR", "REMOVE_DJ", `Removing DJ failed. "${err}"`);
  2553. return cb({ status: "error", message: err });
  2554. }
  2555. this.log("SUCCESS", "REMOVE_DJ", "Removing DJ was successful.");
  2556. return cb({ status: "success", message: "Successfully removed DJ." });
  2557. }
  2558. );
  2559. },
  2560. setStationState(session, newStationState, cb) {
  2561. session.stationState = newStationState;
  2562. cb({ status: "success" });
  2563. }
  2564. };