wiki.techinc.nl/includes/Setup.php

313 lines
8.5 KiB
PHP
Raw Normal View History

<?php
/**
* Include most things that's need to customize the site
* @package MediaWiki
*/
/**
* This file is not a valid entry point, perform no further processing unless
* MEDIAWIKI is defined
*/
if( defined( 'MEDIAWIKI' ) ) {
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.
#
// 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" );
}
if( !isset( $wgProfiling ) )
$wgProfiling = false;
if ( $wgProfiling and (0 == rand() % $wgProfileSampleRate ) ) {
2005-08-16 23:19:54 +00:00
require_once( 'Profiling.php' );
} 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() {}
function wfLogProfilingData() {}
}
2004-06-09 01:25:31 +00:00
$fname = 'Setup.php';
wfProfileIn( $fname );
2004-06-09 01:25:31 +00:00
wfProfileIn( $fname.'-includes' );
require_once( 'GlobalFunctions.php' );
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' );
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' );
require_once( 'LoadBalancer.php' );
require_once( 'HistoryBlob.php' );
2005-03-31 12:06:38 +00:00
require_once( 'ProxyTools.php' );
require_once( 'ObjectCache.php' );
require_once( 'WikiError.php' );
require_once( 'SpecialPage.php' );
if ( $wgUseDynamicDates ) {
require_once( 'DateFormatter.php' );
}
2004-06-09 01:25:31 +00:00
wfProfileOut( $fname.'-includes' );
wfProfileIn( $fname.'-misc1' );
$wgIP = false; # Load on demand
$wgRequest = new WebRequest();
# Useful debug output
2004-03-23 10:15:26 +00:00
if ( $wgCommandLineMode ) {
# wfDebug( '"' . implode( '" "', $argv ) . '"' );
2004-06-09 01:25:31 +00:00
} elseif ( function_exists( 'getallheaders' ) ) {
wfDebug( "\n\nStart request\n" );
wfDebug( $_SERVER['REQUEST_METHOD'] . ' ' . $_SERVER['REQUEST_URI'] . "\n" );
$headers = getallheaders();
foreach ($headers as $name => $value) {
wfDebug( "$name: $value\n" );
}
wfDebug( "\n" );
} elseif( isset( $_SERVER['REQUEST_URI'] ) ) {
wfDebug( $_SERVER['REQUEST_METHOD'] . ' ' . $_SERVER['REQUEST_URI'] . "\n" );
}
if ( $wgSkipSkin ) {
$wgSkipSkins[] = $wgSkipSkin;
}
$wgUseEnotif = $wgEnotifUserTalk || $wgEnotifWatchlist;
wfProfileOut( $fname.'-misc1' );
wfProfileIn( $fname.'-memcached' );
$wgMemc =& wfGetMainCache();
$messageMemc =& wfGetMessageCacheStorage();
$parserMemc =& wfGetParserCacheStorage();
2005-07-03 04:00:33 +00:00
wfDebug( 'Main cache: ' . get_class( $wgMemc ) .
"\nMessage cache: " . get_class( $messageMemc ) .
"\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' );
wfProfileIn( $fname.'-SetupSession' );
if ( $wgDBprefix ) {
session_name( $wgDBname . '_' . $wgDBprefix . '_session' );
} else {
session_name( $wgDBname . '_session' );
}
if( !$wgCommandLineMode && ( isset( $_COOKIE[session_name()] ) || isset( $_COOKIE[$wgDBname.'Token'] ) ) ) {
User::SetupSession();
$wgSessionStarted = true;
} else {
$wgSessionStarted = false;
}
wfProfileOut( $fname.'-SetupSession' );
wfProfileIn( $fname.'-database' );
if ( !$wgDBservers ) {
2005-07-03 04:00:33 +00:00
$wgDBservers = array(array(
'host' => $wgDBserver,
'user' => $wgDBuser,
'password' => $wgDBpassword,
'dbname' => $wgDBname,
'type' => $wgDBtype,
'load' => 1,
'flags' => ($wgDebugDumpSql ? DBO_DEBUG : 0) | DBO_DEFAULT
));
}
2005-01-15 10:11:45 +00:00
$wgLoadBalancer = LoadBalancer::newFromParams( $wgDBservers, false, $wgMasterWaitTimeout );
$wgLoadBalancer->loadMasterPos();
wfProfileOut( $fname.'-database' );
2004-11-29 12:36:43 +00:00
wfProfileIn( $fname.'-language1' );
require_once( "$IP/languages/Language.php" );
function setupLangObj($langclass) {
global $IP;
if( ! class_exists( $langclass ) ) {
# Default to English/UTF-8
$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);
}
$lang = new $langclass();
return $lang;
2003-04-14 23:10:40 +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;
$wgContLangClass = 'Language' . str_replace( '-', '_', ucfirst( $wgContLanguageCode ) );
$wgContLang = setupLangObj( $wgContLangClass );
$wgContLang->initEncoding();
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
# 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
}
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' );
// wgLanguageCode now specifically means the UI language
$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()
if( empty( $wgLanguageCode ) || !preg_match( '/^[a-z]+(-[a-z]+)?$/', $wgLanguageCode ) ) {
$wgLanguageCode = $wgContLanguageCode;
}
$wgLangClass = 'Language'. str_replace( '-', '_', ucfirst( $wgLanguageCode ) );
2004-09-25 10:31:42 +00:00
if( $wgLangClass == $wgContLangClass ) {
$wgLang = &$wgContLang;
2004-09-25 10:31:42 +00:00
} else {
wfSuppressWarnings();
include_once("$IP/languages/$wgLangClass.php");
wfRestoreWarnings();
$wgLang = setupLangObj( $wgLangClass );
}
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
$wgMessageCache = new MessageCache;
$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' );
#
# 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
# 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
# places, including namespaces, dates in signatures, magic words,
# and links
#
# TODO: Need to look at the issue of input/output encoding
#
2004-06-09 01:25:31 +00:00
wfProfileIn( $fname.'-OutputPage' );
2004-06-04 02:44:58 +00:00
$wgOut = new OutputPage();
2004-06-09 01:25:31 +00:00
wfProfileOut( $fname.'-OutputPage' );
wfProfileIn( $fname.'-misc2' );
2004-06-04 02:44:58 +00:00
2003-04-14 23:10:40 +00:00
$wgDeferredUpdateList = array();
$wgPostCommitUpdateList = array();
2003-04-14 23:10:40 +00:00
$wgLinkCache = new LinkCache();
$wgMagicWords = array();
$wgMwRedir =& MagicWord::get( MAG_REDIRECT );
$wgParserCache = new ParserCache( $messageMemc );
2004-11-03 14:00:08 +00:00
if ( $wgUseXMLparser ) {
require_once( 'ParserXML.php' );
$wgParser = new ParserXML();
} else {
$wgParser = new Parser();
}
$wgOut->setParserOptions( ParserOptions::newFromUser( $wgUser ) );
$wgMsgParserOptions = ParserOptions::newFromUser($wgUser);
wfSeedRandom();
# Placeholders in case of DB error
$wgTitle = Title::makeTitle( NS_SPECIAL, 'Error' );
$wgArticle = new Article($wgTitle);
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
# any necessary initialisation in the fully initialised environment
foreach ( $wgExtensionFunctions as $func ) {
$func();
}
wfDebug( "\n" );
$wgFullyInitialised = true;
2004-06-09 01:25:31 +00:00
wfProfileOut( $fname.'-extensions' );
wfProfileOut( $fname );
}
2003-04-14 23:10:40 +00:00
?>