2012-01-30 14:19:51 -05:00
|
|
|
<?php
|
|
|
|
|
/**
|
2016-07-21 11:07:57 -04:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
|
*
|
2015-03-26 06:44:34 -04:00
|
|
|
* @author Bart Visscher <bartv@thisnet.nl>
|
2019-12-03 13:57:53 -05:00
|
|
|
* @author Christian Oliff <christianoliff@yahoo.com>
|
2020-04-29 05:57:22 -04:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2015-03-26 06:44:34 -04:00
|
|
|
* @author Felix Moeller <mail@felixmoeller.de>
|
2016-05-26 13:56:05 -04:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2015-03-26 06:44:34 -04:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-07-21 12:13:36 -04:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2015-03-26 06:44:34 -04:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
|
*
|
|
|
|
|
* @license AGPL-3.0
|
|
|
|
|
*
|
|
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
|
*
|
|
|
|
|
* 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, version 3,
|
2019-12-03 13:57:53 -05:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2015-03-26 06:44:34 -04:00
|
|
|
*
|
2015-02-26 05:37:37 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/**
|
2019-11-15 02:19:28 -05:00
|
|
|
* wrapper for server side events (https://en.wikipedia.org/wiki/Server-sent_events)
|
2015-02-26 05:37:37 -05:00
|
|
|
* includes a fallback for older browsers and IE
|
2012-01-30 14:19:51 -05:00
|
|
|
*
|
2015-02-26 05:37:37 -05:00
|
|
|
* use server side events with caution, to many open requests can hang the server
|
2012-01-30 14:19:51 -05:00
|
|
|
*/
|
2014-08-29 11:19:38 -04:00
|
|
|
class OC_EventSource implements \OCP\IEventSource {
|
2014-08-29 11:18:11 -04:00
|
|
|
/**
|
|
|
|
|
* @var bool
|
|
|
|
|
*/
|
2012-01-30 14:19:51 -05:00
|
|
|
private $fallback;
|
2012-08-29 02:38:33 -04:00
|
|
|
|
2014-08-29 11:18:11 -04:00
|
|
|
/**
|
|
|
|
|
* @var int
|
|
|
|
|
*/
|
|
|
|
|
private $fallBackId = 0;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @var bool
|
|
|
|
|
*/
|
|
|
|
|
private $started = false;
|
|
|
|
|
|
|
|
|
|
protected function init() {
|
|
|
|
|
if ($this->started) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
$this->started = true;
|
|
|
|
|
|
|
|
|
|
// prevent php output buffering, caching and nginx buffering
|
2012-11-29 12:01:21 -05:00
|
|
|
OC_Util::obEnd();
|
2012-01-30 14:19:51 -05:00
|
|
|
header('Cache-Control: no-cache');
|
2014-07-26 09:50:11 -04:00
|
|
|
header('X-Accel-Buffering: no');
|
2014-08-29 11:18:11 -04:00
|
|
|
$this->fallback = isset($_GET['fallback']) and $_GET['fallback'] == 'true';
|
|
|
|
|
if ($this->fallback) {
|
2014-08-29 11:33:10 -04:00
|
|
|
$this->fallBackId = (int)$_GET['fallback_id'];
|
2015-07-21 14:40:32 -04:00
|
|
|
/**
|
|
|
|
|
* FIXME: The default content-security-policy of ownCloud forbids inline
|
|
|
|
|
* JavaScript for security reasons. IE starting on Windows 10 will
|
|
|
|
|
* however also obey the CSP which will break the event source fallback.
|
|
|
|
|
*
|
|
|
|
|
* As a workaround thus we set a custom policy which allows the execution
|
|
|
|
|
* of inline JavaScript.
|
|
|
|
|
*
|
|
|
|
|
* @link https://github.com/owncloud/core/issues/14286
|
|
|
|
|
*/
|
|
|
|
|
header("Content-Security-Policy: default-src 'none'; script-src 'unsafe-inline'");
|
2012-01-30 14:19:51 -05:00
|
|
|
header("Content-Type: text/html");
|
2014-08-29 11:18:11 -04:00
|
|
|
echo str_repeat('<span></span>' . PHP_EOL, 10); //dummy data to keep IE happy
|
|
|
|
|
} else {
|
2012-01-30 14:19:51 -05:00
|
|
|
header("Content-Type: text/event-stream");
|
|
|
|
|
}
|
2020-04-10 08:19:56 -04:00
|
|
|
if (!\OC::$server->getRequest()->passesStrictCookieCheck()) {
|
2016-07-20 11:37:30 -04:00
|
|
|
header('Location: '.\OC::$WEBROOT);
|
|
|
|
|
exit();
|
|
|
|
|
}
|
2018-01-26 17:46:40 -05:00
|
|
|
if (!\OC::$server->getRequest()->passesCSRFCheck()) {
|
2013-07-10 18:00:01 -04:00
|
|
|
$this->send('error', 'Possible CSRF attack. Connection will be closed.');
|
2014-07-26 09:50:11 -04:00
|
|
|
$this->close();
|
2012-07-22 10:36:09 -04:00
|
|
|
exit();
|
|
|
|
|
}
|
2012-01-30 14:19:51 -05:00
|
|
|
flush();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* send a message to the client
|
2014-08-29 11:18:11 -04:00
|
|
|
*
|
2013-07-10 18:00:01 -04:00
|
|
|
* @param string $type
|
2013-07-19 10:44:47 -04:00
|
|
|
* @param mixed $data
|
2012-01-30 14:19:51 -05:00
|
|
|
*
|
2014-08-29 11:33:10 -04:00
|
|
|
* @throws \BadMethodCallException
|
2013-07-10 18:00:01 -04:00
|
|
|
* if only one parameter is given, a typeless message will be send with that parameter as data
|
2017-07-19 14:21:05 -04:00
|
|
|
* @suppress PhanDeprecatedFunction
|
2012-01-30 14:19:51 -05:00
|
|
|
*/
|
2014-08-29 11:18:11 -04:00
|
|
|
public function send($type, $data = null) {
|
2014-08-29 11:33:10 -04:00
|
|
|
if ($data and !preg_match('/^[A-Za-z0-9_]+$/', $type)) {
|
|
|
|
|
throw new BadMethodCallException('Type needs to be alphanumeric ('. $type .')');
|
|
|
|
|
}
|
2014-08-29 11:18:11 -04:00
|
|
|
$this->init();
|
|
|
|
|
if (is_null($data)) {
|
|
|
|
|
$data = $type;
|
|
|
|
|
$type = null;
|
2012-01-30 14:19:51 -05:00
|
|
|
}
|
2014-08-29 11:18:11 -04:00
|
|
|
if ($this->fallback) {
|
|
|
|
|
$response = '<script type="text/javascript">window.parent.OC.EventSource.fallBackCallBack('
|
2018-03-12 13:28:46 -04:00
|
|
|
. $this->fallBackId . ',"' . $type . '",' . OC_JSON::encode($data) . ')</script>' . PHP_EOL;
|
2012-01-30 14:19:51 -05:00
|
|
|
echo $response;
|
2014-08-29 11:18:11 -04:00
|
|
|
} else {
|
|
|
|
|
if ($type) {
|
|
|
|
|
echo 'event: ' . $type . PHP_EOL;
|
2012-01-30 14:19:51 -05:00
|
|
|
}
|
2018-03-12 13:28:46 -04:00
|
|
|
echo 'data: ' . OC_JSON::encode($data) . PHP_EOL;
|
2012-01-30 14:19:51 -05:00
|
|
|
}
|
|
|
|
|
echo PHP_EOL;
|
|
|
|
|
flush();
|
|
|
|
|
}
|
2012-01-30 17:19:43 -05:00
|
|
|
|
|
|
|
|
/**
|
2014-08-29 11:18:11 -04:00
|
|
|
* close the connection of the event source
|
2012-01-30 17:19:43 -05:00
|
|
|
*/
|
2012-09-07 09:22:01 -04:00
|
|
|
public function close() {
|
2014-08-29 11:18:11 -04:00
|
|
|
$this->send('__internal__', 'close'); //server side closing can be an issue, let the client do it
|
2012-01-30 17:19:43 -05:00
|
|
|
}
|
2012-10-22 18:28:12 -04:00
|
|
|
}
|