Fix use of GenderCache in ApiPageSet::processTitlesArray
[lhc/web/wiklou.git] / includes / context / RequestContext.php
1 <?php
2 /**
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 * http://www.gnu.org/copyleft/gpl.html
17 *
18 * @since 1.18
19 *
20 * @author Alexandre Emsenhuber
21 * @author Daniel Friesen
22 * @file
23 */
24
25 use Wikimedia\AtEase\AtEase;
26 use MediaWiki\Logger\LoggerFactory;
27 use MediaWiki\MediaWikiServices;
28 use Wikimedia\ScopedCallback;
29
30 /**
31 * Group all the pieces relevant to the context of a request into one instance
32 */
33 class RequestContext implements IContextSource, MutableContext {
34 /**
35 * @var WebRequest
36 */
37 private $request;
38
39 /**
40 * @var Title
41 */
42 private $title;
43
44 /**
45 * @var WikiPage
46 */
47 private $wikipage;
48
49 /**
50 * @var OutputPage
51 */
52 private $output;
53
54 /**
55 * @var User
56 */
57 private $user;
58
59 /**
60 * @var Language
61 */
62 private $lang;
63
64 /**
65 * @var Skin
66 */
67 private $skin;
68
69 /**
70 * @var Timing
71 */
72 private $timing;
73
74 /**
75 * @var Config
76 */
77 private $config;
78
79 /**
80 * @var RequestContext
81 */
82 private static $instance = null;
83
84 /**
85 * @param Config $config
86 */
87 public function setConfig( Config $config ) {
88 $this->config = $config;
89 }
90
91 /**
92 * @return Config
93 */
94 public function getConfig() {
95 if ( $this->config === null ) {
96 // @todo In the future, we could move this to WebStart.php so
97 // the Config object is ready for when initialization happens
98 $this->config = MediaWikiServices::getInstance()->getMainConfig();
99 }
100
101 return $this->config;
102 }
103
104 /**
105 * @param WebRequest $request
106 */
107 public function setRequest( WebRequest $request ) {
108 $this->request = $request;
109 }
110
111 /**
112 * @return WebRequest
113 */
114 public function getRequest() {
115 if ( $this->request === null ) {
116 global $wgCommandLineMode;
117 // create the WebRequest object on the fly
118 if ( $wgCommandLineMode ) {
119 $this->request = new FauxRequest( [] );
120 } else {
121 $this->request = new WebRequest();
122 }
123 }
124
125 return $this->request;
126 }
127
128 /**
129 * @deprecated since 1.27 use a StatsdDataFactory from MediaWikiServices (preferably injected)
130 *
131 * @return IBufferingStatsdDataFactory
132 */
133 public function getStats() {
134 return MediaWikiServices::getInstance()->getStatsdDataFactory();
135 }
136
137 /**
138 * @return Timing
139 */
140 public function getTiming() {
141 if ( $this->timing === null ) {
142 $this->timing = new Timing( [
143 'logger' => LoggerFactory::getInstance( 'Timing' )
144 ] );
145 }
146 return $this->timing;
147 }
148
149 /**
150 * @param Title|null $title
151 */
152 public function setTitle( Title $title = null ) {
153 $this->title = $title;
154 // Erase the WikiPage so a new one with the new title gets created.
155 $this->wikipage = null;
156 }
157
158 /**
159 * @return Title|null
160 */
161 public function getTitle() {
162 if ( $this->title === null ) {
163 global $wgTitle; # fallback to $wg till we can improve this
164 $this->title = $wgTitle;
165 wfDebugLog(
166 'GlobalTitleFail',
167 __METHOD__ . ' called by ' . wfGetAllCallers( 5 ) . ' with no title set.'
168 );
169 }
170
171 return $this->title;
172 }
173
174 /**
175 * Check, if a Title object is set
176 *
177 * @since 1.25
178 * @return bool
179 */
180 public function hasTitle() {
181 return $this->title !== null;
182 }
183
184 /**
185 * Check whether a WikiPage object can be get with getWikiPage().
186 * Callers should expect that an exception is thrown from getWikiPage()
187 * if this method returns false.
188 *
189 * @since 1.19
190 * @return bool
191 */
192 public function canUseWikiPage() {
193 if ( $this->wikipage ) {
194 // If there's a WikiPage object set, we can for sure get it
195 return true;
196 }
197 // Only pages with legitimate titles can have WikiPages.
198 // That usually means pages in non-virtual namespaces.
199 $title = $this->getTitle();
200 return $title ? $title->canExist() : false;
201 }
202
203 /**
204 * @since 1.19
205 * @param WikiPage $wikiPage
206 */
207 public function setWikiPage( WikiPage $wikiPage ) {
208 $pageTitle = $wikiPage->getTitle();
209 if ( !$this->hasTitle() || !$pageTitle->equals( $this->getTitle() ) ) {
210 $this->setTitle( $pageTitle );
211 }
212 // Defer this to the end since setTitle sets it to null.
213 $this->wikipage = $wikiPage;
214 }
215
216 /**
217 * Get the WikiPage object.
218 * May throw an exception if there's no Title object set or the Title object
219 * belongs to a special namespace that doesn't have WikiPage, so use first
220 * canUseWikiPage() to check whether this method can be called safely.
221 *
222 * @since 1.19
223 * @throws MWException
224 * @return WikiPage
225 */
226 public function getWikiPage() {
227 if ( $this->wikipage === null ) {
228 $title = $this->getTitle();
229 if ( $title === null ) {
230 throw new MWException( __METHOD__ . ' called without Title object set' );
231 }
232 $this->wikipage = WikiPage::factory( $title );
233 }
234
235 return $this->wikipage;
236 }
237
238 /**
239 * @param OutputPage $output
240 */
241 public function setOutput( OutputPage $output ) {
242 $this->output = $output;
243 }
244
245 /**
246 * @return OutputPage
247 */
248 public function getOutput() {
249 if ( $this->output === null ) {
250 $this->output = new OutputPage( $this );
251 }
252
253 return $this->output;
254 }
255
256 /**
257 * @param User $user
258 */
259 public function setUser( User $user ) {
260 $this->user = $user;
261 // Invalidate cached user interface language
262 $this->lang = null;
263 }
264
265 /**
266 * @return User
267 */
268 public function getUser() {
269 if ( $this->user === null ) {
270 $this->user = User::newFromSession( $this->getRequest() );
271 }
272
273 return $this->user;
274 }
275
276 /**
277 * Accepts a language code and ensures it's sane. Outputs a cleaned up language
278 * code and replaces with $wgLanguageCode if not sane.
279 * @param string $code Language code
280 * @return string
281 */
282 public static function sanitizeLangCode( $code ) {
283 global $wgLanguageCode;
284
285 // BCP 47 - letter case MUST NOT carry meaning
286 $code = strtolower( $code );
287
288 # Validate $code
289 if ( !$code || !Language::isValidCode( $code ) || $code === 'qqq' ) {
290 $code = $wgLanguageCode;
291 }
292
293 return $code;
294 }
295
296 /**
297 * @param Language|string $language Language instance or language code
298 * @throws MWException
299 * @since 1.19
300 */
301 public function setLanguage( $language ) {
302 if ( $language instanceof Language ) {
303 $this->lang = $language;
304 } elseif ( is_string( $language ) ) {
305 $language = self::sanitizeLangCode( $language );
306 $obj = Language::factory( $language );
307 $this->lang = $obj;
308 } else {
309 throw new MWException( __METHOD__ . " was passed an invalid type of data." );
310 }
311 }
312
313 /**
314 * Get the Language object.
315 * Initialization of user or request objects can depend on this.
316 * @return Language
317 * @throws Exception
318 * @since 1.19
319 */
320 public function getLanguage() {
321 if ( isset( $this->recursion ) ) {
322 trigger_error( "Recursion detected in " . __METHOD__, E_USER_WARNING );
323 $e = new Exception;
324 wfDebugLog( 'recursion-guard', "Recursion detected:\n" . $e->getTraceAsString() );
325
326 $code = $this->getConfig()->get( 'LanguageCode' ) ?: 'en';
327 $this->lang = Language::factory( $code );
328 } elseif ( $this->lang === null ) {
329 $this->recursion = true;
330
331 try {
332 $request = $this->getRequest();
333 $user = $this->getUser();
334
335 // Optimisation: Avoid slow getVal(), this isn't user-generated content.
336 $code = $request->getRawVal( 'uselang', 'user' );
337 if ( $code === 'user' ) {
338 $code = $user->getOption( 'language' );
339 }
340 $code = self::sanitizeLangCode( $code );
341
342 Hooks::run( 'UserGetLanguageObject', [ $user, &$code, $this ] );
343
344 if ( $code === $this->getConfig()->get( 'LanguageCode' ) ) {
345 $this->lang = MediaWikiServices::getInstance()->getContentLanguage();
346 } else {
347 $obj = Language::factory( $code );
348 $this->lang = $obj;
349 }
350 } finally {
351 unset( $this->recursion );
352 }
353 }
354
355 return $this->lang;
356 }
357
358 /**
359 * @param Skin $skin
360 */
361 public function setSkin( Skin $skin ) {
362 $this->skin = clone $skin;
363 $this->skin->setContext( $this );
364 }
365
366 /**
367 * @return Skin
368 */
369 public function getSkin() {
370 if ( $this->skin === null ) {
371 $skin = null;
372 Hooks::run( 'RequestContextCreateSkin', [ $this, &$skin ] );
373 $factory = MediaWikiServices::getInstance()->getSkinFactory();
374
375 if ( $skin instanceof Skin ) {
376 // The hook provided a skin object
377 $this->skin = $skin;
378 } elseif ( is_string( $skin ) ) {
379 // The hook provided a skin name
380 // Normalize the key, just in case the hook did something weird.
381 $normalized = Skin::normalizeKey( $skin );
382 $this->skin = $factory->makeSkin( $normalized );
383 } else {
384 // No hook override, go through normal processing
385 if ( !in_array( 'skin', $this->getConfig()->get( 'HiddenPrefs' ) ) ) {
386 $userSkin = $this->getUser()->getOption( 'skin' );
387 // Optimisation: Avoid slow getVal(), this isn't user-generated content.
388 $userSkin = $this->getRequest()->getRawVal( 'useskin', $userSkin );
389 } else {
390 $userSkin = $this->getConfig()->get( 'DefaultSkin' );
391 }
392
393 // Normalize the key in case the user is passing gibberish query params
394 // or has old user preferences (T71566).
395 // Skin::normalizeKey will also validate it, so makeSkin() won't throw.
396 $normalized = Skin::normalizeKey( $userSkin );
397 $this->skin = $factory->makeSkin( $normalized );
398 }
399
400 // After all that set a context on whatever skin got created
401 $this->skin->setContext( $this );
402 }
403
404 return $this->skin;
405 }
406
407 /**
408 * Get a Message object with context set
409 * Parameters are the same as wfMessage()
410 *
411 * @param string|string[]|MessageSpecifier $key Message key, or array of keys,
412 * or a MessageSpecifier.
413 * @param mixed $args,...
414 * @suppress PhanCommentParamWithoutRealParam HHVM bug T228695#5450847
415 * @return Message
416 */
417 public function msg( $key ) {
418 $args = func_get_args();
419
420 return wfMessage( ...$args )->setContext( $this );
421 }
422
423 /**
424 * Get the RequestContext object associated with the main request
425 *
426 * @return RequestContext
427 */
428 public static function getMain() {
429 if ( self::$instance === null ) {
430 self::$instance = new self;
431 }
432
433 return self::$instance;
434 }
435
436 /**
437 * Get the RequestContext object associated with the main request
438 * and gives a warning to the log, to find places, where a context maybe is missing.
439 *
440 * @param string $func
441 * @return RequestContext
442 * @since 1.24
443 */
444 public static function getMainAndWarn( $func = __METHOD__ ) {
445 wfDebug( $func . ' called without context. ' .
446 "Using RequestContext::getMain() for sanity\n" );
447
448 return self::getMain();
449 }
450
451 /**
452 * Resets singleton returned by getMain(). Should be called only from unit tests.
453 */
454 public static function resetMain() {
455 if ( !( defined( 'MW_PHPUNIT_TEST' ) || defined( 'MW_PARSER_TEST' ) ) ) {
456 throw new MWException( __METHOD__ . '() should be called only from unit tests!' );
457 }
458 self::$instance = null;
459 }
460
461 /**
462 * Export the resolved user IP, HTTP headers, user ID, and session ID.
463 * The result will be reasonably sized to allow for serialization.
464 *
465 * @return array
466 * @since 1.21
467 */
468 public function exportSession() {
469 $session = MediaWiki\Session\SessionManager::getGlobalSession();
470 return [
471 'ip' => $this->getRequest()->getIP(),
472 'headers' => $this->getRequest()->getAllHeaders(),
473 'sessionId' => $session->isPersistent() ? $session->getId() : '',
474 'userId' => $this->getUser()->getId()
475 ];
476 }
477
478 /**
479 * Import an client IP address, HTTP headers, user ID, and session ID
480 *
481 * This sets the current session, $wgUser, and $wgRequest from $params.
482 * Once the return value falls out of scope, the old context is restored.
483 * This method should only be called in contexts where there is no session
484 * ID or end user receiving the response (CLI or HTTP job runners). This
485 * is partly enforced, and is done so to avoid leaking cookies if certain
486 * error conditions arise.
487 *
488 * This is useful when background scripts inherit context when acting on
489 * behalf of a user. In general the 'sessionId' parameter should be set
490 * to an empty string unless session importing is *truly* needed. This
491 * feature is somewhat deprecated.
492 *
493 * @note suhosin.session.encrypt may interfere with this method.
494 *
495 * @param array $params Result of RequestContext::exportSession()
496 * @return ScopedCallback
497 * @throws MWException
498 * @since 1.21
499 */
500 public static function importScopedSession( array $params ) {
501 if ( strlen( $params['sessionId'] ) &&
502 MediaWiki\Session\SessionManager::getGlobalSession()->isPersistent()
503 ) {
504 // Sanity check to avoid sending random cookies for the wrong users.
505 // This method should only called by CLI scripts or by HTTP job runners.
506 throw new MWException( "Sessions can only be imported when none is active." );
507 } elseif ( !IP::isValid( $params['ip'] ) ) {
508 throw new MWException( "Invalid client IP address '{$params['ip']}'." );
509 }
510
511 if ( $params['userId'] ) { // logged-in user
512 $user = User::newFromId( $params['userId'] );
513 $user->load();
514 if ( !$user->getId() ) {
515 throw new MWException( "No user with ID '{$params['userId']}'." );
516 }
517 } else { // anon user
518 $user = User::newFromName( $params['ip'], false );
519 }
520
521 $importSessionFunc = function ( User $user, array $params ) {
522 global $wgRequest, $wgUser;
523
524 $context = RequestContext::getMain();
525
526 // Commit and close any current session
527 if ( MediaWiki\Session\PHPSessionHandler::isEnabled() ) {
528 session_write_close(); // persist
529 session_id( '' ); // detach
530 $_SESSION = []; // clear in-memory array
531 }
532
533 // Get new session, if applicable
534 $session = null;
535 if ( strlen( $params['sessionId'] ) ) { // don't make a new random ID
536 $manager = MediaWiki\Session\SessionManager::singleton();
537 $session = $manager->getSessionById( $params['sessionId'], true )
538 ?: $manager->getEmptySession();
539 }
540
541 // Remove any user IP or agent information, and attach the request
542 // with the new session.
543 $context->setRequest( new FauxRequest( [], false, $session ) );
544 $wgRequest = $context->getRequest(); // b/c
545
546 // Now that all private information is detached from the user, it should
547 // be safe to load the new user. If errors occur or an exception is thrown
548 // and caught (leaving the main context in a mixed state), there is no risk
549 // of the User object being attached to the wrong IP, headers, or session.
550 $context->setUser( $user );
551 $wgUser = $context->getUser(); // b/c
552 if ( $session && MediaWiki\Session\PHPSessionHandler::isEnabled() ) {
553 session_id( $session->getId() );
554 AtEase::quietCall( 'session_start' );
555 }
556 $request = new FauxRequest( [], false, $session );
557 $request->setIP( $params['ip'] );
558 foreach ( $params['headers'] as $name => $value ) {
559 $request->setHeader( $name, $value );
560 }
561 // Set the current context to use the new WebRequest
562 $context->setRequest( $request );
563 $wgRequest = $context->getRequest(); // b/c
564 };
565
566 // Stash the old session and load in the new one
567 $oUser = self::getMain()->getUser();
568 $oParams = self::getMain()->exportSession();
569 $oRequest = self::getMain()->getRequest();
570 $importSessionFunc( $user, $params );
571
572 // Set callback to save and close the new session and reload the old one
573 return new ScopedCallback(
574 function () use ( $importSessionFunc, $oUser, $oParams, $oRequest ) {
575 global $wgRequest;
576 $importSessionFunc( $oUser, $oParams );
577 // Restore the exact previous Request object (instead of leaving FauxRequest)
578 RequestContext::getMain()->setRequest( $oRequest );
579 $wgRequest = RequestContext::getMain()->getRequest(); // b/c
580 }
581 );
582 }
583
584 /**
585 * Create a new extraneous context. The context is filled with information
586 * external to the current session.
587 * - Title is specified by argument
588 * - Request is a FauxRequest, or a FauxRequest can be specified by argument
589 * - User is an anonymous user, for separation IPv4 localhost is used
590 * - Language will be based on the anonymous user and request, may be content
591 * language or a uselang param in the fauxrequest data may change the lang
592 * - Skin will be based on the anonymous user, should be the wiki's default skin
593 *
594 * @param Title $title Title to use for the extraneous request
595 * @param WebRequest|array $request A WebRequest or data to use for a FauxRequest
596 * @return RequestContext
597 */
598 public static function newExtraneousContext( Title $title, $request = [] ) {
599 $context = new self;
600 $context->setTitle( $title );
601 if ( $request instanceof WebRequest ) {
602 $context->setRequest( $request );
603 } else {
604 $context->setRequest( new FauxRequest( $request ) );
605 }
606 $context->user = User::newFromName( '127.0.0.1', false );
607
608 return $context;
609 }
610 }