/** * @copyright 2012 Robin Appelman icewind1991@gmail.com * * @author Arthur Schiwon * @author Christoph Wurst * @author John Molakvoæ * @author Lukas Reschke * @author Robin Appelman * @author Thomas Müller * @author Vincent Petry * * @license GNU AGPL version 3 or any later version * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * This program 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 program. If not, see . * */ /* eslint-disable */ import $ from 'jquery' import { getToken } from './requesttoken' /** * Create a new event source * @param {string} src * @param {object} [data] to be send as GET * * @constructs OCEventSource */ const OCEventSource = function(src, data) { var dataStr = '' var name var joinChar this.typelessListeners = [] this.closed = false this.listeners = {} if (data) { for (name in data) { dataStr += name + '=' + encodeURIComponent(data[name]) + '&' } } dataStr += 'requesttoken=' + encodeURIComponent(getToken()) if (!this.useFallBack && typeof EventSource !== 'undefined') { joinChar = '&' if (src.indexOf('?') === -1) { joinChar = '?' } this.source = new EventSource(src + joinChar + dataStr) this.source.onmessage = function(e) { for (var i = 0; i < this.typelessListeners.length; i++) { this.typelessListeners[i](JSON.parse(e.data)) } }.bind(this) } else { var iframeId = 'oc_eventsource_iframe_' + OCEventSource.iframeCount OCEventSource.fallBackSources[OCEventSource.iframeCount] = this this.iframe = $('