2012-01-30 23:19:51 +04:00
|
|
|
/**
|
|
|
|
* ownCloud
|
|
|
|
*
|
|
|
|
* @author Robin Appelman
|
|
|
|
* @copyright 2012 Robin Appelman icewind1991@gmail.com
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 3 of the License, or any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU AFFERO GENERAL PUBLIC LICENSE for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public
|
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* wrapper for server side events (http://en.wikipedia.org/wiki/Server-sent_events)
|
|
|
|
* includes a fallback for older browsers and IE
|
|
|
|
*
|
|
|
|
* use server side events with causion, to many open requests can hang the server
|
|
|
|
*/
|
|
|
|
|
2012-01-31 02:26:01 +04:00
|
|
|
/**
|
|
|
|
* create a new event source
|
|
|
|
* @param string src
|
|
|
|
* @param object data to be send as GET
|
|
|
|
*/
|
|
|
|
OC.EventSource=function(src,data){
|
|
|
|
var dataStr='';
|
2012-03-31 18:10:29 +04:00
|
|
|
this.typelessListeners=[];
|
|
|
|
this.listeners={};
|
|
|
|
if(data){
|
|
|
|
for(name in data){
|
|
|
|
dataStr+=name+'='+encodeURIComponent(data[name])+'&';
|
|
|
|
}
|
2012-01-31 02:26:01 +04:00
|
|
|
}
|
2013-01-27 01:36:48 +04:00
|
|
|
dataStr+='requesttoken='+oc_requesttoken;
|
2012-01-30 23:19:51 +04:00
|
|
|
if(!this.useFallBack && typeof EventSource !='undefined'){
|
2012-11-16 23:28:03 +04:00
|
|
|
var joinChar = '&';
|
|
|
|
if(src.indexOf('?') == -1) {
|
|
|
|
joinChar = '?';
|
|
|
|
}
|
|
|
|
this.source=new EventSource(src+joinChar+dataStr);
|
2012-01-30 23:19:51 +04:00
|
|
|
this.source.onmessage=function(e){
|
|
|
|
for(var i=0;i<this.typelessListeners.length;i++){
|
|
|
|
this.typelessListeners[i](JSON.parse(e.data));
|
|
|
|
}
|
2012-03-31 18:10:29 +04:00
|
|
|
}.bind(this);
|
2012-01-30 23:19:51 +04:00
|
|
|
}else{
|
|
|
|
iframeId='oc_eventsource_iframe_'+OC.EventSource.iframeCount;
|
|
|
|
OC.EventSource.fallBackSources[OC.EventSource.iframeCount]=this;
|
|
|
|
this.iframe=$('<iframe/>');
|
|
|
|
this.iframe.attr('id',iframeId);
|
|
|
|
this.iframe.hide();
|
2012-11-16 23:28:03 +04:00
|
|
|
|
|
|
|
var joinChar = '&';
|
|
|
|
if(src.indexOf('?') == -1) {
|
|
|
|
joinChar = '?';
|
|
|
|
}
|
2012-11-16 23:28:58 +04:00
|
|
|
this.iframe.attr('src',src+joinChar+'fallback=true&fallback_id='+OC.EventSource.iframeCount+'&'+dataStr);
|
2012-01-30 23:19:51 +04:00
|
|
|
$('body').append(this.iframe);
|
|
|
|
this.useFallBack=true;
|
|
|
|
OC.EventSource.iframeCount++
|
|
|
|
}
|
2012-01-31 02:19:43 +04:00
|
|
|
//add close listener
|
|
|
|
this.listen('__internal__',function(data){
|
|
|
|
if(data=='close'){
|
|
|
|
this.close();
|
|
|
|
}
|
|
|
|
}.bind(this));
|
2012-01-30 23:19:51 +04:00
|
|
|
}
|
|
|
|
OC.EventSource.fallBackSources=[];
|
|
|
|
OC.EventSource.iframeCount=0;//number of fallback iframes
|
|
|
|
OC.EventSource.fallBackCallBack=function(id,type,data){
|
2012-03-31 18:40:42 +04:00
|
|
|
OC.EventSource.fallBackSources[id].fallBackCallBack(type,data);
|
2012-01-30 23:19:51 +04:00
|
|
|
}
|
|
|
|
OC.EventSource.prototype={
|
|
|
|
typelessListeners:[],
|
|
|
|
iframe:null,
|
|
|
|
listeners:{},//only for fallback
|
|
|
|
useFallBack:false,
|
|
|
|
fallBackCallBack:function(type,data){
|
|
|
|
if(type){
|
2013-02-14 15:17:14 +04:00
|
|
|
if (typeof this.listeners['done'] != 'undefined') {
|
|
|
|
for(var i=0;i<this.listeners[type].length;i++){
|
|
|
|
this.listeners[type][i](data);
|
|
|
|
}
|
2012-01-30 23:19:51 +04:00
|
|
|
}
|
|
|
|
}else{
|
|
|
|
for(var i=0;i<this.typelessListeners.length;i++){
|
|
|
|
this.typelessListeners[i](data);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
lastLength:0,//for fallback
|
|
|
|
listen:function(type,callback){
|
|
|
|
if(callback && callback.call){
|
2012-11-15 21:26:08 +04:00
|
|
|
|
2012-01-30 23:19:51 +04:00
|
|
|
if(type){
|
|
|
|
if(this.useFallBack){
|
|
|
|
if(!this.listeners[type]){
|
|
|
|
this.listeners[type]=[];
|
|
|
|
}
|
|
|
|
this.listeners[type].push(callback);
|
|
|
|
}else{
|
|
|
|
this.source.addEventListener(type,function(e){
|
2013-07-11 02:00:01 +04:00
|
|
|
if (typeof e.data != 'undefined') {
|
|
|
|
callback(JSON.parse(e.data));
|
|
|
|
} else {
|
|
|
|
callback('');
|
|
|
|
}
|
2012-01-30 23:19:51 +04:00
|
|
|
},false);
|
|
|
|
}
|
|
|
|
}else{
|
|
|
|
typelessListeners.push(callback);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
close:function(){
|
2013-02-14 15:17:14 +04:00
|
|
|
if (typeof this.source !='undefined') {
|
|
|
|
this.source.close();
|
|
|
|
}
|
2012-01-30 23:19:51 +04:00
|
|
|
}
|
|
|
|
}
|