2015-01-22 22:26:46 +03:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Bernhard Posselt <dev@bernhard-posselt.com>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2015-06-25 12:43:55 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2015-03-26 13:44:34 +03:00
|
|
|
*
|
|
|
|
* @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,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2015-01-22 22:26:46 +03:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OCP\AppFramework\Http;
|
|
|
|
|
|
|
|
use OCP\AppFramework\Http;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class StreamResponse
|
|
|
|
*
|
|
|
|
* @package OCP\AppFramework\Http
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 8.1.0
|
2015-01-22 22:26:46 +03:00
|
|
|
*/
|
|
|
|
class StreamResponse extends Response implements ICallbackResponse {
|
|
|
|
/** @var string */
|
|
|
|
private $filePath;
|
|
|
|
|
|
|
|
/**
|
2016-10-27 15:46:28 +03:00
|
|
|
* @param string|resource $filePath the path to the file or a file handle which should be streamed
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 8.1.0
|
2015-01-22 22:26:46 +03:00
|
|
|
*/
|
|
|
|
public function __construct ($filePath) {
|
|
|
|
$this->filePath = $filePath;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Streams the file using readfile
|
|
|
|
*
|
2015-03-04 17:35:41 +03:00
|
|
|
* @param IOutput $output a small wrapper that handles output
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 8.1.0
|
2015-01-22 22:26:46 +03:00
|
|
|
*/
|
|
|
|
public function callback (IOutput $output) {
|
|
|
|
// handle caching
|
|
|
|
if ($output->getHttpResponseCode() !== Http::STATUS_NOT_MODIFIED) {
|
2016-11-29 17:29:02 +03:00
|
|
|
if (!(is_resource($this->filePath) || file_exists($this->filePath))) {
|
2015-01-22 22:26:46 +03:00
|
|
|
$output->setHttpResponseCode(Http::STATUS_NOT_FOUND);
|
|
|
|
} elseif ($output->setReadfile($this->filePath) === false) {
|
|
|
|
$output->setHttpResponseCode(Http::STATUS_BAD_REQUEST);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|