WebRequest.php 39 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410
  1. <?php
  2. /**
  3. * Deal with importing all those nasty globals and things
  4. *
  5. * Copyright © 2003 Brion Vibber <brion@pobox.com>
  6. * https://www.mediawiki.org/
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation; either version 2 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License along
  19. * with this program; if not, write to the Free Software Foundation, Inc.,
  20. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  21. * http://www.gnu.org/copyleft/gpl.html
  22. *
  23. * @file
  24. */
  25. use MediaWiki\MediaWikiServices;
  26. use MediaWiki\Session\Session;
  27. use MediaWiki\Session\SessionId;
  28. use MediaWiki\Session\SessionManager;
  29. use Wikimedia\AtEase\AtEase;
  30. // The point of this class is to be a wrapper around super globals
  31. // phpcs:disable MediaWiki.Usage.SuperGlobalsUsage.SuperGlobals
  32. /**
  33. * The WebRequest class encapsulates getting at data passed in the
  34. * URL or via a POSTed form stripping illegal input characters and
  35. * normalizing Unicode sequences.
  36. *
  37. * @ingroup HTTP
  38. */
  39. class WebRequest {
  40. /**
  41. * The parameters from $_GET, $_POST and the path router
  42. * @var array
  43. */
  44. protected $data;
  45. /**
  46. * The parameters from $_GET. The parameters from the path router are
  47. * added by interpolateTitle() during Setup.php.
  48. * @var array
  49. */
  50. protected $queryAndPathParams;
  51. /**
  52. * The parameters from $_GET only.
  53. */
  54. protected $queryParams;
  55. /**
  56. * Lazy-initialized request headers indexed by upper-case header name
  57. * @var array
  58. */
  59. protected $headers = [];
  60. /**
  61. * Flag to make WebRequest::getHeader return an array of values.
  62. * @since 1.26
  63. */
  64. const GETHEADER_LIST = 1;
  65. /**
  66. * The unique request ID.
  67. * @var string
  68. */
  69. private static $reqId;
  70. /**
  71. * Lazy-init response object
  72. * @var WebResponse
  73. */
  74. private $response;
  75. /**
  76. * Cached client IP address
  77. * @var string
  78. */
  79. private $ip;
  80. /**
  81. * The timestamp of the start of the request, with microsecond precision.
  82. * @var float
  83. */
  84. protected $requestTime;
  85. /**
  86. * Cached URL protocol
  87. * @var string
  88. */
  89. protected $protocol;
  90. /**
  91. * @var SessionId|null Session ID to use for this
  92. * request. We can't save the session directly due to reference cycles not
  93. * working too well (slow GC in Zend and never collected in HHVM).
  94. */
  95. protected $sessionId = null;
  96. /** @var bool Whether this HTTP request is "safe" (even if it is an HTTP post) */
  97. protected $markedAsSafe = false;
  98. /**
  99. * @codeCoverageIgnore
  100. */
  101. public function __construct() {
  102. $this->requestTime = $_SERVER['REQUEST_TIME_FLOAT'];
  103. // POST overrides GET data
  104. // We don't use $_REQUEST here to avoid interference from cookies...
  105. $this->data = $_POST + $_GET;
  106. $this->queryAndPathParams = $this->queryParams = $_GET;
  107. }
  108. /**
  109. * Extract relevant query arguments from the http request uri's path
  110. * to be merged with the normal php provided query arguments.
  111. * Tries to use the REQUEST_URI data if available and parses it
  112. * according to the wiki's configuration looking for any known pattern.
  113. *
  114. * If the REQUEST_URI is not provided we'll fall back on the PATH_INFO
  115. * provided by the server if any and use that to set a 'title' parameter.
  116. *
  117. * @param string $want If this is not 'all', then the function
  118. * will return an empty array if it determines that the URL is
  119. * inside a rewrite path.
  120. *
  121. * @return array Any query arguments found in path matches.
  122. */
  123. public static function getPathInfo( $want = 'all' ) {
  124. // PATH_INFO is mangled due to https://bugs.php.net/bug.php?id=31892
  125. // And also by Apache 2.x, double slashes are converted to single slashes.
  126. // So we will use REQUEST_URI if possible.
  127. if ( isset( $_SERVER['REQUEST_URI'] ) ) {
  128. // Slurp out the path portion to examine...
  129. $url = $_SERVER['REQUEST_URI'];
  130. if ( !preg_match( '!^https?://!', $url ) ) {
  131. $url = 'http://unused' . $url;
  132. }
  133. AtEase::suppressWarnings();
  134. $a = parse_url( $url );
  135. AtEase::restoreWarnings();
  136. if ( !$a ) {
  137. return [];
  138. }
  139. $path = $a['path'] ?? '';
  140. global $wgScript;
  141. if ( $path == $wgScript && $want !== 'all' ) {
  142. // Script inside a rewrite path?
  143. // Abort to keep from breaking...
  144. return [];
  145. }
  146. $router = new PathRouter;
  147. // Raw PATH_INFO style
  148. $router->add( "$wgScript/$1" );
  149. if ( isset( $_SERVER['SCRIPT_NAME'] )
  150. && strpos( $_SERVER['SCRIPT_NAME'], '.php' ) !== false
  151. ) {
  152. // Check for SCRIPT_NAME, we handle index.php explicitly
  153. // But we do have some other .php files such as img_auth.php
  154. // Don't let root article paths clober the parsing for them
  155. $router->add( $_SERVER['SCRIPT_NAME'] . "/$1" );
  156. }
  157. global $wgArticlePath;
  158. if ( $wgArticlePath ) {
  159. $router->add( $wgArticlePath );
  160. }
  161. global $wgActionPaths;
  162. $articlePaths = PathRouter::getActionPaths( $wgActionPaths, $wgArticlePath );
  163. if ( $articlePaths ) {
  164. $router->add( $articlePaths, [ 'action' => '$key' ] );
  165. }
  166. global $wgVariantArticlePath;
  167. if ( $wgVariantArticlePath ) {
  168. $router->add( $wgVariantArticlePath,
  169. [ 'variant' => '$2' ],
  170. [ '$2' => MediaWikiServices::getInstance()->getContentLanguage()->
  171. getVariants() ]
  172. );
  173. }
  174. Hooks::run( 'WebRequestPathInfoRouter', [ $router ] );
  175. $matches = $router->parse( $path );
  176. } else {
  177. global $wgUsePathInfo;
  178. $matches = [];
  179. if ( $wgUsePathInfo ) {
  180. if ( !empty( $_SERVER['ORIG_PATH_INFO'] ) ) {
  181. // Mangled PATH_INFO
  182. // https://bugs.php.net/bug.php?id=31892
  183. // Also reported when ini_get('cgi.fix_pathinfo')==false
  184. $matches['title'] = substr( $_SERVER['ORIG_PATH_INFO'], 1 );
  185. } elseif ( !empty( $_SERVER['PATH_INFO'] ) ) {
  186. // Regular old PATH_INFO yay
  187. $matches['title'] = substr( $_SERVER['PATH_INFO'], 1 );
  188. }
  189. }
  190. }
  191. return $matches;
  192. }
  193. /**
  194. * Work out an appropriate URL prefix containing scheme and host, based on
  195. * information detected from $_SERVER
  196. *
  197. * @return string
  198. */
  199. public static function detectServer() {
  200. global $wgAssumeProxiesUseDefaultProtocolPorts;
  201. $proto = self::detectProtocol();
  202. $stdPort = $proto === 'https' ? 443 : 80;
  203. $varNames = [ 'HTTP_HOST', 'SERVER_NAME', 'HOSTNAME', 'SERVER_ADDR' ];
  204. $host = 'localhost';
  205. $port = $stdPort;
  206. foreach ( $varNames as $varName ) {
  207. if ( !isset( $_SERVER[$varName] ) ) {
  208. continue;
  209. }
  210. $parts = IP::splitHostAndPort( $_SERVER[$varName] );
  211. if ( !$parts ) {
  212. // Invalid, do not use
  213. continue;
  214. }
  215. $host = $parts[0];
  216. if ( $wgAssumeProxiesUseDefaultProtocolPorts && isset( $_SERVER['HTTP_X_FORWARDED_PROTO'] ) ) {
  217. // T72021: Assume that upstream proxy is running on the default
  218. // port based on the protocol. We have no reliable way to determine
  219. // the actual port in use upstream.
  220. $port = $stdPort;
  221. } elseif ( $parts[1] === false ) {
  222. if ( isset( $_SERVER['SERVER_PORT'] ) ) {
  223. $port = $_SERVER['SERVER_PORT'];
  224. } // else leave it as $stdPort
  225. } else {
  226. $port = $parts[1];
  227. }
  228. break;
  229. }
  230. return $proto . '://' . IP::combineHostAndPort( $host, $port, $stdPort );
  231. }
  232. /**
  233. * Detect the protocol from $_SERVER.
  234. * This is for use prior to Setup.php, when no WebRequest object is available.
  235. * At other times, use the non-static function getProtocol().
  236. *
  237. * @return string
  238. */
  239. public static function detectProtocol() {
  240. if ( ( !empty( $_SERVER['HTTPS'] ) && $_SERVER['HTTPS'] !== 'off' ) ||
  241. ( isset( $_SERVER['HTTP_X_FORWARDED_PROTO'] ) &&
  242. $_SERVER['HTTP_X_FORWARDED_PROTO'] === 'https' ) ) {
  243. return 'https';
  244. } else {
  245. return 'http';
  246. }
  247. }
  248. /**
  249. * Get the number of seconds to have elapsed since request start,
  250. * in fractional seconds, with microsecond resolution.
  251. *
  252. * @return float
  253. * @since 1.25
  254. */
  255. public function getElapsedTime() {
  256. return microtime( true ) - $this->requestTime;
  257. }
  258. /**
  259. * Get the unique request ID.
  260. * This is either the value of the UNIQUE_ID envvar (if present) or a
  261. * randomly-generated 24-character string.
  262. *
  263. * @return string
  264. * @since 1.27
  265. */
  266. public static function getRequestId() {
  267. // This method is called from various error handlers and should be kept simple.
  268. if ( self::$reqId ) {
  269. return self::$reqId;
  270. }
  271. global $wgAllowExternalReqID;
  272. self::$reqId = $_SERVER['UNIQUE_ID'] ?? wfRandomString( 24 );
  273. if ( $wgAllowExternalReqID ) {
  274. $id = RequestContext::getMain()->getRequest()->getHeader( 'X-Request-Id' );
  275. if ( $id ) {
  276. self::$reqId = $id;
  277. }
  278. }
  279. return self::$reqId;
  280. }
  281. /**
  282. * Override the unique request ID. This is for sub-requests, such as jobs,
  283. * that wish to use the same id but are not part of the same execution context.
  284. *
  285. * @param string $id
  286. * @since 1.27
  287. */
  288. public static function overrideRequestId( $id ) {
  289. self::$reqId = $id;
  290. }
  291. /**
  292. * Get the current URL protocol (http or https)
  293. * @return string
  294. */
  295. public function getProtocol() {
  296. if ( $this->protocol === null ) {
  297. $this->protocol = self::detectProtocol();
  298. }
  299. return $this->protocol;
  300. }
  301. /**
  302. * Check for title, action, and/or variant data in the URL
  303. * and interpolate it into the GET variables.
  304. * This should only be run after the content language is available,
  305. * as we may need the list of language variants to determine
  306. * available variant URLs.
  307. */
  308. public function interpolateTitle() {
  309. // T18019: title interpolation on API queries is useless and sometimes harmful
  310. if ( defined( 'MW_API' ) ) {
  311. return;
  312. }
  313. $matches = self::getPathInfo( 'title' );
  314. foreach ( $matches as $key => $val ) {
  315. $this->data[$key] = $this->queryAndPathParams[$key] = $val;
  316. }
  317. }
  318. /**
  319. * URL rewriting function; tries to extract page title and,
  320. * optionally, one other fixed parameter value from a URL path.
  321. *
  322. * @param string $path The URL path given from the client
  323. * @param array $bases One or more URLs, optionally with $1 at the end
  324. * @param string|bool $key If provided, the matching key in $bases will be
  325. * passed on as the value of this URL parameter
  326. * @return array Array of URL variables to interpolate; empty if no match
  327. */
  328. static function extractTitle( $path, $bases, $key = false ) {
  329. foreach ( (array)$bases as $keyValue => $base ) {
  330. // Find the part after $wgArticlePath
  331. $base = str_replace( '$1', '', $base );
  332. $baseLen = strlen( $base );
  333. if ( substr( $path, 0, $baseLen ) == $base ) {
  334. $raw = substr( $path, $baseLen );
  335. if ( $raw !== '' ) {
  336. $matches = [ 'title' => rawurldecode( $raw ) ];
  337. if ( $key ) {
  338. $matches[$key] = $keyValue;
  339. }
  340. return $matches;
  341. }
  342. }
  343. }
  344. return [];
  345. }
  346. /**
  347. * Recursively normalizes UTF-8 strings in the given array.
  348. *
  349. * @param string|array $data
  350. * @return array|string Cleaned-up version of the given
  351. * @private
  352. */
  353. public function normalizeUnicode( $data ) {
  354. if ( is_array( $data ) ) {
  355. foreach ( $data as $key => $val ) {
  356. $data[$key] = $this->normalizeUnicode( $val );
  357. }
  358. } else {
  359. $contLang = MediaWikiServices::getInstance()->getContentLanguage();
  360. $data = $contLang ? $contLang->normalize( $data ) :
  361. UtfNormal\Validator::cleanUp( $data );
  362. }
  363. return $data;
  364. }
  365. /**
  366. * Fetch a value from the given array or return $default if it's not set.
  367. *
  368. * @param array $arr
  369. * @param string $name
  370. * @param mixed $default
  371. * @return mixed
  372. */
  373. private function getGPCVal( $arr, $name, $default ) {
  374. # PHP is so nice to not touch input data, except sometimes:
  375. # https://www.php.net/variables.external#language.variables.external.dot-in-names
  376. # Work around PHP *feature* to avoid *bugs* elsewhere.
  377. $name = strtr( $name, '.', '_' );
  378. if ( !isset( $arr[$name] ) ) {
  379. return $default;
  380. }
  381. $data = $arr[$name];
  382. # Optimisation: Skip UTF-8 normalization and legacy transcoding for simple ASCII strings.
  383. $isAsciiStr = ( is_string( $data ) && preg_match( '/[^\x20-\x7E]/', $data ) === 0 );
  384. if ( !$isAsciiStr ) {
  385. if ( isset( $_GET[$name] ) && is_string( $data ) ) {
  386. # Check for alternate/legacy character encoding.
  387. $data = MediaWikiServices::getInstance()
  388. ->getContentLanguage()
  389. ->checkTitleEncoding( $data );
  390. }
  391. $data = $this->normalizeUnicode( $data );
  392. }
  393. return $data;
  394. }
  395. /**
  396. * Fetch a scalar from the input without normalization, or return $default
  397. * if it's not set.
  398. *
  399. * Unlike self::getVal(), this does not perform any normalization on the
  400. * input value.
  401. *
  402. * @since 1.28
  403. * @param string $name
  404. * @param string|null $default
  405. * @return string|null
  406. */
  407. public function getRawVal( $name, $default = null ) {
  408. $name = strtr( $name, '.', '_' ); // See comment in self::getGPCVal()
  409. if ( isset( $this->data[$name] ) && !is_array( $this->data[$name] ) ) {
  410. $val = $this->data[$name];
  411. } else {
  412. $val = $default;
  413. }
  414. if ( is_null( $val ) ) {
  415. return $val;
  416. } else {
  417. return (string)$val;
  418. }
  419. }
  420. /**
  421. * Fetch a scalar from the input or return $default if it's not set.
  422. * Returns a string. Arrays are discarded. Useful for
  423. * non-freeform text inputs (e.g. predefined internal text keys
  424. * selected by a drop-down menu). For freeform input, see getText().
  425. *
  426. * @param string $name
  427. * @param string|null $default Optional default (or null)
  428. * @return string|null
  429. */
  430. public function getVal( $name, $default = null ) {
  431. $val = $this->getGPCVal( $this->data, $name, $default );
  432. if ( is_array( $val ) ) {
  433. $val = $default;
  434. }
  435. if ( is_null( $val ) ) {
  436. return $val;
  437. } else {
  438. return (string)$val;
  439. }
  440. }
  441. /**
  442. * Set an arbitrary value into our get/post data.
  443. *
  444. * @param string $key Key name to use
  445. * @param mixed $value Value to set
  446. * @return mixed Old value if one was present, null otherwise
  447. */
  448. public function setVal( $key, $value ) {
  449. $ret = $this->data[$key] ?? null;
  450. $this->data[$key] = $value;
  451. return $ret;
  452. }
  453. /**
  454. * Unset an arbitrary value from our get/post data.
  455. *
  456. * @param string $key Key name to use
  457. * @return mixed Old value if one was present, null otherwise
  458. */
  459. public function unsetVal( $key ) {
  460. if ( !isset( $this->data[$key] ) ) {
  461. $ret = null;
  462. } else {
  463. $ret = $this->data[$key];
  464. unset( $this->data[$key] );
  465. }
  466. return $ret;
  467. }
  468. /**
  469. * Fetch an array from the input or return $default if it's not set.
  470. * If source was scalar, will return an array with a single element.
  471. * If no source and no default, returns null.
  472. *
  473. * @param string $name
  474. * @param array|null $default Optional default (or null)
  475. * @return array|null
  476. */
  477. public function getArray( $name, $default = null ) {
  478. $val = $this->getGPCVal( $this->data, $name, $default );
  479. if ( is_null( $val ) ) {
  480. return null;
  481. } else {
  482. return (array)$val;
  483. }
  484. }
  485. /**
  486. * Fetch an array of integers, or return $default if it's not set.
  487. * If source was scalar, will return an array with a single element.
  488. * If no source and no default, returns null.
  489. * If an array is returned, contents are guaranteed to be integers.
  490. *
  491. * @param string $name
  492. * @param array|null $default Option default (or null)
  493. * @return int[]|null
  494. */
  495. public function getIntArray( $name, $default = null ) {
  496. $val = $this->getArray( $name, $default );
  497. if ( is_array( $val ) ) {
  498. $val = array_map( 'intval', $val );
  499. }
  500. return $val;
  501. }
  502. /**
  503. * Fetch an integer value from the input or return $default if not set.
  504. * Guaranteed to return an integer; non-numeric input will typically
  505. * return 0.
  506. *
  507. * @param string $name
  508. * @param int $default
  509. * @return int
  510. */
  511. public function getInt( $name, $default = 0 ) {
  512. return intval( $this->getRawVal( $name, $default ) );
  513. }
  514. /**
  515. * Fetch an integer value from the input or return null if empty.
  516. * Guaranteed to return an integer or null; non-numeric input will
  517. * typically return null.
  518. *
  519. * @param string $name
  520. * @return int|null
  521. */
  522. public function getIntOrNull( $name ) {
  523. $val = $this->getRawVal( $name );
  524. return is_numeric( $val )
  525. ? intval( $val )
  526. : null;
  527. }
  528. /**
  529. * Fetch a floating point value from the input or return $default if not set.
  530. * Guaranteed to return a float; non-numeric input will typically
  531. * return 0.
  532. *
  533. * @since 1.23
  534. * @param string $name
  535. * @param float $default
  536. * @return float
  537. */
  538. public function getFloat( $name, $default = 0.0 ) {
  539. return floatval( $this->getRawVal( $name, $default ) );
  540. }
  541. /**
  542. * Fetch a boolean value from the input or return $default if not set.
  543. * Guaranteed to return true or false, with normal PHP semantics for
  544. * boolean interpretation of strings.
  545. *
  546. * @param string $name
  547. * @param bool $default
  548. * @return bool
  549. */
  550. public function getBool( $name, $default = false ) {
  551. return (bool)$this->getRawVal( $name, $default );
  552. }
  553. /**
  554. * Fetch a boolean value from the input or return $default if not set.
  555. * Unlike getBool, the string "false" will result in boolean false, which is
  556. * useful when interpreting information sent from JavaScript.
  557. *
  558. * @param string $name
  559. * @param bool $default
  560. * @return bool
  561. */
  562. public function getFuzzyBool( $name, $default = false ) {
  563. return $this->getBool( $name, $default )
  564. && strcasecmp( $this->getRawVal( $name ), 'false' ) !== 0;
  565. }
  566. /**
  567. * Return true if the named value is set in the input, whatever that
  568. * value is (even "0"). Return false if the named value is not set.
  569. * Example use is checking for the presence of check boxes in forms.
  570. *
  571. * @param string $name
  572. * @return bool
  573. */
  574. public function getCheck( $name ) {
  575. # Checkboxes and buttons are only present when clicked
  576. # Presence connotes truth, absence false
  577. return $this->getRawVal( $name, null ) !== null;
  578. }
  579. /**
  580. * Fetch a text string from the given array or return $default if it's not
  581. * set. Carriage returns are stripped from the text. This should generally
  582. * be used for form "<textarea>" and "<input>" fields, and for
  583. * user-supplied freeform text input.
  584. *
  585. * @param string $name
  586. * @param string $default Optional
  587. * @return string
  588. */
  589. public function getText( $name, $default = '' ) {
  590. $val = $this->getVal( $name, $default );
  591. return str_replace( "\r\n", "\n", $val );
  592. }
  593. /**
  594. * Extracts the given named values into an array.
  595. * If no arguments are given, returns all input values.
  596. * No transformation is performed on the values.
  597. *
  598. * @return array
  599. */
  600. public function getValues() {
  601. $names = func_get_args();
  602. if ( count( $names ) == 0 ) {
  603. $names = array_keys( $this->data );
  604. }
  605. $retVal = [];
  606. foreach ( $names as $name ) {
  607. $value = $this->getGPCVal( $this->data, $name, null );
  608. if ( !is_null( $value ) ) {
  609. $retVal[$name] = $value;
  610. }
  611. }
  612. return $retVal;
  613. }
  614. /**
  615. * Returns the names of all input values excluding those in $exclude.
  616. *
  617. * @param array $exclude
  618. * @return array
  619. */
  620. public function getValueNames( $exclude = [] ) {
  621. return array_diff( array_keys( $this->getValues() ), $exclude );
  622. }
  623. /**
  624. * Get the values passed in the query string and the path router parameters.
  625. * No transformation is performed on the values.
  626. *
  627. * @codeCoverageIgnore
  628. * @return array
  629. */
  630. public function getQueryValues() {
  631. return $this->queryAndPathParams;
  632. }
  633. /**
  634. * Get the values passed in the query string only, not including the path
  635. * router parameters. This is less suitable for self-links to index.php but
  636. * useful for other entry points. No transformation is performed on the
  637. * values.
  638. *
  639. * @since 1.34
  640. * @return array
  641. */
  642. public function getQueryValuesOnly() {
  643. return $this->queryParams;
  644. }
  645. /**
  646. * Get the values passed via POST.
  647. * No transformation is performed on the values.
  648. *
  649. * @since 1.32
  650. * @codeCoverageIgnore
  651. * @return array
  652. */
  653. public function getPostValues() {
  654. return $_POST;
  655. }
  656. /**
  657. * Return the contents of the Query with no decoding. Use when you need to
  658. * know exactly what was sent, e.g. for an OAuth signature over the elements.
  659. *
  660. * @codeCoverageIgnore
  661. * @return string
  662. */
  663. public function getRawQueryString() {
  664. return $_SERVER['QUERY_STRING'];
  665. }
  666. /**
  667. * Return the contents of the POST with no decoding. Use when you need to
  668. * know exactly what was sent, e.g. for an OAuth signature over the elements.
  669. *
  670. * @return string
  671. */
  672. public function getRawPostString() {
  673. if ( !$this->wasPosted() ) {
  674. return '';
  675. }
  676. return $this->getRawInput();
  677. }
  678. /**
  679. * Return the raw request body, with no processing. Cached since some methods
  680. * disallow reading the stream more than once. As stated in the php docs, this
  681. * does not work with enctype="multipart/form-data".
  682. *
  683. * @return string
  684. */
  685. public function getRawInput() {
  686. static $input = null;
  687. if ( $input === null ) {
  688. $input = file_get_contents( 'php://input' );
  689. }
  690. return $input;
  691. }
  692. /**
  693. * Get the HTTP method used for this request.
  694. *
  695. * @return string
  696. */
  697. public function getMethod() {
  698. return $_SERVER['REQUEST_METHOD'] ?? 'GET';
  699. }
  700. /**
  701. * Returns true if the present request was reached by a POST operation,
  702. * false otherwise (GET, HEAD, or command-line).
  703. *
  704. * Note that values retrieved by the object may come from the
  705. * GET URL etc even on a POST request.
  706. *
  707. * @return bool
  708. */
  709. public function wasPosted() {
  710. return $this->getMethod() == 'POST';
  711. }
  712. /**
  713. * Return the session for this request
  714. *
  715. * This might unpersist an existing session if it was invalid.
  716. *
  717. * @since 1.27
  718. * @note For performance, keep the session locally if you will be making
  719. * much use of it instead of calling this method repeatedly.
  720. * @return Session
  721. */
  722. public function getSession() {
  723. if ( $this->sessionId !== null ) {
  724. $session = SessionManager::singleton()->getSessionById( (string)$this->sessionId, true, $this );
  725. if ( $session ) {
  726. return $session;
  727. }
  728. }
  729. $session = SessionManager::singleton()->getSessionForRequest( $this );
  730. $this->sessionId = $session->getSessionId();
  731. return $session;
  732. }
  733. /**
  734. * Set the session for this request
  735. * @since 1.27
  736. * @private For use by MediaWiki\Session classes only
  737. * @param SessionId $sessionId
  738. */
  739. public function setSessionId( SessionId $sessionId ) {
  740. $this->sessionId = $sessionId;
  741. }
  742. /**
  743. * Get the session id for this request, if any
  744. * @since 1.27
  745. * @private For use by MediaWiki\Session classes only
  746. * @return SessionId|null
  747. */
  748. public function getSessionId() {
  749. return $this->sessionId;
  750. }
  751. /**
  752. * Get a cookie from the $_COOKIE jar
  753. *
  754. * @param string $key The name of the cookie
  755. * @param string|null $prefix A prefix to use for the cookie name, if not $wgCookiePrefix
  756. * @param mixed|null $default What to return if the value isn't found
  757. * @return mixed Cookie value or $default if the cookie not set
  758. */
  759. public function getCookie( $key, $prefix = null, $default = null ) {
  760. if ( $prefix === null ) {
  761. global $wgCookiePrefix;
  762. $prefix = $wgCookiePrefix;
  763. }
  764. return $this->getGPCVal( $_COOKIE, $prefix . $key, $default );
  765. }
  766. /**
  767. * Return the path and query string portion of the main request URI.
  768. * This will be suitable for use as a relative link in HTML output.
  769. *
  770. * @throws MWException
  771. * @return string
  772. */
  773. public static function getGlobalRequestURL() {
  774. // This method is called on fatal errors; it should not depend on anything complex.
  775. if ( isset( $_SERVER['REQUEST_URI'] ) && strlen( $_SERVER['REQUEST_URI'] ) ) {
  776. $base = $_SERVER['REQUEST_URI'];
  777. } elseif ( isset( $_SERVER['HTTP_X_ORIGINAL_URL'] )
  778. && strlen( $_SERVER['HTTP_X_ORIGINAL_URL'] )
  779. ) {
  780. // Probably IIS; doesn't set REQUEST_URI
  781. $base = $_SERVER['HTTP_X_ORIGINAL_URL'];
  782. } elseif ( isset( $_SERVER['SCRIPT_NAME'] ) ) {
  783. $base = $_SERVER['SCRIPT_NAME'];
  784. if ( isset( $_SERVER['QUERY_STRING'] ) && $_SERVER['QUERY_STRING'] != '' ) {
  785. $base .= '?' . $_SERVER['QUERY_STRING'];
  786. }
  787. } else {
  788. // This shouldn't happen!
  789. throw new MWException( "Web server doesn't provide either " .
  790. "REQUEST_URI, HTTP_X_ORIGINAL_URL or SCRIPT_NAME. Report details " .
  791. "of your web server configuration to https://phabricator.wikimedia.org/" );
  792. }
  793. // User-agents should not send a fragment with the URI, but
  794. // if they do, and the web server passes it on to us, we
  795. // need to strip it or we get false-positive redirect loops
  796. // or weird output URLs
  797. $hash = strpos( $base, '#' );
  798. if ( $hash !== false ) {
  799. $base = substr( $base, 0, $hash );
  800. }
  801. if ( $base[0] == '/' ) {
  802. // More than one slash will look like it is protocol relative
  803. return preg_replace( '!^/+!', '/', $base );
  804. } else {
  805. // We may get paths with a host prepended; strip it.
  806. return preg_replace( '!^[^:]+://[^/]+/+!', '/', $base );
  807. }
  808. }
  809. /**
  810. * Return the path and query string portion of the request URI.
  811. * This will be suitable for use as a relative link in HTML output.
  812. *
  813. * @throws MWException
  814. * @return string
  815. */
  816. public function getRequestURL() {
  817. return self::getGlobalRequestURL();
  818. }
  819. /**
  820. * Return the request URI with the canonical service and hostname, path,
  821. * and query string. This will be suitable for use as an absolute link
  822. * in HTML or other output.
  823. *
  824. * If $wgServer is protocol-relative, this will return a fully
  825. * qualified URL with the protocol of this request object.
  826. *
  827. * @return string
  828. */
  829. public function getFullRequestURL() {
  830. // Pass an explicit PROTO constant instead of PROTO_CURRENT so that we
  831. // do not rely on state from the global $wgRequest object (which it would,
  832. // via wfGetServerUrl/wfExpandUrl/$wgRequest->protocol).
  833. if ( $this->getProtocol() === 'http' ) {
  834. return wfGetServerUrl( PROTO_HTTP ) . $this->getRequestURL();
  835. } else {
  836. return wfGetServerUrl( PROTO_HTTPS ) . $this->getRequestURL();
  837. }
  838. }
  839. /**
  840. * @param string $key
  841. * @param string $value
  842. * @return string
  843. */
  844. public function appendQueryValue( $key, $value ) {
  845. return $this->appendQueryArray( [ $key => $value ] );
  846. }
  847. /**
  848. * Appends or replaces value of query variables.
  849. *
  850. * @param array $array Array of values to replace/add to query
  851. * @return string
  852. */
  853. public function appendQueryArray( $array ) {
  854. $newquery = $this->getQueryValues();
  855. unset( $newquery['title'] );
  856. $newquery = array_merge( $newquery, $array );
  857. return wfArrayToCgi( $newquery );
  858. }
  859. /**
  860. * Check for limit and offset parameters on the input, and return sensible
  861. * defaults if not given. The limit must be positive and is capped at 5000.
  862. * Offset must be positive but is not capped.
  863. *
  864. * @param int $deflimit Limit to use if no input and the user hasn't set the option.
  865. * @param string $optionname To specify an option other than rclimit to pull from.
  866. * @return int[] First element is limit, second is offset
  867. */
  868. public function getLimitOffset( $deflimit = 50, $optionname = 'rclimit' ) {
  869. global $wgUser;
  870. $limit = $this->getInt( 'limit', 0 );
  871. if ( $limit < 0 ) {
  872. $limit = 0;
  873. }
  874. if ( ( $limit == 0 ) && ( $optionname != '' ) ) {
  875. $limit = $wgUser->getIntOption( $optionname );
  876. }
  877. if ( $limit <= 0 ) {
  878. $limit = $deflimit;
  879. }
  880. if ( $limit > 5000 ) {
  881. $limit = 5000; # We have *some* limits...
  882. }
  883. $offset = $this->getInt( 'offset', 0 );
  884. if ( $offset < 0 ) {
  885. $offset = 0;
  886. }
  887. return [ $limit, $offset ];
  888. }
  889. /**
  890. * Return the path to the temporary file where PHP has stored the upload.
  891. *
  892. * @param string $key
  893. * @return string|null String or null if no such file.
  894. */
  895. public function getFileTempname( $key ) {
  896. $file = new WebRequestUpload( $this, $key );
  897. return $file->getTempName();
  898. }
  899. /**
  900. * Return the upload error or 0
  901. *
  902. * @param string $key
  903. * @return int
  904. */
  905. public function getUploadError( $key ) {
  906. $file = new WebRequestUpload( $this, $key );
  907. return $file->getError();
  908. }
  909. /**
  910. * Return the original filename of the uploaded file, as reported by
  911. * the submitting user agent. HTML-style character entities are
  912. * interpreted and normalized to Unicode normalization form C, in part
  913. * to deal with weird input from Safari with non-ASCII filenames.
  914. *
  915. * Other than this the name is not verified for being a safe filename.
  916. *
  917. * @param string $key
  918. * @return string|null String or null if no such file.
  919. */
  920. public function getFileName( $key ) {
  921. $file = new WebRequestUpload( $this, $key );
  922. return $file->getName();
  923. }
  924. /**
  925. * Return a WebRequestUpload object corresponding to the key
  926. *
  927. * @param string $key
  928. * @return WebRequestUpload
  929. */
  930. public function getUpload( $key ) {
  931. return new WebRequestUpload( $this, $key );
  932. }
  933. /**
  934. * Return a handle to WebResponse style object, for setting cookies,
  935. * headers and other stuff, for Request being worked on.
  936. *
  937. * @return WebResponse
  938. */
  939. public function response() {
  940. /* Lazy initialization of response object for this request */
  941. if ( !is_object( $this->response ) ) {
  942. $class = ( $this instanceof FauxRequest ) ? FauxResponse::class : WebResponse::class;
  943. $this->response = new $class();
  944. }
  945. return $this->response;
  946. }
  947. /**
  948. * Initialise the header list
  949. */
  950. protected function initHeaders() {
  951. if ( count( $this->headers ) ) {
  952. return;
  953. }
  954. $apacheHeaders = function_exists( 'apache_request_headers' ) ? apache_request_headers() : false;
  955. if ( $apacheHeaders ) {
  956. foreach ( $apacheHeaders as $tempName => $tempValue ) {
  957. $this->headers[strtoupper( $tempName )] = $tempValue;
  958. }
  959. } else {
  960. foreach ( $_SERVER as $name => $value ) {
  961. if ( substr( $name, 0, 5 ) === 'HTTP_' ) {
  962. $name = str_replace( '_', '-', substr( $name, 5 ) );
  963. $this->headers[$name] = $value;
  964. } elseif ( $name === 'CONTENT_LENGTH' ) {
  965. $this->headers['CONTENT-LENGTH'] = $value;
  966. }
  967. }
  968. }
  969. }
  970. /**
  971. * Get an array containing all request headers
  972. *
  973. * @return array Mapping header name to its value
  974. */
  975. public function getAllHeaders() {
  976. $this->initHeaders();
  977. return $this->headers;
  978. }
  979. /**
  980. * Get a request header, or false if it isn't set.
  981. *
  982. * @param string $name Case-insensitive header name
  983. * @param int $flags Bitwise combination of:
  984. * WebRequest::GETHEADER_LIST Treat the header as a comma-separated list
  985. * of values, as described in RFC 2616 § 4.2.
  986. * (since 1.26).
  987. * @return string|array|bool False if header is unset; otherwise the
  988. * header value(s) as either a string (the default) or an array, if
  989. * WebRequest::GETHEADER_LIST flag was set.
  990. */
  991. public function getHeader( $name, $flags = 0 ) {
  992. $this->initHeaders();
  993. $name = strtoupper( $name );
  994. if ( !isset( $this->headers[$name] ) ) {
  995. return false;
  996. }
  997. $value = $this->headers[$name];
  998. if ( $flags & self::GETHEADER_LIST ) {
  999. $value = array_map( 'trim', explode( ',', $value ) );
  1000. }
  1001. return $value;
  1002. }
  1003. /**
  1004. * Get data from the session
  1005. *
  1006. * @note Prefer $this->getSession() instead if making multiple calls.
  1007. * @param string $key Name of key in the session
  1008. * @return mixed
  1009. */
  1010. public function getSessionData( $key ) {
  1011. return $this->getSession()->get( $key );
  1012. }
  1013. /**
  1014. * Set session data
  1015. *
  1016. * @note Prefer $this->getSession() instead if making multiple calls.
  1017. * @param string $key Name of key in the session
  1018. * @param mixed $data
  1019. */
  1020. public function setSessionData( $key, $data ) {
  1021. $this->getSession()->set( $key, $data );
  1022. }
  1023. /**
  1024. * Check if Internet Explorer will detect an incorrect cache extension in
  1025. * PATH_INFO or QUERY_STRING. If the request can't be allowed, show an error
  1026. * message or redirect to a safer URL. Returns true if the URL is OK, and
  1027. * false if an error message has been shown and the request should be aborted.
  1028. *
  1029. * @param array $extWhitelist
  1030. * @throws HttpError
  1031. * @return bool
  1032. */
  1033. public function checkUrlExtension( $extWhitelist = [] ) {
  1034. $extWhitelist[] = 'php';
  1035. if ( IEUrlExtension::areServerVarsBad( $_SERVER, $extWhitelist ) ) {
  1036. if ( !$this->wasPosted() ) {
  1037. $newUrl = IEUrlExtension::fixUrlForIE6(
  1038. $this->getFullRequestURL(), $extWhitelist );
  1039. if ( $newUrl !== false ) {
  1040. $this->doSecurityRedirect( $newUrl );
  1041. return false;
  1042. }
  1043. }
  1044. throw new HttpError( 403,
  1045. 'Invalid file extension found in the path info or query string.' );
  1046. }
  1047. return true;
  1048. }
  1049. /**
  1050. * Attempt to redirect to a URL with a QUERY_STRING that's not dangerous in
  1051. * IE 6. Returns true if it was successful, false otherwise.
  1052. *
  1053. * @param string $url
  1054. * @return bool
  1055. */
  1056. protected function doSecurityRedirect( $url ) {
  1057. header( 'Location: ' . $url );
  1058. header( 'Content-Type: text/html' );
  1059. $encUrl = htmlspecialchars( $url );
  1060. echo <<<HTML
  1061. <!DOCTYPE html>
  1062. <html>
  1063. <head>
  1064. <title>Security redirect</title>
  1065. </head>
  1066. <body>
  1067. <h1>Security redirect</h1>
  1068. <p>
  1069. We can't serve non-HTML content from the URL you have requested, because
  1070. Internet Explorer would interpret it as an incorrect and potentially dangerous
  1071. content type.</p>
  1072. <p>Instead, please use <a href="$encUrl">this URL</a>, which is the same as the
  1073. URL you have requested, except that "&amp;*" is appended. This prevents Internet
  1074. Explorer from seeing a bogus file extension.
  1075. </p>
  1076. </body>
  1077. </html>
  1078. HTML;
  1079. echo "\n";
  1080. return true;
  1081. }
  1082. /**
  1083. * Parse the Accept-Language header sent by the client into an array
  1084. *
  1085. * @return array [ languageCode => q-value ] sorted by q-value in
  1086. * descending order then appearing time in the header in ascending order.
  1087. * May contain the "language" '*', which applies to languages other than those explicitly listed.
  1088. * This is aligned with rfc2616 section 14.4
  1089. * Preference for earlier languages appears in rfc3282 as an extension to HTTP/1.1.
  1090. */
  1091. public function getAcceptLang() {
  1092. // Modified version of code found at
  1093. // http://www.thefutureoftheweb.com/blog/use-accept-language-header
  1094. $acceptLang = $this->getHeader( 'Accept-Language' );
  1095. if ( !$acceptLang ) {
  1096. return [];
  1097. }
  1098. // Return the language codes in lower case
  1099. $acceptLang = strtolower( $acceptLang );
  1100. // Break up string into pieces (languages and q factors)
  1101. $lang_parse = null;
  1102. preg_match_all(
  1103. '/([a-z]{1,8}(-[a-z]{1,8})*|\*)\s*(;\s*q\s*=\s*(1(\.0{0,3})?|0(\.[0-9]{0,3})?)?)?/',
  1104. $acceptLang,
  1105. $lang_parse
  1106. );
  1107. if ( !count( $lang_parse[1] ) ) {
  1108. return [];
  1109. }
  1110. $langcodes = $lang_parse[1];
  1111. $qvalues = $lang_parse[4];
  1112. $indices = range( 0, count( $lang_parse[1] ) - 1 );
  1113. // Set default q factor to 1
  1114. foreach ( $indices as $index ) {
  1115. if ( $qvalues[$index] === '' ) {
  1116. $qvalues[$index] = 1;
  1117. } elseif ( $qvalues[$index] == 0 ) {
  1118. unset( $langcodes[$index], $qvalues[$index], $indices[$index] );
  1119. }
  1120. }
  1121. // Sort list. First by $qvalues, then by order. Reorder $langcodes the same way
  1122. array_multisort( $qvalues, SORT_DESC, SORT_NUMERIC, $indices, $langcodes );
  1123. // Create a list like "en" => 0.8
  1124. $langs = array_combine( $langcodes, $qvalues );
  1125. return $langs;
  1126. }
  1127. /**
  1128. * Fetch the raw IP from the request
  1129. *
  1130. * @since 1.19
  1131. *
  1132. * @throws MWException
  1133. * @return string
  1134. */
  1135. protected function getRawIP() {
  1136. if ( !isset( $_SERVER['REMOTE_ADDR'] ) ) {
  1137. return null;
  1138. }
  1139. if ( is_array( $_SERVER['REMOTE_ADDR'] ) || strpos( $_SERVER['REMOTE_ADDR'], ',' ) !== false ) {
  1140. throw new MWException( __METHOD__
  1141. . " : Could not determine the remote IP address due to multiple values." );
  1142. } else {
  1143. $ipchain = $_SERVER['REMOTE_ADDR'];
  1144. }
  1145. return IP::canonicalize( $ipchain );
  1146. }
  1147. /**
  1148. * Work out the IP address based on various globals
  1149. * For trusted proxies, use the XFF client IP (first of the chain)
  1150. *
  1151. * @since 1.19
  1152. *
  1153. * @throws MWException
  1154. * @return string
  1155. */
  1156. public function getIP() {
  1157. global $wgUsePrivateIPs;
  1158. # Return cached result
  1159. if ( $this->ip !== null ) {
  1160. return $this->ip;
  1161. }
  1162. # collect the originating ips
  1163. $ip = $this->getRawIP();
  1164. if ( !$ip ) {
  1165. throw new MWException( 'Unable to determine IP.' );
  1166. }
  1167. # Append XFF
  1168. $forwardedFor = $this->getHeader( 'X-Forwarded-For' );
  1169. if ( $forwardedFor !== false ) {
  1170. $proxyLookup = MediaWikiServices::getInstance()->getProxyLookup();
  1171. $isConfigured = $proxyLookup->isConfiguredProxy( $ip );
  1172. $ipchain = array_map( 'trim', explode( ',', $forwardedFor ) );
  1173. $ipchain = array_reverse( $ipchain );
  1174. array_unshift( $ipchain, $ip );
  1175. # Step through XFF list and find the last address in the list which is a
  1176. # trusted server. Set $ip to the IP address given by that trusted server,
  1177. # unless the address is not sensible (e.g. private). However, prefer private
  1178. # IP addresses over proxy servers controlled by this site (more sensible).
  1179. # Note that some XFF values might be "unknown" with Squid/Varnish.
  1180. foreach ( $ipchain as $i => $curIP ) {
  1181. $curIP = IP::sanitizeIP( IP::canonicalize( $curIP ) );
  1182. if ( !$curIP || !isset( $ipchain[$i + 1] ) || $ipchain[$i + 1] === 'unknown'
  1183. || !$proxyLookup->isTrustedProxy( $curIP )
  1184. ) {
  1185. break; // IP is not valid/trusted or does not point to anything
  1186. }
  1187. if (
  1188. IP::isPublic( $ipchain[$i + 1] ) ||
  1189. $wgUsePrivateIPs ||
  1190. $proxyLookup->isConfiguredProxy( $curIP ) // T50919; treat IP as sane
  1191. ) {
  1192. // Follow the next IP according to the proxy
  1193. $nextIP = IP::canonicalize( $ipchain[$i + 1] );
  1194. if ( !$nextIP && $isConfigured ) {
  1195. // We have not yet made it past CDN/proxy servers of this site,
  1196. // so either they are misconfigured or there is some IP spoofing.
  1197. throw new MWException( "Invalid IP given in XFF '$forwardedFor'." );
  1198. }
  1199. $ip = $nextIP;
  1200. // keep traversing the chain
  1201. continue;
  1202. }
  1203. break;
  1204. }
  1205. }
  1206. # Allow extensions to improve our guess
  1207. Hooks::run( 'GetIP', [ &$ip ] );
  1208. if ( !$ip ) {
  1209. throw new MWException( "Unable to determine IP." );
  1210. }
  1211. wfDebug( "IP: $ip\n" );
  1212. $this->ip = $ip;
  1213. return $ip;
  1214. }
  1215. /**
  1216. * @param string $ip
  1217. * @return void
  1218. * @since 1.21
  1219. */
  1220. public function setIP( $ip ) {
  1221. $this->ip = $ip;
  1222. }
  1223. /**
  1224. * Check if this request uses a "safe" HTTP method
  1225. *
  1226. * Safe methods are verbs (e.g. GET/HEAD/OPTIONS) used for obtaining content. Such requests
  1227. * are not expected to mutate content, especially in ways attributable to the client. Verbs
  1228. * like POST and PUT are typical of non-safe requests which often change content.
  1229. *
  1230. * @return bool
  1231. * @see https://tools.ietf.org/html/rfc7231#section-4.2.1
  1232. * @see https://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html
  1233. * @since 1.28
  1234. */
  1235. public function hasSafeMethod() {
  1236. if ( !isset( $_SERVER['REQUEST_METHOD'] ) ) {
  1237. return false; // CLI mode
  1238. }
  1239. return in_array( $_SERVER['REQUEST_METHOD'], [ 'GET', 'HEAD', 'OPTIONS', 'TRACE' ] );
  1240. }
  1241. /**
  1242. * Whether this request should be identified as being "safe"
  1243. *
  1244. * This means that the client is not requesting any state changes and that database writes
  1245. * are not inherently required. Ideally, no visible updates would happen at all. If they
  1246. * must, then they should not be publicly attributed to the end user.
  1247. *
  1248. * In more detail:
  1249. * - Cache populations and refreshes MAY occur.
  1250. * - Private user session updates and private server logging MAY occur.
  1251. * - Updates to private viewing activity data MAY occur via DeferredUpdates.
  1252. * - Other updates SHOULD NOT occur (e.g. modifying content assets).
  1253. *
  1254. * @return bool
  1255. * @see https://tools.ietf.org/html/rfc7231#section-4.2.1
  1256. * @see https://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html
  1257. * @since 1.28
  1258. */
  1259. public function isSafeRequest() {
  1260. if ( $this->markedAsSafe && $this->wasPosted() ) {
  1261. return true; // marked as a "safe" POST
  1262. }
  1263. return $this->hasSafeMethod();
  1264. }
  1265. /**
  1266. * Mark this request as identified as being nullipotent even if it is a POST request
  1267. *
  1268. * POST requests are often used due to the need for a client payload, even if the request
  1269. * is otherwise equivalent to a "safe method" request.
  1270. *
  1271. * @see https://tools.ietf.org/html/rfc7231#section-4.2.1
  1272. * @see https://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html
  1273. * @since 1.28
  1274. */
  1275. public function markAsSafeRequest() {
  1276. $this->markedAsSafe = true;
  1277. }
  1278. }