ws.js 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729
  1. /**
  2. * @file
  3. */
  4. import config from "config";
  5. import async from "async";
  6. import WebSocket from "ws";
  7. import { EventEmitter } from "events";
  8. import CoreClass from "../core";
  9. let WSModule;
  10. let AppModule;
  11. let CacheModule;
  12. let UtilsModule;
  13. let DBModule;
  14. let PunishmentsModule;
  15. class _WSModule extends CoreClass {
  16. // eslint-disable-next-line require-jsdoc
  17. constructor() {
  18. super("ws");
  19. WSModule = this;
  20. }
  21. /**
  22. * Initialises the ws module
  23. *
  24. * @returns {Promise} - returns promise (reject, resolve)
  25. */
  26. async initialize() {
  27. this.setStage(1);
  28. AppModule = this.moduleManager.modules.app;
  29. CacheModule = this.moduleManager.modules.cache;
  30. UtilsModule = this.moduleManager.modules.utils;
  31. DBModule = this.moduleManager.modules.db;
  32. PunishmentsModule = this.moduleManager.modules.punishments;
  33. this.actions = (await import("./actions")).default;
  34. this.userModel = await DBModule.runJob("GET_MODEL", { modelName: "user" });
  35. this.setStage(2);
  36. this.SIDname = config.get("cookie.SIDname");
  37. // TODO: Check every 30s/, for all sockets, if they are still allowed to be in the rooms they are in, and on socket at all (permission changing/banning)
  38. const server = await AppModule.runJob("SERVER");
  39. // this._io.origins(config.get("cors.origin"));
  40. this._io = new WebSocket.Server({ server, path: "/ws" });
  41. this.rooms = {};
  42. return new Promise(resolve => {
  43. this.setStage(3);
  44. this._io.on("connection", async (socket, req) => {
  45. socket.dispatch = (...args) => socket.send(JSON.stringify(args));
  46. socket.actions = new EventEmitter();
  47. socket.actions.setMaxListeners(0);
  48. socket.listen = (target, cb) => socket.actions.addListener(target, args => cb(args));
  49. WSModule.runJob("HANDLE_WS_USE", { socket, req }).then(socket =>
  50. WSModule.runJob("HANDLE_WS_CONNECTION", { socket })
  51. );
  52. socket.isAlive = true;
  53. socket.on("pong", function heartbeat() {
  54. this.isAlive = true;
  55. });
  56. });
  57. const keepAliveInterval = setInterval(() => {
  58. this._io.clients.forEach(socket => {
  59. if (socket.isAlive === false) return socket.terminate();
  60. socket.isAlive = false;
  61. return socket.ping(() => {});
  62. });
  63. }, 45000);
  64. this._io.on("close", () => clearInterval(keepAliveInterval));
  65. this.setStage(4);
  66. return resolve();
  67. });
  68. }
  69. /**
  70. * Returns the websockets variable
  71. *
  72. * @returns {Promise} - returns a promise (resolve, reject)
  73. */
  74. WS() {
  75. return new Promise(resolve => resolve(WSModule._io));
  76. }
  77. /**
  78. * Obtains socket object for a specified socket id
  79. *
  80. * @param {object} payload - object containing the payload
  81. * @param {string} payload.socketId - the id of the socket
  82. * @returns {Promise} - returns promise (reject, resolve)
  83. */
  84. async SOCKET_FROM_SOCKET_ID(payload) {
  85. return new Promise(resolve => {
  86. const { clients } = WSModule._io;
  87. if (clients)
  88. // eslint-disable-next-line consistent-return
  89. clients.forEach(socket => {
  90. if (socket.session.socketId === payload.socketId) return resolve(socket);
  91. });
  92. // socket doesn't exist
  93. return resolve();
  94. });
  95. }
  96. /**
  97. * Gets all sockets for a specified session id
  98. *
  99. * @param {object} payload - object containing the payload
  100. * @param {string} payload.sessionId - user session id
  101. * @returns {Promise} - returns promise (reject, resolve)
  102. */
  103. async SOCKETS_FROM_SESSION_ID(payload) {
  104. return new Promise(resolve => {
  105. const { clients } = WSModule._io;
  106. const sockets = [];
  107. if (clients) {
  108. return async.each(
  109. Object.keys(clients),
  110. (id, next) => {
  111. const { session } = clients[id];
  112. if (session.sessionId === payload.sessionId) sockets.push(session.sessionId);
  113. next();
  114. },
  115. () => resolve(sockets)
  116. );
  117. }
  118. return resolve();
  119. });
  120. }
  121. /**
  122. * Returns any sockets for a specific user
  123. *
  124. * @param {object} payload - object that contains the payload
  125. * @param {string} payload.userId - the user id
  126. * @returns {Promise} - returns promise (reject, resolve)
  127. */
  128. async SOCKETS_FROM_USER(payload) {
  129. return new Promise((resolve, reject) => {
  130. const sockets = [];
  131. return async.eachLimit(
  132. WSModule._io.clients,
  133. 1,
  134. (socket, next) => {
  135. const { sessionId } = socket.session;
  136. if (sessionId) {
  137. return CacheModule.runJob("HGET", { table: "sessions", key: sessionId }, this)
  138. .then(session => {
  139. if (session && session.userId === payload.userId) sockets.push(socket);
  140. next();
  141. })
  142. .catch(err => next(err));
  143. }
  144. return next();
  145. },
  146. err => {
  147. if (err) return reject(err);
  148. return resolve(sockets);
  149. }
  150. );
  151. });
  152. }
  153. /**
  154. * Returns any sockets from a specific ip address
  155. *
  156. * @param {object} payload - object that contains the payload
  157. * @param {string} payload.ip - the ip address in question
  158. * @returns {Promise} - returns promise (reject, resolve)
  159. */
  160. async SOCKETS_FROM_IP(payload) {
  161. return new Promise(resolve => {
  162. const { clients } = WSModule._io;
  163. const sockets = [];
  164. return async.each(
  165. Object.keys(clients),
  166. (id, next) => {
  167. const { session } = clients[id];
  168. CacheModule.runJob("HGET", { table: "sessions", key: session.sessionId }, this)
  169. .then(session => {
  170. if (session && clients[id].ip === payload.ip) sockets.push(clients[id]);
  171. next();
  172. })
  173. .catch(() => next());
  174. },
  175. () => resolve(sockets)
  176. );
  177. });
  178. }
  179. /**
  180. * Returns any sockets from a specific user without using redis/cache
  181. *
  182. * @param {object} payload - object that contains the payload
  183. * @param {string} payload.userId - the id of the user in question
  184. * @returns {Promise} - returns promise (reject, resolve)
  185. */
  186. async SOCKETS_FROM_USER_WITHOUT_CACHE(payload) {
  187. return new Promise(resolve => {
  188. const { clients } = WSModule._io;
  189. const sockets = [];
  190. if (clients) {
  191. return async.each(
  192. Object.keys(clients),
  193. (id, next) => {
  194. const { session } = clients[id];
  195. if (session.userId === payload.userId) sockets.push(clients[id]);
  196. next();
  197. },
  198. () => resolve(sockets)
  199. );
  200. }
  201. return resolve();
  202. });
  203. }
  204. /**
  205. * Allows a socket to leave any rooms they are connected to
  206. *
  207. * @param {object} payload - object that contains the payload
  208. * @param {string} payload.socketId - the id of the socket which should leave all their rooms
  209. * @returns {Promise} - returns promise (reject, resolve)
  210. */
  211. async SOCKET_LEAVE_ROOMS(payload) {
  212. return new Promise(resolve => {
  213. // filter out rooms that the user is in
  214. Object.keys(WSModule.rooms).forEach(room => {
  215. WSModule.rooms[room] = WSModule.rooms[room].filter(participant => participant !== payload.socketId);
  216. });
  217. return resolve();
  218. });
  219. }
  220. /**
  221. * Allows a socket to join a specified room (this will remove them from any rooms they are currently in)
  222. *
  223. * @param {object} payload - object that contains the payload
  224. * @param {string} payload.socketId - the id of the socket which should join the room
  225. * @param {string} payload.room - the name of the room
  226. * @returns {Promise} - returns promise (reject, resolve)
  227. */
  228. async SOCKET_JOIN_ROOM(payload) {
  229. const { room, socketId } = payload;
  230. // leave all other rooms
  231. await WSModule.runJob("SOCKET_LEAVE_ROOMS", { socketId }, this);
  232. return new Promise(resolve => {
  233. // create room if it doesn't exist, and add socketId to array
  234. if (WSModule.rooms[room]) WSModule.rooms[room].push(socketId);
  235. else WSModule.rooms[room] = [socketId];
  236. return resolve();
  237. });
  238. }
  239. /**
  240. * Emits arguments to any sockets that are in a specified a room
  241. *
  242. * @param {object} payload - object that contains the payload
  243. * @param {string} payload.room - the name of the room to emit arguments
  244. * @param {object} payload.args - any arguments to be emitted to the sockets in the specific room
  245. * @returns {Promise} - returns promise (reject, resolve)
  246. */
  247. async EMIT_TO_ROOM(payload) {
  248. return new Promise(resolve => {
  249. // if the room exists
  250. if (WSModule.rooms[payload.room] && WSModule.rooms[payload.room].length > 0)
  251. return WSModule.rooms[payload.room].forEach(async socketId => {
  252. // get every socketId (and thus every socket) in the room, and dispatch to each
  253. const socket = await WSModule.runJob("SOCKET_FROM_SOCKET_ID", { socketId }, this);
  254. socket.dispatch(...payload.args);
  255. return resolve();
  256. });
  257. return resolve();
  258. });
  259. }
  260. /**
  261. * Allows a socket to join a 'song' room
  262. *
  263. * @param {object} payload - object that contains the payload
  264. * @param {string} payload.socketId - the id of the socket which should join the room
  265. * @param {string} payload.room - the name of the room
  266. * @returns {Promise} - returns promise (reject, resolve)
  267. */
  268. async SOCKET_JOIN_SONG_ROOM(payload) {
  269. const { room, socketId } = payload;
  270. // leave any other song rooms the user is in
  271. await WSModule.runJob("SOCKETS_LEAVE_SONG_ROOMS", { sockets: [socketId] }, this);
  272. return new Promise(resolve => {
  273. // join the room
  274. if (WSModule.rooms[room]) WSModule.rooms[room].push(socketId);
  275. else WSModule.rooms[room] = [socketId];
  276. return resolve();
  277. });
  278. }
  279. /**
  280. * Allows multiple sockets to join a 'song' room
  281. *
  282. * @param {object} payload - object that contains the payload
  283. * @param {Array} payload.sockets - array of socketIds
  284. * @param {object} payload.room - the name of the room
  285. * @returns {Promise} - returns promise (reject, resolve)
  286. */
  287. SOCKETS_JOIN_SONG_ROOM(payload) {
  288. return new Promise(resolve => {
  289. Promise.allSettled(
  290. payload.sockets.map(async socketId => {
  291. await WSModule.runJob("SOCKET_JOIN_SONG_ROOM", { socketId }, this);
  292. })
  293. ).then(() => resolve());
  294. });
  295. }
  296. /**
  297. * Allows multiple sockets to leave any 'song' rooms they are in
  298. *
  299. * @param {object} payload - object that contains the payload
  300. * @param {Array} payload.sockets - array of socketIds
  301. * @returns {Promise} - returns promise (reject, resolve)
  302. */
  303. SOCKETS_LEAVE_SONG_ROOMS(payload) {
  304. return new Promise(resolve =>
  305. Promise.allSettled(
  306. payload.sockets.map(async socketId => {
  307. const rooms = await WSModule.runJob("GET_ROOMS_FOR_SOCKET", { socketId }, this);
  308. rooms.forEach(room => {
  309. if (room.indexOf("song.") !== -1)
  310. WSModule.rooms[room] = WSModule.rooms[room].filter(
  311. participant => participant !== payload.socketId
  312. );
  313. });
  314. })
  315. ).then(() => resolve())
  316. );
  317. }
  318. /**
  319. * Gets any sockets connected to a room
  320. *
  321. * @param {object} payload - object that contains the payload
  322. * @param {string} payload.room - the name of the room
  323. * @returns {Promise} - returns promise (reject, resolve)
  324. */
  325. async GET_SOCKETS_FOR_ROOM(payload) {
  326. return new Promise(resolve => {
  327. if (WSModule.rooms[payload.room]) return resolve(WSModule.rooms[payload.room]);
  328. return resolve([]);
  329. });
  330. }
  331. /**
  332. * Gets any rooms a socket is connected to
  333. *
  334. * @param {object} payload - object that contains the payload
  335. * @param {string} payload.socketId - the id of the socket to check the rooms for
  336. * @returns {Promise} - returns promise (reject, resolve)
  337. */
  338. async GET_ROOMS_FOR_SOCKET(payload) {
  339. return new Promise(resolve => {
  340. const rooms = [];
  341. Object.keys(WSModule.rooms).forEach(room => {
  342. if (WSModule.rooms[room].includes(payload.socketId)) rooms.push(room);
  343. });
  344. return resolve(rooms);
  345. });
  346. }
  347. /**
  348. * Handles use of websockets
  349. *
  350. * @param {object} payload - object that contains the payload
  351. * @returns {Promise} - returns promise (reject, resolve)
  352. */
  353. async HANDLE_WS_USE(payload) {
  354. return new Promise(resolve => {
  355. const { socket, req } = payload;
  356. let SID = "";
  357. socket.ip = req.headers["x-forwarded-for"] || "0..0.0";
  358. return async.waterfall(
  359. [
  360. next => {
  361. if (!req.headers.cookie) return next("No cookie exists yet.");
  362. return UtilsModule.runJob("PARSE_COOKIES", { cookieString: req.headers.cookie }, this).then(
  363. res => {
  364. SID = res[WSModule.SIDname];
  365. next(null);
  366. }
  367. );
  368. },
  369. next => {
  370. if (!SID) return next("No SID.");
  371. return next();
  372. },
  373. // see if session exists for cookie
  374. next => {
  375. CacheModule.runJob("HGET", { table: "sessions", key: SID }, this)
  376. .then(session => next(null, session))
  377. .catch(next);
  378. },
  379. (session, next) => {
  380. if (!session) return next("No session found.");
  381. session.refreshDate = Date.now();
  382. socket.session = session;
  383. return CacheModule.runJob(
  384. "HSET",
  385. { table: "sessions", key: SID, value: session },
  386. this
  387. ).then(session => next(null, session));
  388. },
  389. (res, next) => {
  390. // check if a session's user / IP is banned
  391. PunishmentsModule.runJob("GET_PUNISHMENTS", {}, this)
  392. .then(punishments => {
  393. const isLoggedIn = !!(socket.session && socket.session.refreshDate);
  394. const userId = isLoggedIn ? socket.session.userId : null;
  395. const banishment = {
  396. banned: false,
  397. ban: 0
  398. };
  399. punishments.forEach(punishment => {
  400. if (punishment.expiresAt > banishment.ban) banishment.ban = punishment;
  401. if (punishment.type === "banUserId" && isLoggedIn && punishment.value === userId)
  402. banishment.banned = true;
  403. if (punishment.type === "banUserIp" && punishment.value === socket.ip)
  404. banishment.banned = true;
  405. });
  406. socket.banishment = banishment;
  407. next();
  408. })
  409. .catch(() => next());
  410. }
  411. ],
  412. () => {
  413. if (!socket.session) socket.session = { socketId: req.headers["sec-websocket-key"] };
  414. else socket.session.socketId = req.headers["sec-websocket-key"];
  415. resolve(socket);
  416. }
  417. );
  418. });
  419. }
  420. /**
  421. * Handles a websocket connection
  422. *
  423. * @param {object} payload - object that contains the payload
  424. * @param {object} payload.socket - socket itself
  425. * @returns {Promise} - returns promise (reject, resolve)
  426. */
  427. async HANDLE_WS_CONNECTION(payload) {
  428. return new Promise(resolve => {
  429. const { socket } = payload;
  430. let sessionInfo = "";
  431. if (socket.session.sessionId) sessionInfo = ` UserID: ${socket.session.userId}.`;
  432. // if session is banned
  433. if (socket.banishment && socket.banishment.banned) {
  434. WSModule.log(
  435. "INFO",
  436. "IO_BANNED_CONNECTION",
  437. `A user tried to connect, but is currently banned. IP: ${socket.ip}.${sessionInfo}`
  438. );
  439. socket.dispatch("keep.event:banned", socket.banishment.ban);
  440. return socket.close(); // close socket connection
  441. }
  442. WSModule.log("INFO", "IO_CONNECTION", `User connected. IP: ${socket.ip}.${sessionInfo}`);
  443. // catch when the socket has been disconnected
  444. socket.on("close", async () => {
  445. if (socket.session.sessionId) sessionInfo = ` UserID: ${socket.session.userId}.`;
  446. WSModule.log("INFO", "IO_DISCONNECTION", `User disconnected. IP: ${socket.ip}.${sessionInfo}`);
  447. // leave all rooms when a socket connection is closed (to prevent rooms object building up)
  448. await WSModule.runJob("SOCKET_LEAVE_ROOMS", { socketId: socket.session.socketId });
  449. });
  450. // catch errors on the socket
  451. socket.onerror = error => {
  452. console.error("SOCKET ERROR: ", error);
  453. };
  454. if (socket.session.sessionId) {
  455. CacheModule.runJob("HGET", {
  456. table: "sessions",
  457. key: socket.session.sessionId
  458. })
  459. .then(session => {
  460. if (session && session.userId) {
  461. WSModule.userModel.findOne({ _id: session.userId }, (err, user) => {
  462. if (err || !user) return socket.dispatch("ready", false);
  463. let role = "";
  464. let username = "";
  465. let userId = "";
  466. if (user) {
  467. role = user.role;
  468. username = user.username;
  469. userId = session.userId;
  470. }
  471. return socket.dispatch("ready", true, role, username, userId);
  472. });
  473. } else socket.dispatch("ready", false);
  474. })
  475. .catch(() => socket.dispatch("ready", false));
  476. } else socket.dispatch("ready", false);
  477. socket.onmessage = message => {
  478. const data = JSON.parse(message.data);
  479. if (data.length === 0) return socket.dispatch("ERROR", "Not enough arguments specified.");
  480. if (typeof data[0] !== "string") return socket.dispatch("ERROR", "First argument must be a string.");
  481. const namespaceAction = data[0];
  482. if (
  483. !namespaceAction ||
  484. namespaceAction.indexOf(".") === -1 ||
  485. namespaceAction.indexOf(".") !== namespaceAction.lastIndexOf(".")
  486. )
  487. return socket.dispatch("ERROR", "Invalid first argument");
  488. const namespace = data[0].split(".")[0];
  489. const action = data[0].split(".")[1];
  490. if (!namespace) return socket.dispatch("ERROR", "Invalid namespace.");
  491. if (!action) return socket.dispatch("ERROR", "Invalid action.");
  492. if (!WSModule.actions[namespace]) return socket.dispatch("ERROR", "Namespace not found.");
  493. if (!WSModule.actions[namespace][action]) return socket.dispatch("ERROR", "Action not found.");
  494. if (data[data.length - 1].CB_REF) {
  495. const { CB_REF } = data[data.length - 1];
  496. data.pop();
  497. return socket.actions.emit(data.shift(0), [...data, res => socket.dispatch("CB_REF", CB_REF, res)]);
  498. }
  499. return socket.actions.emit(data.shift(0), data);
  500. };
  501. // have the socket listen for each action
  502. Object.keys(WSModule.actions).forEach(namespace => {
  503. Object.keys(WSModule.actions[namespace]).forEach(action => {
  504. // the full name of the action
  505. const name = `${namespace}.${action}`;
  506. // listen for this action to be called
  507. socket.listen(name, async args =>
  508. WSModule.runJob("RUN_ACTION", { socket, namespace, action, args })
  509. );
  510. });
  511. });
  512. return resolve();
  513. });
  514. }
  515. /**
  516. * Runs an action
  517. *
  518. * @param {object} payload - object that contains the payload
  519. * @returns {Promise} - returns promise (reject, resolve)
  520. */
  521. async RUN_ACTION(payload) {
  522. return new Promise((resolve, reject) => {
  523. const { socket, namespace, action, args } = payload;
  524. // the full name of the action
  525. const name = `${namespace}.${action}`;
  526. let cb = args[args.length - 1];
  527. if (typeof cb !== "function")
  528. cb = () => {
  529. WSModule.log("INFO", "IO_MODULE", `There was no callback provided for ${name}.`);
  530. };
  531. else args.pop();
  532. WSModule.log("INFO", "IO_ACTION", `A user executed an action. Action: ${namespace}.${action}.`);
  533. // load the session from the cache
  534. new Promise(resolve => {
  535. if (socket.session.sessionId)
  536. CacheModule.runJob("HGET", {
  537. table: "sessions",
  538. key: socket.session.sessionId
  539. })
  540. .then(session => {
  541. // make sure the sockets sessionId isn't set if there is no session
  542. if (socket.session.sessionId && session === null) delete socket.session.sessionId;
  543. resolve();
  544. })
  545. .catch(() => {
  546. if (typeof cb === "function")
  547. cb({
  548. status: "error",
  549. message: "An error occurred while obtaining your session"
  550. });
  551. reject(new Error("An error occurred while obtaining the session"));
  552. });
  553. else resolve();
  554. })
  555. .then(() => {
  556. // call the job that calls the action, passing it the session, and the arguments the websocket passed us
  557. WSModule.runJob("RUN_ACTION2", { session: socket.session, namespace, action, args }, this)
  558. .then(response => {
  559. cb(response);
  560. resolve();
  561. })
  562. .catch(err => {
  563. if (typeof cb === "function")
  564. cb({
  565. status: "error",
  566. message: "An error occurred while executing the specified action."
  567. });
  568. reject(err);
  569. WSModule.log(
  570. "ERROR",
  571. "IO_ACTION_ERROR",
  572. `Some type of exception occurred in the action ${namespace}.${action}. Error message: ${err.message}`
  573. );
  574. });
  575. })
  576. .catch(reject);
  577. });
  578. }
  579. /**
  580. * Runs an action
  581. *
  582. * @param {object} payload - object that contains the payload
  583. * @returns {Promise} - returns promise (reject, resolve)
  584. */
  585. async RUN_ACTION2(payload) {
  586. return new Promise((resolve, reject) => {
  587. const { session, namespace, action, args } = payload;
  588. try {
  589. // call the the action, passing it the session, and the arguments the websocket passed us
  590. WSModule.actions[namespace][action].apply(
  591. this,
  592. [session].concat(args).concat([
  593. result => {
  594. WSModule.log(
  595. "INFO",
  596. "RUN_ACTION2",
  597. `Response to action. Action: ${namespace}.${action}. Response status: ${result.status}`
  598. );
  599. resolve(result);
  600. }
  601. ])
  602. );
  603. } catch (err) {
  604. reject(err);
  605. WSModule.log(
  606. "ERROR",
  607. "IO_ACTION_ERROR",
  608. `Some type of exception occurred in the action ${namespace}.${action}. Error message: ${err.message}`
  609. );
  610. }
  611. });
  612. }
  613. }
  614. export default new _WSModule();