2004-02-18 02:15:00 +00:00
|
|
|
<?php
|
2004-09-02 23:28:24 +00:00
|
|
|
/**
|
|
|
|
|
* Include most things that's need to customize the site
|
2004-09-03 23:00:01 +00:00
|
|
|
* @package MediaWiki
|
2004-09-02 23:28:24 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* This file is not a valid entry point, perform no further processing unless
|
|
|
|
|
* MEDIAWIKI is defined
|
|
|
|
|
*/
|
2004-08-22 17:24:50 +00:00
|
|
|
if( defined( 'MEDIAWIKI' ) ) {
|
2004-08-06 22:30:47 +00:00
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
# The main wiki script and things like database
|
|
|
|
|
# conversion and maintenance scripts all share a
|
|
|
|
|
# common setup of including lots of classes and
|
|
|
|
|
# setting up a few globals.
|
|
|
|
|
#
|
|
|
|
|
|
2005-04-09 10:30:45 +00:00
|
|
|
// Check to see if we are at the file scope
|
|
|
|
|
if ( !isset( $wgVersion ) ) {
|
|
|
|
|
die( "Error, Setup.php must be included from the file scope, after DefaultSettings.php\n" );
|
|
|
|
|
}
|
2004-03-20 15:03:26 +00:00
|
|
|
|
2003-10-25 08:01:33 +00:00
|
|
|
if( !isset( $wgProfiling ) )
|
|
|
|
|
$wgProfiling = false;
|
|
|
|
|
|
2005-03-09 02:02:04 +00:00
|
|
|
if ( $wgProfiling and (0 == rand() % $wgProfileSampleRate ) ) {
|
2005-08-16 23:19:54 +00:00
|
|
|
require_once( 'Profiling.php' );
|
2003-10-25 08:01:33 +00:00
|
|
|
} else {
|
2005-08-16 23:19:54 +00:00
|
|
|
function wfProfileIn( $fn = '' ) {
|
|
|
|
|
global $hackwhere, $wgDBname;
|
|
|
|
|
$hackwhere[] = $fn;
|
|
|
|
|
if (function_exists("setproctitle"))
|
|
|
|
|
setproctitle($fn . " [$wgDBname]");
|
|
|
|
|
}
|
|
|
|
|
function wfProfileOut( $fn = '' ) {
|
|
|
|
|
global $hackwhere, $wgDBname;
|
|
|
|
|
if (count($hackwhere))
|
|
|
|
|
array_pop($hackwhere);
|
|
|
|
|
if (function_exists("setproctitle") && count($hackwhere))
|
|
|
|
|
setproctitle($hackwhere[count($hackwhere)-1] . " [$wgDBname]");
|
|
|
|
|
}
|
|
|
|
|
function wfGetProfilingOutput( $s, $e ) {}
|
|
|
|
|
function wfProfileClose() {}
|
2005-08-13 13:23:22 +00:00
|
|
|
function wfLogProfilingData() {}
|
2003-10-25 08:01:33 +00:00
|
|
|
}
|
|
|
|
|
|
2004-06-09 01:25:31 +00:00
|
|
|
$fname = 'Setup.php';
|
2003-10-25 08:01:33 +00:00
|
|
|
wfProfileIn( $fname );
|
2004-06-09 01:25:31 +00:00
|
|
|
wfProfileIn( $fname.'-includes' );
|
|
|
|
|
|
|
|
|
|
require_once( 'GlobalFunctions.php' );
|
2004-11-27 21:43:06 +00:00
|
|
|
require_once( 'Hooks.php' );
|
2004-06-09 01:25:31 +00:00
|
|
|
require_once( 'Namespace.php' );
|
2005-07-03 04:00:33 +00:00
|
|
|
require_once( 'RecentChange.php' );
|
2004-06-17 16:31:57 +00:00
|
|
|
require_once( 'User.php' );
|
2004-06-09 01:25:31 +00:00
|
|
|
require_once( 'Skin.php' );
|
|
|
|
|
require_once( 'OutputPage.php' );
|
|
|
|
|
require_once( 'LinkCache.php' );
|
|
|
|
|
require_once( 'Title.php' );
|
|
|
|
|
require_once( 'Article.php' );
|
|
|
|
|
require_once( 'MagicWord.php' );
|
|
|
|
|
require_once( 'Block.php' );
|
|
|
|
|
require_once( 'MessageCache.php' );
|
|
|
|
|
require_once( 'Parser.php' );
|
|
|
|
|
require_once( 'ParserCache.php' );
|
|
|
|
|
require_once( 'WebRequest.php' );
|
2004-06-15 15:00:54 +00:00
|
|
|
require_once( 'LoadBalancer.php' );
|
2004-10-30 14:39:40 +00:00
|
|
|
require_once( 'HistoryBlob.php' );
|
2005-03-31 12:06:38 +00:00
|
|
|
require_once( 'ProxyTools.php' );
|
2005-04-09 10:30:45 +00:00
|
|
|
require_once( 'ObjectCache.php' );
|
2005-04-27 22:38:51 +00:00
|
|
|
require_once( 'WikiError.php' );
|
2005-05-28 11:49:40 +00:00
|
|
|
require_once( 'SpecialPage.php' );
|
2004-12-19 08:00:50 +00:00
|
|
|
|
2005-04-20 15:42:08 +00:00
|
|
|
if ( $wgUseDynamicDates ) {
|
|
|
|
|
require_once( 'DateFormatter.php' );
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-09 01:25:31 +00:00
|
|
|
wfProfileOut( $fname.'-includes' );
|
2004-08-14 13:34:57 +00:00
|
|
|
wfProfileIn( $fname.'-misc1' );
|
2004-02-14 12:37:25 +00:00
|
|
|
|
2005-09-05 02:22:20 +00:00
|
|
|
$wgIP = false; # Load on demand
|
2005-03-31 09:10:25 +00:00
|
|
|
$wgRequest = new WebRequest();
|
|
|
|
|
|
2004-02-14 12:37:25 +00:00
|
|
|
# Useful debug output
|
2004-03-23 10:15:26 +00:00
|
|
|
if ( $wgCommandLineMode ) {
|
2004-04-14 06:15:46 +00:00
|
|
|
# wfDebug( '"' . implode( '" "', $argv ) . '"' );
|
2004-06-09 01:25:31 +00:00
|
|
|
} elseif ( function_exists( 'getallheaders' ) ) {
|
2005-04-09 10:30:45 +00:00
|
|
|
wfDebug( "\n\nStart request\n" );
|
2004-03-08 01:51:32 +00:00
|
|
|
wfDebug( $_SERVER['REQUEST_METHOD'] . ' ' . $_SERVER['REQUEST_URI'] . "\n" );
|
2004-02-14 12:37:25 +00:00
|
|
|
$headers = getallheaders();
|
|
|
|
|
foreach ($headers as $name => $value) {
|
|
|
|
|
wfDebug( "$name: $value\n" );
|
|
|
|
|
}
|
|
|
|
|
wfDebug( "\n" );
|
2005-03-27 06:37:21 +00:00
|
|
|
} elseif( isset( $_SERVER['REQUEST_URI'] ) ) {
|
2004-03-08 01:51:32 +00:00
|
|
|
wfDebug( $_SERVER['REQUEST_METHOD'] . ' ' . $_SERVER['REQUEST_URI'] . "\n" );
|
2004-03-06 01:49:16 +00:00
|
|
|
}
|
2003-08-11 13:53:20 +00:00
|
|
|
|
2005-05-29 06:18:10 +00:00
|
|
|
if ( $wgSkipSkin ) {
|
|
|
|
|
$wgSkipSkins[] = $wgSkipSkin;
|
|
|
|
|
}
|
|
|
|
|
|
2005-06-25 13:47:18 +00:00
|
|
|
$wgUseEnotif = $wgEnotifUserTalk || $wgEnotifWatchlist;
|
|
|
|
|
|
2004-08-14 13:34:57 +00:00
|
|
|
wfProfileOut( $fname.'-misc1' );
|
|
|
|
|
wfProfileIn( $fname.'-memcached' );
|
|
|
|
|
|
2005-04-09 10:30:45 +00:00
|
|
|
$wgMemc =& wfGetMainCache();
|
|
|
|
|
$messageMemc =& wfGetMessageCacheStorage();
|
|
|
|
|
$parserMemc =& wfGetParserCacheStorage();
|
2004-08-21 10:04:30 +00:00
|
|
|
|
2005-07-03 04:00:33 +00:00
|
|
|
wfDebug( 'Main cache: ' . get_class( $wgMemc ) .
|
|
|
|
|
"\nMessage cache: " . get_class( $messageMemc ) .
|
2005-04-09 10:30:45 +00:00
|
|
|
"\nParser cache: " . get_class( $parserMemc ) . "\n" );
|
2003-11-21 02:43:12 +00:00
|
|
|
|
2004-06-09 01:25:31 +00:00
|
|
|
wfProfileOut( $fname.'-memcached' );
|
2004-07-18 08:48:43 +00:00
|
|
|
wfProfileIn( $fname.'-SetupSession' );
|
|
|
|
|
|
2005-05-14 09:27:24 +00:00
|
|
|
if ( $wgDBprefix ) {
|
|
|
|
|
session_name( $wgDBname . '_' . $wgDBprefix . '_session' );
|
|
|
|
|
} else {
|
|
|
|
|
session_name( $wgDBname . '_session' );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if( !$wgCommandLineMode && ( isset( $_COOKIE[session_name()] ) || isset( $_COOKIE[$wgDBname.'Token'] ) ) ) {
|
2004-07-18 08:48:43 +00:00
|
|
|
User::SetupSession();
|
|
|
|
|
$wgSessionStarted = true;
|
|
|
|
|
} else {
|
|
|
|
|
$wgSessionStarted = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
wfProfileOut( $fname.'-SetupSession' );
|
2004-06-15 15:00:54 +00:00
|
|
|
wfProfileIn( $fname.'-database' );
|
|
|
|
|
|
|
|
|
|
if ( !$wgDBservers ) {
|
2005-07-03 04:00:33 +00:00
|
|
|
$wgDBservers = array(array(
|
2004-07-10 03:09:26 +00:00
|
|
|
'host' => $wgDBserver,
|
|
|
|
|
'user' => $wgDBuser,
|
|
|
|
|
'password' => $wgDBpassword,
|
|
|
|
|
'dbname' => $wgDBname,
|
|
|
|
|
'type' => $wgDBtype,
|
2004-07-24 07:24:04 +00:00
|
|
|
'load' => 1,
|
|
|
|
|
'flags' => ($wgDebugDumpSql ? DBO_DEBUG : 0) | DBO_DEFAULT
|
2004-07-10 03:09:26 +00:00
|
|
|
));
|
2004-06-15 15:00:54 +00:00
|
|
|
}
|
2005-01-15 10:11:45 +00:00
|
|
|
$wgLoadBalancer = LoadBalancer::newFromParams( $wgDBservers, false, $wgMasterWaitTimeout );
|
2004-07-18 08:48:43 +00:00
|
|
|
$wgLoadBalancer->loadMasterPos();
|
2004-06-15 15:00:54 +00:00
|
|
|
|
|
|
|
|
wfProfileOut( $fname.'-database' );
|
2004-11-29 12:36:43 +00:00
|
|
|
wfProfileIn( $fname.'-language1' );
|
|
|
|
|
|
|
|
|
|
require_once( "$IP/languages/Language.php" );
|
|
|
|
|
|
2005-08-26 14:05:12 +00:00
|
|
|
function setupLangObj($langclass) {
|
2005-03-26 22:23:48 +00:00
|
|
|
global $IP;
|
2004-09-22 03:32:56 +00:00
|
|
|
|
2004-09-25 10:08:42 +00:00
|
|
|
if( ! class_exists( $langclass ) ) {
|
2005-03-26 22:23:48 +00:00
|
|
|
# Default to English/UTF-8
|
2004-12-07 20:22:22 +00:00
|
|
|
$baseclass = 'LanguageUtf8';
|
|
|
|
|
require_once( "$IP/languages/$baseclass.php" );
|
|
|
|
|
$lc = strtolower(substr($langclass, 8));
|
|
|
|
|
$snip = "
|
|
|
|
|
class $langclass extends $baseclass {
|
|
|
|
|
function getVariants() {
|
|
|
|
|
return array(\"$lc\");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}";
|
|
|
|
|
eval($snip);
|
2004-09-24 13:14:52 +00:00
|
|
|
}
|
2004-09-22 03:32:56 +00:00
|
|
|
|
2004-09-24 13:14:52 +00:00
|
|
|
$lang = new $langclass();
|
2004-09-22 03:32:56 +00:00
|
|
|
|
2004-09-24 13:14:52 +00:00
|
|
|
return $lang;
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
2004-01-07 13:05:27 +00:00
|
|
|
|
2004-09-25 10:38:34 +00:00
|
|
|
# $wgLanguageCode may be changed later to fit with user preference.
|
|
|
|
|
# The content language will remain fixed as per the configuration,
|
|
|
|
|
# so let's keep it.
|
|
|
|
|
$wgContLanguageCode = $wgLanguageCode;
|
2004-09-22 03:32:56 +00:00
|
|
|
$wgContLangClass = 'Language' . str_replace( '-', '_', ucfirst( $wgContLanguageCode ) );
|
2004-09-24 00:34:13 +00:00
|
|
|
|
2004-12-07 20:22:22 +00:00
|
|
|
$wgContLang = setupLangObj( $wgContLangClass );
|
2005-03-14 02:00:53 +00:00
|
|
|
$wgContLang->initEncoding();
|
2004-09-08 03:39:32 +00:00
|
|
|
|
2005-06-16 07:51:45 +00:00
|
|
|
wfProfileOut( $fname.'-language1' );
|
|
|
|
|
wfProfileIn( $fname.'-User' );
|
|
|
|
|
|
|
|
|
|
# Skin setup functions
|
2005-07-03 04:00:33 +00:00
|
|
|
# Entries can be added to this variable during the inclusion
|
2005-06-16 07:51:45 +00:00
|
|
|
# of the extension file. Skins can then perform any necessary initialisation.
|
|
|
|
|
foreach ( $wgSkinExtensionFunctions as $func ) {
|
|
|
|
|
$func();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if( !is_object( $wgAuth ) ) {
|
|
|
|
|
require_once( 'AuthPlugin.php' );
|
|
|
|
|
$wgAuth = new AuthPlugin();
|
2004-09-25 10:31:42 +00:00
|
|
|
}
|
2004-09-08 13:32:13 +00:00
|
|
|
|
2005-06-16 07:51:45 +00:00
|
|
|
if( $wgCommandLineMode ) {
|
|
|
|
|
# Used for some maintenance scripts; user session cookies can screw things up
|
|
|
|
|
# when the database is in an in-between state.
|
|
|
|
|
$wgUser = new User();
|
|
|
|
|
# Prevent loading User settings from the DB.
|
|
|
|
|
$wgUser->setLoaded( true );
|
|
|
|
|
} else {
|
|
|
|
|
$wgUser = User::loadFromSession();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
wfProfileOut( $fname.'-User' );
|
|
|
|
|
wfProfileIn( $fname.'-language2' );
|
|
|
|
|
|
2004-09-22 03:32:56 +00:00
|
|
|
// wgLanguageCode now specifically means the UI language
|
2005-07-24 06:55:45 +00:00
|
|
|
$wgLanguageCode = $wgRequest->getText('uselang', '');
|
|
|
|
|
if ($wgLanguageCode == '')
|
|
|
|
|
$wgLanguageCode = $wgUser->getOption('language');
|
2005-01-17 08:40:08 +00:00
|
|
|
# Validate $wgLanguageCode, which will soon be sent to an eval()
|
2005-12-04 10:53:48 +00:00
|
|
|
if( empty( $wgLanguageCode ) || !preg_match( '/^[a-z]+(-[a-z]+)?$/', $wgLanguageCode ) ) {
|
2004-12-11 09:57:58 +00:00
|
|
|
$wgLanguageCode = $wgContLanguageCode;
|
|
|
|
|
}
|
2004-09-22 03:32:56 +00:00
|
|
|
|
|
|
|
|
$wgLangClass = 'Language'. str_replace( '-', '_', ucfirst( $wgLanguageCode ) );
|
2004-09-25 02:23:04 +00:00
|
|
|
|
2004-09-25 10:31:42 +00:00
|
|
|
if( $wgLangClass == $wgContLangClass ) {
|
2004-09-24 13:14:52 +00:00
|
|
|
$wgLang = &$wgContLang;
|
2004-09-25 10:31:42 +00:00
|
|
|
} else {
|
2004-12-07 20:22:22 +00:00
|
|
|
wfSuppressWarnings();
|
|
|
|
|
include_once("$IP/languages/$wgLangClass.php");
|
|
|
|
|
wfRestoreWarnings();
|
2004-09-08 13:32:13 +00:00
|
|
|
|
2004-12-07 20:22:22 +00:00
|
|
|
$wgLang = setupLangObj( $wgLangClass );
|
|
|
|
|
}
|
2004-09-08 03:39:32 +00:00
|
|
|
|
2005-07-25 07:00:20 +00:00
|
|
|
wfProfileOut( $fname.'-language2' );
|
2004-06-09 01:25:31 +00:00
|
|
|
wfProfileIn( $fname.'-MessageCache' );
|
2004-06-04 02:44:58 +00:00
|
|
|
|
2004-09-25 02:23:04 +00:00
|
|
|
$wgMessageCache = new MessageCache;
|
2005-04-09 10:30:45 +00:00
|
|
|
$wgMessageCache->initialise( $parserMemc, $wgUseDatabaseMessages, $wgMsgCacheExpiry, $wgDBname);
|
2003-04-14 23:10:40 +00:00
|
|
|
|
2004-06-09 01:25:31 +00:00
|
|
|
wfProfileOut( $fname.'-MessageCache' );
|
2004-09-24 00:49:00 +00:00
|
|
|
|
|
|
|
|
#
|
|
|
|
|
# I guess the warning about UI switching might still apply...
|
|
|
|
|
#
|
|
|
|
|
# FIXME: THE ABOVE MIGHT BREAK NAMESPACES, VARIABLES,
|
|
|
|
|
# SEARCH INDEX UPDATES, AND MANY MANY THINGS.
|
|
|
|
|
# DO NOT USE THIS MODE EXCEPT FOR TESTING RIGHT NOW.
|
|
|
|
|
#
|
2005-07-03 04:00:33 +00:00
|
|
|
# To disable it, the easiest thing could be to uncomment the
|
2004-09-24 00:49:00 +00:00
|
|
|
# following; they should effectively disable the UI switch functionality
|
|
|
|
|
#
|
|
|
|
|
# $wgLangClass = $wgContLangClass;
|
|
|
|
|
# $wgLanguageCode = $wgContLanguageCode;
|
|
|
|
|
# $wgLang = $wgContLang;
|
|
|
|
|
#
|
2005-07-03 04:00:33 +00:00
|
|
|
# TODO: Need to change reference to $wgLang to $wgContLang at proper
|
2004-09-24 13:14:52 +00:00
|
|
|
# places, including namespaces, dates in signatures, magic words,
|
|
|
|
|
# and links
|
|
|
|
|
#
|
|
|
|
|
# TODO: Need to look at the issue of input/output encoding
|
|
|
|
|
#
|
|
|
|
|
|
2004-09-24 00:49:00 +00:00
|
|
|
|
2004-06-09 01:25:31 +00:00
|
|
|
wfProfileIn( $fname.'-OutputPage' );
|
2004-06-04 02:44:58 +00:00
|
|
|
|
2004-02-29 08:43:29 +00:00
|
|
|
$wgOut = new OutputPage();
|
|
|
|
|
|
2004-06-09 01:25:31 +00:00
|
|
|
wfProfileOut( $fname.'-OutputPage' );
|
2004-08-14 13:34:57 +00:00
|
|
|
wfProfileIn( $fname.'-misc2' );
|
2004-06-04 02:44:58 +00:00
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
$wgDeferredUpdateList = array();
|
2005-03-09 02:02:04 +00:00
|
|
|
$wgPostCommitUpdateList = array();
|
|
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
$wgLinkCache = new LinkCache();
|
2003-08-31 09:46:37 +00:00
|
|
|
$wgMagicWords = array();
|
|
|
|
|
$wgMwRedir =& MagicWord::get( MAG_REDIRECT );
|
2004-11-22 01:16:44 +00:00
|
|
|
$wgParserCache = new ParserCache( $messageMemc );
|
2004-11-03 14:00:08 +00:00
|
|
|
|
2005-01-27 21:46:04 +00:00
|
|
|
if ( $wgUseXMLparser ) {
|
|
|
|
|
require_once( 'ParserXML.php' );
|
|
|
|
|
$wgParser = new ParserXML();
|
|
|
|
|
} else {
|
|
|
|
|
$wgParser = new Parser();
|
|
|
|
|
}
|
2004-02-29 08:43:29 +00:00
|
|
|
$wgOut->setParserOptions( ParserOptions::newFromUser( $wgUser ) );
|
2004-09-25 02:23:04 +00:00
|
|
|
$wgMsgParserOptions = ParserOptions::newFromUser($wgUser);
|
2004-07-18 08:48:43 +00:00
|
|
|
wfSeedRandom();
|
2003-10-25 08:01:33 +00:00
|
|
|
|
2004-05-31 08:43:36 +00:00
|
|
|
# Placeholders in case of DB error
|
2004-12-09 05:51:20 +00:00
|
|
|
$wgTitle = Title::makeTitle( NS_SPECIAL, 'Error' );
|
2004-05-31 08:43:36 +00:00
|
|
|
$wgArticle = new Article($wgTitle);
|
|
|
|
|
|
2004-08-14 13:34:57 +00:00
|
|
|
wfProfileOut( $fname.'-misc2' );
|
2004-06-09 01:25:31 +00:00
|
|
|
wfProfileIn( $fname.'-extensions' );
|
2004-06-04 02:44:58 +00:00
|
|
|
|
2004-09-26 13:41:21 +00:00
|
|
|
# Extension setup functions for extensions other than skins
|
2005-07-03 04:00:33 +00:00
|
|
|
# Entries should be added to this variable during the inclusion
|
|
|
|
|
# of the extension file. This allows the extension to perform
|
2004-05-15 03:36:39 +00:00
|
|
|
# any necessary initialisation in the fully initialised environment
|
|
|
|
|
foreach ( $wgExtensionFunctions as $func ) {
|
|
|
|
|
$func();
|
|
|
|
|
}
|
|
|
|
|
|
2005-04-09 10:30:45 +00:00
|
|
|
wfDebug( "\n" );
|
2004-07-18 08:48:43 +00:00
|
|
|
$wgFullyInitialised = true;
|
2004-06-09 01:25:31 +00:00
|
|
|
wfProfileOut( $fname.'-extensions' );
|
2003-10-25 08:01:33 +00:00
|
|
|
wfProfileOut( $fname );
|
|
|
|
|
|
2004-08-06 22:30:47 +00:00
|
|
|
}
|
2003-04-14 23:10:40 +00:00
|
|
|
?>
|