You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

IRequest.php 8.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * @copyright Copyright (c) 2016, ownCloud, Inc.
  5. *
  6. * @author Bart Visscher <bartv@thisnet.nl>
  7. * @author Christoph Wurst <christoph@winzerhof-wurst.at>
  8. * @author Joas Schilling <coding@schilljs.com>
  9. * @author Jörn Friedrich Dreyer <jfd@butonic.de>
  10. * @author Lukas Reschke <lukas@statuscode.ch>
  11. * @author Morris Jobke <hey@morrisjobke.de>
  12. * @author Roeland Jago Douma <roeland@famdouma.nl>
  13. * @author Thomas Müller <thomas.mueller@tmit.eu>
  14. * @author Thomas Tanghus <thomas@tanghus.net>
  15. *
  16. * @license AGPL-3.0
  17. *
  18. * This code is free software: you can redistribute it and/or modify
  19. * it under the terms of the GNU Affero General Public License, version 3,
  20. * as published by the Free Software Foundation.
  21. *
  22. * This program is distributed in the hope that it will be useful,
  23. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  24. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  25. * GNU Affero General Public License for more details.
  26. *
  27. * You should have received a copy of the GNU Affero General Public License, version 3,
  28. * along with this program. If not, see <http://www.gnu.org/licenses/>
  29. *
  30. */
  31. /**
  32. * Public interface of ownCloud for apps to use.
  33. * Request interface
  34. *
  35. */
  36. // use OCP namespace for all classes that are considered public.
  37. // This means that they should be used by apps instead of the internal ownCloud classes
  38. namespace OCP;
  39. /**
  40. * This interface provides an immutable object with with accessors to
  41. * request variables and headers.
  42. *
  43. * Access request variables by method and name.
  44. *
  45. * Examples:
  46. *
  47. * $request->post['myvar']; // Only look for POST variables
  48. * $request->myvar; or $request->{'myvar'}; or $request->{$myvar}
  49. * Looks in the combined GET, POST and urlParams array.
  50. *
  51. * If you access e.g. ->post but the current HTTP request method
  52. * is GET a \LogicException will be thrown.
  53. *
  54. * NOTE:
  55. * - When accessing ->put a stream resource is returned and the accessor
  56. * will return false on subsequent access to ->put or ->patch.
  57. * - When accessing ->patch and the Content-Type is either application/json
  58. * or application/x-www-form-urlencoded (most cases) it will act like ->get
  59. * and ->post and return an array. Otherwise the raw data will be returned.
  60. *
  61. * @property-read string[] $server
  62. * @property-read string[] $urlParams
  63. * @since 6.0.0
  64. */
  65. interface IRequest {
  66. /**
  67. * @since 9.1.0
  68. */
  69. public const USER_AGENT_CLIENT_ANDROID = '/^Mozilla\/5\.0 \(Android\) (ownCloud|Nextcloud)\-android.*$/';
  70. /**
  71. * @since 13.0.0
  72. */
  73. public const USER_AGENT_TALK_ANDROID = '/^Mozilla\/5\.0 \(Android\) Nextcloud\-Talk v.*$/';
  74. /**
  75. * @since 9.1.0
  76. */
  77. public const USER_AGENT_CLIENT_DESKTOP = '/^Mozilla\/5\.0 \([A-Za-z ]+\) (mirall|csyncoC)\/.*$/';
  78. /**
  79. * @since 9.1.0
  80. */
  81. public const USER_AGENT_CLIENT_IOS = '/^Mozilla\/5\.0 \(iOS\) (ownCloud|Nextcloud)\-iOS.*$/';
  82. /**
  83. * @since 13.0.0
  84. */
  85. public const USER_AGENT_TALK_IOS = '/^Mozilla\/5\.0 \(iOS\) Nextcloud\-Talk v.*$/';
  86. /**
  87. * @since 13.0.1
  88. */
  89. public const USER_AGENT_OUTLOOK_ADDON = '/^Mozilla\/5\.0 \([A-Za-z ]+\) Nextcloud\-Outlook v.*$/';
  90. /**
  91. * @since 13.0.1
  92. */
  93. public const USER_AGENT_THUNDERBIRD_ADDON = '/^Mozilla\/5\.0 \([A-Za-z ]+\) Nextcloud\-Thunderbird v.*$/';
  94. /**
  95. * @param string $name
  96. *
  97. * @psalm-taint-source input
  98. *
  99. * @return string
  100. * @since 6.0.0
  101. */
  102. public function getHeader(string $name): string;
  103. /**
  104. * Lets you access post and get parameters by the index
  105. * In case of json requests the encoded json body is accessed
  106. *
  107. * @psalm-taint-source input
  108. *
  109. * @param string $key the key which you want to access in the URL Parameter
  110. * placeholder, $_POST or $_GET array.
  111. * The priority how they're returned is the following:
  112. * 1. URL parameters
  113. * 2. POST parameters
  114. * 3. GET parameters
  115. * @param mixed $default If the key is not found, this value will be returned
  116. * @return mixed the content of the array
  117. * @since 6.0.0
  118. */
  119. public function getParam(string $key, $default = null);
  120. /**
  121. * Returns all params that were received, be it from the request
  122. *
  123. * (as GET or POST) or through the URL by the route
  124. *
  125. * @psalm-taint-source input
  126. *
  127. * @return array the array with all parameters
  128. * @since 6.0.0
  129. */
  130. public function getParams(): array;
  131. /**
  132. * Returns the method of the request
  133. *
  134. * @return string the method of the request (POST, GET, etc)
  135. * @since 6.0.0
  136. */
  137. public function getMethod(): string;
  138. /**
  139. * Shortcut for accessing an uploaded file through the $_FILES array
  140. *
  141. * @param string $key the key that will be taken from the $_FILES array
  142. * @return array the file in the $_FILES element
  143. * @since 6.0.0
  144. */
  145. public function getUploadedFile(string $key);
  146. /**
  147. * Shortcut for getting env variables
  148. *
  149. * @param string $key the key that will be taken from the $_ENV array
  150. * @return array the value in the $_ENV element
  151. * @since 6.0.0
  152. */
  153. public function getEnv(string $key);
  154. /**
  155. * Shortcut for getting cookie variables
  156. *
  157. * @psalm-taint-source input
  158. *
  159. * @param string $key the key that will be taken from the $_COOKIE array
  160. * @return string|null the value in the $_COOKIE element
  161. * @since 6.0.0
  162. */
  163. public function getCookie(string $key);
  164. /**
  165. * Checks if the CSRF check was correct
  166. *
  167. * @return bool true if CSRF check passed
  168. * @since 6.0.0
  169. */
  170. public function passesCSRFCheck(): bool;
  171. /**
  172. * Checks if the strict cookie has been sent with the request if the request
  173. * is including any cookies.
  174. *
  175. * @return bool
  176. * @since 9.0.0
  177. */
  178. public function passesStrictCookieCheck(): bool;
  179. /**
  180. * Checks if the lax cookie has been sent with the request if the request
  181. * is including any cookies.
  182. *
  183. * @return bool
  184. * @since 9.0.0
  185. */
  186. public function passesLaxCookieCheck(): bool;
  187. /**
  188. * Returns an ID for the request, value is not guaranteed to be unique and is mostly meant for logging
  189. * If `mod_unique_id` is installed this value will be taken.
  190. *
  191. * @return string
  192. * @since 8.1.0
  193. */
  194. public function getId(): string;
  195. /**
  196. * Returns the remote address, if the connection came from a trusted proxy
  197. * and `forwarded_for_headers` has been configured then the IP address
  198. * specified in this header will be returned instead.
  199. * Do always use this instead of $_SERVER['REMOTE_ADDR']
  200. *
  201. * @return string IP address
  202. * @since 8.1.0
  203. */
  204. public function getRemoteAddress(): string;
  205. /**
  206. * Returns the server protocol. It respects reverse proxy servers and load
  207. * balancers.
  208. *
  209. * @return string Server protocol (http or https)
  210. * @since 8.1.0
  211. */
  212. public function getServerProtocol(): string;
  213. /**
  214. * Returns the used HTTP protocol.
  215. *
  216. * @return string HTTP protocol. HTTP/2, HTTP/1.1 or HTTP/1.0.
  217. * @since 8.2.0
  218. */
  219. public function getHttpProtocol(): string;
  220. /**
  221. * Returns the request uri, even if the website uses one or more
  222. * reverse proxies
  223. *
  224. * @psalm-taint-source input
  225. *
  226. * @return string
  227. * @since 8.1.0
  228. */
  229. public function getRequestUri(): string;
  230. /**
  231. * Get raw PathInfo from request (not urldecoded)
  232. *
  233. * @psalm-taint-source input
  234. *
  235. * @throws \Exception
  236. * @return string Path info
  237. * @since 8.1.0
  238. */
  239. public function getRawPathInfo(): string;
  240. /**
  241. * Get PathInfo from request
  242. *
  243. * @psalm-taint-source input
  244. *
  245. * @throws \Exception
  246. * @return string|false Path info or false when not found
  247. * @since 8.1.0
  248. */
  249. public function getPathInfo();
  250. /**
  251. * Returns the script name, even if the website uses one or more
  252. * reverse proxies
  253. *
  254. * @return string the script name
  255. * @since 8.1.0
  256. */
  257. public function getScriptName(): string;
  258. /**
  259. * Checks whether the user agent matches a given regex
  260. *
  261. * @param array $agent array of agent names
  262. * @return bool true if at least one of the given agent matches, false otherwise
  263. * @since 8.1.0
  264. */
  265. public function isUserAgent(array $agent): bool;
  266. /**
  267. * Returns the unverified server host from the headers without checking
  268. * whether it is a trusted domain
  269. *
  270. * @psalm-taint-source input
  271. *
  272. * @return string Server host
  273. * @since 8.1.0
  274. */
  275. public function getInsecureServerHost(): string;
  276. /**
  277. * Returns the server host from the headers, or the first configured
  278. * trusted domain if the host isn't in the trusted list
  279. *
  280. * @return string Server host
  281. * @since 8.1.0
  282. */
  283. public function getServerHost(): string;
  284. }