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>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Stefan Weil <sw@weilnetz.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,
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2015-01-22 22:26:46 +03:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OCP\AppFramework\Http;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Very thin wrapper class to make output testable
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 8.1.0
|
2015-01-22 22:26:46 +03:00
|
|
|
*/
|
|
|
|
interface IOutput {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $out
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 8.1.0
|
2015-01-22 22:26:46 +03:00
|
|
|
*/
|
|
|
|
public function setOutput($out);
|
|
|
|
|
|
|
|
/**
|
2016-10-27 15:46:28 +03:00
|
|
|
* @param string|resource $path or file handle
|
2015-01-22 22:26:46 +03:00
|
|
|
*
|
2016-04-07 20:51:27 +03:00
|
|
|
* @return bool false if an error occurred
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 8.1.0
|
2015-01-22 22:26:46 +03:00
|
|
|
*/
|
|
|
|
public function setReadfile($path);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $header
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 8.1.0
|
2015-01-22 22:26:46 +03:00
|
|
|
*/
|
|
|
|
public function setHeader($header);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return int returns the current http response code
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 8.1.0
|
2015-01-22 22:26:46 +03:00
|
|
|
*/
|
|
|
|
public function getHttpResponseCode();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param int $code sets the http status code
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 8.1.0
|
2015-01-22 22:26:46 +03:00
|
|
|
*/
|
|
|
|
public function setHttpResponseCode($code);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $name
|
|
|
|
* @param string $value
|
|
|
|
* @param int $expire
|
|
|
|
* @param string $path
|
|
|
|
* @param string $domain
|
|
|
|
* @param bool $secure
|
2015-10-06 16:24:19 +03:00
|
|
|
* @param bool $httpOnly
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 8.1.0
|
2015-01-22 22:26:46 +03:00
|
|
|
*/
|
2015-10-06 16:24:19 +03:00
|
|
|
public function setCookie($name, $value, $expire, $path, $domain, $secure, $httpOnly);
|
2015-01-22 22:26:46 +03:00
|
|
|
}
|