Removed getLang() from IContextSource and subclasses
[lhc/web/wiklou.git] / includes / context / RequestContext.php
1 <?php
2 /**
3 * Request-dependant objects containers.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
19 *
20 * @since 1.18
21 *
22 * @author Alexandre Emsenhuber
23 * @author Daniel Friesen
24 * @file
25 */
26
27 /**
28 * Group all the pieces relevant to the context of a request into one instance
29 */
30 class RequestContext implements IContextSource {
31 /**
32 * @var WebRequest
33 */
34 private $request;
35
36 /**
37 * @var Title
38 */
39 private $title;
40
41 /**
42 * @var WikiPage
43 */
44 private $wikipage;
45
46 /**
47 * @var OutputPage
48 */
49 private $output;
50
51 /**
52 * @var User
53 */
54 private $user;
55
56 /**
57 * @var Language
58 */
59 private $lang;
60
61 /**
62 * @var Skin
63 */
64 private $skin;
65
66 /**
67 * @var Config
68 */
69 private $config;
70
71 /**
72 * Set the Config object
73 *
74 * @param Config $c
75 */
76 public function setConfig( Config $c ) {
77 $this->config = $c;
78 }
79
80 /**
81 * Get the Config object
82 *
83 * @return Config
84 */
85 public function getConfig() {
86 if ( $this->config === null ) {
87 // @todo In the future, we could move this to WebStart.php so
88 // the Config object is ready for when initialization happens
89 $this->config = ConfigFactory::getDefaultInstance()->makeConfig( 'main' );
90 }
91
92 return $this->config;
93 }
94
95 /**
96 * Set the WebRequest object
97 *
98 * @param WebRequest $r
99 */
100 public function setRequest( WebRequest $r ) {
101 $this->request = $r;
102 }
103
104 /**
105 * Get the WebRequest object
106 *
107 * @return WebRequest
108 */
109 public function getRequest() {
110 if ( $this->request === null ) {
111 global $wgRequest; # fallback to $wg till we can improve this
112 $this->request = $wgRequest;
113 }
114
115 return $this->request;
116 }
117
118 /**
119 * Set the Title object
120 *
121 * @param Title $t
122 * @throws MWException
123 */
124 public function setTitle( $t ) {
125 if ( $t !== null && !$t instanceof Title ) {
126 throw new MWException( __METHOD__ . " expects an instance of Title" );
127 }
128 $this->title = $t;
129 // Erase the WikiPage so a new one with the new title gets created.
130 $this->wikipage = null;
131 }
132
133 /**
134 * Get the Title object
135 *
136 * @return Title|null
137 */
138 public function getTitle() {
139 if ( $this->title === null ) {
140 global $wgTitle; # fallback to $wg till we can improve this
141 $this->title = $wgTitle;
142 }
143
144 return $this->title;
145 }
146
147 /**
148 * Check whether a WikiPage object can be get with getWikiPage().
149 * Callers should expect that an exception is thrown from getWikiPage()
150 * if this method returns false.
151 *
152 * @since 1.19
153 * @return bool
154 */
155 public function canUseWikiPage() {
156 if ( $this->wikipage !== null ) {
157 # If there's a WikiPage object set, we can for sure get it
158 return true;
159 }
160 $title = $this->getTitle();
161 if ( $title === null ) {
162 # No Title, no WikiPage
163 return false;
164 } else {
165 # Only namespaces whose pages are stored in the database can have WikiPage
166 return $title->canExist();
167 }
168 }
169
170 /**
171 * Set the WikiPage object
172 *
173 * @since 1.19
174 * @param WikiPage $p
175 */
176 public function setWikiPage( WikiPage $p ) {
177 $contextTitle = $this->getTitle();
178 $pageTitle = $p->getTitle();
179 if ( !$contextTitle || !$pageTitle->equals( $contextTitle ) ) {
180 $this->setTitle( $pageTitle );
181 }
182 // Defer this to the end since setTitle sets it to null.
183 $this->wikipage = $p;
184 }
185
186 /**
187 * Get the WikiPage object.
188 * May throw an exception if there's no Title object set or the Title object
189 * belongs to a special namespace that doesn't have WikiPage, so use first
190 * canUseWikiPage() to check whether this method can be called safely.
191 *
192 * @since 1.19
193 * @throws MWException
194 * @return WikiPage
195 */
196 public function getWikiPage() {
197 if ( $this->wikipage === null ) {
198 $title = $this->getTitle();
199 if ( $title === null ) {
200 throw new MWException( __METHOD__ . ' called without Title object set' );
201 }
202 $this->wikipage = WikiPage::factory( $title );
203 }
204
205 return $this->wikipage;
206 }
207
208 /**
209 * @param OutputPage $o
210 */
211 public function setOutput( OutputPage $o ) {
212 $this->output = $o;
213 }
214
215 /**
216 * Get the OutputPage object
217 *
218 * @return OutputPage
219 */
220 public function getOutput() {
221 if ( $this->output === null ) {
222 $this->output = new OutputPage( $this );
223 }
224
225 return $this->output;
226 }
227
228 /**
229 * Set the User object
230 *
231 * @param User $u
232 */
233 public function setUser( User $u ) {
234 $this->user = $u;
235 }
236
237 /**
238 * Get the User object
239 *
240 * @return User
241 */
242 public function getUser() {
243 if ( $this->user === null ) {
244 $this->user = User::newFromSession( $this->getRequest() );
245 }
246
247 return $this->user;
248 }
249
250 /**
251 * Accepts a language code and ensures it's sane. Outputs a cleaned up language
252 * code and replaces with $wgLanguageCode if not sane.
253 * @param string $code Language code
254 * @return string
255 */
256 public static function sanitizeLangCode( $code ) {
257 global $wgLanguageCode;
258
259 // BCP 47 - letter case MUST NOT carry meaning
260 $code = strtolower( $code );
261
262 # Validate $code
263 if ( empty( $code ) || !Language::isValidCode( $code ) || ( $code === 'qqq' ) ) {
264 wfDebug( "Invalid user language code\n" );
265 $code = $wgLanguageCode;
266 }
267
268 return $code;
269 }
270
271 /**
272 * Set the Language object
273 *
274 * @deprecated since 1.19 Use setLanguage instead
275 * @param Language|string $l Language instance or language code
276 */
277 public function setLang( $l ) {
278 wfDeprecated( __METHOD__, '1.19' );
279 $this->setLanguage( $l );
280 }
281
282 /**
283 * Set the Language object
284 *
285 * @param Language|string $l Language instance or language code
286 * @throws MWException
287 * @since 1.19
288 */
289 public function setLanguage( $l ) {
290 if ( $l instanceof Language ) {
291 $this->lang = $l;
292 } elseif ( is_string( $l ) ) {
293 $l = self::sanitizeLangCode( $l );
294 $obj = Language::factory( $l );
295 $this->lang = $obj;
296 } else {
297 throw new MWException( __METHOD__ . " was passed an invalid type of data." );
298 }
299 }
300
301 /**
302 * Get the Language object.
303 * Initialization of user or request objects can depend on this.
304 *
305 * @return Language
306 * @since 1.19
307 */
308 public function getLanguage() {
309 if ( isset( $this->recursion ) ) {
310 trigger_error( "Recursion detected in " . __METHOD__, E_USER_WARNING );
311 $e = new Exception;
312 wfDebugLog( 'recursion-guard', "Recursion detected:\n" . $e->getTraceAsString() );
313
314 global $wgLanguageCode;
315 $code = ( $wgLanguageCode ) ? $wgLanguageCode : 'en';
316 $this->lang = Language::factory( $code );
317 } elseif ( $this->lang === null ) {
318 $this->recursion = true;
319
320 global $wgLanguageCode, $wgContLang;
321
322 $request = $this->getRequest();
323 $user = $this->getUser();
324
325 $code = $request->getVal( 'uselang', $user->getOption( 'language' ) );
326 $code = self::sanitizeLangCode( $code );
327
328 wfRunHooks( 'UserGetLanguageObject', array( $user, &$code, $this ) );
329
330 if ( $code === $wgLanguageCode ) {
331 $this->lang = $wgContLang;
332 } else {
333 $obj = Language::factory( $code );
334 $this->lang = $obj;
335 }
336
337 unset( $this->recursion );
338 }
339
340 return $this->lang;
341 }
342
343 /**
344 * Set the Skin object
345 *
346 * @param Skin $s
347 */
348 public function setSkin( Skin $s ) {
349 $this->skin = clone $s;
350 $this->skin->setContext( $this );
351 }
352
353 /**
354 * Get the Skin object
355 *
356 * @return Skin
357 */
358 public function getSkin() {
359 if ( $this->skin === null ) {
360 wfProfileIn( __METHOD__ . '-createskin' );
361
362 $skin = null;
363 wfRunHooks( 'RequestContextCreateSkin', array( $this, &$skin ) );
364
365 // If the hook worked try to set a skin from it
366 if ( $skin instanceof Skin ) {
367 $this->skin = $skin;
368 } elseif ( is_string( $skin ) ) {
369 $this->skin = Skin::newFromKey( $skin );
370 }
371
372 // If this is still null (the hook didn't run or didn't work)
373 // then go through the normal processing to load a skin
374 if ( $this->skin === null ) {
375 global $wgHiddenPrefs;
376 if ( !in_array( 'skin', $wgHiddenPrefs ) ) {
377 # get the user skin
378 $userSkin = $this->getUser()->getOption( 'skin' );
379 $userSkin = $this->getRequest()->getVal( 'useskin', $userSkin );
380 } else {
381 # if we're not allowing users to override, then use the default
382 global $wgDefaultSkin;
383 $userSkin = $wgDefaultSkin;
384 }
385
386 $this->skin = Skin::newFromKey( $userSkin );
387 }
388
389 // After all that set a context on whatever skin got created
390 $this->skin->setContext( $this );
391 wfProfileOut( __METHOD__ . '-createskin' );
392 }
393
394 return $this->skin;
395 }
396
397 /** Helpful methods **/
398
399 /**
400 * Get a Message object with context set
401 * Parameters are the same as wfMessage()
402 *
403 * @return Message
404 */
405 public function msg() {
406 $args = func_get_args();
407
408 return call_user_func_array( 'wfMessage', $args )->setContext( $this );
409 }
410
411 /** Static methods **/
412
413 /**
414 * Get the RequestContext object associated with the main request
415 *
416 * @return RequestContext
417 */
418 public static function getMain() {
419 static $instance = null;
420 if ( $instance === null ) {
421 $instance = new self;
422 }
423
424 return $instance;
425 }
426
427 /**
428 * Export the resolved user IP, HTTP headers, user ID, and session ID.
429 * The result will be reasonably sized to allow for serialization.
430 *
431 * @return array
432 * @since 1.21
433 */
434 public function exportSession() {
435 return array(
436 'ip' => $this->getRequest()->getIP(),
437 'headers' => $this->getRequest()->getAllHeaders(),
438 'sessionId' => session_id(),
439 'userId' => $this->getUser()->getId()
440 );
441 }
442
443 /**
444 * Import the resolved user IP, HTTP headers, user ID, and session ID.
445 * This sets the current session and sets $wgUser and $wgRequest.
446 * Once the return value falls out of scope, the old context is restored.
447 * This function can only be called within CLI mode scripts.
448 *
449 * This will setup the session from the given ID. This is useful when
450 * background scripts inherit context when acting on behalf of a user.
451 *
452 * @note suhosin.session.encrypt may interfere with this method.
453 *
454 * @param array $params Result of RequestContext::exportSession()
455 * @return ScopedCallback
456 * @throws MWException
457 * @since 1.21
458 */
459 public static function importScopedSession( array $params ) {
460 if ( PHP_SAPI !== 'cli' ) {
461 // Don't send random private cookies or turn $wgRequest into FauxRequest
462 throw new MWException( "Sessions can only be imported in cli mode." );
463 } elseif ( !strlen( $params['sessionId'] ) ) {
464 throw new MWException( "No session ID was specified." );
465 }
466
467 if ( $params['userId'] ) { // logged-in user
468 $user = User::newFromId( $params['userId'] );
469 if ( !$user ) {
470 throw new MWException( "No user with ID '{$params['userId']}'." );
471 }
472 } elseif ( !IP::isValid( $params['ip'] ) ) {
473 throw new MWException( "Could not load user '{$params['ip']}'." );
474 } else { // anon user
475 $user = User::newFromName( $params['ip'], false );
476 }
477
478 $importSessionFunction = function ( User $user, array $params ) {
479 global $wgRequest, $wgUser;
480
481 $context = RequestContext::getMain();
482 // Commit and close any current session
483 session_write_close(); // persist
484 session_id( '' ); // detach
485 $_SESSION = array(); // clear in-memory array
486 // Remove any user IP or agent information
487 $context->setRequest( new FauxRequest() );
488 $wgRequest = $context->getRequest(); // b/c
489 // Now that all private information is detached from the user, it should
490 // be safe to load the new user. If errors occur or an exception is thrown
491 // and caught (leaving the main context in a mixed state), there is no risk
492 // of the User object being attached to the wrong IP, headers, or session.
493 $context->setUser( $user );
494 $wgUser = $context->getUser(); // b/c
495 if ( strlen( $params['sessionId'] ) ) { // don't make a new random ID
496 wfSetupSession( $params['sessionId'] ); // sets $_SESSION
497 }
498 $request = new FauxRequest( array(), false, $_SESSION );
499 $request->setIP( $params['ip'] );
500 foreach ( $params['headers'] as $name => $value ) {
501 $request->setHeader( $name, $value );
502 }
503 // Set the current context to use the new WebRequest
504 $context->setRequest( $request );
505 $wgRequest = $context->getRequest(); // b/c
506 };
507
508 // Stash the old session and load in the new one
509 $oUser = self::getMain()->getUser();
510 $oParams = self::getMain()->exportSession();
511 $importSessionFunction( $user, $params );
512
513 // Set callback to save and close the new session and reload the old one
514 return new ScopedCallback( function () use ( $importSessionFunction, $oUser, $oParams ) {
515 $importSessionFunction( $oUser, $oParams );
516 } );
517 }
518
519 /**
520 * Create a new extraneous context. The context is filled with information
521 * external to the current session.
522 * - Title is specified by argument
523 * - Request is a FauxRequest, or a FauxRequest can be specified by argument
524 * - User is an anonymous user, for separation IPv4 localhost is used
525 * - Language will be based on the anonymous user and request, may be content
526 * language or a uselang param in the fauxrequest data may change the lang
527 * - Skin will be based on the anonymous user, should be the wiki's default skin
528 *
529 * @param Title $title Title to use for the extraneous request
530 * @param WebRequest|array $request A WebRequest or data to use for a FauxRequest
531 * @return RequestContext
532 */
533 public static function newExtraneousContext( Title $title, $request = array() ) {
534 $context = new self;
535 $context->setTitle( $title );
536 if ( $request instanceof WebRequest ) {
537 $context->setRequest( $request );
538 } else {
539 $context->setRequest( new FauxRequest( $request ) );
540 }
541 $context->user = User::newFromName( '127.0.0.1', false );
542
543 return $context;
544 }
545 }