forked from coolaj86/telebit.js
		
	added ability to add/clear tokens on active websocket
This commit is contained in:
		
							parent
							
								
									160c591d7f
								
							
						
					
					
						commit
						dbf8832aa9
					
				| @ -46,11 +46,12 @@ | |||||||
|   }, |   }, | ||||||
|   "homepage": "https://git.daplie.com/Daplie/node-tunnel-client#readme", |   "homepage": "https://git.daplie.com/Daplie/node-tunnel-client#readme", | ||||||
|   "dependencies": { |   "dependencies": { | ||||||
|  |     "bluebird": "^3.5.0", | ||||||
|     "commander": "^2.9.0", |     "commander": "^2.9.0", | ||||||
|     "oauth3.js": "git+https://git.daplie.com/OAuth3/oauth3.js.git#v1", |  | ||||||
|     "jsonwebtoken": "^7.1.9", |     "jsonwebtoken": "^7.1.9", | ||||||
|  |     "oauth3.js": "git+https://git.daplie.com/OAuth3/oauth3.js.git#v1", | ||||||
|     "sni": "^1.0.0", |     "sni": "^1.0.0", | ||||||
|     "tunnel-packer": "^1.1.0", |     "tunnel-packer": "^1.2.0", | ||||||
|     "ws": "^2.2.3" |     "ws": "^2.2.3" | ||||||
|   } |   } | ||||||
| } | } | ||||||
|  | |||||||
							
								
								
									
										68
									
								
								wsclient.js
									
									
									
									
									
								
							
							
						
						
									
										68
									
								
								wsclient.js
									
									
									
									
									
								
							| @ -2,6 +2,7 @@ | |||||||
| 'use strict'; | 'use strict'; | ||||||
| 
 | 
 | ||||||
| var WebSocket = require('ws'); | var WebSocket = require('ws'); | ||||||
|  | var PromiseA = require('bluebird'); | ||||||
| var sni = require('sni'); | var sni = require('sni'); | ||||||
| var Packer = require('tunnel-packer'); | var Packer = require('tunnel-packer'); | ||||||
| 
 | 
 | ||||||
| @ -69,8 +70,61 @@ function run(copts) { | |||||||
|     } |     } | ||||||
|   }; |   }; | ||||||
| 
 | 
 | ||||||
|  |   var pendingCommands = {}; | ||||||
|  |   function sendCommand(name) { | ||||||
|  |     var id = Math.ceil(1e9 * Math.random()); | ||||||
|  |     var cmd = [id, name].concat(Array.prototype.slice.call(arguments, 1)); | ||||||
|  | 
 | ||||||
|  |     wsHandlers.sendMessage(Packer.pack(null, cmd, 'control')); | ||||||
|  |     setTimeout(function () { | ||||||
|  |       if (pendingCommands[id]) { | ||||||
|  |         console.warn('command', id, 'timed out'); | ||||||
|  |         pendingCommands[id]({ | ||||||
|  |           message: 'response not received in time' | ||||||
|  |         , code: 'E_TIMEOUT' | ||||||
|  |         }); | ||||||
|  |       } | ||||||
|  |     }, pongTimeout); | ||||||
|  | 
 | ||||||
|  |     return new PromiseA(function (resolve, reject) { | ||||||
|  |       pendingCommands[id] = function (err, result) { | ||||||
|  |         delete pendingCommands[id]; | ||||||
|  |         if (err) { | ||||||
|  |           reject(err); | ||||||
|  |         } else { | ||||||
|  |           resolve(result); | ||||||
|  |         } | ||||||
|  |       }; | ||||||
|  |     }); | ||||||
|  |   } | ||||||
|  | 
 | ||||||
|   var packerHandlers = { |   var packerHandlers = { | ||||||
|     onmessage: function (opts) { |     oncontrol: function (opts) { | ||||||
|  |       var cmd, err; | ||||||
|  |       try { | ||||||
|  |         cmd = JSON.parse(opts.data.toString()); | ||||||
|  |       } catch (err) {} | ||||||
|  |       if (!Array.isArray(cmd) || typeof cmd[0] !== 'number') { | ||||||
|  |         console.warn('received bad command "' + opts.data.toString() + '"'); | ||||||
|  |         return; | ||||||
|  |       } | ||||||
|  | 
 | ||||||
|  |       if (cmd[0] < 0) { | ||||||
|  |         var cb = pendingCommands[-cmd[0]]; | ||||||
|  |         if (!cb) { | ||||||
|  |           console.warn('received response for unknown request:', cmd); | ||||||
|  |         } else { | ||||||
|  |           cb.apply(null, cmd.slice(1)); | ||||||
|  |         } | ||||||
|  |         return; | ||||||
|  |       } | ||||||
|  | 
 | ||||||
|  |       // TODO: handle a "hello" message that let's us know we're authenticated.
 | ||||||
|  |       err = { message: 'unknown command '+cmd[1], code: 'E_UNKNOWN_COMMAND' }; | ||||||
|  | 
 | ||||||
|  |       wsHandlers.sendMessage(Packer.pack(null, [-cmd[0], err], 'control')); | ||||||
|  |     } | ||||||
|  |   , onmessage: function (opts) { | ||||||
|       var net = copts.net || require('net'); |       var net = copts.net || require('net'); | ||||||
|       var cid = Packer.addrToId(opts); |       var cid = Packer.addrToId(opts); | ||||||
|       var service = opts.service.toLowerCase(); |       var service = opts.service.toLowerCase(); | ||||||
| @ -222,6 +276,12 @@ function run(copts) { | |||||||
|       clearTimeout(timeoutId); |       clearTimeout(timeoutId); | ||||||
|       wstunneler = null; |       wstunneler = null; | ||||||
|       clientHandlers.closeAll(); |       clientHandlers.closeAll(); | ||||||
|  |       Object.keys(pendingCommands).forEach(function (id) { | ||||||
|  |         pendingCommands[id]({ | ||||||
|  |           message: 'websocket connection closed before response' | ||||||
|  |         , code: 'E_CONN_CLOSED' | ||||||
|  |         }); | ||||||
|  |       }); | ||||||
| 
 | 
 | ||||||
|       if (!authenticated) { |       if (!authenticated) { | ||||||
|         console.info('[close] failed on first attempt... check authentication.'); |         console.info('[close] failed on first attempt... check authentication.'); | ||||||
| @ -297,6 +357,12 @@ function run(copts) { | |||||||
|         } |         } | ||||||
|       } |       } | ||||||
|     } |     } | ||||||
|  |   , append: function (token) { | ||||||
|  |       return sendCommand('add_token', token); | ||||||
|  |     } | ||||||
|  |   , clear: function (token) { | ||||||
|  |       return sendCommand('delete_token', token || '*'); | ||||||
|  |     } | ||||||
|   }; |   }; | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user