2013-08-20 19:53:58 +04: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 Bart Visscher <bartv@thisnet.nl>
|
2016-07-21 18:07:57 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Jörn Friedrich Dreyer <jfd@butonic.de>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
* @author Thomas Tanghus <thomas@tanghus.net>
|
2013-08-31 03:41:24 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @license AGPL-3.0
|
2013-08-31 03:41:24 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* 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.
|
2013-08-31 03:41:24 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
2013-08-31 03:41:24 +04:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-03-26 13:44:34 +03:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
2013-08-31 03:41:24 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* 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/>
|
2013-08-31 03:41:24 +04:00
|
|
|
*
|
2013-08-20 19:53:58 +04:00
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Public interface of ownCloud for apps to use.
|
|
|
|
* Request interface
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2013-11-03 16:38:25 +04:00
|
|
|
// use OCP namespace for all classes that are considered public.
|
|
|
|
// This means that they should be used by apps instead of the internal ownCloud classes
|
2013-08-31 23:34:29 +04:00
|
|
|
namespace OCP;
|
2013-08-20 19:53:58 +04:00
|
|
|
|
2013-09-27 17:55:22 +04:00
|
|
|
/**
|
|
|
|
* This interface provides an immutable object with with accessors to
|
|
|
|
* request variables and headers.
|
|
|
|
*
|
|
|
|
* Access request variables by method and name.
|
|
|
|
*
|
|
|
|
* Examples:
|
|
|
|
*
|
|
|
|
* $request->post['myvar']; // Only look for POST variables
|
|
|
|
* $request->myvar; or $request->{'myvar'}; or $request->{$myvar}
|
|
|
|
* Looks in the combined GET, POST and urlParams array.
|
|
|
|
*
|
|
|
|
* If you access e.g. ->post but the current HTTP request method
|
|
|
|
* is GET a \LogicException will be thrown.
|
|
|
|
*
|
|
|
|
* NOTE:
|
|
|
|
* - When accessing ->put a stream resource is returned and the accessor
|
|
|
|
* will return false on subsequent access to ->put or ->patch.
|
|
|
|
* - When accessing ->patch and the Content-Type is either application/json
|
|
|
|
* or application/x-www-form-urlencoded (most cases) it will act like ->get
|
|
|
|
* and ->post and return an array. Otherwise the raw data will be returned.
|
2015-01-14 21:32:09 +03:00
|
|
|
*
|
|
|
|
* @property-read string[] $server
|
2015-01-15 16:42:44 +03:00
|
|
|
* @property-read string[] $urlParams
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 6.0.0
|
2013-09-27 17:55:22 +04:00
|
|
|
*/
|
2013-08-20 19:53:58 +04:00
|
|
|
interface IRequest {
|
2016-07-18 16:11:44 +03:00
|
|
|
/**
|
|
|
|
* @since 9.1.0
|
|
|
|
*/
|
|
|
|
const USER_AGENT_CLIENT_ANDROID = '/^Mozilla\/5\.0 \(Android\) ownCloud\-android.*$/';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @since 9.1.0
|
|
|
|
*/
|
|
|
|
const USER_AGENT_CLIENT_DESKTOP = '/^Mozilla\/5\.0 \([A-Za-z ]+\) (mirall|csyncoC)\/.*$/';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @since 9.1.0
|
|
|
|
*/
|
2017-02-10 12:05:24 +03:00
|
|
|
const USER_AGENT_CLIENT_IOS = '/^Mozilla\/5\.0 \(iOS\) (ownCloud|Nextcloud)\-iOS.*$/';
|
2013-08-20 19:53:58 +04:00
|
|
|
|
2014-02-06 19:30:58 +04:00
|
|
|
/**
|
|
|
|
* @param string $name
|
|
|
|
*
|
|
|
|
* @return string
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 6.0.0
|
2014-02-06 19:30:58 +04:00
|
|
|
*/
|
2015-04-19 01:26:17 +03:00
|
|
|
public function getHeader($name);
|
2013-08-20 19:53:58 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Lets you access post and get parameters by the index
|
|
|
|
* In case of json requests the encoded json body is accessed
|
|
|
|
*
|
|
|
|
* @param string $key the key which you want to access in the URL Parameter
|
|
|
|
* placeholder, $_POST or $_GET array.
|
|
|
|
* The priority how they're returned is the following:
|
|
|
|
* 1. URL parameters
|
|
|
|
* 2. POST parameters
|
|
|
|
* 3. GET parameters
|
|
|
|
* @param mixed $default If the key is not found, this value will be returned
|
|
|
|
* @return mixed the content of the array
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 6.0.0
|
2013-08-20 19:53:58 +04:00
|
|
|
*/
|
|
|
|
public function getParam($key, $default = null);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns all params that were received, be it from the request
|
2013-08-31 22:57:16 +04:00
|
|
|
*
|
2013-08-21 02:58:33 +04:00
|
|
|
* (as GET or POST) or through the URL by the route
|
2016-01-12 10:48:51 +03:00
|
|
|
*
|
2013-08-20 19:53:58 +04:00
|
|
|
* @return array the array with all parameters
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 6.0.0
|
2013-08-20 19:53:58 +04:00
|
|
|
*/
|
|
|
|
public function getParams();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the method of the request
|
2013-08-31 22:57:16 +04:00
|
|
|
*
|
2013-08-20 19:53:58 +04:00
|
|
|
* @return string the method of the request (POST, GET, etc)
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 6.0.0
|
2013-08-20 19:53:58 +04:00
|
|
|
*/
|
|
|
|
public function getMethod();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Shortcut for accessing an uploaded file through the $_FILES array
|
2013-08-31 22:57:16 +04:00
|
|
|
*
|
2013-08-20 19:53:58 +04:00
|
|
|
* @param string $key the key that will be taken from the $_FILES array
|
|
|
|
* @return array the file in the $_FILES element
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 6.0.0
|
2013-08-20 19:53:58 +04:00
|
|
|
*/
|
|
|
|
public function getUploadedFile($key);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Shortcut for getting env variables
|
2013-08-31 22:57:16 +04:00
|
|
|
*
|
2013-08-20 19:53:58 +04:00
|
|
|
* @param string $key the key that will be taken from the $_ENV array
|
|
|
|
* @return array the value in the $_ENV element
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 6.0.0
|
2013-08-20 19:53:58 +04:00
|
|
|
*/
|
|
|
|
public function getEnv($key);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Shortcut for getting cookie variables
|
2013-08-31 22:57:16 +04:00
|
|
|
*
|
2013-08-20 19:53:58 +04:00
|
|
|
* @param string $key the key that will be taken from the $_COOKIE array
|
2016-09-06 22:41:15 +03:00
|
|
|
* @return string|null the value in the $_COOKIE element
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 6.0.0
|
2013-08-20 19:53:58 +04:00
|
|
|
*/
|
2015-04-19 01:26:17 +03:00
|
|
|
public function getCookie($key);
|
2013-08-20 19:53:58 +04:00
|
|
|
|
|
|
|
|
2013-09-27 17:16:34 +04:00
|
|
|
/**
|
|
|
|
* Checks if the CSRF check was correct
|
2016-01-12 10:48:51 +03:00
|
|
|
*
|
2013-09-27 17:16:34 +04:00
|
|
|
* @return bool true if CSRF check passed
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 6.0.0
|
2013-09-27 17:16:34 +04:00
|
|
|
*/
|
|
|
|
public function passesCSRFCheck();
|
2015-02-09 13:41:48 +03:00
|
|
|
|
2016-07-20 18:37:30 +03:00
|
|
|
/**
|
|
|
|
* Checks if the strict cookie has been sent with the request if the request
|
|
|
|
* is including any cookies.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
* @since 9.0.0
|
|
|
|
*/
|
|
|
|
public function passesStrictCookieCheck();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks if the lax cookie has been sent with the request if the request
|
|
|
|
* is including any cookies.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
* @since 9.0.0
|
|
|
|
*/
|
|
|
|
public function passesLaxCookieCheck();
|
|
|
|
|
2015-02-09 13:41:48 +03:00
|
|
|
/**
|
|
|
|
* Returns an ID for the request, value is not guaranteed to be unique and is mostly meant for logging
|
|
|
|
* If `mod_unique_id` is installed this value will be taken.
|
2016-01-12 10:48:51 +03:00
|
|
|
*
|
2015-02-09 13:41:48 +03:00
|
|
|
* @return string
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 8.1.0
|
2015-02-09 13:41:48 +03:00
|
|
|
*/
|
|
|
|
public function getId();
|
2015-02-10 15:02:48 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the remote address, if the connection came from a trusted proxy
|
|
|
|
* and `forwarded_for_headers` has been configured then the IP address
|
|
|
|
* specified in this header will be returned instead.
|
|
|
|
* Do always use this instead of $_SERVER['REMOTE_ADDR']
|
2016-01-12 10:48:51 +03:00
|
|
|
*
|
2015-02-10 15:02:48 +03:00
|
|
|
* @return string IP address
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 8.1.0
|
2015-02-10 15:02:48 +03:00
|
|
|
*/
|
|
|
|
public function getRemoteAddress();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the server protocol. It respects reverse proxy servers and load
|
|
|
|
* balancers.
|
2016-01-12 10:48:51 +03:00
|
|
|
*
|
2015-02-10 15:02:48 +03:00
|
|
|
* @return string Server protocol (http or https)
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 8.1.0
|
2015-02-10 15:02:48 +03:00
|
|
|
*/
|
|
|
|
public function getServerProtocol();
|
|
|
|
|
2015-10-06 15:18:46 +03:00
|
|
|
/**
|
|
|
|
* Returns the used HTTP protocol.
|
|
|
|
*
|
|
|
|
* @return string HTTP protocol. HTTP/2, HTTP/1.1 or HTTP/1.0.
|
|
|
|
* @since 8.2.0
|
|
|
|
*/
|
|
|
|
public function getHttpProtocol();
|
|
|
|
|
2015-02-10 15:02:48 +03:00
|
|
|
/**
|
2016-01-12 10:48:51 +03:00
|
|
|
* Returns the request uri, even if the website uses one or more
|
|
|
|
* reverse proxies
|
|
|
|
*
|
|
|
|
* @return string
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 8.1.0
|
2016-01-12 10:48:51 +03:00
|
|
|
*/
|
2015-02-10 15:02:48 +03:00
|
|
|
public function getRequestUri();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get raw PathInfo from request (not urldecoded)
|
2016-01-12 10:48:51 +03:00
|
|
|
*
|
2015-02-10 15:02:48 +03:00
|
|
|
* @throws \Exception
|
2015-02-16 16:01:15 +03:00
|
|
|
* @return string Path info
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 8.1.0
|
2015-02-10 15:02:48 +03:00
|
|
|
*/
|
|
|
|
public function getRawPathInfo();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get PathInfo from request
|
2016-01-12 10:48:51 +03:00
|
|
|
*
|
2015-02-10 15:02:48 +03:00
|
|
|
* @throws \Exception
|
|
|
|
* @return string|false Path info or false when not found
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 8.1.0
|
2015-02-10 15:02:48 +03:00
|
|
|
*/
|
|
|
|
public function getPathInfo();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the script name, even if the website uses one or more
|
|
|
|
* reverse proxies
|
2016-01-12 10:48:51 +03:00
|
|
|
*
|
2015-02-10 15:02:48 +03:00
|
|
|
* @return string the script name
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 8.1.0
|
2015-02-10 15:02:48 +03:00
|
|
|
*/
|
|
|
|
public function getScriptName();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks whether the user agent matches a given regex
|
2016-01-12 10:48:51 +03:00
|
|
|
*
|
2015-02-10 15:02:48 +03:00
|
|
|
* @param array $agent array of agent names
|
|
|
|
* @return bool true if at least one of the given agent matches, false otherwise
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 8.1.0
|
2015-02-10 15:02:48 +03:00
|
|
|
*/
|
|
|
|
public function isUserAgent(array $agent);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the unverified server host from the headers without checking
|
|
|
|
* whether it is a trusted domain
|
2016-01-12 10:48:51 +03:00
|
|
|
*
|
2015-02-10 15:02:48 +03:00
|
|
|
* @return string Server host
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 8.1.0
|
2015-02-10 15:02:48 +03:00
|
|
|
*/
|
|
|
|
public function getInsecureServerHost();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the server host from the headers, or the first configured
|
|
|
|
* trusted domain if the host isn't in the trusted list
|
2016-01-12 10:48:51 +03:00
|
|
|
*
|
2015-02-10 15:02:48 +03:00
|
|
|
* @return string Server host
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 8.1.0
|
2015-02-10 15:02:48 +03:00
|
|
|
*/
|
|
|
|
public function getServerHost();
|
2013-08-20 19:53:58 +04:00
|
|
|
}
|