Créé dans le cadre du projet de fin d'année de la promo 2018 de CIR2 de l'ISEN Brest/Rennes, le Burger Quizz est une adaptation numérique du jeu télévisé éponyme, plus précisément d'une épreuve spécifique de ce jeu : le "Sel ou Poivre".

socket.js 8.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449
  1. /**
  2. * Module dependencies.
  3. */
  4. var Emitter = require('events').EventEmitter;
  5. var parser = require('socket.io-parser');
  6. var url = require('url');
  7. var debug = require('debug')('socket.io:socket');
  8. var hasBin = require('has-binary-data');
  9. /**
  10. * Module exports.
  11. */
  12. module.exports = exports = Socket;
  13. /**
  14. * Blacklisted events.
  15. *
  16. * @api public
  17. */
  18. exports.events = [
  19. 'error',
  20. 'connect',
  21. 'disconnect',
  22. 'newListener',
  23. 'removeListener'
  24. ];
  25. /**
  26. * Flags.
  27. *
  28. * @api private
  29. */
  30. var flags = [
  31. 'json',
  32. 'volatile',
  33. 'broadcast'
  34. ];
  35. /**
  36. * `EventEmitter#emit` reference.
  37. */
  38. var emit = Emitter.prototype.emit;
  39. /**
  40. * Interface to a `Client` for a given `Namespace`.
  41. *
  42. * @param {Namespace} nsp
  43. * @param {Client} client
  44. * @api public
  45. */
  46. function Socket(nsp, client){
  47. this.nsp = nsp;
  48. this.server = nsp.server;
  49. this.adapter = this.nsp.adapter;
  50. this.id = client.id;
  51. this.request = client.request;
  52. this.client = client;
  53. this.conn = client.conn;
  54. this.rooms = [];
  55. this.acks = {};
  56. this.connected = true;
  57. this.disconnected = false;
  58. this.handshake = this.buildHandshake();
  59. }
  60. /**
  61. * Inherits from `EventEmitter`.
  62. */
  63. Socket.prototype.__proto__ = Emitter.prototype;
  64. /**
  65. * Apply flags from `Socket`.
  66. */
  67. flags.forEach(function(flag){
  68. Socket.prototype.__defineGetter__(flag, function(){
  69. this.flags = this.flags || {};
  70. this.flags[flag] = true;
  71. return this;
  72. });
  73. });
  74. /**
  75. * `request` engine.io shorcut.
  76. *
  77. * @api public
  78. */
  79. Socket.prototype.__defineGetter__('request', function(){
  80. return this.conn.request;
  81. });
  82. /**
  83. * Builds the `handshake` BC object
  84. *
  85. * @api private
  86. */
  87. Socket.prototype.buildHandshake = function(){
  88. return {
  89. headers: this.request.headers,
  90. time: (new Date) + '',
  91. address: this.conn.remoteAddress,
  92. xdomain: !!this.request.headers.origin,
  93. secure: !!this.request.connection.encrypted,
  94. issued: +(new Date),
  95. url: this.request.url,
  96. query: url.parse(this.request.url, true).query || {}
  97. };
  98. };
  99. /**
  100. * Emits to this client.
  101. *
  102. * @return {Socket} self
  103. * @api public
  104. */
  105. Socket.prototype.emit = function(ev){
  106. if (~exports.events.indexOf(ev)) {
  107. emit.apply(this, arguments);
  108. } else {
  109. var args = Array.prototype.slice.call(arguments);
  110. var packet = {};
  111. packet.type = hasBin(args) ? parser.BINARY_EVENT : parser.EVENT;
  112. packet.data = args;
  113. // access last argument to see if it's an ACK callback
  114. if ('function' == typeof args[args.length - 1]) {
  115. if (this._rooms || (this.flags && this.flags.broadcast)) {
  116. throw new Error('Callbacks are not supported when broadcasting');
  117. }
  118. debug('emitting packet with ack id %d', this.nsp.ids);
  119. this.acks[this.nsp.ids] = args.pop();
  120. packet.id = this.nsp.ids++;
  121. }
  122. if (this._rooms || (this.flags && this.flags.broadcast)) {
  123. this.adapter.broadcast(packet, {
  124. except: [this.id],
  125. rooms: this._rooms,
  126. flags: this.flags
  127. });
  128. } else {
  129. // dispatch packet
  130. this.packet(packet);
  131. }
  132. // reset flags
  133. delete this._rooms;
  134. delete this.flags;
  135. }
  136. return this;
  137. };
  138. /**
  139. * Targets a room when broadcasting.
  140. *
  141. * @param {String} name
  142. * @return {Socket} self
  143. * @api public
  144. */
  145. Socket.prototype.to =
  146. Socket.prototype.in = function(name){
  147. this._rooms = this._rooms || [];
  148. if (!~this._rooms.indexOf(name)) this._rooms.push(name);
  149. return this;
  150. };
  151. /**
  152. * Sends a `message` event.
  153. *
  154. * @return {Socket} self
  155. * @api public
  156. */
  157. Socket.prototype.send =
  158. Socket.prototype.write = function(){
  159. var args = Array.prototype.slice.call(arguments);
  160. args.unshift('message');
  161. this.emit.apply(this, args);
  162. return this;
  163. };
  164. /**
  165. * Writes a packet.
  166. *
  167. * @param {Object} packet object
  168. * @api private
  169. */
  170. Socket.prototype.packet = function(packet, preEncoded){
  171. packet.nsp = this.nsp.name;
  172. var volatile = this.flags && this.flags.volatile;
  173. this.client.packet(packet, preEncoded, volatile);
  174. };
  175. /**
  176. * Joins a room.
  177. *
  178. * @param {String} room
  179. * @param {Function} optional, callback
  180. * @return {Socket} self
  181. * @api private
  182. */
  183. Socket.prototype.join = function(room, fn){
  184. debug('joining room %s', room);
  185. var self = this;
  186. if (~this.rooms.indexOf(room)) return this;
  187. this.adapter.add(this.id, room, function(err){
  188. if (err) return fn && fn(err);
  189. debug('joined room %s', room);
  190. self.rooms.push(room);
  191. fn && fn(null);
  192. });
  193. return this;
  194. };
  195. /**
  196. * Leaves a room.
  197. *
  198. * @param {String} room
  199. * @param {Function} optional, callback
  200. * @return {Socket} self
  201. * @api private
  202. */
  203. Socket.prototype.leave = function(room, fn){
  204. debug('leave room %s', room);
  205. var self = this;
  206. this.adapter.del(this.id, room, function(err){
  207. if (err) return fn && fn(err);
  208. debug('left room %s', room);
  209. var idx = self.rooms.indexOf(room);
  210. if (idx >= 0) {
  211. self.rooms.splice(idx, 1);
  212. }
  213. fn && fn(null);
  214. });
  215. return this;
  216. };
  217. /**
  218. * Leave all rooms.
  219. *
  220. * @api private
  221. */
  222. Socket.prototype.leaveAll = function(){
  223. this.adapter.delAll(this.id);
  224. this.rooms = [];
  225. };
  226. /**
  227. * Called by `Namespace` upon succesful
  228. * middleware execution (ie: authorization).
  229. *
  230. * @api private
  231. */
  232. Socket.prototype.onconnect = function(){
  233. debug('socket connected - writing packet');
  234. this.join(this.id);
  235. this.packet({ type: parser.CONNECT });
  236. this.nsp.connected[this.id] = this;
  237. };
  238. /**
  239. * Called with each packet. Called by `Client`.
  240. *
  241. * @param {Object} packet
  242. * @api private
  243. */
  244. Socket.prototype.onpacket = function(packet){
  245. debug('got packet %j', packet);
  246. switch (packet.type) {
  247. case parser.EVENT:
  248. this.onevent(packet);
  249. break;
  250. case parser.BINARY_EVENT:
  251. this.onevent(packet);
  252. break;
  253. case parser.ACK:
  254. this.onack(packet);
  255. break;
  256. case parser.BINARY_ACK:
  257. this.onack(packet);
  258. break;
  259. case parser.DISCONNECT:
  260. this.ondisconnect();
  261. break;
  262. case parser.ERROR:
  263. this.emit('error', packet.data);
  264. }
  265. };
  266. /**
  267. * Called upon event packet.
  268. *
  269. * @param {Object} packet object
  270. * @api private
  271. */
  272. Socket.prototype.onevent = function(packet){
  273. var args = packet.data || [];
  274. debug('emitting event %j', args);
  275. if (null != packet.id) {
  276. debug('attaching ack callback to event');
  277. args.push(this.ack(packet.id));
  278. }
  279. emit.apply(this, args);
  280. };
  281. /**
  282. * Produces an ack callback to emit with an event.
  283. *
  284. * @param {Number} packet id
  285. * @api private
  286. */
  287. Socket.prototype.ack = function(id){
  288. var self = this;
  289. var sent = false;
  290. return function(){
  291. // prevent double callbacks
  292. if (sent) return;
  293. var args = Array.prototype.slice.call(arguments);
  294. debug('sending ack %j', args);
  295. var type = hasBin(args) ? parser.BINARY_ACK : parser.ACK;
  296. self.packet({
  297. id: id,
  298. type: type,
  299. data: args
  300. });
  301. };
  302. };
  303. /**
  304. * Called upon ack packet.
  305. *
  306. * @api private
  307. */
  308. Socket.prototype.onack = function(packet){
  309. var ack = this.acks[packet.id];
  310. if ('function' == typeof ack) {
  311. debug('calling ack %s with %j', packet.id, packet.data);
  312. ack.apply(this, packet.data);
  313. delete this.acks[packet.id];
  314. } else {
  315. debug('bad ack %s', packet.id);
  316. }
  317. };
  318. /**
  319. * Called upon client disconnect packet.
  320. *
  321. * @api private
  322. */
  323. Socket.prototype.ondisconnect = function(){
  324. debug('got disconnect packet');
  325. this.onclose('client namespace disconnect');
  326. };
  327. /**
  328. * Handles a client error.
  329. *
  330. * @api private
  331. */
  332. Socket.prototype.onerror = function(err){
  333. if (this.listeners('error').length) {
  334. this.emit('error', err);
  335. } else {
  336. console.error('Missing error handler on `socket`.');
  337. console.error(err.stack);
  338. }
  339. };
  340. /**
  341. * Called upon closing. Called by `Client`.
  342. *
  343. * @param {String} reason
  344. * @param {Error} optional error object
  345. * @api private
  346. */
  347. Socket.prototype.onclose = function(reason){
  348. if (!this.connected) return this;
  349. debug('closing socket - reason %s', reason);
  350. this.leaveAll();
  351. this.nsp.remove(this);
  352. this.client.remove(this);
  353. this.connected = false;
  354. this.disconnected = true;
  355. delete this.nsp.connected[this.id];
  356. this.emit('disconnect', reason);
  357. };
  358. /**
  359. * Produces an `error` packet.
  360. *
  361. * @param {Object} error object
  362. * @api private
  363. */
  364. Socket.prototype.error = function(err){
  365. this.packet({ type: parser.ERROR, data: err });
  366. };
  367. /**
  368. * Disconnects this client.
  369. *
  370. * @param {Boolean} if `true`, closes the underlying connection
  371. * @return {Socket} self
  372. * @api public
  373. */
  374. Socket.prototype.disconnect = function(close){
  375. if (!this.connected) return this;
  376. if (close) {
  377. this.client.disconnect();
  378. } else {
  379. this.packet({ type: parser.DISCONNECT });
  380. this.onclose('server namespace disconnect');
  381. }
  382. return this;
  383. };