Added web socket ping to keep http connections open (prevent timeouts).
This commit is contained in:
parent
5f74e50433
commit
dcc6f60b26
3 changed files with 97 additions and 65 deletions
|
@ -91,15 +91,21 @@ do($ = window.jQuery, window) ->
|
||||||
@ws.onopen = (e) =>
|
@ws.onopen = (e) =>
|
||||||
@log.debug 'onOpen', e
|
@log.debug 'onOpen', e
|
||||||
@options.onOpen(e)
|
@options.onOpen(e)
|
||||||
|
@ping()
|
||||||
|
|
||||||
@ws.onmessage = (e) =>
|
@ws.onmessage = (e) =>
|
||||||
pipes = JSON.parse(e.data)
|
pipes = JSON.parse(e.data)
|
||||||
@log.debug 'onMessage', e.data
|
@log.debug 'onMessage', e.data
|
||||||
|
for pipe in pipes
|
||||||
|
if pipe.event is 'pong'
|
||||||
|
@ping()
|
||||||
if @options.onMessage
|
if @options.onMessage
|
||||||
@options.onMessage(pipes)
|
@options.onMessage(pipes)
|
||||||
|
|
||||||
@ws.onclose = (e) =>
|
@ws.onclose = (e) =>
|
||||||
@log.debug 'close websocket connection', e
|
@log.debug 'close websocket connection', e
|
||||||
|
if @pingDelayId
|
||||||
|
clearTimeout(@pingDelayId)
|
||||||
if @manualClose
|
if @manualClose
|
||||||
@log.debug 'manual close, onClose callback'
|
@log.debug 'manual close, onClose callback'
|
||||||
@manualClose = false
|
@manualClose = false
|
||||||
|
@ -132,6 +138,11 @@ do($ = window.jQuery, window) ->
|
||||||
data: data
|
data: data
|
||||||
@ws.send msg
|
@ws.send msg
|
||||||
|
|
||||||
|
ping: =>
|
||||||
|
localPing = =>
|
||||||
|
@send('ping')
|
||||||
|
@pingDelayId = setTimeout(localPing, 29000)
|
||||||
|
|
||||||
class ZammadChat extends Base
|
class ZammadChat extends Base
|
||||||
defaults:
|
defaults:
|
||||||
chatId: undefined
|
chatId: undefined
|
||||||
|
|
|
@ -141,6 +141,7 @@ var bind = function(fn, me){ return function(){ return fn.apply(me, arguments);
|
||||||
Io.prototype.logPrefix = 'io';
|
Io.prototype.logPrefix = 'io';
|
||||||
|
|
||||||
function Io(options) {
|
function Io(options) {
|
||||||
|
this.ping = bind(this.ping, this);
|
||||||
this.send = bind(this.send, this);
|
this.send = bind(this.send, this);
|
||||||
this.reconnect = bind(this.reconnect, this);
|
this.reconnect = bind(this.reconnect, this);
|
||||||
this.close = bind(this.close, this);
|
this.close = bind(this.close, this);
|
||||||
|
@ -165,14 +166,21 @@ var bind = function(fn, me){ return function(){ return fn.apply(me, arguments);
|
||||||
this.ws.onopen = (function(_this) {
|
this.ws.onopen = (function(_this) {
|
||||||
return function(e) {
|
return function(e) {
|
||||||
_this.log.debug('onOpen', e);
|
_this.log.debug('onOpen', e);
|
||||||
return _this.options.onOpen(e);
|
_this.options.onOpen(e);
|
||||||
|
return _this.ping();
|
||||||
};
|
};
|
||||||
})(this);
|
})(this);
|
||||||
this.ws.onmessage = (function(_this) {
|
this.ws.onmessage = (function(_this) {
|
||||||
return function(e) {
|
return function(e) {
|
||||||
var pipes;
|
var i, len, pipe, pipes;
|
||||||
pipes = JSON.parse(e.data);
|
pipes = JSON.parse(e.data);
|
||||||
_this.log.debug('onMessage', e.data);
|
_this.log.debug('onMessage', e.data);
|
||||||
|
for (i = 0, len = pipes.length; i < len; i++) {
|
||||||
|
pipe = pipes[i];
|
||||||
|
if (pipe.event === 'pong') {
|
||||||
|
_this.ping();
|
||||||
|
}
|
||||||
|
}
|
||||||
if (_this.options.onMessage) {
|
if (_this.options.onMessage) {
|
||||||
return _this.options.onMessage(pipes);
|
return _this.options.onMessage(pipes);
|
||||||
}
|
}
|
||||||
|
@ -181,6 +189,9 @@ var bind = function(fn, me){ return function(){ return fn.apply(me, arguments);
|
||||||
this.ws.onclose = (function(_this) {
|
this.ws.onclose = (function(_this) {
|
||||||
return function(e) {
|
return function(e) {
|
||||||
_this.log.debug('close websocket connection', e);
|
_this.log.debug('close websocket connection', e);
|
||||||
|
if (_this.pingDelayId) {
|
||||||
|
clearTimeout(_this.pingDelayId);
|
||||||
|
}
|
||||||
if (_this.manualClose) {
|
if (_this.manualClose) {
|
||||||
_this.log.debug('manual close, onClose callback');
|
_this.log.debug('manual close, onClose callback');
|
||||||
_this.manualClose = false;
|
_this.manualClose = false;
|
||||||
|
@ -230,6 +241,16 @@ var bind = function(fn, me){ return function(){ return fn.apply(me, arguments);
|
||||||
return this.ws.send(msg);
|
return this.ws.send(msg);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Io.prototype.ping = function() {
|
||||||
|
var localPing;
|
||||||
|
localPing = (function(_this) {
|
||||||
|
return function() {
|
||||||
|
return _this.send('ping');
|
||||||
|
};
|
||||||
|
})(this);
|
||||||
|
return this.pingDelayId = setTimeout(localPing, 29000);
|
||||||
|
};
|
||||||
|
|
||||||
return Io;
|
return Io;
|
||||||
|
|
||||||
})(Base);
|
})(Base);
|
||||||
|
@ -1051,6 +1072,67 @@ var bind = function(fn, me){ return function(){ return fn.apply(me, arguments);
|
||||||
return window.ZammadChat = ZammadChat;
|
return window.ZammadChat = ZammadChat;
|
||||||
})(window.jQuery, window);
|
})(window.jQuery, window);
|
||||||
|
|
||||||
|
if (!window.zammadChatTemplates) {
|
||||||
|
window.zammadChatTemplates = {};
|
||||||
|
}
|
||||||
|
window.zammadChatTemplates["agent"] = function (__obj) {
|
||||||
|
if (!__obj) __obj = {};
|
||||||
|
var __out = [], __capture = function(callback) {
|
||||||
|
var out = __out, result;
|
||||||
|
__out = [];
|
||||||
|
callback.call(this);
|
||||||
|
result = __out.join('');
|
||||||
|
__out = out;
|
||||||
|
return __safe(result);
|
||||||
|
}, __sanitize = function(value) {
|
||||||
|
if (value && value.ecoSafe) {
|
||||||
|
return value;
|
||||||
|
} else if (typeof value !== 'undefined' && value != null) {
|
||||||
|
return __escape(value);
|
||||||
|
} else {
|
||||||
|
return '';
|
||||||
|
}
|
||||||
|
}, __safe, __objSafe = __obj.safe, __escape = __obj.escape;
|
||||||
|
__safe = __obj.safe = function(value) {
|
||||||
|
if (value && value.ecoSafe) {
|
||||||
|
return value;
|
||||||
|
} else {
|
||||||
|
if (!(typeof value !== 'undefined' && value != null)) value = '';
|
||||||
|
var result = new String(value);
|
||||||
|
result.ecoSafe = true;
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
if (!__escape) {
|
||||||
|
__escape = __obj.escape = function(value) {
|
||||||
|
return ('' + value)
|
||||||
|
.replace(/&/g, '&')
|
||||||
|
.replace(/</g, '<')
|
||||||
|
.replace(/>/g, '>')
|
||||||
|
.replace(/"/g, '"');
|
||||||
|
};
|
||||||
|
}
|
||||||
|
(function() {
|
||||||
|
(function() {
|
||||||
|
if (this.agent.avatar) {
|
||||||
|
__out.push('\n<img class="zammad-chat-agent-avatar" src="');
|
||||||
|
__out.push(__sanitize(this.agent.avatar));
|
||||||
|
__out.push('">\n');
|
||||||
|
}
|
||||||
|
|
||||||
|
__out.push('\n<span class="zammad-chat-agent-sentence">\n <span class="zammad-chat-agent-name">');
|
||||||
|
|
||||||
|
__out.push(__sanitize(this.agent.name));
|
||||||
|
|
||||||
|
__out.push('</span>\n</span>');
|
||||||
|
|
||||||
|
}).call(this);
|
||||||
|
|
||||||
|
}).call(__obj);
|
||||||
|
__obj.safe = __objSafe, __obj.escape = __escape;
|
||||||
|
return __out.join('');
|
||||||
|
};
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
* ----------------------------------------------------------------------------
|
* ----------------------------------------------------------------------------
|
||||||
* "THE BEER-WARE LICENSE" (Revision 42):
|
* "THE BEER-WARE LICENSE" (Revision 42):
|
||||||
|
@ -1136,67 +1218,6 @@ jQuery.fn.autoGrow = function(options) {
|
||||||
|
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
if (!window.zammadChatTemplates) {
|
|
||||||
window.zammadChatTemplates = {};
|
|
||||||
}
|
|
||||||
window.zammadChatTemplates["agent"] = function (__obj) {
|
|
||||||
if (!__obj) __obj = {};
|
|
||||||
var __out = [], __capture = function(callback) {
|
|
||||||
var out = __out, result;
|
|
||||||
__out = [];
|
|
||||||
callback.call(this);
|
|
||||||
result = __out.join('');
|
|
||||||
__out = out;
|
|
||||||
return __safe(result);
|
|
||||||
}, __sanitize = function(value) {
|
|
||||||
if (value && value.ecoSafe) {
|
|
||||||
return value;
|
|
||||||
} else if (typeof value !== 'undefined' && value != null) {
|
|
||||||
return __escape(value);
|
|
||||||
} else {
|
|
||||||
return '';
|
|
||||||
}
|
|
||||||
}, __safe, __objSafe = __obj.safe, __escape = __obj.escape;
|
|
||||||
__safe = __obj.safe = function(value) {
|
|
||||||
if (value && value.ecoSafe) {
|
|
||||||
return value;
|
|
||||||
} else {
|
|
||||||
if (!(typeof value !== 'undefined' && value != null)) value = '';
|
|
||||||
var result = new String(value);
|
|
||||||
result.ecoSafe = true;
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
if (!__escape) {
|
|
||||||
__escape = __obj.escape = function(value) {
|
|
||||||
return ('' + value)
|
|
||||||
.replace(/&/g, '&')
|
|
||||||
.replace(/</g, '<')
|
|
||||||
.replace(/>/g, '>')
|
|
||||||
.replace(/"/g, '"');
|
|
||||||
};
|
|
||||||
}
|
|
||||||
(function() {
|
|
||||||
(function() {
|
|
||||||
if (this.agent.avatar) {
|
|
||||||
__out.push('\n<img class="zammad-chat-agent-avatar" src="');
|
|
||||||
__out.push(__sanitize(this.agent.avatar));
|
|
||||||
__out.push('">\n');
|
|
||||||
}
|
|
||||||
|
|
||||||
__out.push('\n<span class="zammad-chat-agent-sentence">\n <span class="zammad-chat-agent-name">');
|
|
||||||
|
|
||||||
__out.push(__sanitize(this.agent.name));
|
|
||||||
|
|
||||||
__out.push('</span>\n</span>');
|
|
||||||
|
|
||||||
}).call(this);
|
|
||||||
|
|
||||||
}).call(__obj);
|
|
||||||
__obj.safe = __objSafe, __obj.escape = __escape;
|
|
||||||
return __out.join('');
|
|
||||||
};
|
|
||||||
|
|
||||||
if (!window.zammadChatTemplates) {
|
if (!window.zammadChatTemplates) {
|
||||||
window.zammadChatTemplates = {};
|
window.zammadChatTemplates = {};
|
||||||
}
|
}
|
||||||
|
|
4
public/assets/chat/chat.min.js
vendored
4
public/assets/chat/chat.min.js
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue