Move OC.EventSource to the server bundle
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
This commit is contained in:
parent
8e9d259074
commit
3695d02575
|
@ -21,7 +21,6 @@
|
||||||
"sharedialogshareelistview.js",
|
"sharedialogshareelistview.js",
|
||||||
"octemplate.js",
|
"octemplate.js",
|
||||||
"contactsmenu_templates.js",
|
"contactsmenu_templates.js",
|
||||||
"eventsource.js",
|
|
||||||
"public/appconfig.js",
|
"public/appconfig.js",
|
||||||
"public/comments.js",
|
"public/comments.js",
|
||||||
"public/publicpage.js",
|
"public/publicpage.js",
|
||||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -4,7 +4,6 @@
|
||||||
"js.js",
|
"js.js",
|
||||||
"l10n.js",
|
"l10n.js",
|
||||||
"octemplate.js",
|
"octemplate.js",
|
||||||
"eventsource.js",
|
|
||||||
"public/appconfig.js",
|
"public/appconfig.js",
|
||||||
"public/comments.js",
|
"public/comments.js",
|
||||||
"public/whatsnew.js",
|
"public/whatsnew.js",
|
||||||
|
|
|
@ -30,70 +30,72 @@
|
||||||
|
|
||||||
/* global EventSource */
|
/* global EventSource */
|
||||||
|
|
||||||
|
import $ from 'jquery'
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create a new event source
|
* Create a new event source
|
||||||
* @param {string} src
|
* @param {string} src
|
||||||
* @param {object} [data] to be send as GET
|
* @param {object} [data] to be send as GET
|
||||||
*
|
*
|
||||||
* @constructs OC.EventSource
|
* @constructs OCEventSource
|
||||||
*/
|
*/
|
||||||
OC.EventSource=function(src,data){
|
const OCEventSource = function (src, data) {
|
||||||
var dataStr='';
|
var dataStr = '';
|
||||||
var name;
|
var name;
|
||||||
var joinChar;
|
var joinChar;
|
||||||
this.typelessListeners=[];
|
this.typelessListeners = [];
|
||||||
this.closed = false;
|
this.closed = false;
|
||||||
this.listeners={};
|
this.listeners = {};
|
||||||
if(data){
|
if (data) {
|
||||||
for(name in data){
|
for (name in data) {
|
||||||
dataStr+=name+'='+encodeURIComponent(data[name])+'&';
|
dataStr += name + '=' + encodeURIComponent(data[name]) + '&';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
dataStr+='requesttoken='+encodeURIComponent(oc_requesttoken);
|
dataStr += 'requesttoken=' + encodeURIComponent(oc_requesttoken);
|
||||||
if(!this.useFallBack && typeof EventSource !== 'undefined'){
|
if (!this.useFallBack && typeof EventSource !== 'undefined') {
|
||||||
joinChar = '&';
|
joinChar = '&';
|
||||||
if(src.indexOf('?') === -1) {
|
if (src.indexOf('?') === -1) {
|
||||||
joinChar = '?';
|
joinChar = '?';
|
||||||
}
|
}
|
||||||
this.source= new EventSource(src+joinChar+dataStr);
|
this.source = new EventSource(src + joinChar + dataStr);
|
||||||
this.source.onmessage=function(e){
|
this.source.onmessage = function (e) {
|
||||||
for(var i=0;i<this.typelessListeners.length;i++){
|
for (var i = 0; i < this.typelessListeners.length; i++) {
|
||||||
this.typelessListeners[i](JSON.parse(e.data));
|
this.typelessListeners[i](JSON.parse(e.data));
|
||||||
}
|
}
|
||||||
}.bind(this);
|
}.bind(this);
|
||||||
}else{
|
} else {
|
||||||
var iframeId='oc_eventsource_iframe_'+OC.EventSource.iframeCount;
|
var iframeId = 'oc_eventsource_iframe_' + OCEventSource.iframeCount;
|
||||||
OC.EventSource.fallBackSources[OC.EventSource.iframeCount]=this;
|
OCEventSource.fallBackSources[OCEventSource.iframeCount] = this;
|
||||||
this.iframe=$('<iframe/>');
|
this.iframe = $('<iframe/>');
|
||||||
this.iframe.attr('id',iframeId);
|
this.iframe.attr('id', iframeId);
|
||||||
this.iframe.hide();
|
this.iframe.hide();
|
||||||
|
|
||||||
joinChar = '&';
|
joinChar = '&';
|
||||||
if(src.indexOf('?') === -1) {
|
if (src.indexOf('?') === -1) {
|
||||||
joinChar = '?';
|
joinChar = '?';
|
||||||
}
|
}
|
||||||
this.iframe.attr('src',src+joinChar+'fallback=true&fallback_id='+OC.EventSource.iframeCount+'&'+dataStr);
|
this.iframe.attr('src', src + joinChar + 'fallback=true&fallback_id=' + OCEventSource.iframeCount + '&' + dataStr);
|
||||||
$('body').append(this.iframe);
|
$('body').append(this.iframe);
|
||||||
this.useFallBack=true;
|
this.useFallBack = true;
|
||||||
OC.EventSource.iframeCount++;
|
OCEventSource.iframeCount++;
|
||||||
}
|
}
|
||||||
//add close listener
|
//add close listener
|
||||||
this.listen('__internal__',function(data){
|
this.listen('__internal__', function (data) {
|
||||||
if(data === 'close'){
|
if (data === 'close') {
|
||||||
this.close();
|
this.close();
|
||||||
}
|
}
|
||||||
}.bind(this));
|
}.bind(this));
|
||||||
};
|
};
|
||||||
OC.EventSource.fallBackSources=[];
|
OCEventSource.fallBackSources = [];
|
||||||
OC.EventSource.iframeCount=0;//number of fallback iframes
|
OCEventSource.iframeCount = 0;//number of fallback iframes
|
||||||
OC.EventSource.fallBackCallBack=function(id,type,data){
|
OCEventSource.fallBackCallBack = function (id, type, data) {
|
||||||
OC.EventSource.fallBackSources[id].fallBackCallBack(type,data);
|
OCEventSource.fallBackSources[id].fallBackCallBack(type, data);
|
||||||
};
|
};
|
||||||
OC.EventSource.prototype={
|
OCEventSource.prototype = {
|
||||||
typelessListeners:[],
|
typelessListeners: [],
|
||||||
iframe:null,
|
iframe: null,
|
||||||
listeners:{},//only for fallback
|
listeners: {},//only for fallback
|
||||||
useFallBack:false,
|
useFallBack: false,
|
||||||
/**
|
/**
|
||||||
* Fallback callback for browsers that don't have the
|
* Fallback callback for browsers that don't have the
|
||||||
* native EventSource object.
|
* native EventSource object.
|
||||||
|
@ -104,50 +106,50 @@ OC.EventSource.prototype={
|
||||||
* @param {String} type event type
|
* @param {String} type event type
|
||||||
* @param {Object} data received data
|
* @param {Object} data received data
|
||||||
*/
|
*/
|
||||||
fallBackCallBack:function(type,data){
|
fallBackCallBack: function (type, data) {
|
||||||
var i;
|
var i;
|
||||||
// ignore messages that might appear after closing
|
// ignore messages that might appear after closing
|
||||||
if (this.closed) {
|
if (this.closed) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if(type){
|
if (type) {
|
||||||
if (typeof this.listeners.done !== 'undefined') {
|
if (typeof this.listeners.done !== 'undefined') {
|
||||||
for(i=0;i<this.listeners[type].length;i++){
|
for (i = 0; i < this.listeners[type].length; i++) {
|
||||||
this.listeners[type][i](data);
|
this.listeners[type][i](data);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}else{
|
} else {
|
||||||
for(i=0;i<this.typelessListeners.length;i++){
|
for (i = 0; i < this.typelessListeners.length; i++) {
|
||||||
this.typelessListeners[i](data);
|
this.typelessListeners[i](data);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
lastLength:0,//for fallback
|
lastLength: 0,//for fallback
|
||||||
/**
|
/**
|
||||||
* Listen to a given type of events.
|
* Listen to a given type of events.
|
||||||
*
|
*
|
||||||
* @param {String} type event type
|
* @param {String} type event type
|
||||||
* @param {Function} callback event callback
|
* @param {Function} callback event callback
|
||||||
*/
|
*/
|
||||||
listen:function(type,callback){
|
listen: function (type, callback) {
|
||||||
if(callback && callback.call){
|
if (callback && callback.call) {
|
||||||
|
|
||||||
if(type){
|
if (type) {
|
||||||
if(this.useFallBack){
|
if (this.useFallBack) {
|
||||||
if(!this.listeners[type]){
|
if (!this.listeners[type]) {
|
||||||
this.listeners[type]=[];
|
this.listeners[type] = [];
|
||||||
}
|
}
|
||||||
this.listeners[type].push(callback);
|
this.listeners[type].push(callback);
|
||||||
}else{
|
} else {
|
||||||
this.source.addEventListener(type,function(e){
|
this.source.addEventListener(type, function (e) {
|
||||||
if (typeof e.data !== 'undefined') {
|
if (typeof e.data !== 'undefined') {
|
||||||
callback(JSON.parse(e.data));
|
callback(JSON.parse(e.data));
|
||||||
} else {
|
} else {
|
||||||
callback('');
|
callback('');
|
||||||
}
|
}
|
||||||
},false);
|
}, false);
|
||||||
}
|
}
|
||||||
}else{
|
} else {
|
||||||
this.typelessListeners.push(callback);
|
this.typelessListeners.push(callback);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -155,10 +157,12 @@ OC.EventSource.prototype={
|
||||||
/**
|
/**
|
||||||
* Closes this event source.
|
* Closes this event source.
|
||||||
*/
|
*/
|
||||||
close:function(){
|
close: function () {
|
||||||
this.closed = true;
|
this.closed = true;
|
||||||
if (typeof this.source !== 'undefined') {
|
if (typeof this.source !== 'undefined') {
|
||||||
this.source.close();
|
this.source.close();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export default OCEventSource;
|
|
@ -24,6 +24,7 @@ import Backbone from 'backbone';
|
||||||
import Apps from './apps'
|
import Apps from './apps'
|
||||||
import AppConfig from './appconfig'
|
import AppConfig from './appconfig'
|
||||||
import ContactsMenu from './contactsmenu';
|
import ContactsMenu from './contactsmenu';
|
||||||
|
import EventSource from './eventsource'
|
||||||
import {davCall, davSync} from './backbone-webdav';
|
import {davCall, davSync} from './backbone-webdav';
|
||||||
|
|
||||||
// Patch Backbone for DAV
|
// Patch Backbone for DAV
|
||||||
|
@ -37,5 +38,6 @@ export default {
|
||||||
Apps,
|
Apps,
|
||||||
AppConfig,
|
AppConfig,
|
||||||
Backbone,
|
Backbone,
|
||||||
|
EventSource,
|
||||||
ContactsMenu,
|
ContactsMenu,
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue