IRequest.php 8.5 KB

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