* PersistentObject removed; it doesn't do anything and was broken besides.
[lhc/web/wiklou.git] / includes / Setup.php
1 <?php
2 /**
3 * Include most things that's need to customize the site
4 * @package MediaWiki
5 */
6
7 /**
8 * This file is not a valid entry point, perform no further processing unless
9 * MEDIAWIKI is defined
10 */
11 if( defined( 'MEDIAWIKI' ) ) {
12
13 # The main wiki script and things like database
14 # conversion and maintenance scripts all share a
15 # common setup of including lots of classes and
16 # setting up a few globals.
17 #
18
19 // Check to see if we are at the file scope
20 if ( !isset( $wgVersion ) ) {
21 echo "Error, Setup.php must be included from the file scope, after DefaultSettings.php\n";
22 die( -1 );
23 }
24
25 if( !isset( $wgProfiling ) )
26 $wgProfiling = false;
27
28 if ( function_exists( 'wfProfileIn' ) ) {
29 /* nada, everything should be done already */
30 } elseif ( $wgProfiling and (0 == rand() % $wgProfileSampleRate ) ) {
31 require_once( 'Profiling.php' );
32 $wgProfiling = true;
33 if ($wgProfilerType == "") {
34 $wgProfiler = new Profiler();
35 } else {
36 $prclass="Profiler{$wgProfilerType}";
37 require_once( $prclass.".php" );
38 $wgProfiler = new $prclass();
39 }
40 } else {
41 require_once( 'ProfilerStub.php' );
42 }
43
44 $fname = 'Setup.php';
45 wfProfileIn( $fname );
46 wfProfileIn( $fname.'-includes' );
47
48 require_once( 'GlobalFunctions.php' );
49 require_once( 'Hooks.php' );
50 require_once( 'Namespace.php' );
51 require_once( 'User.php' );
52 require_once( 'Skin.php' );
53 require_once( 'OutputPage.php' );
54 require_once( 'LinkCache.php' );
55 require_once( 'LinkBatch.php' );
56 require_once( 'Title.php' );
57 require_once( 'Article.php' );
58 require_once( 'MagicWord.php' );
59 require_once( 'Block.php' );
60 require_once( 'MessageCache.php' );
61 require_once( 'Parser.php' );
62 require_once( 'ParserCache.php' );
63 require_once( 'WebRequest.php' );
64 require_once( 'LoadBalancer.php' );
65 require_once( 'HistoryBlob.php' );
66 require_once( 'ProxyTools.php' );
67 require_once( 'ObjectCache.php' );
68 require_once( 'WikiError.php' );
69 require_once( 'SpecialPage.php' );
70
71 if ( $wgUseDynamicDates ) {
72 require_once( 'DateFormatter.php' );
73 }
74
75 wfProfileOut( $fname.'-includes' );
76 wfProfileIn( $fname.'-misc1' );
77
78 $wgIP = false; # Load on demand
79 $wgRequest = new WebRequest();
80 if ( function_exists( 'posix_uname' ) ) {
81 $wguname = posix_uname();
82 $wgNodeName = $wguname['nodename'];
83 } else {
84 $wgNodeName = '';
85 }
86
87 # Useful debug output
88 if ( $wgCommandLineMode ) {
89 # wfDebug( '"' . implode( '" "', $argv ) . '"' );
90 } elseif ( function_exists( 'getallheaders' ) ) {
91 wfDebug( "\n\nStart request\n" );
92 wfDebug( $_SERVER['REQUEST_METHOD'] . ' ' . $_SERVER['REQUEST_URI'] . "\n" );
93 $headers = getallheaders();
94 foreach ($headers as $name => $value) {
95 wfDebug( "$name: $value\n" );
96 }
97 wfDebug( "\n" );
98 } elseif( isset( $_SERVER['REQUEST_URI'] ) ) {
99 wfDebug( $_SERVER['REQUEST_METHOD'] . ' ' . $_SERVER['REQUEST_URI'] . "\n" );
100 }
101
102 if ( $wgSkipSkin ) {
103 $wgSkipSkins[] = $wgSkipSkin;
104 }
105
106 $wgUseEnotif = $wgEnotifUserTalk || $wgEnotifWatchlist;
107
108 wfProfileOut( $fname.'-misc1' );
109 wfProfileIn( $fname.'-memcached' );
110
111 $wgMemc =& wfGetMainCache();
112 $messageMemc =& wfGetMessageCacheStorage();
113 $parserMemc =& wfGetParserCacheStorage();
114
115 wfDebug( 'Main cache: ' . get_class( $wgMemc ) .
116 "\nMessage cache: " . get_class( $messageMemc ) .
117 "\nParser cache: " . get_class( $parserMemc ) . "\n" );
118
119 wfProfileOut( $fname.'-memcached' );
120 wfProfileIn( $fname.'-SetupSession' );
121
122 if ( $wgDBprefix ) {
123 $wgCookiePrefix = $wgDBname . '_' . $wgDBprefix;
124 } elseif ( $wgSharedDB ) {
125 $wgCookiePrefix = $wgSharedDB;
126 } else {
127 $wgCookiePrefix = $wgDBname;
128 }
129
130 # If session.auto_start is there, we can't touch session name
131 #
132 if (!ini_get('session.auto_start')) {
133 session_name( $wgCookiePrefix . '_session' );
134 }
135
136 if( !$wgCommandLineMode && ( isset( $_COOKIE[session_name()] ) || isset( $_COOKIE[$wgCookiePrefix.'Token'] ) ) ) {
137 wfIncrStats( 'request_with_session' );
138 User::SetupSession();
139 $wgSessionStarted = true;
140 } else {
141 wfIncrStats( 'request_without_session' );
142 $wgSessionStarted = false;
143 }
144
145 wfProfileOut( $fname.'-SetupSession' );
146 wfProfileIn( $fname.'-database' );
147
148 if ( !$wgDBservers ) {
149 $wgDBservers = array(array(
150 'host' => $wgDBserver,
151 'user' => $wgDBuser,
152 'password' => $wgDBpassword,
153 'dbname' => $wgDBname,
154 'type' => $wgDBtype,
155 'load' => 1,
156 'flags' => ($wgDebugDumpSql ? DBO_DEBUG : 0) | DBO_DEFAULT
157 ));
158 }
159 $wgLoadBalancer = LoadBalancer::newFromParams( $wgDBservers, false, $wgMasterWaitTimeout );
160 $wgLoadBalancer->loadMasterPos();
161
162 wfProfileOut( $fname.'-database' );
163 wfProfileIn( $fname.'-language1' );
164
165 require_once( "$IP/languages/Language.php" );
166
167 function setupLangObj($langclass) {
168 global $IP;
169
170 if( ! class_exists( $langclass ) ) {
171 # Default to English/UTF-8
172 $baseclass = 'LanguageUtf8';
173 require_once( "$IP/languages/$baseclass.php" );
174 $lc = strtolower(substr($langclass, 8));
175 $snip = "
176 class $langclass extends $baseclass {
177 function getVariants() {
178 return array(\"$lc\");
179 }
180
181 }";
182 eval($snip);
183 }
184
185 $lang = new $langclass();
186
187 return $lang;
188 }
189
190 # $wgLanguageCode may be changed later to fit with user preference.
191 # The content language will remain fixed as per the configuration,
192 # so let's keep it.
193 $wgContLanguageCode = $wgLanguageCode;
194 $wgContLangClass = 'Language' . str_replace( '-', '_', ucfirst( $wgContLanguageCode ) );
195
196 $wgContLang = setupLangObj( $wgContLangClass );
197 $wgContLang->initEncoding();
198
199 wfProfileOut( $fname.'-language1' );
200 wfProfileIn( $fname.'-User' );
201
202 # Skin setup functions
203 # Entries can be added to this variable during the inclusion
204 # of the extension file. Skins can then perform any necessary initialisation.
205 #
206 foreach ( $wgSkinExtensionFunctions as $func ) {
207 call_user_func( $func );
208 }
209
210 if( !is_object( $wgAuth ) ) {
211 require_once( 'AuthPlugin.php' );
212 $wgAuth = new AuthPlugin();
213 }
214
215 if( $wgCommandLineMode ) {
216 # Used for some maintenance scripts; user session cookies can screw things up
217 # when the database is in an in-between state.
218 $wgUser = new User();
219 # Prevent loading User settings from the DB.
220 $wgUser->setLoaded( true );
221 } else {
222 $wgUser = null;
223 wfRunHooks('AutoAuthenticate',array(&$wgUser));
224 if ($wgUser === null) {
225 $wgUser = User::loadFromSession();
226 }
227 }
228
229 wfProfileOut( $fname.'-User' );
230 wfProfileIn( $fname.'-language2' );
231
232 // wgLanguageCode now specifically means the UI language
233 $wgLanguageCode = $wgRequest->getText('uselang', '');
234 if ($wgLanguageCode == '')
235 $wgLanguageCode = $wgUser->getOption('language');
236 # Validate $wgLanguageCode, which will soon be sent to an eval()
237 if( empty( $wgLanguageCode ) || !preg_match( '/^[a-z]+(-[a-z]+)?$/', $wgLanguageCode ) ) {
238 $wgLanguageCode = $wgContLanguageCode;
239 }
240
241 $wgLangClass = 'Language'. str_replace( '-', '_', ucfirst( $wgLanguageCode ) );
242
243 if( $wgLangClass == $wgContLangClass ) {
244 $wgLang = &$wgContLang;
245 } else {
246 wfSuppressWarnings();
247 // Preload base classes to work around APC/PHP5 bug
248 include_once("$IP/languages/$wgLangClass.deps.php");
249 include_once("$IP/languages/$wgLangClass.php");
250 wfRestoreWarnings();
251
252 $wgLang = setupLangObj( $wgLangClass );
253 }
254
255 wfProfileOut( $fname.'-language2' );
256 wfProfileIn( $fname.'-MessageCache' );
257
258 $wgMessageCache = new MessageCache;
259 $wgMessageCache->initialise( $parserMemc, $wgUseDatabaseMessages, $wgMsgCacheExpiry, $wgDBname);
260
261 wfProfileOut( $fname.'-MessageCache' );
262
263 #
264 # I guess the warning about UI switching might still apply...
265 #
266 # FIXME: THE ABOVE MIGHT BREAK NAMESPACES, VARIABLES,
267 # SEARCH INDEX UPDATES, AND MANY MANY THINGS.
268 # DO NOT USE THIS MODE EXCEPT FOR TESTING RIGHT NOW.
269 #
270 # To disable it, the easiest thing could be to uncomment the
271 # following; they should effectively disable the UI switch functionality
272 #
273 # $wgLangClass = $wgContLangClass;
274 # $wgLanguageCode = $wgContLanguageCode;
275 # $wgLang = $wgContLang;
276 #
277 # TODO: Need to change reference to $wgLang to $wgContLang at proper
278 # places, including namespaces, dates in signatures, magic words,
279 # and links
280 #
281 # TODO: Need to look at the issue of input/output encoding
282 #
283
284
285 wfProfileIn( $fname.'-OutputPage' );
286
287 $wgOut = new OutputPage();
288
289 wfProfileOut( $fname.'-OutputPage' );
290 wfProfileIn( $fname.'-misc2' );
291
292 $wgDeferredUpdateList = array();
293 $wgPostCommitUpdateList = array();
294
295 $wgMagicWords = array();
296 $wgMwRedir =& MagicWord::get( MAG_REDIRECT );
297
298 if ( $wgUseXMLparser ) {
299 require_once( 'ParserXML.php' );
300 $wgParser = new ParserXML();
301 } else {
302 $wgParser = new Parser();
303 }
304 $wgOut->setParserOptions( ParserOptions::newFromUser( $wgUser ) );
305 $wgMsgParserOptions = ParserOptions::newFromUser($wgUser);
306 wfSeedRandom();
307
308 # Placeholders in case of DB error
309 $wgTitle = Title::makeTitle( NS_SPECIAL, 'Error' );
310 $wgArticle = new Article($wgTitle);
311
312 wfProfileOut( $fname.'-misc2' );
313 wfProfileIn( $fname.'-extensions' );
314
315 # Extension setup functions for extensions other than skins
316 # Entries should be added to this variable during the inclusion
317 # of the extension file. This allows the extension to perform
318 # any necessary initialisation in the fully initialised environment
319 foreach ( $wgExtensionFunctions as $func ) {
320 call_user_func( $func );
321 }
322
323 wfDebug( "\n" );
324 $wgFullyInitialised = true;
325 wfProfileOut( $fname.'-extensions' );
326 wfProfileOut( $fname );
327
328 }
329 ?>