remove mock sockets and websockets unused resources
parent
c0484207d1
commit
46dfb3489b
@ -1,635 +0,0 @@
|
|||||||
(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){
|
|
||||||
// Starting point for browserify and throws important objects into the window object
|
|
||||||
var Service = require('./service');
|
|
||||||
var MockServer = require('./mock-server');
|
|
||||||
var MockSocket = require('./mock-socket');
|
|
||||||
var globalContext = require('./helpers/global-context');
|
|
||||||
|
|
||||||
globalContext.SocketService = Service;
|
|
||||||
globalContext.MockSocket = MockSocket;
|
|
||||||
globalContext.MockServer = MockServer;
|
|
||||||
|
|
||||||
},{"./helpers/global-context":3,"./mock-server":7,"./mock-socket":8,"./service":9}],2:[function(require,module,exports){
|
|
||||||
var globalContext = require('./global-context');
|
|
||||||
|
|
||||||
/*
|
|
||||||
* This delay allows the thread to finish assigning its on* methods
|
|
||||||
* before invoking the delay callback. This is purely a timing hack.
|
|
||||||
* http://geekabyte.blogspot.com/2014/01/javascript-effect-of-setting-settimeout.html
|
|
||||||
*
|
|
||||||
* @param {callback: function} the callback which will be invoked after the timeout
|
|
||||||
* @parma {context: object} the context in which to invoke the function
|
|
||||||
*/
|
|
||||||
function delay(callback, context) {
|
|
||||||
globalContext.setTimeout(function(context) {
|
|
||||||
callback.call(context);
|
|
||||||
}, 4, context);
|
|
||||||
}
|
|
||||||
|
|
||||||
module.exports = delay;
|
|
||||||
|
|
||||||
},{"./global-context":3}],3:[function(require,module,exports){
|
|
||||||
(function (global){
|
|
||||||
/*
|
|
||||||
* Determines the global context. This should be either window (in the)
|
|
||||||
* case where we are in a browser) or global (in the case where we are in
|
|
||||||
* node)
|
|
||||||
*/
|
|
||||||
var globalContext;
|
|
||||||
|
|
||||||
if(typeof window === 'undefined') {
|
|
||||||
globalContext = global;
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
globalContext = window;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!globalContext) {
|
|
||||||
throw new Error('Unable to set the global context to either window or global.');
|
|
||||||
}
|
|
||||||
|
|
||||||
module.exports = globalContext;
|
|
||||||
|
|
||||||
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
||||||
},{}],4:[function(require,module,exports){
|
|
||||||
/*
|
|
||||||
* This is a mock websocket event message that is passed into the onopen,
|
|
||||||
* opmessage, etc functions.
|
|
||||||
*
|
|
||||||
* @param {name: string} The name of the event
|
|
||||||
* @param {data: *} The data to send.
|
|
||||||
* @param {origin: string} The url of the place where the event is originating.
|
|
||||||
*/
|
|
||||||
function socketEventMessage(name, data, origin) {
|
|
||||||
var ports = null;
|
|
||||||
var source = null;
|
|
||||||
var bubbles = false;
|
|
||||||
var cancelable = false;
|
|
||||||
var lastEventId = '';
|
|
||||||
var targetPlacehold = null;
|
|
||||||
|
|
||||||
try {
|
|
||||||
var messageEvent = new MessageEvent(name);
|
|
||||||
messageEvent.initMessageEvent(name, bubbles, cancelable, data, origin, lastEventId);
|
|
||||||
|
|
||||||
Object.defineProperties(messageEvent, {
|
|
||||||
target: {
|
|
||||||
get: function() { return targetPlacehold; },
|
|
||||||
set: function(value) { targetPlacehold = value; }
|
|
||||||
},
|
|
||||||
srcElement: {
|
|
||||||
get: function() { return this.target; }
|
|
||||||
},
|
|
||||||
currentTarget: {
|
|
||||||
get: function() { return this.target; }
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
catch (e) {
|
|
||||||
// We are unable to create a MessageEvent Object. This should only be happening in PhantomJS.
|
|
||||||
var messageEvent = {
|
|
||||||
type : name,
|
|
||||||
bubbles : bubbles,
|
|
||||||
cancelable : cancelable,
|
|
||||||
data : data,
|
|
||||||
origin : origin,
|
|
||||||
lastEventId : lastEventId,
|
|
||||||
source : source,
|
|
||||||
ports : ports,
|
|
||||||
defaultPrevented : false,
|
|
||||||
returnValue : true,
|
|
||||||
clipboardData : undefined
|
|
||||||
};
|
|
||||||
|
|
||||||
Object.defineProperties(messageEvent, {
|
|
||||||
target: {
|
|
||||||
get: function() { return targetPlacehold; },
|
|
||||||
set: function(value) { targetPlacehold = value; }
|
|
||||||
},
|
|
||||||
srcElement: {
|
|
||||||
get: function() { return this.target; }
|
|
||||||
},
|
|
||||||
currentTarget: {
|
|
||||||
get: function() { return this.target; }
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
return messageEvent;
|
|
||||||
}
|
|
||||||
|
|
||||||
module.exports = socketEventMessage;
|
|
||||||
|
|
||||||
},{}],5:[function(require,module,exports){
|
|
||||||
/*
|
|
||||||
* The native websocket object will transform urls without a pathname to have just a /.
|
|
||||||
* As an example: ws://localhost:8080 would actually be ws://localhost:8080/ but ws://example.com/foo would not
|
|
||||||
* change. This function does this transformation to stay inline with the native websocket implementation.
|
|
||||||
*
|
|
||||||
* @param {url: string} The url to transform.
|
|
||||||
*/
|
|
||||||
function urlTransform(url) {
|
|
||||||
var urlPath = urlParse('path', url);
|
|
||||||
var urlQuery = urlParse('?', url);
|
|
||||||
|
|
||||||
urlQuery = (urlQuery) ? '?' + urlQuery : '';
|
|
||||||
|
|
||||||
if(urlPath === '') {
|
|
||||||
return url.split('?')[0] + '/' + urlQuery;
|
|
||||||
}
|
|
||||||
|
|
||||||
return url;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
* The following functions (isNumeric & urlParse) was taken from
|
|
||||||
* https://github.com/websanova/js-url/blob/764ed8d94012a79bfa91026f2a62fe3383a5a49e/url.js
|
|
||||||
* which is shared via the MIT license with minimal modifications.
|
|
||||||
*/
|
|
||||||
function isNumeric(arg) {
|
|
||||||
return !isNaN(parseFloat(arg)) && isFinite(arg);
|
|
||||||
}
|
|
||||||
|
|
||||||
function urlParse(arg, url) {
|
|
||||||
var _ls = url || window.location.toString();
|
|
||||||
|
|
||||||
if (!arg) { return _ls; }
|
|
||||||
else { arg = arg.toString(); }
|
|
||||||
|
|
||||||
if (_ls.substring(0,2) === '//') { _ls = 'http:' + _ls; }
|
|
||||||
else if (_ls.split('://').length === 1) { _ls = 'http://' + _ls; }
|
|
||||||
|
|
||||||
url = _ls.split('/');
|
|
||||||
var _l = {auth:''}, host = url[2].split('@');
|
|
||||||
|
|
||||||
if (host.length === 1) { host = host[0].split(':'); }
|
|
||||||
else { _l.auth = host[0]; host = host[1].split(':'); }
|
|
||||||
|
|
||||||
_l.protocol=url[0];
|
|
||||||
_l.hostname=host[0];
|
|
||||||
_l.port=(host[1] || ((_l.protocol.split(':')[0].toLowerCase() === 'https') ? '443' : '80'));
|
|
||||||
_l.pathname=( (url.length > 3 ? '/' : '') + url.slice(3, url.length).join('/').split('?')[0].split('#')[0]);
|
|
||||||
var _p = _l.pathname;
|
|
||||||
|
|
||||||
if (_p.charAt(_p.length-1) === '/') { _p=_p.substring(0, _p.length-1); }
|
|
||||||
var _h = _l.hostname, _hs = _h.split('.'), _ps = _p.split('/');
|
|
||||||
|
|
||||||
if (arg === 'hostname') { return _h; }
|
|
||||||
else if (arg === 'domain') {
|
|
||||||
if (/^(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])$/.test(_h)) { return _h; }
|
|
||||||
return _hs.slice(-2).join('.');
|
|
||||||
}
|
|
||||||
//else if (arg === 'tld') { return _hs.slice(-1).join('.'); }
|
|
||||||
else if (arg === 'sub') { return _hs.slice(0, _hs.length - 2).join('.'); }
|
|
||||||
else if (arg === 'port') { return _l.port; }
|
|
||||||
else if (arg === 'protocol') { return _l.protocol.split(':')[0]; }
|
|
||||||
else if (arg === 'auth') { return _l.auth; }
|
|
||||||
else if (arg === 'user') { return _l.auth.split(':')[0]; }
|
|
||||||
else if (arg === 'pass') { return _l.auth.split(':')[1] || ''; }
|
|
||||||
else if (arg === 'path') { return _l.pathname; }
|
|
||||||
else if (arg.charAt(0) === '.') {
|
|
||||||
arg = arg.substring(1);
|
|
||||||
if(isNumeric(arg)) {arg = parseInt(arg, 10); return _hs[arg < 0 ? _hs.length + arg : arg-1] || ''; }
|
|
||||||
}
|
|
||||||
else if (isNumeric(arg)) { arg = parseInt(arg, 10); return _ps[arg < 0 ? _ps.length + arg : arg] || ''; }
|
|
||||||
else if (arg === 'file') { return _ps.slice(-1)[0]; }
|
|
||||||
else if (arg === 'filename') { return _ps.slice(-1)[0].split('.')[0]; }
|
|
||||||
else if (arg === 'fileext') { return _ps.slice(-1)[0].split('.')[1] || ''; }
|
|
||||||
else if (arg.charAt(0) === '?' || arg.charAt(0) === '#') {
|
|
||||||
var params = _ls, param = null;
|
|
||||||
|
|
||||||
if(arg.charAt(0) === '?') { params = (params.split('?')[1] || '').split('#')[0]; }
|
|
||||||
else if(arg.charAt(0) === '#') { params = (params.split('#')[1] || ''); }
|
|
||||||
|
|
||||||
if(!arg.charAt(1)) { return params; }
|
|
||||||
|
|
||||||
arg = arg.substring(1);
|
|
||||||
params = params.split('&');
|
|
||||||
|
|
||||||
for(var i=0,ii=params.length; i<ii; i++) {
|
|
||||||
param = params[i].split('=');
|
|
||||||
if(param[0] === arg) { return param[1] || ''; }
|
|
||||||
}
|
|
||||||
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
return '';
|
|
||||||
}
|
|
||||||
|
|
||||||
module.exports = urlTransform;
|
|
||||||
|
|
||||||
},{}],6:[function(require,module,exports){
|
|
||||||
/*
|
|
||||||
* This defines four methods: onopen, onmessage, onerror, and onclose. This is done this way instead of
|
|
||||||
* just placing the methods on the prototype because we need to capture the callback when it is defined like so:
|
|
||||||
*
|
|
||||||
* mockSocket.onopen = function() { // this is what we need to store };
|
|
||||||
*
|
|
||||||
* The only way is to capture the callback via the custom setter below and then place them into the correct
|
|
||||||
* namespace so they get invoked at the right time.
|
|
||||||
*
|
|
||||||
* @param {websocket: object} The websocket object which we want to define these properties onto
|
|
||||||
*/
|
|
||||||
function webSocketProperties(websocket) {
|
|
||||||
var eventMessageSource = function(callback) {
|
|
||||||
return function(event) {
|
|
||||||
event.target = websocket;
|
|
||||||
callback.apply(websocket, arguments);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
Object.defineProperties(websocket, {
|
|
||||||
onopen: {
|
|
||||||
enumerable: true,
|
|
||||||
get: function() { return this._onopen; },
|
|
||||||
set: function(callback) {
|
|
||||||
this._onopen = eventMessageSource(callback);
|
|
||||||
this.service.setCallbackObserver('clientOnOpen', this._onopen, websocket);
|
|
||||||
}
|
|
||||||
},
|
|
||||||
onmessage: {
|
|
||||||
enumerable: true,
|
|
||||||
get: function() { return this._onmessage; },
|
|
||||||
set: function(callback) {
|
|
||||||
this._onmessage = eventMessageSource(callback);
|
|
||||||
this.service.setCallbackObserver('clientOnMessage', this._onmessage, websocket);
|
|
||||||
}
|
|
||||||
},
|
|
||||||
onclose: {
|
|
||||||
enumerable: true,
|
|
||||||
get: function() { return this._onclose; },
|
|
||||||
set: function(callback) {
|
|
||||||
this._onclose = eventMessageSource(callback);
|
|
||||||
this.service.setCallbackObserver('clientOnclose', this._onclose, websocket);
|
|
||||||
}
|
|
||||||
},
|
|
||||||
onerror: {
|
|
||||||
enumerable: true,
|
|
||||||
get: function() { return this._onerror; },
|
|
||||||
set: function(callback) {
|
|
||||||
this._onerror = eventMessageSource(callback);
|
|
||||||
this.service.setCallbackObserver('clientOnError', this._onerror, websocket);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
module.exports = webSocketProperties;
|
|
||||||
|
|
||||||
},{}],7:[function(require,module,exports){
|
|
||||||
var Service = require('./service');
|
|
||||||
var delay = require('./helpers/delay');
|
|
||||||
var urlTransform = require('./helpers/url-transform');
|
|
||||||
var socketMessageEvent = require('./helpers/message-event');
|
|
||||||
var globalContext = require('./helpers/global-context');
|
|
||||||
|
|
||||||
function MockServer(url) {
|
|
||||||
var service = new Service();
|
|
||||||
this.url = urlTransform(url);
|
|
||||||
|
|
||||||
globalContext.MockSocket.services[this.url] = service;
|
|
||||||
|
|
||||||
this.service = service;
|
|
||||||
service.server = this;
|
|
||||||
}
|
|
||||||
|
|
||||||
MockServer.prototype = {
|
|
||||||
service: null,
|
|
||||||
|
|
||||||
/*
|
|
||||||
* This is the main function for the mock server to subscribe to the on events.
|
|
||||||
*
|
|
||||||
* ie: mockServer.on('connection', function() { console.log('a mock client connected'); });
|
|
||||||
*
|
|
||||||
* @param {type: string}: The event key to subscribe to. Valid keys are: connection, message, and close.
|
|
||||||
* @param {callback: function}: The callback which should be called when a certain event is fired.
|
|
||||||
*/
|
|
||||||
on: function(type, callback) {
|
|
||||||
var observerKey;
|
|
||||||
|
|
||||||
if(typeof callback !== 'function' || typeof type !== 'string') {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
switch(type) {
|
|
||||||
case 'connection':
|
|
||||||
observerKey = 'clientHasJoined';
|
|
||||||
break;
|
|
||||||
case 'message':
|
|
||||||
observerKey = 'clientHasSentMessage';
|
|
||||||
break;
|
|
||||||
case 'close':
|
|
||||||
observerKey = 'clientHasLeft';
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Make sure that the observerKey is valid before observing on it.
|
|
||||||
if(typeof observerKey === 'string') {
|
|
||||||
this.service.clearAll(observerKey);
|
|
||||||
this.service.setCallbackObserver(observerKey, callback, this);
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
/*
|
|
||||||
* This send function will notify all mock clients via their onmessage callbacks that the server
|
|
||||||
* has a message for them.
|
|
||||||
*
|
|
||||||
* @param {data: *}: Any javascript object which will be crafted into a MessageObject.
|
|
||||||
*/
|
|
||||||
send: function(data) {
|
|
||||||
delay(function() {
|
|
||||||
this.service.sendMessageToClients(socketMessageEvent('message', data, this.url));
|
|
||||||
}, this);
|
|
||||||
},
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Notifies all mock clients that the server is closing and their onclose callbacks should fire.
|
|
||||||
*/
|
|
||||||
close: function() {
|
|
||||||
delay(function() {
|
|
||||||
this.service.closeConnectionFromServer(socketMessageEvent('close', null, this.url));
|
|
||||||
}, this);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
module.exports = MockServer;
|
|
||||||
|
|
||||||
},{"./helpers/delay":2,"./helpers/global-context":3,"./helpers/message-event":4,"./helpers/url-transform":5,"./service":9}],8:[function(require,module,exports){
|
|
||||||
var delay = require('./helpers/delay');
|
|
||||||
var urlTransform = require('./helpers/url-transform');
|
|
||||||
var socketMessageEvent = require('./helpers/message-event');
|
|
||||||
var globalContext = require('./helpers/global-context');
|
|
||||||
var webSocketProperties = require('./helpers/websocket-properties');
|
|
||||||
|
|
||||||
function MockSocket(url) {
|
|
||||||
this.binaryType = 'blob';
|
|
||||||
this.url = urlTransform(url);
|
|
||||||
this.readyState = globalContext.MockSocket.CONNECTING;
|
|
||||||
this.service = globalContext.MockSocket.services[this.url];
|
|
||||||
|
|
||||||
webSocketProperties(this);
|
|
||||||
|
|
||||||
delay(function() {
|
|
||||||
// Let the service know that we are both ready to change our ready state and that
|
|
||||||
// this client is connecting to the mock server.
|
|
||||||
this.service.clientIsConnecting(this, this._updateReadyState);
|
|
||||||
}, this);
|
|
||||||
}
|
|
||||||
|
|
||||||
MockSocket.CONNECTING = 0;
|
|
||||||
MockSocket.OPEN = 1;
|
|
||||||
MockSocket.CLOSING = 2;
|
|
||||||
MockSocket.LOADING = 3;
|
|
||||||
MockSocket.CLOSED = 4;
|
|
||||||
MockSocket.services = {};
|
|
||||||
|
|
||||||
MockSocket.prototype = {
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Holds the on*** callback functions. These are really just for the custom
|
|
||||||
* getters that are defined in the helpers/websocket-properties. Accessing these properties is not advised.
|
|
||||||
*/
|
|
||||||
_onopen : null,
|
|
||||||
_onmessage : null,
|
|
||||||
_onerror : null,
|
|
||||||
_onclose : null,
|
|
||||||
|
|
||||||
/*
|
|
||||||
* This holds reference to the service object. The service object is how we can
|
|
||||||
* communicate with the backend via the pub/sub model.
|
|
||||||
*
|
|
||||||
* The service has properties which we can use to observe or notifiy with.
|
|
||||||
* this.service.notify('foo') & this.service.observe('foo', callback, context)
|
|
||||||
*/
|
|
||||||
service: null,
|
|
||||||
|
|
||||||
/*
|
|
||||||
* This is a mock for the native send function found on the WebSocket object. It notifies the
|
|
||||||
* service that it has sent a message.
|
|
||||||
*
|
|
||||||
* @param {data: *}: Any javascript object which will be crafted into a MessageObject.
|
|
||||||
*/
|
|
||||||
send: function(data) {
|
|
||||||
delay(function() {
|
|
||||||
this.service.sendMessageToServer(socketMessageEvent('message', data, this.url));
|
|
||||||
}, this);
|
|
||||||
},
|
|
||||||
|
|
||||||
/*
|
|
||||||
* This is a mock for the native close function found on the WebSocket object. It notifies the
|
|
||||||
* service that it is closing the connection.
|
|
||||||
*/
|
|
||||||
close: function() {
|
|
||||||
delay(function() {
|
|
||||||
this.service.closeConnectionFromClient(socketMessageEvent('close', null, this.url), this);
|
|
||||||
}, this);
|
|
||||||
},
|
|
||||||
|
|
||||||
/*
|
|
||||||
* This is a private method that can be used to change the readyState. This is used
|
|
||||||
* like this: this.protocol.subject.observe('updateReadyState', this._updateReadyState, this);
|
|
||||||
* so that the service and the server can change the readyState simply be notifing a namespace.
|
|
||||||
*
|
|
||||||
* @param {newReadyState: number}: The new ready state. Must be 0-4
|
|
||||||
*/
|
|
||||||
_updateReadyState: function(newReadyState) {
|
|
||||||
if(newReadyState >= 0 && newReadyState <= 4) {
|
|
||||||
this.readyState = newReadyState;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
module.exports = MockSocket;
|
|
||||||
|
|
||||||
},{"./helpers/delay":2,"./helpers/global-context":3,"./helpers/message-event":4,"./helpers/url-transform":5,"./helpers/websocket-properties":6}],9:[function(require,module,exports){
|
|
||||||
var socketMessageEvent = require('./helpers/message-event');
|
|
||||||
var globalContext = require('./helpers/global-context');
|
|
||||||
|
|
||||||
function SocketService() {
|
|
||||||
this.list = {};
|
|
||||||
}
|
|
||||||
|
|
||||||
SocketService.prototype = {
|
|
||||||
server: null,
|
|
||||||
|
|
||||||
/*
|
|
||||||
* This notifies the mock server that a client is connecting and also sets up
|
|
||||||
* the ready state observer.
|
|
||||||
*
|
|
||||||
* @param {client: object} the context of the client
|
|
||||||
* @param {readyStateFunction: function} the function that will be invoked on a ready state change
|
|
||||||
*/
|
|
||||||
clientIsConnecting: function(client, readyStateFunction) {
|
|
||||||
this.observe('updateReadyState', readyStateFunction, client);
|
|
||||||
|
|
||||||
// if the server has not been set then we notify the onclose method of this client
|
|
||||||
if(!this.server) {
|
|
||||||
this.notify(client, 'updateReadyState', globalContext.MockSocket.CLOSED);
|
|
||||||
this.notifyOnlyFor(client, 'clientOnError');
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
this.notifyOnlyFor(client, 'updateReadyState', globalContext.MockSocket.OPEN);
|
|
||||||
this.notify('clientHasJoined', this.server);
|
|
||||||
this.notifyOnlyFor(client, 'clientOnOpen', socketMessageEvent('open', null, this.server.url));
|
|
||||||
},
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Closes a connection from the server's perspective. This should
|
|
||||||
* close all clients.
|
|
||||||
*
|
|
||||||
* @param {messageEvent: object} the mock message event.
|
|
||||||
*/
|
|
||||||
closeConnectionFromServer: function(messageEvent) {
|
|
||||||
this.notify('updateReadyState', globalContext.MockSocket.CLOSING);
|
|
||||||
this.notify('clientOnclose', messageEvent);
|
|
||||||
this.notify('updateReadyState', globalContext.MockSocket.CLOSED);
|
|
||||||
this.notify('clientHasLeft');
|
|
||||||
},
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Closes a connection from the clients perspective. This
|
|
||||||
* should only close the client who initiated the close and not
|
|
||||||
* all of the other clients.
|
|
||||||
*
|
|
||||||
* @param {messageEvent: object} the mock message event.
|
|
||||||
* @param {client: object} the context of the client
|
|
||||||
*/
|
|
||||||
closeConnectionFromClient: function(messageEvent, client) {
|
|
||||||
if(client.readyState === globalContext.MockSocket.OPEN) {
|
|
||||||
this.notifyOnlyFor(client, 'updateReadyState', globalContext.MockSocket.CLOSING);
|
|
||||||
this.notifyOnlyFor(client, 'clientOnclose', messageEvent);
|
|
||||||
this.notifyOnlyFor(client, 'updateReadyState', globalContext.MockSocket.CLOSED);
|
|
||||||
this.notify('clientHasLeft');
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Notifies the mock server that a client has sent a message.
|
|
||||||
*
|
|
||||||
* @param {messageEvent: object} the mock message event.
|
|
||||||
*/
|
|
||||||
sendMessageToServer: function(messageEvent) {
|
|
||||||
this.notify('clientHasSentMessage', messageEvent.data, messageEvent);
|
|
||||||
},
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Notifies all clients that the server has sent a message
|
|
||||||
*
|
|
||||||
* @param {messageEvent: object} the mock message event.
|
|
||||||
*/
|
|
||||||
sendMessageToClients: function(messageEvent) {
|
|
||||||
this.notify('clientOnMessage', messageEvent);
|
|
||||||
},
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Setup the callback function observers for both the server and client.
|
|
||||||
*
|
|
||||||
* @param {observerKey: string} either: connection, message or close
|
|
||||||
* @param {callback: function} the callback to be invoked
|
|
||||||
* @param {server: object} the context of the server
|
|
||||||
*/
|
|
||||||
setCallbackObserver: function(observerKey, callback, server) {
|
|
||||||
this.observe(observerKey, callback, server);
|
|
||||||
},
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Binds a callback to a namespace. If notify is called on a namespace all "observers" will be
|
|
||||||
* fired with the context that is passed in.
|
|
||||||
*
|
|
||||||
* @param {namespace: string}
|
|
||||||
* @param {callback: function}
|
|
||||||
* @param {context: object}
|
|
||||||
*/
|
|
||||||
observe: function(namespace, callback, context) {
|
|
||||||
|
|
||||||
// Make sure the arguments are of the correct type
|
|
||||||
if( typeof namespace !== 'string' || typeof callback !== 'function' || (context && typeof context !== 'object')) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
// If a namespace has not been created before then we need to "initialize" the namespace
|
|
||||||
if(!this.list[namespace]) {
|
|
||||||
this.list[namespace] = [];
|
|
||||||
}
|
|
||||||
|
|
||||||
this.list[namespace].push({callback: callback, context: context});
|
|
||||||
},
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Remove all observers from a given namespace.
|
|
||||||
*
|
|
||||||
* @param {namespace: string} The namespace to clear.
|
|
||||||
*/
|
|
||||||
clearAll: function(namespace) {
|
|
||||||
|
|
||||||
if(!this.verifyNamespaceArg(namespace)) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
this.list[namespace] = [];
|
|
||||||
},
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Notify all callbacks that have been bound to the given namespace.
|
|
||||||
*
|
|
||||||
* @param {namespace: string} The namespace to notify observers on.
|
|
||||||
* @param {namespace: url} The url to notify observers on.
|
|
||||||
*/
|
|
||||||
notify: function(namespace) {
|
|
||||||
|
|
||||||
// This strips the namespace from the list of args as we dont want to pass that into the callback.
|
|
||||||
var argumentsForCallback = Array.prototype.slice.call(arguments, 1);
|
|
||||||
|
|
||||||
if(!this.verifyNamespaceArg(namespace)) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Loop over all of the observers and fire the callback function with the context.
|
|
||||||
for(var i = 0, len = this.list[namespace].length; i < len; i++) {
|
|
||||||
this.list[namespace][i].callback.apply(this.list[namespace][i].context, argumentsForCallback);
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Notify only the callback of the given context and namespace.
|
|
||||||
*
|
|
||||||
* @param {context: object} the context to match against.
|
|
||||||
* @param {namespace: string} The namespace to notify observers on.
|
|
||||||
*/
|
|
||||||
notifyOnlyFor: function(context, namespace) {
|
|
||||||
|
|
||||||
// This strips the namespace from the list of args as we dont want to pass that into the callback.
|
|
||||||
var argumentsForCallback = Array.prototype.slice.call(arguments, 2);
|
|
||||||
|
|
||||||
if(!this.verifyNamespaceArg(namespace)) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Loop over all of the observers and fire the callback function with the context.
|
|
||||||
for(var i = 0, len = this.list[namespace].length; i < len; i++) {
|
|
||||||
if(this.list[namespace][i].context === context) {
|
|
||||||
this.list[namespace][i].callback.apply(this.list[namespace][i].context, argumentsForCallback);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Verifies that the namespace is valid.
|
|
||||||
*
|
|
||||||
* @param {namespace: string} The namespace to verify.
|
|
||||||
*/
|
|
||||||
verifyNamespaceArg: function(namespace) {
|
|
||||||
if(typeof namespace !== 'string' || !this.list[namespace]) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
module.exports = SocketService;
|
|
||||||
|
|
||||||
},{"./helpers/global-context":3,"./helpers/message-event":4}]},{},[1]);
|
|
@ -1,214 +0,0 @@
|
|||||||
/* global textsecure, WebSocketResource */
|
|
||||||
|
|
||||||
describe('WebSocket-Resource', () => {
|
|
||||||
describe('requests and responses', () => {
|
|
||||||
it('receives requests and sends responses', done => {
|
|
||||||
// mock socket
|
|
||||||
const requestId = '1';
|
|
||||||
const socket = {
|
|
||||||
send(data) {
|
|
||||||
const message = textsecure.protobuf.WebSocketMessage.decode(data);
|
|
||||||
assert.strictEqual(
|
|
||||||
message.type,
|
|
||||||
textsecure.protobuf.WebSocketMessage.Type.RESPONSE
|
|
||||||
);
|
|
||||||
assert.strictEqual(message.response.message, 'OK');
|
|
||||||
assert.strictEqual(message.response.status, 200);
|
|
||||||
assert.strictEqual(message.response.id.toString(), requestId);
|
|
||||||
done();
|
|
||||||
},
|
|
||||||
addEventListener() {},
|
|
||||||
};
|
|
||||||
|
|
||||||
// actual test
|
|
||||||
this.resource = new WebSocketResource(socket, {
|
|
||||||
handleRequest(request) {
|
|
||||||
assert.strictEqual(request.verb, 'PUT');
|
|
||||||
assert.strictEqual(request.path, '/some/path');
|
|
||||||
assertEqualArrayBuffers(
|
|
||||||
request.body.toArrayBuffer(),
|
|
||||||
new Uint8Array([1, 2, 3]).buffer
|
|
||||||
);
|
|
||||||
request.respond(200, 'OK');
|
|
||||||
},
|
|
||||||
});
|
|
||||||
|
|
||||||
// mock socket request
|
|
||||||
socket.onmessage({
|
|
||||||
data: new Blob([
|
|
||||||
new textsecure.protobuf.WebSocketMessage({
|
|
||||||
type: textsecure.protobuf.WebSocketMessage.Type.REQUEST,
|
|
||||||
request: {
|
|
||||||
id: requestId,
|
|
||||||
verb: 'PUT',
|
|
||||||
path: '/some/path',
|
|
||||||
body: new Uint8Array([1, 2, 3]).buffer,
|
|
||||||
},
|
|
||||||
})
|
|
||||||
.encode()
|
|
||||||
.toArrayBuffer(),
|
|
||||||
]),
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
it('sends requests and receives responses', done => {
|
|
||||||
// mock socket and request handler
|
|
||||||
let requestId;
|
|
||||||
const socket = {
|
|
||||||
send(data) {
|
|
||||||
const message = textsecure.protobuf.WebSocketMessage.decode(data);
|
|
||||||
assert.strictEqual(
|
|
||||||
message.type,
|
|
||||||
textsecure.protobuf.WebSocketMessage.Type.REQUEST
|
|
||||||
);
|
|
||||||
assert.strictEqual(message.request.verb, 'PUT');
|
|
||||||
assert.strictEqual(message.request.path, '/some/path');
|
|
||||||
assertEqualArrayBuffers(
|
|
||||||
message.request.body.toArrayBuffer(),
|
|
||||||
new Uint8Array([1, 2, 3]).buffer
|
|
||||||
);
|
|
||||||
requestId = message.request.id;
|
|
||||||
},
|
|
||||||
addEventListener() {},
|
|
||||||
};
|
|
||||||
|
|
||||||
// actual test
|
|
||||||
const resource = new WebSocketResource(socket);
|
|
||||||
resource.sendRequest({
|
|
||||||
verb: 'PUT',
|
|
||||||
path: '/some/path',
|
|
||||||
body: new Uint8Array([1, 2, 3]).buffer,
|
|
||||||
error: done,
|
|
||||||
success(message, status) {
|
|
||||||
assert.strictEqual(message, 'OK');
|
|
||||||
assert.strictEqual(status, 200);
|
|
||||||
done();
|
|
||||||
},
|
|
||||||
});
|
|
||||||
|
|
||||||
// mock socket response
|
|
||||||
socket.onmessage({
|
|
||||||
data: new Blob([
|
|
||||||
new textsecure.protobuf.WebSocketMessage({
|
|
||||||
type: textsecure.protobuf.WebSocketMessage.Type.RESPONSE,
|
|
||||||
response: { id: requestId, message: 'OK', status: 200 },
|
|
||||||
})
|
|
||||||
.encode()
|
|
||||||
.toArrayBuffer(),
|
|
||||||
]),
|
|
||||||
});
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
describe('close', () => {
|
|
||||||
before(() => {
|
|
||||||
window.WebSocket = MockSocket;
|
|
||||||
});
|
|
||||||
after(() => {
|
|
||||||
window.WebSocket = WebSocket;
|
|
||||||
});
|
|
||||||
it('closes the connection', done => {
|
|
||||||
const mockServer = new MockServer('ws://localhost:8081');
|
|
||||||
mockServer.on('connection', server => {
|
|
||||||
server.on('close', done);
|
|
||||||
});
|
|
||||||
const resource = new WebSocketResource(
|
|
||||||
new WebSocket('ws://localhost:8081')
|
|
||||||
);
|
|
||||||
resource.close();
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
describe.skip('with a keepalive config', function thisNeeded() {
|
|
||||||
before(() => {
|
|
||||||
window.WebSocket = MockSocket;
|
|
||||||
});
|
|
||||||
after(() => {
|
|
||||||
window.WebSocket = WebSocket;
|
|
||||||
});
|
|
||||||
this.timeout(60000);
|
|
||||||
it('sends keepalives once a minute', done => {
|
|
||||||
const mockServer = new MockServer('ws://localhost:8081');
|
|
||||||
mockServer.on('connection', server => {
|
|
||||||
server.on('message', data => {
|
|
||||||
const message = textsecure.protobuf.WebSocketMessage.decode(data);
|
|
||||||
assert.strictEqual(
|
|
||||||
message.type,
|
|
||||||
textsecure.protobuf.WebSocketMessage.Type.REQUEST
|
|
||||||
);
|
|
||||||
assert.strictEqual(message.request.verb, 'GET');
|
|
||||||
assert.strictEqual(message.request.path, '/v1/keepalive');
|
|
||||||
server.close();
|
|
||||||
done();
|
|
||||||
});
|
|
||||||
});
|
|
||||||
this.resource = new WebSocketResource(
|
|
||||||
new WebSocket('ws://loc1alhost:8081'),
|
|
||||||
{
|
|
||||||
keepalive: { path: '/v1/keepalive' },
|
|
||||||
}
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('uses / as a default path', done => {
|
|
||||||
const mockServer = new MockServer('ws://localhost:8081');
|
|
||||||
mockServer.on('connection', server => {
|
|
||||||
server.on('message', data => {
|
|
||||||
const message = textsecure.protobuf.WebSocketMessage.decode(data);
|
|
||||||
assert.strictEqual(
|
|
||||||
message.type,
|
|
||||||
textsecure.protobuf.WebSocketMessage.Type.REQUEST
|
|
||||||
);
|
|
||||||
assert.strictEqual(message.request.verb, 'GET');
|
|
||||||
assert.strictEqual(message.request.path, '/');
|
|
||||||
server.close();
|
|
||||||
done();
|
|
||||||
});
|
|
||||||
});
|
|
||||||
this.resource = new WebSocketResource(
|
|
||||||
new WebSocket('ws://localhost:8081'),
|
|
||||||
{
|
|
||||||
keepalive: true,
|
|
||||||
}
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('optionally disconnects if no response', function thisNeeded1(done) {
|
|
||||||
this.timeout(65000);
|
|
||||||
const mockServer = new MockServer('ws://localhost:8081');
|
|
||||||
const socket = new WebSocket('ws://localhost:8081');
|
|
||||||
mockServer.on('connection', server => {
|
|
||||||
server.on('close', done);
|
|
||||||
});
|
|
||||||
this.resource = new WebSocketResource(socket, { keepalive: true });
|
|
||||||
});
|
|
||||||
|
|
||||||
it('allows resetting the keepalive timer', function thisNeeded2(done) {
|
|
||||||
this.timeout(65000);
|
|
||||||
const mockServer = new MockServer('ws://localhost:8081');
|
|
||||||
const socket = new WebSocket('ws://localhost:8081');
|
|
||||||
const startTime = Date.now();
|
|
||||||
mockServer.on('connection', server => {
|
|
||||||
server.on('message', data => {
|
|
||||||
const message = textsecure.protobuf.WebSocketMessage.decode(data);
|
|
||||||
assert.strictEqual(
|
|
||||||
message.type,
|
|
||||||
textsecure.protobuf.WebSocketMessage.Type.REQUEST
|
|
||||||
);
|
|
||||||
assert.strictEqual(message.request.verb, 'GET');
|
|
||||||
assert.strictEqual(message.request.path, '/');
|
|
||||||
assert(
|
|
||||||
Date.now() > startTime + 60000,
|
|
||||||
'keepalive time should be longer than a minute'
|
|
||||||
);
|
|
||||||
server.close();
|
|
||||||
done();
|
|
||||||
});
|
|
||||||
});
|
|
||||||
const resource = new WebSocketResource(socket, { keepalive: true });
|
|
||||||
setTimeout(() => {
|
|
||||||
resource.resetKeepAliveTimer();
|
|
||||||
}, 5000);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
});
|
|
@ -1,243 +0,0 @@
|
|||||||
/* global window, dcodeIO, Event, textsecure, FileReader, WebSocketResource */
|
|
||||||
|
|
||||||
// eslint-disable-next-line func-names
|
|
||||||
(function() {
|
|
||||||
/*
|
|
||||||
* WebSocket-Resources
|
|
||||||
*
|
|
||||||
* Create a request-response interface over websockets using the
|
|
||||||
* WebSocket-Resources sub-protocol[1].
|
|
||||||
*
|
|
||||||
* var client = new WebSocketResource(socket, function(request) {
|
|
||||||
* request.respond(200, 'OK');
|
|
||||||
* });
|
|
||||||
*
|
|
||||||
* client.sendRequest({
|
|
||||||
* verb: 'PUT',
|
|
||||||
* path: '/v1/messages',
|
|
||||||
* body: '{ some: "json" }',
|
|
||||||
* success: function(message, status, request) {...},
|
|
||||||
* error: function(message, status, request) {...}
|
|
||||||
* });
|
|
||||||
*
|
|
||||||
* 1. https://github.com/signalapp/WebSocket-Resources
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
const Request = function Request(options) {
|
|
||||||
this.verb = options.verb || options.type;
|
|
||||||
this.path = options.path || options.url;
|
|
||||||
this.headers = options.headers;
|
|
||||||
this.body = options.body || options.data;
|
|
||||||
this.success = options.success;
|
|
||||||
this.error = options.error;
|
|
||||||
this.id = options.id;
|
|
||||||
|
|
||||||
if (this.id === undefined) {
|
|
||||||
const bits = new Uint32Array(2);
|
|
||||||
window.crypto.getRandomValues(bits);
|
|
||||||
this.id = dcodeIO.Long.fromBits(bits[0], bits[1], true);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (this.body === undefined) {
|
|
||||||
this.body = null;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
const IncomingWebSocketRequest = function IncomingWebSocketRequest(options) {
|
|
||||||
const request = new Request(options);
|
|
||||||
const { socket } = options;
|
|
||||||
|
|
||||||
this.verb = request.verb;
|
|
||||||
this.path = request.path;
|
|
||||||
this.body = request.body;
|
|
||||||
this.headers = request.headers;
|
|
||||||
|
|
||||||
this.respond = (status, message) => {
|
|
||||||
socket.send(
|
|
||||||
new textsecure.protobuf.WebSocketMessage({
|
|
||||||
type: textsecure.protobuf.WebSocketMessage.Type.RESPONSE,
|
|
||||||
response: { id: request.id, message, status },
|
|
||||||
})
|
|
||||||
.encode()
|
|
||||||
.toArrayBuffer()
|
|
||||||
);
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
const outgoing = {};
|
|
||||||
const OutgoingWebSocketRequest = function OutgoingWebSocketRequest(
|
|
||||||
options,
|
|
||||||
socket
|
|
||||||
) {
|
|
||||||
const request = new Request(options);
|
|
||||||
outgoing[request.id] = request;
|
|
||||||
socket.send(
|
|
||||||
new textsecure.protobuf.WebSocketMessage({
|
|
||||||
type: textsecure.protobuf.WebSocketMessage.Type.REQUEST,
|
|
||||||
request: {
|
|
||||||
verb: request.verb,
|
|
||||||
path: request.path,
|
|
||||||
body: request.body,
|
|
||||||
headers: request.headers,
|
|
||||||
id: request.id,
|
|
||||||
},
|
|
||||||
})
|
|
||||||
.encode()
|
|
||||||
.toArrayBuffer()
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
window.WebSocketResource = function WebSocketResource(socket, opts = {}) {
|
|
||||||
let { handleRequest } = opts;
|
|
||||||
if (typeof handleRequest !== 'function') {
|
|
||||||
handleRequest = request => request.respond(404, 'Not found');
|
|
||||||
}
|
|
||||||
this.sendRequest = options => new OutgoingWebSocketRequest(options, socket);
|
|
||||||
|
|
||||||
// eslint-disable-next-line no-param-reassign
|
|
||||||
socket.onmessage = socketMessage => {
|
|
||||||
const blob = socketMessage.data;
|
|
||||||
const handleArrayBuffer = buffer => {
|
|
||||||
const message = textsecure.protobuf.WebSocketMessage.decode(buffer);
|
|
||||||
if (
|
|
||||||
message.type === textsecure.protobuf.WebSocketMessage.Type.REQUEST
|
|
||||||
) {
|
|
||||||
handleRequest(
|
|
||||||
new IncomingWebSocketRequest({
|
|
||||||
verb: message.request.verb,
|
|
||||||
path: message.request.path,
|
|
||||||
body: message.request.body,
|
|
||||||
headers: message.request.headers,
|
|
||||||
id: message.request.id,
|
|
||||||
socket,
|
|
||||||
})
|
|
||||||
);
|
|
||||||
} else if (
|
|
||||||
message.type === textsecure.protobuf.WebSocketMessage.Type.RESPONSE
|
|
||||||
) {
|
|
||||||
const { response } = message;
|
|
||||||
const request = outgoing[response.id];
|
|
||||||
if (request) {
|
|
||||||
request.response = response;
|
|
||||||
let callback = request.error;
|
|
||||||
if (response.status >= 200 && response.status < 300) {
|
|
||||||
callback = request.success;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (typeof callback === 'function') {
|
|
||||||
callback(response.message, response.status, request);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
throw new Error(
|
|
||||||
`Received response for unknown request ${message.response.id}`
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
if (blob instanceof ArrayBuffer) {
|
|
||||||
handleArrayBuffer(blob);
|
|
||||||
} else {
|
|
||||||
const reader = new FileReader();
|
|
||||||
reader.onload = () => handleArrayBuffer(reader.result);
|
|
||||||
reader.readAsArrayBuffer(blob);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
if (opts.keepalive) {
|
|
||||||
this.keepalive = new KeepAlive(this, {
|
|
||||||
path: opts.keepalive.path,
|
|
||||||
disconnect: opts.keepalive.disconnect,
|
|
||||||
});
|
|
||||||
const resetKeepAliveTimer = this.keepalive.reset.bind(this.keepalive);
|
|
||||||
socket.addEventListener('open', resetKeepAliveTimer);
|
|
||||||
socket.addEventListener('message', resetKeepAliveTimer);
|
|
||||||
socket.addEventListener(
|
|
||||||
'close',
|
|
||||||
this.keepalive.stop.bind(this.keepalive)
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
socket.addEventListener('close', () => {
|
|
||||||
this.closed = true;
|
|
||||||
});
|
|
||||||
|
|
||||||
this.close = (code = 3000, reason) => {
|
|
||||||
if (this.closed) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
window.log.info('WebSocketResource.close()');
|
|
||||||
if (this.keepalive) {
|
|
||||||
this.keepalive.stop();
|
|
||||||
}
|
|
||||||
|
|
||||||
socket.close(code, reason);
|
|
||||||
// eslint-disable-next-line no-param-reassign
|
|
||||||
socket.onmessage = null;
|
|
||||||
|
|
||||||
// On linux the socket can wait a long time to emit its close event if we've
|
|
||||||
// lost the internet connection. On the order of minutes. This speeds that
|
|
||||||
// process up.
|
|
||||||
setTimeout(() => {
|
|
||||||
if (this.closed) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
this.closed = true;
|
|
||||||
|
|
||||||
window.log.warn('Dispatching our own socket close event');
|
|
||||||
const ev = new Event('close');
|
|
||||||
ev.code = code;
|
|
||||||
ev.reason = reason;
|
|
||||||
this.dispatchEvent(ev);
|
|
||||||
}, 1000);
|
|
||||||
};
|
|
||||||
};
|
|
||||||
window.WebSocketResource.prototype = new textsecure.EventTarget();
|
|
||||||
|
|
||||||
function KeepAlive(websocketResource, opts = {}) {
|
|
||||||
if (websocketResource instanceof WebSocketResource) {
|
|
||||||
this.path = opts.path;
|
|
||||||
if (this.path === undefined) {
|
|
||||||
this.path = '/';
|
|
||||||
}
|
|
||||||
this.disconnect = opts.disconnect;
|
|
||||||
if (this.disconnect === undefined) {
|
|
||||||
this.disconnect = true;
|
|
||||||
}
|
|
||||||
this.wsr = websocketResource;
|
|
||||||
} else {
|
|
||||||
throw new TypeError('KeepAlive expected a WebSocketResource');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
KeepAlive.prototype = {
|
|
||||||
constructor: KeepAlive,
|
|
||||||
stop() {
|
|
||||||
clearTimeout(this.keepAliveTimer);
|
|
||||||
clearTimeout(this.disconnectTimer);
|
|
||||||
},
|
|
||||||
reset() {
|
|
||||||
clearTimeout(this.keepAliveTimer);
|
|
||||||
clearTimeout(this.disconnectTimer);
|
|
||||||
this.keepAliveTimer = setTimeout(() => {
|
|
||||||
if (this.disconnect) {
|
|
||||||
// automatically disconnect if server doesn't ack
|
|
||||||
this.disconnectTimer = setTimeout(() => {
|
|
||||||
clearTimeout(this.keepAliveTimer);
|
|
||||||
this.wsr.close(3001, 'No response to keepalive request');
|
|
||||||
}, 1000);
|
|
||||||
} else {
|
|
||||||
this.reset();
|
|
||||||
}
|
|
||||||
window.log.info('Sending a keepalive message');
|
|
||||||
this.wsr.sendRequest({
|
|
||||||
verb: 'GET',
|
|
||||||
path: this.path,
|
|
||||||
success: this.reset.bind(this),
|
|
||||||
});
|
|
||||||
}, 55000);
|
|
||||||
},
|
|
||||||
};
|
|
||||||
})();
|
|
@ -1,62 +0,0 @@
|
|||||||
#!/usr/bin/env python
|
|
||||||
import time
|
|
||||||
from http.server import BaseHTTPRequestHandler, HTTPServer
|
|
||||||
|
|
||||||
# HTTPRequestHandler class
|
|
||||||
class testHTTPServer_RequestHandler(BaseHTTPRequestHandler):
|
|
||||||
def do_POST(self):
|
|
||||||
print('got POST request to ' + self.path)
|
|
||||||
# add some latency
|
|
||||||
time.sleep(2)
|
|
||||||
# Send response status code
|
|
||||||
self.send_response(201)
|
|
||||||
|
|
||||||
# Send headers
|
|
||||||
#self.send_header()
|
|
||||||
self.end_headers()
|
|
||||||
|
|
||||||
#message = self.rfile.read(int(self.headers.get('Content-Length'))).decode('UTF-8')
|
|
||||||
length = self.headers.get('Content-Length')
|
|
||||||
for (k,v) in self.headers.items():
|
|
||||||
print(k + ':' + v)
|
|
||||||
if length:
|
|
||||||
print ('length: ' + self.headers.get('Content-Length'))
|
|
||||||
message = self.rfile.read(int(length))
|
|
||||||
|
|
||||||
array = []
|
|
||||||
for k in message:
|
|
||||||
array += [k]
|
|
||||||
print(array)
|
|
||||||
# Send message back to client
|
|
||||||
#message = "ok"
|
|
||||||
# Write content as utf-8 data
|
|
||||||
#self.wfile.write(bytes(message, "utf8"))
|
|
||||||
|
|
||||||
# GET
|
|
||||||
def do_GET(self):
|
|
||||||
# Send response status code
|
|
||||||
time.sleep(1)
|
|
||||||
self.send_response(200)
|
|
||||||
|
|
||||||
# Send headers
|
|
||||||
self.send_header('Content-type','text/html')
|
|
||||||
self.end_headers()
|
|
||||||
|
|
||||||
# Send message back to client
|
|
||||||
message = "Hello world!"
|
|
||||||
# Write content as utf-8 data
|
|
||||||
self.wfile.write(bytes(message, "utf8"))
|
|
||||||
return
|
|
||||||
|
|
||||||
def run():
|
|
||||||
print('starting server...')
|
|
||||||
|
|
||||||
# Server settings
|
|
||||||
# Choose port 8080, for port 80, which is normally used for a http server, you need root access
|
|
||||||
server_address = ('127.0.0.1', 80)
|
|
||||||
httpd = HTTPServer(server_address, testHTTPServer_RequestHandler)
|
|
||||||
print('running server...')
|
|
||||||
httpd.serve_forever()
|
|
||||||
|
|
||||||
|
|
||||||
run()
|
|
@ -1,6 +0,0 @@
|
|||||||
http server for mocking up sending message to the server and getting a response back.
|
|
||||||
websocket server for mocking up opening a connection to receive messages from the server.
|
|
||||||
|
|
||||||
run either server with
|
|
||||||
`sudo python3 <script>`
|
|
||||||
(sudo is required for port 80) but both can't be run at the same time.
|
|
@ -1,53 +0,0 @@
|
|||||||
#!/usr/bin/env python
|
|
||||||
|
|
||||||
# WS server example
|
|
||||||
import time
|
|
||||||
import asyncio
|
|
||||||
import websockets
|
|
||||||
|
|
||||||
async def hello(websocket, path):
|
|
||||||
print(f"connection done {path}")
|
|
||||||
|
|
||||||
keep_alive_bytes = bytes([8, 1, 18, 28, 10, 3, 80, 85, 84, 18, 19, 47, 97, 112, 105, 47, 118, 49, 47, 113, 117, 101, 117, 101, 47, 101, 109, 112, 116, 121, 32, 99])
|
|
||||||
# created by executing in js:
|
|
||||||
# protomessage = new textsecure.protobuf.WebSocketMessage({type: textsecure.protobuf.WebSocketMessage.Type.REQUEST, request: {id:99, verb:'PUT', path:'/api/v1/queue/empty', body:null }})
|
|
||||||
# new Uint8Array(protomessage.encode().toArrayBuffer())
|
|
||||||
message = bytes(
|
|
||||||
[
|
|
||||||
# "hello world" - unencrypted
|
|
||||||
#8,1,18,117,10,3,80,85,84,18,15,47,97,112,105,47,118,49,47,109,101,115,115,97,103,101,26,91,8,1,18,66,48,53,55,51,57,102,51,54,55,50,100,55,57,52,51,56,101,57,53,53,97,55,99,99,55,55,56,52,100,98,97,53,101,97,52,98,102,56,50,55,52,54,54,53,55,55,51,99,97,102,51,101,97,98,55,48,97,50,98,57,100,98,102,101,50,99,56,1,40,0,66,15,10,13,10,11,104,101,108,108,111,32,119,111,114,108,100,32,99
|
|
||||||
# "test" - fall back encrypted
|
|
||||||
8,1,18,140,1,10,3,80,85,84,18,15,47,97,112,105,47,118,49,47,109,101,115,115,97,103,101,26,113,8,6,18,66,48,53,51,102,48,101,57,56,54,53,97,100,101,54,97,100,57,48,48,97,54,99,101,51,98,98,54,101,102,97,99,102,102,102,97,98,99,50,56,49,101,53,97,50,102,100,102,54,101,97,49,51,57,98,51,48,51,50,49,55,57,57,97,97,50,99,56,1,40,181,202,171,141,229,44,66,32,147,127,63,203,38,142,133,120,28,115,7,150,230,26,166,28,182,199,199,182,11,101,80,48,252,232,108,164,8,236,98,50,32,150,1
|
|
||||||
])
|
|
||||||
# created by executing in js:
|
|
||||||
# dataMessage = new textsecure.protobuf.DataMessage({body: "hello world", attachments:[], contact:[]})
|
|
||||||
# content = new textsecure.protobuf.Content({ dataMessage })
|
|
||||||
# contentBytes = content.encode().toArrayBuffer()
|
|
||||||
# - skipped encryption -
|
|
||||||
# messageEnvelope = new textsecure.protobuf.Envelope({ type:1, source:"0596395a7f0a6ca6379d49c5a584103a49274973cf57ab1b6301330cc33ea6f94c", sourceDevice:1, timestamp:0, content: contentBytes})
|
|
||||||
# requestMessage = new textsecure.protobuf.WebSocketRequestMessage({id:99, verb:'PUT', path:'/api/v1/message', body: messageEnvelope.encode().toArrayBuffer()})
|
|
||||||
# protomessage = new textsecure.protobuf.WebSocketMessage({type: textsecure.protobuf.WebSocketMessage.Type.REQUEST, request: requestMessage})
|
|
||||||
# bytes = new Uint8Array(protomessage.encode().toArrayBuffer())
|
|
||||||
# bytes.toString()
|
|
||||||
signature = websocket.request_headers.get('signature')
|
|
||||||
|
|
||||||
if not signature:
|
|
||||||
print("no signature provided")
|
|
||||||
|
|
||||||
counter = 0
|
|
||||||
while(True):
|
|
||||||
print("sending keepalive")
|
|
||||||
await websocket.send(keep_alive_bytes)
|
|
||||||
response = await websocket.recv()
|
|
||||||
print(f"response: {response}")
|
|
||||||
if counter % 5 == 0:
|
|
||||||
await websocket.send(message)
|
|
||||||
response = await websocket.recv()
|
|
||||||
print(f"response: {response}")
|
|
||||||
time.sleep(30)
|
|
||||||
counter = counter + 1
|
|
||||||
|
|
||||||
start_server = websockets.serve(hello, 'localhost', 80)
|
|
||||||
|
|
||||||
asyncio.get_event_loop().run_until_complete(start_server)
|
|
||||||
asyncio.get_event_loop().run_forever()
|
|
Loading…
Reference in New Issue