io.js 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  1. 'use strict';
  2. // This file contains all the logic for Socket.IO
  3. const coreClass = require("../core");
  4. const socketio = require("socket.io");
  5. const async = require("async");
  6. module.exports = class extends coreClass {
  7. constructor(name, moduleManager) {
  8. super(name, moduleManager);
  9. this.dependsOn = ["app", "db", "cache"];
  10. }
  11. initialize() {
  12. return new Promise(resolve => {
  13. this.setStage(1);
  14. const logger = this.logger,
  15. app = this.moduleManager.modules["app"],
  16. cache = this.moduleManager.modules["cache"],
  17. utils = this.moduleManager.modules["utils"],
  18. db = this.moduleManager.modules["db"],
  19. punishments = this.moduleManager.modules["punishments"];
  20. const actions = require('../logic/actions');
  21. // TODO: Check every 30s/60s, for all sockets, if they are still allowed to be in the rooms they are in, and on socket at all (permission changing/banning)
  22. this.io = socketio(app.server);
  23. this.io.use(async (socket, next) => {
  24. try { await this._validateHook(); } catch { return; }
  25. let SID;
  26. socket.ip = socket.request.headers['x-forwarded-for'] || '0.0.0.0';
  27. async.waterfall([
  28. (next) => {
  29. utils.parseCookies(
  30. socket.request.headers.cookie
  31. ).then(res => {
  32. SID = res.SID;
  33. next(null);
  34. });
  35. },
  36. (next) => {
  37. if (!SID) return next('No SID.');
  38. next();
  39. },
  40. (next) => {
  41. cache.hget('sessions', SID, next);
  42. },
  43. (session, next) => {
  44. if (!session) return next('No session found.');
  45. session.refreshDate = Date.now();
  46. socket.session = session;
  47. cache.hset('sessions', SID, session, next);
  48. },
  49. (res, next) => {
  50. // check if a session's user / IP is banned
  51. punishments.getPunishments((err, punishments) => {
  52. const isLoggedIn = !!(socket.session && socket.session.refreshDate);
  53. const userId = (isLoggedIn) ? socket.session.userId : null;
  54. let banishment = { banned: false, ban: 0 };
  55. punishments.forEach(punishment => {
  56. if (punishment.expiresAt > banishment.ban) banishment.ban = punishment;
  57. if (punishment.type === 'banUserId' && isLoggedIn && punishment.value === userId) banishment.banned = true;
  58. if (punishment.type === 'banUserIp' && punishment.value === socket.ip) banishment.banned = true;
  59. });
  60. socket = { ...socket, ...banishment }
  61. next();
  62. });
  63. }
  64. ], () => {
  65. if (!socket.session) socket.session = { socketId: socket.id };
  66. else socket.session.socketId = socket.id;
  67. next();
  68. });
  69. });
  70. this.io.on('connection', async socket => {
  71. try { await this._validateHook(); } catch { return; }
  72. let sessionInfo = '';
  73. if (socket.session.sessionId) sessionInfo = ` UserID: ${socket.session.userId}.`;
  74. // if session is banned
  75. if (socket.banned) {
  76. logger.info('IO_BANNED_CONNECTION', `A user tried to connect, but is currently banned. IP: ${socket.ip}.${sessionInfo}`);
  77. socket.emit('keep.event:banned', socket.ban);
  78. socket.disconnect(true);
  79. } else {
  80. logger.info('IO_CONNECTION', `User connected. IP: ${socket.ip}.${sessionInfo}`);
  81. // catch when the socket has been disconnected
  82. socket.on('disconnect', () => {
  83. if (socket.session.sessionId) sessionInfo = ` UserID: ${socket.session.userId}.`;
  84. logger.info('IO_DISCONNECTION', `User disconnected. IP: ${socket.ip}.${sessionInfo}`);
  85. });
  86. // catch errors on the socket (internal to socket.io)
  87. socket.on('error', console.error);
  88. // have the socket listen for each action
  89. Object.keys(actions).forEach(namespace => {
  90. Object.keys(actions[namespace]).forEach(action => {
  91. // the full name of the action
  92. let name = `${namespace}.${action}`;
  93. // listen for this action to be called
  94. socket.on(name, async (...args) => {
  95. let cb = args[args.length - 1];
  96. if (typeof cb !== "function")
  97. cb = () => {
  98. this.logger.info("IO_MODULE", `There was no callback provided for ${name}.`);
  99. }
  100. else args.pop();
  101. try { await this._validateHook(); } catch { return cb({status: 'failure', message: 'Lockdown'}); }
  102. // load the session from the cache
  103. cache.hget('sessions', socket.session.sessionId, (err, session) => {
  104. if (err && err !== true) {
  105. if (typeof cb === 'function') return cb({
  106. status: 'error',
  107. message: 'An error occurred while obtaining your session'
  108. });
  109. }
  110. // make sure the sockets sessionId isn't set if there is no session
  111. if (socket.session.sessionId && session === null) delete socket.session.sessionId;
  112. // call the action, passing it the session, and the arguments socket.io passed us
  113. actions[namespace][action].apply(null, [socket.session].concat(args).concat([
  114. (result) => {
  115. // respond to the socket with our message
  116. if (typeof cb === 'function') return cb(result);
  117. }
  118. ]));
  119. });
  120. })
  121. })
  122. });
  123. if (socket.session.sessionId) {
  124. cache.hget('sessions', socket.session.sessionId, (err, session) => {
  125. if (err && err !== true) socket.emit('ready', false);
  126. else if (session && session.userId) {
  127. db.models.user.findOne({ _id: session.userId }, (err, user) => {
  128. if (err || !user) return socket.emit('ready', false);
  129. let role = '';
  130. let username = '';
  131. let userId = '';
  132. if (user) {
  133. role = user.role;
  134. username = user.username;
  135. userId = session.userId;
  136. }
  137. socket.emit('ready', true, role, username, userId);
  138. });
  139. } else socket.emit('ready', false);
  140. })
  141. } else socket.emit('ready', false);
  142. }
  143. });
  144. resolve();
  145. });
  146. }
  147. }