* Introduced LBFactory -- an abstract class for configuring database load balancers...
[lhc/web/wiklou.git] / includes / Wiki.php
1 <?php
2 /**
3 * MediaWiki is the to-be base class for this whole project
4 */
5 class MediaWiki {
6
7 var $GET; /* Stores the $_GET variables at time of creation, can be changed */
8 var $params = array();
9
10 /** Constructor. It just save the $_GET variable */
11 function __construct() {
12 $this->GET = $_GET;
13 }
14
15 /**
16 * Stores key/value pairs to circumvent global variables
17 * Note that keys are case-insensitive!
18 *
19 * @param String $key key to store
20 * @param mixed $value value to put for the key
21 */
22 function setVal( $key, &$value ) {
23 $key = strtolower( $key );
24 $this->params[$key] =& $value;
25 }
26
27 /**
28 * Retrieves key/value pairs to circumvent global variables
29 * Note that keys are case-insensitive!
30 *
31 * @param String $key key to get
32 * @param mixed $default default value if if the key doesn't exist
33 */
34 function getVal( $key, $default = '' ) {
35 $key = strtolower( $key );
36 if( isset( $this->params[$key] ) ) {
37 return $this->params[$key];
38 }
39 return $default;
40 }
41
42 /**
43 * Initialization of ... everything
44 * Performs the request too
45 *
46 * @param Title $title
47 * @param Article $article
48 * @param OutputPage $output
49 * @param User $user
50 * @param WebRequest $request
51 */
52 function initialize( &$title, &$article, &$output, &$user, $request ) {
53 wfProfileIn( __METHOD__ );
54 $this->preliminaryChecks( $title, $output, $request ) ;
55 if ( !$this->initializeSpecialCases( $title, $output, $request ) ) {
56 $new_article = $this->initializeArticle( $title, $request );
57 if( is_object( $new_article ) ) {
58 $article = $new_article;
59 $this->performAction( $output, $article, $title, $user, $request );
60 } elseif( is_string( $new_article ) ) {
61 $output->redirect( $new_article );
62 } else {
63 throw new MWException( "Shouldn't happen: MediaWiki::initializeArticle() returned neither an object nor a URL" );
64 }
65 }
66 wfProfileOut( __METHOD__ );
67 }
68
69 /**
70 * Check if the maximum lag of database slaves is higher that $maxLag, and
71 * if it's the case, output an error message
72 *
73 * @param int $maxLag maximum lag allowed for the request, as supplied by
74 * the client
75 * @return bool true if the request can continue
76 */
77 function checkMaxLag( $maxLag ) {
78 list( $host, $lag ) = wfGetLB()->getMaxLag();
79 if ( $lag > $maxLag ) {
80 wfMaxlagError( $host, $lag, $maxLag );
81 return false;
82 } else {
83 return true;
84 }
85 }
86
87
88 /**
89 * Checks some initial queries
90 * Note that $title here is *not* a Title object, but a string!
91 *
92 * @param String $title
93 * @param String $action
94 * @return Title object to be $wgTitle
95 */
96 function checkInitialQueries( $title, $action ) {
97 global $wgOut, $wgRequest, $wgContLang;
98 if( $wgRequest->getVal( 'printable' ) == 'yes' ){
99 $wgOut->setPrintable();
100 }
101
102 $ret = NULL;
103
104 if ( '' == $title && 'delete' != $action ) {
105 $ret = Title::newMainPage();
106 } elseif ( $curid = $wgRequest->getInt( 'curid' ) ) {
107 # URLs like this are generated by RC, because rc_title isn't always accurate
108 $ret = Title::newFromID( $curid );
109 } else {
110 $ret = Title::newFromURL( $title );
111 // check variant links so that interwiki links don't have to worry
112 // about the possible different language variants
113 if( count( $wgContLang->getVariants() ) > 1 && !is_null( $ret ) && $ret->getArticleID() == 0 )
114 $wgContLang->findVariantLink( $title, $ret );
115
116 }
117 if ( ( $oldid = $wgRequest->getInt( 'oldid' ) )
118 && ( is_null( $ret ) || $ret->getNamespace() != NS_SPECIAL ) ) {
119 // Allow oldid to override a changed or missing title.
120 $rev = Revision::newFromId( $oldid );
121 if( $rev ) {
122 $ret = $rev->getTitle();
123 }
124 }
125 return $ret;
126 }
127
128 /**
129 * Checks for search query and anon-cannot-read case
130 *
131 * @param Title $title
132 * @param OutputPage $output
133 * @param WebRequest $request
134 */
135 function preliminaryChecks( &$title, &$output, $request ) {
136
137 if( $request->getCheck( 'search' ) ) {
138 // Compatibility with old search URLs which didn't use Special:Search
139 // Just check for presence here, so blank requests still
140 // show the search page when using ugly URLs (bug 8054).
141
142 // Do this above the read whitelist check for security...
143 $title = SpecialPage::getTitleFor( 'Search' );
144 }
145
146 # If the user is not logged in, the Namespace:title of the article must be in
147 # the Read array in order for the user to see it. (We have to check here to
148 # catch special pages etc. We check again in Article::view())
149 if ( !is_null( $title ) && !$title->userCanRead() ) {
150 $output->loginToUse();
151 $output->output();
152 exit;
153 }
154
155 }
156
157 /**
158 * Initialize some special cases:
159 * - bad titles
160 * - local interwiki redirects
161 * - redirect loop
162 * - special pages
163 *
164 * @param Title $title
165 * @param OutputPage $output
166 * @param WebRequest $request
167 * @return bool true if the request is already executed
168 */
169 function initializeSpecialCases( &$title, &$output, $request ) {
170 wfProfileIn( __METHOD__ );
171
172 $action = $this->getVal( 'Action' );
173 if( !$title || $title->getDBkey() == '' ) {
174 $title = SpecialPage::getTitleFor( 'Badtitle' );
175 # Die now before we mess up $wgArticle and the skin stops working
176 throw new ErrorPageError( 'badtitle', 'badtitletext' );
177 } else if ( $title->getInterwiki() != '' ) {
178 if( $rdfrom = $request->getVal( 'rdfrom' ) ) {
179 $url = $title->getFullURL( 'rdfrom=' . urlencode( $rdfrom ) );
180 } else {
181 $url = $title->getFullURL();
182 }
183 /* Check for a redirect loop */
184 if ( !preg_match( '/^' . preg_quote( $this->getVal('Server'), '/' ) . '/', $url ) && $title->isLocal() ) {
185 $output->redirect( $url );
186 } else {
187 $title = SpecialPage::getTitleFor( 'Badtitle' );
188 throw new ErrorPageError( 'badtitle', 'badtitletext' );
189 }
190 } else if ( ( $action == 'view' ) && !$request->wasPosted() &&
191 (!isset( $this->GET['title'] ) || $title->getPrefixedDBKey() != $this->GET['title'] ) &&
192 !count( array_diff( array_keys( $this->GET ), array( 'action', 'title' ) ) ) )
193 {
194 $targetUrl = $title->getFullURL();
195 // Redirect to canonical url, make it a 301 to allow caching
196 if( $targetUrl == $request->getFullRequestURL() ) {
197 $message = "Redirect loop detected!\n\n" .
198 "This means the wiki got confused about what page was " .
199 "requested; this sometimes happens when moving a wiki " .
200 "to a new server or changing the server configuration.\n\n";
201
202 if( $this->getVal( 'UsePathInfo' ) ) {
203 $message .= "The wiki is trying to interpret the page " .
204 "title from the URL path portion (PATH_INFO), which " .
205 "sometimes fails depending on the web server. Try " .
206 "setting \"\$wgUsePathInfo = false;\" in your " .
207 "LocalSettings.php, or check that \$wgArticlePath " .
208 "is correct.";
209 } else {
210 $message .= "Your web server was detected as possibly not " .
211 "supporting URL path components (PATH_INFO) correctly; " .
212 "check your LocalSettings.php for a customized " .
213 "\$wgArticlePath setting and/or toggle \$wgUsePathInfo " .
214 "to true.";
215 }
216 wfHttpError( 500, "Internal error", $message );
217 return false;
218 } else {
219 $output->setSquidMaxage( 1200 );
220 $output->redirect( $targetUrl, '301' );
221 }
222 } else if ( NS_SPECIAL == $title->getNamespace() ) {
223 /* actions that need to be made when we have a special pages */
224 SpecialPage::executePath( $title );
225 } else {
226 /* No match to special cases */
227 wfProfileOut( __METHOD__ );
228 return false;
229 }
230 /* Did match a special case */
231 wfProfileOut( __METHOD__ );
232 return true;
233 }
234
235 /**
236 * Create an Article object of the appropriate class for the given page.
237 *
238 * @param Title $title
239 * @return Article object
240 */
241 static function articleFromTitle( $title ) {
242 $article = null;
243 wfRunHooks( 'ArticleFromTitle', array( &$title, &$article ) );
244 if ( $article ) {
245 return $article;
246 }
247
248 if( NS_MEDIA == $title->getNamespace() ) {
249 // FIXME: where should this go?
250 $title = Title::makeTitle( NS_IMAGE, $title->getDBkey() );
251 }
252
253 switch( $title->getNamespace() ) {
254 case NS_IMAGE:
255 $file = wfFindFile( $title );
256 if( $file && $file->getRedirected() ) {
257 return new Article( $title );
258 }
259 return new ImagePage( $title );
260 case NS_CATEGORY:
261 return new CategoryPage( $title );
262 default:
263 return new Article( $title );
264 }
265 }
266
267 /**
268 * Initialize the object to be known as $wgArticle for "standard" actions
269 * Create an Article object for the page, following redirects if needed.
270 *
271 * @param Title $title
272 * @param Request $request
273 * @param string $action
274 * @return mixed an Article, or a string to redirect to another URL
275 */
276 function initializeArticle( &$title, $request ) {
277 wfProfileIn( __METHOD__ );
278
279 $action = $this->getVal( 'action' );
280 $article = self::articleFromTitle( $title );
281
282 // Namespace might change when using redirects
283 if( ( $action == 'view' || $action == 'render' ) && !$request->getVal( 'oldid' ) &&
284 $request->getVal( 'redirect' ) != 'no' &&
285 !( $title->getNamespace() == NS_IMAGE && wfFindFile( $title->getText() ) ) ) {
286
287 $dbr = wfGetDB( DB_SLAVE );
288 $article->loadPageData( $article->pageDataFromTitle( $dbr, $title ) );
289
290 // Follow redirects only for... redirects
291 if( $article->mIsRedirect ) {
292 $target = $article->followRedirect();
293 if( is_string( $target ) ) {
294 if( !$this->getVal( 'DisableHardRedirects' ) ) {
295 // we'll need to redirect
296 return $target;
297 }
298 }
299 if( is_object( $target ) ) {
300 // Rewrite environment to redirected article
301 $rarticle = self::articleFromTitle( $target );
302 $rarticle->loadPageData( $rarticle->pageDataFromTitle( $dbr, $target ) );
303 if ( $rarticle->mTitle->exists() ) {
304 $rarticle->setRedirectedFrom( $title );
305 $article = $rarticle;
306 $title = $target;
307 }
308 }
309 } else {
310 $title = $article->mTitle;
311 }
312 }
313 wfProfileOut( __METHOD__ );
314 return $article;
315 }
316
317 /**
318 * Cleaning up by doing deferred updates, calling LBFactory and doing the output
319 *
320 * @param Array $deferredUpdates array of updates to do
321 * @param OutputPage $output
322 */
323 function finalCleanup ( &$deferredUpdates, &$output ) {
324 wfProfileIn( __METHOD__ );
325 $this->doUpdates( $deferredUpdates );
326 $this->doJobs();
327 # Now commit any transactions, so that unreported errors after output() don't roll back the whole thing
328 $factory = wfGetLBFactory();
329 $factory->shutdown();
330 $output->output();
331 wfProfileOut( __METHOD__ );
332 }
333
334 /**
335 * Deferred updates aren't really deferred anymore. It's important to report
336 * errors to the user, and that means doing this before OutputPage::output().
337 * Note that for page saves, the client will wait until the script exits
338 * anyway before following the redirect.
339 *
340 * @param Array $updates array of objects that hold an update to do
341 */
342 function doUpdates( &$updates ) {
343 wfProfileIn( __METHOD__ );
344 /* No need to get master connections in case of empty updates array */
345 if (!$updates) {
346 wfProfileOut( __METHOD__ );
347 return;
348 }
349
350 $dbw = wfGetDB( DB_MASTER );
351 foreach( $updates as $up ) {
352 $up->doUpdate();
353
354 # Commit after every update to prevent lock contention
355 if ( $dbw->trxLevel() ) {
356 $dbw->commit();
357 }
358 }
359 wfProfileOut( __METHOD__ );
360 }
361
362 /**
363 * Do a job from the job queue
364 */
365 function doJobs() {
366 $jobRunRate = $this->getVal( 'JobRunRate' );
367
368 if ( $jobRunRate <= 0 || wfReadOnly() ) {
369 return;
370 }
371 if ( $jobRunRate < 1 ) {
372 $max = mt_getrandmax();
373 if ( mt_rand( 0, $max ) > $max * $jobRunRate ) {
374 return;
375 }
376 $n = 1;
377 } else {
378 $n = intval( $jobRunRate );
379 }
380
381 while ( $n-- && false != ( $job = Job::pop() ) ) {
382 $output = $job->toString() . "\n";
383 $t = -wfTime();
384 $success = $job->run();
385 $t += wfTime();
386 $t = round( $t*1000 );
387 if ( !$success ) {
388 $output .= "Error: " . $job->getLastError() . ", Time: $t ms\n";
389 } else {
390 $output .= "Success, Time: $t ms\n";
391 }
392 wfDebugLog( 'jobqueue', $output );
393 }
394 }
395
396 /**
397 * Ends this task peacefully
398 */
399 function restInPeace() {
400 wfLogProfilingData();
401 wfDebug( "Request ended normally\n" );
402 }
403
404 /**
405 * Perform one of the "standard" actions
406 *
407 * @param OutputPage $output
408 * @param Article $article
409 * @param Title $title
410 * @param User $user
411 * @param WebRequest $request
412 */
413 function performAction( &$output, &$article, &$title, &$user, &$request ) {
414 wfProfileIn( __METHOD__ );
415
416 if ( !wfRunHooks( 'MediaWikiPerformAction', array( $output, $article, $title, $user, $request ) ) ) {
417 wfProfileOut( __METHOD__ );
418 return;
419 }
420
421 $action = $this->getVal( 'Action' );
422 if( in_array( $action, $this->getVal( 'DisabledActions', array() ) ) ) {
423 /* No such action; this will switch to the default case */
424 $action = 'nosuchaction';
425 }
426
427 switch( $action ) {
428 case 'view':
429 $output->setSquidMaxage( $this->getVal( 'SquidMaxage' ) );
430 $article->view();
431 break;
432 case 'watch':
433 case 'unwatch':
434 case 'delete':
435 case 'revert':
436 case 'rollback':
437 case 'protect':
438 case 'unprotect':
439 case 'info':
440 case 'markpatrolled':
441 case 'render':
442 case 'deletetrackback':
443 case 'purge':
444 $article->$action();
445 break;
446 case 'print':
447 $article->view();
448 break;
449 case 'dublincore':
450 if( !$this->getVal( 'EnableDublinCoreRdf' ) ) {
451 wfHttpError( 403, 'Forbidden', wfMsg( 'nodublincore' ) );
452 } else {
453 require_once( 'includes/Metadata.php' );
454 wfDublinCoreRdf( $article );
455 }
456 break;
457 case 'creativecommons':
458 if( !$this->getVal( 'EnableCreativeCommonsRdf' ) ) {
459 wfHttpError( 403, 'Forbidden', wfMsg( 'nocreativecommons' ) );
460 } else {
461 require_once( 'includes/Metadata.php' );
462 wfCreativeCommonsRdf( $article );
463 }
464 break;
465 case 'credits':
466 require_once( 'includes/Credits.php' );
467 showCreditsPage( $article );
468 break;
469 case 'submit':
470 if( session_id() == '' ) {
471 /* Send a cookie so anons get talk message notifications */
472 wfSetupSession();
473 }
474 /* Continue... */
475 case 'edit':
476 case 'editredlink':
477 if( wfRunHooks( 'CustomEditor', array( $article, $user ) ) ) {
478 $internal = $request->getVal( 'internaledit' );
479 $external = $request->getVal( 'externaledit' );
480 $section = $request->getVal( 'section' );
481 $oldid = $request->getVal( 'oldid' );
482 if( !$this->getVal( 'UseExternalEditor' ) || $action=='submit' || $internal ||
483 $section || $oldid || ( !$user->getOption( 'externaleditor' ) && !$external ) ) {
484 $editor = new EditPage( $article );
485 $editor->submit();
486 } elseif( $this->getVal( 'UseExternalEditor' ) && ( $external || $user->getOption( 'externaleditor' ) ) ) {
487 $mode = $request->getVal( 'mode' );
488 $extedit = new ExternalEdit( $article, $mode );
489 $extedit->edit();
490 }
491 }
492 break;
493 case 'history':
494 if( $request->getFullRequestURL() == $title->getInternalURL( 'action=history' ) ) {
495 $output->setSquidMaxage( $this->getVal( 'SquidMaxage' ) );
496 }
497 $history = new PageHistory( $article );
498 $history->history();
499 break;
500 case 'raw':
501 $raw = new RawPage( $article );
502 $raw->view();
503 break;
504 default:
505 if( wfRunHooks( 'UnknownAction', array( $action, $article ) ) ) {
506 $output->showErrorPage( 'nosuchaction', 'nosuchactiontext' );
507 }
508 }
509 wfProfileOut( __METHOD__ );
510
511 }
512
513 }; /* End of class MediaWiki */
514