diff options
Diffstat (limited to 'core/src/OC/eventsource.js')
-rw-r--r-- | core/src/OC/eventsource.js | 40 |
1 files changed, 7 insertions, 33 deletions
diff --git a/core/src/OC/eventsource.js b/core/src/OC/eventsource.js index cc576d8655a..090c351c057 100644 --- a/core/src/OC/eventsource.js +++ b/core/src/OC/eventsource.js @@ -1,39 +1,13 @@ -/* eslint-disable */ -/** - * 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 caution, too many open requests can hang the - * server + * SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors + * SPDX-FileCopyrightText: 2015 ownCloud, Inc. + * SPDX-License-Identifier: AGPL-3.0-or-later */ -/* global EventSource */ - +/* eslint-disable */ import $ from 'jquery' -import { getToken } from './requesttoken' +import { getRequestToken } from './requesttoken.ts' /** * Create a new event source @@ -54,7 +28,7 @@ const OCEventSource = function(src, data) { dataStr += name + '=' + encodeURIComponent(data[name]) + '&' } } - dataStr += 'requesttoken=' + encodeURIComponent(getToken()) + dataStr += 'requesttoken=' + encodeURIComponent(getRequestToken()) if (!this.useFallBack && typeof EventSource !== 'undefined') { joinChar = '&' if (src.indexOf('?') === -1) { @@ -69,7 +43,7 @@ const OCEventSource = function(src, data) { } else { var iframeId = 'oc_eventsource_iframe_' + OCEventSource.iframeCount OCEventSource.fallBackSources[OCEventSource.iframeCount] = this - this.iframe = $('<iframe/>') + this.iframe = $('<iframe></iframe>') this.iframe.attr('id', iframeId) this.iframe.hide() |