* (bug 7405) Make Linker methods static. Patch by Dan Li.
[lhc/web/wiklou.git] / includes / SpecialPreferences.php
1 <?php
2 /**
3 * Hold things related to displaying and saving user preferences.
4 * @package MediaWiki
5 * @subpackage SpecialPage
6 */
7
8 /**
9 * Entry point that create the "Preferences" object
10 */
11 function wfSpecialPreferences() {
12 global $wgRequest;
13
14 $form = new PreferencesForm( $wgRequest );
15 $form->execute();
16 }
17
18 /**
19 * Preferences form handling
20 * This object will show the preferences form and can save it as well.
21 * @package MediaWiki
22 * @subpackage SpecialPage
23 */
24 class PreferencesForm {
25 var $mQuickbar, $mOldpass, $mNewpass, $mRetypePass, $mStubs;
26 var $mRows, $mCols, $mSkin, $mMath, $mDate, $mUserEmail, $mEmailFlag, $mNick;
27 var $mUserLanguage, $mUserVariant;
28 var $mSearch, $mRecent, $mHourDiff, $mSearchLines, $mSearchChars, $mAction;
29 var $mReset, $mPosted, $mToggles, $mSearchNs, $mRealName, $mImageSize;
30 var $mUnderline, $mWatchlistEdits;
31
32 /**
33 * Constructor
34 * Load some values
35 */
36 function PreferencesForm( &$request ) {
37 global $wgLang, $wgContLang, $wgUser, $wgAllowRealName;
38
39 $this->mQuickbar = $request->getVal( 'wpQuickbar' );
40 $this->mOldpass = $request->getVal( 'wpOldpass' );
41 $this->mNewpass = $request->getVal( 'wpNewpass' );
42 $this->mRetypePass =$request->getVal( 'wpRetypePass' );
43 $this->mStubs = $request->getVal( 'wpStubs' );
44 $this->mRows = $request->getVal( 'wpRows' );
45 $this->mCols = $request->getVal( 'wpCols' );
46 $this->mSkin = $request->getVal( 'wpSkin' );
47 $this->mMath = $request->getVal( 'wpMath' );
48 $this->mDate = $request->getVal( 'wpDate' );
49 $this->mUserEmail = $request->getVal( 'wpUserEmail' );
50 $this->mRealName = $wgAllowRealName ? $request->getVal( 'wpRealName' ) : '';
51 $this->mEmailFlag = $request->getCheck( 'wpEmailFlag' ) ? 0 : 1;
52 $this->mNick = $request->getVal( 'wpNick' );
53 $this->mUserLanguage = $request->getVal( 'wpUserLanguage' );
54 $this->mUserVariant = $request->getVal( 'wpUserVariant' );
55 $this->mSearch = $request->getVal( 'wpSearch' );
56 $this->mRecent = $request->getVal( 'wpRecent' );
57 $this->mHourDiff = $request->getVal( 'wpHourDiff' );
58 $this->mSearchLines = $request->getVal( 'wpSearchLines' );
59 $this->mSearchChars = $request->getVal( 'wpSearchChars' );
60 $this->mImageSize = $request->getVal( 'wpImageSize' );
61 $this->mThumbSize = $request->getInt( 'wpThumbSize' );
62 $this->mUnderline = $request->getInt( 'wpOpunderline' );
63 $this->mAction = $request->getVal( 'action' );
64 $this->mReset = $request->getCheck( 'wpReset' );
65 $this->mPosted = $request->wasPosted();
66 $this->mSuccess = $request->getCheck( 'success' );
67 $this->mWatchlistDays = $request->getVal( 'wpWatchlistDays' );
68 $this->mWatchlistEdits = $request->getVal( 'wpWatchlistEdits' );
69
70 $this->mSaveprefs = $request->getCheck( 'wpSaveprefs' ) &&
71 $this->mPosted &&
72 $wgUser->matchEditToken( $request->getVal( 'wpEditToken' ) );
73
74 # User toggles (the big ugly unsorted list of checkboxes)
75 $this->mToggles = array();
76 if ( $this->mPosted ) {
77 $togs = User::getToggles();
78 foreach ( $togs as $tname ) {
79 $this->mToggles[$tname] = $request->getCheck( "wpOp$tname" ) ? 1 : 0;
80 }
81 }
82
83 $this->mUsedToggles = array();
84
85 # Search namespace options
86 # Note: namespaces don't necessarily have consecutive keys
87 $this->mSearchNs = array();
88 if ( $this->mPosted ) {
89 $namespaces = $wgContLang->getNamespaces();
90 foreach ( $namespaces as $i => $namespace ) {
91 if ( $i >= 0 ) {
92 $this->mSearchNs[$i] = $request->getCheck( "wpNs$i" ) ? 1 : 0;
93 }
94 }
95 }
96
97 # Validate language
98 if ( !preg_match( '/^[a-z\-]*$/', $this->mUserLanguage ) ) {
99 $this->mUserLanguage = 'nolanguage';
100 }
101 }
102
103 function execute() {
104 global $wgUser, $wgOut;
105
106 if ( $wgUser->isAnon() ) {
107 $wgOut->showErrorPage( 'prefsnologin', 'prefsnologintext' );
108 return;
109 }
110 if ( wfReadOnly() ) {
111 $wgOut->readOnlyPage();
112 return;
113 }
114 if ( $this->mReset ) {
115 $this->resetPrefs();
116 $this->mainPrefsForm( 'reset', wfMsg( 'prefsreset' ) );
117 } else if ( $this->mSaveprefs ) {
118 $this->savePreferences();
119 } else {
120 $this->resetPrefs();
121 $this->mainPrefsForm( '' );
122 }
123 }
124 /**
125 * @access private
126 */
127 function validateInt( &$val, $min=0, $max=0x7fffffff ) {
128 $val = intval($val);
129 $val = min($val, $max);
130 $val = max($val, $min);
131 return $val;
132 }
133
134 /**
135 * @access private
136 */
137 function validateFloat( &$val, $min, $max=0x7fffffff ) {
138 $val = floatval( $val );
139 $val = min( $val, $max );
140 $val = max( $val, $min );
141 return( $val );
142 }
143
144 /**
145 * @access private
146 */
147 function validateIntOrNull( &$val, $min=0, $max=0x7fffffff ) {
148 $val = trim($val);
149 if($val === '') {
150 return $val;
151 } else {
152 return $this->validateInt( $val, $min, $max );
153 }
154 }
155
156 /**
157 * @access private
158 */
159 function validateDate( $val ) {
160 global $wgLang, $wgContLang;
161 if ( $val !== false && (
162 in_array( $val, (array)$wgLang->getDatePreferences() ) ||
163 in_array( $val, (array)$wgContLang->getDatePreferences() ) ) )
164 {
165 return $val;
166 } else {
167 return $wgLang->getDefaultDateFormat();
168 }
169 }
170
171 /**
172 * Used to validate the user inputed timezone before saving it as
173 * 'timeciorrection', will return '00:00' if fed bogus data.
174 * Note: It's not a 100% correct implementation timezone-wise, it will
175 * accept stuff like '14:30',
176 * @access private
177 * @param string $s the user input
178 * @return string
179 */
180 function validateTimeZone( $s ) {
181 if ( $s !== '' ) {
182 if ( strpos( $s, ':' ) ) {
183 # HH:MM
184 $array = explode( ':' , $s );
185 $hour = intval( $array[0] );
186 $minute = intval( $array[1] );
187 } else {
188 $minute = intval( $s * 60 );
189 $hour = intval( $minute / 60 );
190 $minute = abs( $minute ) % 60;
191 }
192 # Max is +14:00 and min is -12:00, see:
193 # http://en.wikipedia.org/wiki/Timezone
194 $hour = min( $hour, 14 );
195 $hour = max( $hour, -12 );
196 $minute = min( $minute, 59 );
197 $minute = max( $minute, 0 );
198 $s = sprintf( "%02d:%02d", $hour, $minute );
199 }
200 return $s;
201 }
202
203 /**
204 * @access private
205 */
206 function savePreferences() {
207 global $wgUser, $wgOut, $wgParser;
208 global $wgEnableUserEmail, $wgEnableEmail;
209 global $wgEmailAuthentication, $wgMinimalPasswordLength;
210 global $wgAuth;
211
212
213 if ( '' != $this->mNewpass && $wgAuth->allowPasswordChange() ) {
214 if ( $this->mNewpass != $this->mRetypePass ) {
215 $this->mainPrefsForm( 'error', wfMsg( 'badretype' ) );
216 return;
217 }
218
219 if ( strlen( $this->mNewpass ) < $wgMinimalPasswordLength ) {
220 $this->mainPrefsForm( 'error', wfMsg( 'passwordtooshort', $wgMinimalPasswordLength ) );
221 return;
222 }
223
224 if (!$wgUser->checkPassword( $this->mOldpass )) {
225 $this->mainPrefsForm( 'error', wfMsg( 'wrongpassword' ) );
226 return;
227 }
228 if (!$wgAuth->setPassword( $wgUser, $this->mNewpass )) {
229 $this->mainPrefsForm( 'error', wfMsg( 'externaldberror' ) );
230 return;
231 }
232 $wgUser->setPassword( $this->mNewpass );
233 $this->mNewpass = $this->mOldpass = $this->mRetypePass = '';
234
235 }
236 $wgUser->setRealName( $this->mRealName );
237
238 if( $wgUser->getOption( 'language' ) !== $this->mUserLanguage ) {
239 $needRedirect = true;
240 } else {
241 $needRedirect = false;
242 }
243
244 # Validate the signature and clean it up as needed
245 if( $this->mToggles['fancysig'] ) {
246 if( Parser::validateSig( $this->mNick ) !== false ) {
247 $this->mNick = $wgParser->cleanSig( $this->mNick );
248 } else {
249 $this->mainPrefsForm( 'error', wfMsg( 'badsig' ) );
250 }
251 } else {
252 // When no fancy sig used, make sure ~{3,5} get removed.
253 $this->mNick = $wgParser->cleanSigInSig( $this->mNick );
254 }
255
256 $wgUser->setOption( 'language', $this->mUserLanguage );
257 $wgUser->setOption( 'variant', $this->mUserVariant );
258 $wgUser->setOption( 'nickname', $this->mNick );
259 $wgUser->setOption( 'quickbar', $this->mQuickbar );
260 $wgUser->setOption( 'skin', $this->mSkin );
261 global $wgUseTeX;
262 if( $wgUseTeX ) {
263 $wgUser->setOption( 'math', $this->mMath );
264 }
265 $wgUser->setOption( 'date', $this->validateDate( $this->mDate ) );
266 $wgUser->setOption( 'searchlimit', $this->validateIntOrNull( $this->mSearch ) );
267 $wgUser->setOption( 'contextlines', $this->validateIntOrNull( $this->mSearchLines ) );
268 $wgUser->setOption( 'contextchars', $this->validateIntOrNull( $this->mSearchChars ) );
269 $wgUser->setOption( 'rclimit', $this->validateIntOrNull( $this->mRecent ) );
270 $wgUser->setOption( 'wllimit', $this->validateIntOrNull( $this->mWatchlistEdits, 0, 1000 ) );
271 $wgUser->setOption( 'rows', $this->validateInt( $this->mRows, 4, 1000 ) );
272 $wgUser->setOption( 'cols', $this->validateInt( $this->mCols, 4, 1000 ) );
273 $wgUser->setOption( 'stubthreshold', $this->validateIntOrNull( $this->mStubs ) );
274 $wgUser->setOption( 'timecorrection', $this->validateTimeZone( $this->mHourDiff, -12, 14 ) );
275 $wgUser->setOption( 'imagesize', $this->mImageSize );
276 $wgUser->setOption( 'thumbsize', $this->mThumbSize );
277 $wgUser->setOption( 'underline', $this->validateInt($this->mUnderline, 0, 2) );
278 $wgUser->setOption( 'watchlistdays', $this->validateFloat( $this->mWatchlistDays, 0, 7 ) );
279
280 # Set search namespace options
281 foreach( $this->mSearchNs as $i => $value ) {
282 $wgUser->setOption( "searchNs{$i}", $value );
283 }
284
285 if( $wgEnableEmail && $wgEnableUserEmail ) {
286 $wgUser->setOption( 'disablemail', $this->mEmailFlag );
287 }
288
289 # Set user toggles
290 foreach ( $this->mToggles as $tname => $tvalue ) {
291 $wgUser->setOption( $tname, $tvalue );
292 }
293 if (!$wgAuth->updateExternalDB($wgUser)) {
294 $this->mainPrefsForm( wfMsg( 'externaldberror' ) );
295 return;
296 }
297 $wgUser->setCookies();
298 $wgUser->saveSettings();
299
300 $error = false;
301 if( $wgEnableEmail ) {
302 $newadr = $this->mUserEmail;
303 $oldadr = $wgUser->getEmail();
304 if( ($newadr != '') && ($newadr != $oldadr) ) {
305 # the user has supplied a new email address on the login page
306 if( $wgUser->isValidEmailAddr( $newadr ) ) {
307 $wgUser->mEmail = $newadr; # new behaviour: set this new emailaddr from login-page into user database record
308 $wgUser->mEmailAuthenticated = null; # but flag as "dirty" = unauthenticated
309 $wgUser->saveSettings();
310 if ($wgEmailAuthentication) {
311 # Mail a temporary password to the dirty address.
312 # User can come back through the confirmation URL to re-enable email.
313 $result = $wgUser->sendConfirmationMail();
314 if( WikiError::isError( $result ) ) {
315 $error = wfMsg( 'mailerror', htmlspecialchars( $result->getMessage() ) );
316 } else {
317 $error = wfMsg( 'eauthentsent', $wgUser->getName() );
318 }
319 }
320 } else {
321 $error = wfMsg( 'invalidemailaddress' );
322 }
323 } else {
324 $wgUser->setEmail( $this->mUserEmail );
325 $wgUser->setCookies();
326 $wgUser->saveSettings();
327 }
328 }
329
330 if( $needRedirect && $error === false ) {
331 $title =& SpecialPage::getTitleFor( "Preferences" );
332 $wgOut->redirect($title->getFullURL('success'));
333 return;
334 }
335
336 $wgOut->setParserOptions( ParserOptions::newFromUser( $wgUser ) );
337 $po = ParserOptions::newFromUser( $wgUser );
338 $this->mainPrefsForm( $error === false ? 'success' : 'error', $error);
339 }
340
341 /**
342 * @access private
343 */
344 function resetPrefs() {
345 global $wgUser, $wgLang, $wgContLang, $wgAllowRealName;
346
347 $this->mOldpass = $this->mNewpass = $this->mRetypePass = '';
348 $this->mUserEmail = $wgUser->getEmail();
349 $this->mUserEmailAuthenticationtimestamp = $wgUser->getEmailAuthenticationtimestamp();
350 $this->mRealName = ($wgAllowRealName) ? $wgUser->getRealName() : '';
351 $this->mUserLanguage = $wgUser->getOption( 'language' );
352 if( empty( $this->mUserLanguage ) ) {
353 # Quick hack for conversions, where this value is blank
354 global $wgContLanguageCode;
355 $this->mUserLanguage = $wgContLanguageCode;
356 }
357 $this->mUserVariant = $wgUser->getOption( 'variant');
358 $this->mEmailFlag = $wgUser->getOption( 'disablemail' ) == 1 ? 1 : 0;
359 $this->mNick = $wgUser->getOption( 'nickname' );
360
361 $this->mQuickbar = $wgUser->getOption( 'quickbar' );
362 $this->mSkin = Skin::normalizeKey( $wgUser->getOption( 'skin' ) );
363 $this->mMath = $wgUser->getOption( 'math' );
364 $this->mDate = $wgUser->getDatePreference();
365 $this->mRows = $wgUser->getOption( 'rows' );
366 $this->mCols = $wgUser->getOption( 'cols' );
367 $this->mStubs = $wgUser->getOption( 'stubthreshold' );
368 $this->mHourDiff = $wgUser->getOption( 'timecorrection' );
369 $this->mSearch = $wgUser->getOption( 'searchlimit' );
370 $this->mSearchLines = $wgUser->getOption( 'contextlines' );
371 $this->mSearchChars = $wgUser->getOption( 'contextchars' );
372 $this->mImageSize = $wgUser->getOption( 'imagesize' );
373 $this->mThumbSize = $wgUser->getOption( 'thumbsize' );
374 $this->mRecent = $wgUser->getOption( 'rclimit' );
375 $this->mWatchlistEdits = $wgUser->getOption( 'wllimit' );
376 $this->mUnderline = $wgUser->getOption( 'underline' );
377 $this->mWatchlistDays = $wgUser->getOption( 'watchlistdays' );
378
379 $togs = User::getToggles();
380 foreach ( $togs as $tname ) {
381 $ttext = wfMsg('tog-'.$tname);
382 $this->mToggles[$tname] = $wgUser->getOption( $tname );
383 }
384
385 $namespaces = $wgContLang->getNamespaces();
386 foreach ( $namespaces as $i => $namespace ) {
387 if ( $i >= NS_MAIN ) {
388 $this->mSearchNs[$i] = $wgUser->getOption( 'searchNs'.$i );
389 }
390 }
391 }
392
393 /**
394 * @access private
395 */
396 function namespacesCheckboxes() {
397 global $wgContLang;
398
399 # Determine namespace checkboxes
400 $namespaces = $wgContLang->getNamespaces();
401 $r1 = null;
402
403 foreach ( $namespaces as $i => $name ) {
404 if ($i < 0)
405 continue;
406 $checked = $this->mSearchNs[$i] ? "checked='checked'" : '';
407 $name = str_replace( '_', ' ', $namespaces[$i] );
408
409 if ( empty($name) )
410 $name = wfMsg( 'blanknamespace' );
411
412 $r1 .= "<input type='checkbox' value='1' name='wpNs$i' id='wpNs$i' {$checked}/> <label for='wpNs$i'>{$name}</label><br />\n";
413 }
414 return $r1;
415 }
416
417
418 function getToggle( $tname, $trailer = false, $disabled = false ) {
419 global $wgUser, $wgLang;
420
421 $this->mUsedToggles[$tname] = true;
422 $ttext = $wgLang->getUserToggle( $tname );
423
424 $checked = $wgUser->getOption( $tname ) == 1 ? ' checked="checked"' : '';
425 $disabled = $disabled ? ' disabled="disabled"' : '';
426 $trailer = $trailer ? $trailer : '';
427 return "<div class='toggle'><input type='checkbox' value='1' id=\"$tname\" name=\"wpOp$tname\"$checked$disabled />" .
428 " <span class='toggletext'><label for=\"$tname\">$ttext</label>$trailer</span></div>\n";
429 }
430
431 function getToggles( $items ) {
432 $out = "";
433 foreach( $items as $item ) {
434 if( $item === false )
435 continue;
436 if( is_array( $item ) ) {
437 list( $key, $trailer ) = $item;
438 } else {
439 $key = $item;
440 $trailer = false;
441 }
442 $out .= $this->getToggle( $key, $trailer );
443 }
444 return $out;
445 }
446
447 function addRow($td1, $td2) {
448 return "<tr><td align='right'>$td1</td><td align='left'>$td2</td></tr>";
449 }
450
451 /**
452 * @access private
453 */
454 function mainPrefsForm( $status , $message = '' ) {
455 global $wgUser, $wgOut, $wgLang, $wgContLang;
456 global $wgAllowRealName, $wgImageLimits, $wgThumbLimits;
457 global $wgDisableLangConversion;
458 global $wgEnotifWatchlist, $wgEnotifUserTalk,$wgEnotifMinorEdits;
459 global $wgRCShowWatchingUsers, $wgEnotifRevealEditorAddress;
460 global $wgEnableEmail, $wgEnableUserEmail, $wgEmailAuthentication;
461 global $wgContLanguageCode, $wgDefaultSkin, $wgSkipSkins, $wgAuth;
462
463 $wgOut->setPageTitle( wfMsg( 'preferences' ) );
464 $wgOut->setArticleRelated( false );
465 $wgOut->setRobotpolicy( 'noindex,nofollow' );
466
467 if ( $this->mSuccess || 'success' == $status ) {
468 $wgOut->addWikitext( '<div class="successbox"><strong>'. wfMsg( 'savedprefs' ) . '</strong></div>' );
469 } else if ( 'error' == $status ) {
470 $wgOut->addWikitext( '<div class="errorbox"><strong>' . $message . '</strong></div>' );
471 } else if ( '' != $status ) {
472 $wgOut->addWikitext( $message . "\n----" );
473 }
474
475 $qbs = $wgLang->getQuickbarSettings();
476 $skinNames = $wgLang->getSkinNames();
477 $mathopts = $wgLang->getMathNames();
478 $dateopts = $wgLang->getDatePreferences();
479 $togs = User::getToggles();
480
481 $titleObj = SpecialPage::getTitleFor( 'Preferences' );
482 $action = $titleObj->escapeLocalURL();
483
484 # Pre-expire some toggles so they won't show if disabled
485 $this->mUsedToggles[ 'shownumberswatching' ] = true;
486 $this->mUsedToggles[ 'showupdated' ] = true;
487 $this->mUsedToggles[ 'enotifwatchlistpages' ] = true;
488 $this->mUsedToggles[ 'enotifusertalkpages' ] = true;
489 $this->mUsedToggles[ 'enotifminoredits' ] = true;
490 $this->mUsedToggles[ 'enotifrevealaddr' ] = true;
491 $this->mUsedToggles[ 'uselivepreview' ] = true;
492
493 # Enotif
494 # <FIXME>
495 $this->mUserEmail = htmlspecialchars( $this->mUserEmail );
496 $this->mRealName = htmlspecialchars( $this->mRealName );
497 $rawNick = $this->mNick;
498 $this->mNick = htmlspecialchars( $this->mNick );
499 if ( !$this->mEmailFlag ) { $emfc = 'checked="checked"'; }
500 else { $emfc = ''; }
501
502
503 if ($wgEmailAuthentication && ($this->mUserEmail != '') ) {
504 if( $wgUser->getEmailAuthenticationTimestamp() ) {
505 $emailauthenticated = wfMsg('emailauthenticated',$wgLang->timeanddate($wgUser->getEmailAuthenticationTimestamp(), true ) ).'<br />';
506 $disableEmailPrefs = false;
507 } else {
508 $disableEmailPrefs = true;
509 $emailauthenticated = wfMsg('emailnotauthenticated').'<br />' .
510 Linker::makeKnownLinkObj( SpecialPage::getTitleFor( 'Confirmemail' ),
511 wfMsg( 'emailconfirmlink' ) );
512 }
513 } else {
514 $emailauthenticated = '';
515 $disableEmailPrefs = false;
516 }
517
518 if ($this->mUserEmail == '') {
519 $emailauthenticated = wfMsg( 'noemailprefs' );
520 }
521
522 $ps = $this->namespacesCheckboxes();
523
524 $enotifwatchlistpages = ($wgEnotifWatchlist) ? $this->getToggle( 'enotifwatchlistpages', false, $disableEmailPrefs ) : '';
525 $enotifusertalkpages = ($wgEnotifUserTalk) ? $this->getToggle( 'enotifusertalkpages', false, $disableEmailPrefs ) : '';
526 $enotifminoredits = ($wgEnotifWatchlist && $wgEnotifMinorEdits) ? $this->getToggle( 'enotifminoredits', false, $disableEmailPrefs ) : '';
527 $enotifrevealaddr = (($wgEnotifWatchlist || $wgEnotifUserTalk) && $wgEnotifRevealEditorAddress) ? $this->getToggle( 'enotifrevealaddr', false, $disableEmailPrefs ) : '';
528 $prefs_help_email_enotif = ( $wgEnotifWatchlist || $wgEnotifUserTalk) ? ' ' . wfMsg('prefs-help-email-enotif') : '';
529 $prefs_help_realname = '';
530
531 # </FIXME>
532
533 $wgOut->addHTML( "<form action=\"$action\" method='post'>" );
534 $wgOut->addHTML( "<div id='preferences'>" );
535
536 # User data
537 #
538
539 $wgOut->addHTML( "<fieldset>\n<legend>" . wfMsg('prefs-personal') . "</legend>\n<table>\n");
540
541 $wgOut->addHTML(
542 $this->addRow(
543 wfMsg( 'username'),
544 $wgUser->getName()
545 )
546 );
547
548 $wgOut->addHTML(
549 $this->addRow(
550 wfMsg( 'uid' ),
551 $wgUser->getID()
552 )
553 );
554
555
556 if ($wgAllowRealName) {
557 $wgOut->addHTML(
558 $this->addRow(
559 '<label for="wpRealName">' . wfMsg('yourrealname') . '</label>',
560 "<input type='text' name='wpRealName' id='wpRealName' value=\"{$this->mRealName}\" size='25' />"
561 )
562 );
563 }
564 if ($wgEnableEmail) {
565 $wgOut->addHTML(
566 $this->addRow(
567 '<label for="wpUserEmail">' . wfMsg( 'youremail' ) . '</label>',
568 "<input type='text' name='wpUserEmail' id='wpUserEmail' value=\"{$this->mUserEmail}\" size='25' />"
569 )
570 );
571 }
572
573 global $wgParser;
574 if( !empty( $this->mToggles['fancysig'] ) &&
575 false === $wgParser->validateSig( $rawNick ) ) {
576 $invalidSig = $this->addRow(
577 '&nbsp;',
578 '<span class="error">' . wfMsgHtml( 'badsig' ) . '<span>'
579 );
580 } else {
581 $invalidSig = '';
582 }
583
584 $wgOut->addHTML(
585 $this->addRow(
586 '<label for="wpNick">' . wfMsg( 'yournick' ) . '</label>',
587 "<input type='text' name='wpNick' id='wpNick' value=\"{$this->mNick}\" size='25' />"
588 ) .
589 $invalidSig .
590 # FIXME: The <input> part should be where the &nbsp; is, getToggle() needs
591 # to be changed to out return its output in two parts. -รฆvar
592 $this->addRow(
593 '&nbsp;',
594 $this->getToggle( 'fancysig' )
595 )
596 );
597
598 /**
599 * Make sure the site language is in the list; a custom language code
600 * might not have a defined name...
601 */
602 $languages = $wgLang->getLanguageNames( true );
603 if( !array_key_exists( $wgContLanguageCode, $languages ) ) {
604 $languages[$wgContLanguageCode] = $wgContLanguageCode;
605 }
606 ksort( $languages );
607
608 /**
609 * If a bogus value is set, default to the content language.
610 * Otherwise, no default is selected and the user ends up
611 * with an Afrikaans interface since it's first in the list.
612 */
613 $selectedLang = isset( $languages[$this->mUserLanguage] ) ? $this->mUserLanguage : $wgContLanguageCode;
614 $selbox = null;
615 foreach($languages as $code => $name) {
616 global $IP;
617 $sel = ($code == $selectedLang)? ' selected="selected"' : '';
618 $selbox .= "<option value=\"$code\"$sel>$code - $name</option>\n";
619 }
620 $wgOut->addHTML(
621 $this->addRow(
622 '<label for="wpUserLanguage">' . wfMsg('yourlanguage') . '</label>',
623 "<select name='wpUserLanguage' id='wpUserLanguage'>$selbox</select>"
624 )
625 );
626
627 /* see if there are multiple language variants to choose from*/
628 if(!$wgDisableLangConversion) {
629 $variants = $wgContLang->getVariants();
630 $variantArray = array();
631
632 foreach($variants as $v) {
633 $v = str_replace( '_', '-', strtolower($v));
634 if( array_key_exists( $v, $languages ) ) {
635 // If it doesn't have a name, we'll pretend it doesn't exist
636 $variantArray[$v] = $languages[$v];
637 }
638 }
639
640 $selbox = null;
641 foreach($variantArray as $code => $name) {
642 $sel = $code == $this->mUserVariant ? 'selected="selected"' : '';
643 $selbox .= "<option value=\"$code\" $sel>$code - $name</option>";
644 }
645
646 if(count($variantArray) > 1) {
647 $wgOut->addHtml(
648 $this->addRow( wfMsg( 'yourvariant' ), "<select name='wpUserVariant'>$selbox</select>" )
649 );
650 }
651 }
652 $wgOut->addHTML('</table>');
653
654 # Password
655 if( $wgAuth->allowPasswordChange() ) {
656 $this->mOldpass = htmlspecialchars( $this->mOldpass );
657 $this->mNewpass = htmlspecialchars( $this->mNewpass );
658 $this->mRetypePass = htmlspecialchars( $this->mRetypePass );
659
660 $wgOut->addHTML( '<fieldset><legend>' . wfMsg( 'changepassword' ) . '</legend><table>');
661 $wgOut->addHTML(
662 $this->addRow(
663 '<label for="wpOldpass">' . wfMsg( 'oldpassword' ) . '</label>',
664 "<input type='password' name='wpOldpass' id='wpOldpass' value=\"{$this->mOldpass}\" size='20' />"
665 ) .
666 $this->addRow(
667 '<label for="wpNewpass">' . wfMsg( 'newpassword' ) . '</label>',
668 "<input type='password' name='wpNewpass' id='wpNewpass' value=\"{$this->mNewpass}\" size='20' />"
669 ) .
670 $this->addRow(
671 '<label for="wpRetypePass">' . wfMsg( 'retypenew' ) . '</label>',
672 "<input type='password' name='wpRetypePass' id='wpRetypePass' value=\"{$this->mRetypePass}\" size='20' />"
673 ) .
674 "</table>\n" .
675 $this->getToggle( "rememberpassword" ) . "</fieldset>\n\n" );
676 }
677
678 # <FIXME>
679 # Enotif
680 if ($wgEnableEmail) {
681 $wgOut->addHTML( '<fieldset><legend>' . wfMsg( 'email' ) . '</legend>' );
682 $wgOut->addHTML(
683 $emailauthenticated.
684 $enotifrevealaddr.
685 $enotifwatchlistpages.
686 $enotifusertalkpages.
687 $enotifminoredits );
688 if ($wgEnableUserEmail) {
689 $emf = wfMsg( 'allowemail' );
690 $disabled = $disableEmailPrefs ? ' disabled="disabled"' : '';
691 $wgOut->addHTML(
692 "<div><input type='checkbox' $emfc $disabled value='1' name='wpEmailFlag' id='wpEmailFlag' /> <label for='wpEmailFlag'>$emf</label></div>" );
693 }
694
695 $wgOut->addHTML( '</fieldset>' );
696 }
697 # </FIXME>
698
699 # Show little "help" tips for the real name and email address options
700 if( $wgAllowRealName || $wgEnableEmail ) {
701 if( $wgAllowRealName )
702 $tips[] = wfMsg( 'prefs-help-realname' );
703 if( $wgEnableEmail )
704 $tips[] = wfMsg( 'prefs-help-email' );
705 $wgOut->addHtml( '<div class="prefsectiontip">' . implode( '<br />', $tips ) . '</div>' );
706 }
707
708 $wgOut->addHTML( '</fieldset>' );
709
710 # Quickbar
711 #
712 if ($this->mSkin == 'cologneblue' || $this->mSkin == 'standard') {
713 $wgOut->addHtml( "<fieldset>\n<legend>" . wfMsg( 'qbsettings' ) . "</legend>\n" );
714 for ( $i = 0; $i < count( $qbs ); ++$i ) {
715 if ( $i == $this->mQuickbar ) { $checked = ' checked="checked"'; }
716 else { $checked = ""; }
717 $wgOut->addHTML( "<div><label><input type='radio' name='wpQuickbar' value=\"$i\"$checked />{$qbs[$i]}</label></div>\n" );
718 }
719 $wgOut->addHtml( "</fieldset>\n\n" );
720 } else {
721 # Need to output a hidden option even if the relevant skin is not in use,
722 # otherwise the preference will get reset to 0 on submit
723 $wgOut->addHtml( wfHidden( 'wpQuickbar', $this->mQuickbar ) );
724 }
725
726 # Skin
727 #
728 $wgOut->addHTML( "<fieldset>\n<legend>\n" . wfMsg('skin') . "</legend>\n" );
729 $mptitle = Title::newMainPage();
730 $previewtext = wfMsg('skinpreview');
731 # Only show members of Skin::getSkinNames() rather than
732 # $skinNames (skins is all skin names from Language.php)
733 $validSkinNames = Skin::getSkinNames();
734 # Sort by UI skin name. First though need to update validSkinNames as sometimes
735 # the skinkey & UI skinname differ (e.g. "standard" skinkey is "Classic" in the UI).
736 foreach ($validSkinNames as $skinkey => & $skinname ) {
737 if ( isset( $skinNames[$skinkey] ) ) {
738 $skinname = $skinNames[$skinkey];
739 }
740 }
741 asort($validSkinNames);
742 foreach ($validSkinNames as $skinkey => $sn ) {
743 if ( in_array( $skinkey, $wgSkipSkins ) ) {
744 continue;
745 }
746 $checked = $skinkey == $this->mSkin ? ' checked="checked"' : '';
747
748 $mplink = htmlspecialchars($mptitle->getLocalURL("useskin=$skinkey"));
749 $previewlink = "<a target='_blank' href=\"$mplink\">$previewtext</a>";
750 if( $skinkey == $wgDefaultSkin )
751 $sn .= ' (' . wfMsg( 'default' ) . ')';
752 $wgOut->addHTML( "<input type='radio' name='wpSkin' id=\"wpSkin$skinkey\" value=\"$skinkey\"$checked /> <label for=\"wpSkin$skinkey\">{$sn}</label> $previewlink<br />\n" );
753 }
754 $wgOut->addHTML( "</fieldset>\n\n" );
755
756 # Math
757 #
758 global $wgUseTeX;
759 if( $wgUseTeX ) {
760 $wgOut->addHTML( "<fieldset>\n<legend>" . wfMsg('math') . '</legend>' );
761 foreach ( $mathopts as $k => $v ) {
762 $checked = $k == $this->mMath ? ' checked="checked"' : '';
763 $wgOut->addHTML( "<div><label><input type='radio' name='wpMath' value=\"$k\"$checked /> ".wfMsg($v)."</label></div>\n" );
764 }
765 $wgOut->addHTML( "</fieldset>\n\n" );
766 }
767
768 # Files
769 #
770 $wgOut->addHTML("<fieldset>
771 <legend>" . wfMsg( 'files' ) . "</legend>
772 <div><label for='wpImageSize'>" . wfMsg('imagemaxsize') . "</label> <select id='wpImageSize' name='wpImageSize'>");
773
774 $imageLimitOptions = null;
775 foreach ( $wgImageLimits as $index => $limits ) {
776 $selected = ($index == $this->mImageSize) ? 'selected="selected"' : '';
777 $imageLimitOptions .= "<option value=\"{$index}\" {$selected}>{$limits[0]}ร—{$limits[1]}". wfMsgHtml('unit-pixel') ."</option>\n";
778 }
779
780 $imageThumbOptions = null;
781 $wgOut->addHTML( "{$imageLimitOptions}</select></div>
782 <div><label for='wpThumbSize'>" . wfMsg('thumbsize') . "</label> <select name='wpThumbSize' id='wpThumbSize'>");
783 foreach ( $wgThumbLimits as $index => $size ) {
784 $selected = ($index == $this->mThumbSize) ? 'selected="selected"' : '';
785 $imageThumbOptions .= "<option value=\"{$index}\" {$selected}>{$size}". wfMsgHtml('unit-pixel') ."</option>\n";
786 }
787 $wgOut->addHTML( "{$imageThumbOptions}</select></div></fieldset>\n\n");
788
789 # Date format
790 #
791 # Date/Time
792 #
793
794 $wgOut->addHTML( "<fieldset>\n<legend>" . wfMsg( 'datetime' ) . "</legend>\n" );
795
796 if ($dateopts) {
797 $wgOut->addHTML( "<fieldset>\n<legend>" . wfMsg( 'dateformat' ) . "</legend>\n" );
798 $idCnt = 0;
799 $epoch = '20010115161234'; # Wikipedia day
800 foreach( $dateopts as $key ) {
801 if( $key == 'default' ) {
802 $formatted = wfMsgHtml( 'datedefault' );
803 } else {
804 $formatted = htmlspecialchars( $wgLang->timeanddate( $epoch, false, $key ) );
805 }
806 ($key == $this->mDate) ? $checked = ' checked="checked"' : $checked = '';
807 $wgOut->addHTML( "<div><input type='radio' name=\"wpDate\" id=\"wpDate$idCnt\" ".
808 "value=\"$key\"$checked /> <label for=\"wpDate$idCnt\">$formatted</label></div>\n" );
809 $idCnt++;
810 }
811 $wgOut->addHTML( "</fieldset>\n" );
812 }
813
814 $nowlocal = $wgLang->time( $now = wfTimestampNow(), true );
815 $nowserver = $wgLang->time( $now, false );
816
817 $wgOut->addHTML( '<fieldset><legend>' . wfMsg( 'timezonelegend' ). '</legend><table>' .
818 $this->addRow( wfMsg( 'servertime' ), $nowserver ) .
819 $this->addRow( wfMsg( 'localtime' ), $nowlocal ) .
820 $this->addRow(
821 '<label for="wpHourDiff">' . wfMsg( 'timezoneoffset' ) . '</label>',
822 "<input type='text' name='wpHourDiff' id='wpHourDiff' value=\"" . htmlspecialchars( $this->mHourDiff ) . "\" size='6' />"
823 ) . "<tr><td colspan='2'>
824 <input type='button' value=\"" . wfMsg( 'guesstimezone' ) ."\"
825 onclick='javascript:guessTimezone()' id='guesstimezonebutton' style='display:none;' />
826 </td></tr></table><div class='prefsectiontip'>ยน" . wfMsg( 'timezonetext' ) . "</div></fieldset>
827 </fieldset>\n\n" );
828
829 # Editing
830 #
831 global $wgLivePreview, $wgUseRCPatrol;
832 $wgOut->addHTML( '<fieldset><legend>' . wfMsg( 'textboxsize' ) . '</legend>
833 <div>' .
834 wfInputLabel( wfMsg( 'rows' ), 'wpRows', 'wpRows', 3, $this->mRows ) .
835 ' ' .
836 wfInputLabel( wfMsg( 'columns' ), 'wpCols', 'wpCols', 3, $this->mCols ) .
837 "</div>" .
838 $this->getToggles( array(
839 'editsection',
840 'editsectiononrightclick',
841 'editondblclick',
842 'editwidth',
843 'showtoolbar',
844 'previewonfirst',
845 'previewontop',
846 'watchcreations',
847 'watchdefault',
848 'minordefault',
849 'externaleditor',
850 'externaldiff',
851 $wgLivePreview ? 'uselivepreview' : false,
852 $wgUser->isAllowed( 'patrol' ) && $wgUseRCPatrol ? 'autopatrol' : false,
853 'forceeditsummary',
854 ) ) . '</fieldset>'
855 );
856 $this->mUsedToggles['autopatrol'] = true; # Don't show this up for users who can't; the handler below is dumb and doesn't know it
857
858 $wgOut->addHTML( '<fieldset><legend>' . htmlspecialchars(wfMsg('prefs-rc')) . '</legend>' .
859 wfInputLabel( wfMsg( 'recentchangescount' ),
860 'wpRecent', 'wpRecent', 3, $this->mRecent ) .
861 $this->getToggles( array(
862 'hideminor',
863 $wgRCShowWatchingUsers ? 'shownumberswatching' : false,
864 'usenewrc' )
865 ) . '</fieldset>'
866 );
867
868 # Watchlist
869 $wgOut->addHTML( '<fieldset><legend>' . wfMsgHtml( 'prefs-watchlist' ) . '</legend>' );
870
871 $wgOut->addHTML( wfInputLabel( wfMsg( 'prefs-watchlist-days' ),
872 'wpWatchlistDays', 'wpWatchlistDays', 3, $this->mWatchlistDays ) );
873 $wgOut->addHTML( '<br /><br />' ); # Spacing
874 $wgOut->addHTML( $this->getToggles( array( 'watchlisthideown', 'watchlisthidebots', 'extendwatchlist' ) ) );
875 $wgOut->addHTML( wfInputLabel( wfMsg( 'prefs-watchlist-edits' ),
876 'wpWatchlistEdits', 'wpWatchlistEdits', 3, $this->mWatchlistEdits ) );
877
878 $wgOut->addHTML( '</fieldset>' );
879
880 # Search
881 $wgOut->addHTML( '<fieldset><legend>' . wfMsg( 'searchresultshead' ) . '</legend><table>' .
882 $this->addRow(
883 wfLabel( wfMsg( 'resultsperpage' ), 'wpSearch' ),
884 wfInput( 'wpSearch', 4, $this->mSearch, array( 'id' => 'wpSearch' ) )
885 ) .
886 $this->addRow(
887 wfLabel( wfMsg( 'contextlines' ), 'wpSearchLines' ),
888 wfInput( 'wpSearchLines', 4, $this->mSearchLines, array( 'id' => 'wpSearchLines' ) )
889 ) .
890 $this->addRow(
891 wfLabel( wfMsg( 'contextchars' ), 'wpSearchChars' ),
892 wfInput( 'wpSearchChars', 4, $this->mSearchChars, array( 'id' => 'wpSearchChars' ) )
893 ) .
894 "</table><fieldset><legend>" . wfMsg( 'defaultns' ) . "</legend>$ps</fieldset></fieldset>" );
895
896 # Misc
897 #
898 $wgOut->addHTML('<fieldset><legend>' . wfMsg('prefs-misc') . '</legend>');
899 $wgOut->addHTML( wfInputLabel( wfMsg( 'stubthreshold' ),
900 'wpStubs', 'wpStubs', 6, $this->mStubs ) );
901 $msgUnderline = htmlspecialchars( wfMsg ( 'tog-underline' ) );
902 $msgUnderlinenever = htmlspecialchars( wfMsg ( 'underline-never' ) );
903 $msgUnderlinealways = htmlspecialchars( wfMsg ( 'underline-always' ) );
904 $msgUnderlinedefault = htmlspecialchars( wfMsg ( 'underline-default' ) );
905 $uopt = $wgUser->getOption("underline");
906 $s0 = $uopt == 0 ? ' selected="selected"' : '';
907 $s1 = $uopt == 1 ? ' selected="selected"' : '';
908 $s2 = $uopt == 2 ? ' selected="selected"' : '';
909 $wgOut->addHTML("
910 <div class='toggle'><label for='wpOpunderline'>$msgUnderline</label>
911 <select name='wpOpunderline' id='wpOpunderline'>
912 <option value=\"0\"$s0>$msgUnderlinenever</option>
913 <option value=\"1\"$s1>$msgUnderlinealways</option>
914 <option value=\"2\"$s2>$msgUnderlinedefault</option>
915 </select>
916 </div>
917 ");
918 foreach ( $togs as $tname ) {
919 if( !array_key_exists( $tname, $this->mUsedToggles ) ) {
920 $wgOut->addHTML( $this->getToggle( $tname ) );
921 }
922 }
923 $wgOut->addHTML( '</fieldset>' );
924
925 $token = $wgUser->editToken();
926 $wgOut->addHTML( "
927 <div id='prefsubmit'>
928 <div>
929 <input type='submit' name='wpSaveprefs' class='btnSavePrefs' value=\"" . wfMsgHtml( 'saveprefs' ) . "\" accesskey=\"".
930 wfMsgHtml('accesskey-save')."\" title=\"".wfMsgHtml('tooltip-save')."\" />
931 <input type='submit' name='wpReset' value=\"" . wfMsgHtml( 'resetprefs' ) . "\" />
932 </div>
933
934 </div>
935
936 <input type='hidden' name='wpEditToken' value='{$token}' />
937 </div></form>\n" );
938
939 $wgOut->addWikiText( '<div class="prefcache">' . wfMsg('clearyourcache') . '</div>' );
940
941 }
942 }
943 ?>