Add links to Special:EditWatchlist in Preferences' Watchlist tab
[lhc/web/wiklou.git] / includes / Preferences.php
1 <?php
2 /**
3 * Form to edit user preferences.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
19 *
20 * @file
21 */
22
23 /**
24 * We're now using the HTMLForm object with some customisation to generate the
25 * Preferences form. This object handles generic submission, CSRF protection,
26 * layout and other logic in a reusable manner. We subclass it as a PreferencesForm
27 * to make some minor customisations.
28 *
29 * In order to generate the form, the HTMLForm object needs an array structure
30 * detailing the form fields available, and that's what this class is for. Each
31 * element of the array is a basic property-list, including the type of field,
32 * the label it is to be given in the form, callbacks for validation and
33 * 'filtering', and other pertinent information. Note that the 'default' field
34 * is named for generic forms, and does not represent the preference's default
35 * (which is stored in $wgDefaultUserOptions), but the default for the form
36 * field, which should be whatever the user has set for that preference. There
37 * is no need to override it unless you have some special storage logic (for
38 * instance, those not presently stored as options, but which are best set from
39 * the user preferences view).
40 *
41 * Field types are implemented as subclasses of the generic HTMLFormField
42 * object, and typically implement at least getInputHTML, which generates the
43 * HTML for the input field to be placed in the table.
44 *
45 * Once fields have been retrieved and validated, submission logic is handed
46 * over to the tryUISubmit static method of this class.
47 */
48 class Preferences {
49 /** @var array */
50 protected static $defaultPreferences = null;
51
52 /** @var array */
53 protected static $saveFilters = array(
54 'timecorrection' => array( 'Preferences', 'filterTimezoneInput' ),
55 'cols' => array( 'Preferences', 'filterIntval' ),
56 'rows' => array( 'Preferences', 'filterIntval' ),
57 'rclimit' => array( 'Preferences', 'filterIntval' ),
58 'wllimit' => array( 'Preferences', 'filterIntval' ),
59 'searchlimit' => array( 'Preferences', 'filterIntval' ),
60 );
61
62 // Stuff that shouldn't be saved as a preference.
63 private static $saveBlacklist = array(
64 'realname',
65 'emailaddress',
66 );
67
68 /**
69 * @return array
70 */
71 static function getSaveBlacklist() {
72 return self::$saveBlacklist;
73 }
74
75 /**
76 * @throws MWException
77 * @param User $user
78 * @param IContextSource $context
79 * @return array|null
80 */
81 static function getPreferences( $user, IContextSource $context ) {
82 if ( self::$defaultPreferences ) {
83 return self::$defaultPreferences;
84 }
85
86 $defaultPreferences = array();
87
88 self::profilePreferences( $user, $context, $defaultPreferences );
89 self::skinPreferences( $user, $context, $defaultPreferences );
90 self::datetimePreferences( $user, $context, $defaultPreferences );
91 self::filesPreferences( $user, $context, $defaultPreferences );
92 self::renderingPreferences( $user, $context, $defaultPreferences );
93 self::editingPreferences( $user, $context, $defaultPreferences );
94 self::rcPreferences( $user, $context, $defaultPreferences );
95 self::watchlistPreferences( $user, $context, $defaultPreferences );
96 self::searchPreferences( $user, $context, $defaultPreferences );
97 self::miscPreferences( $user, $context, $defaultPreferences );
98
99 Hooks::run( 'GetPreferences', array( $user, &$defaultPreferences ) );
100
101 self::loadPreferenceValues( $user, $context, $defaultPreferences );
102 self::$defaultPreferences = $defaultPreferences;
103 return $defaultPreferences;
104 }
105
106 /**
107 * Loads existing values for a given array of preferences
108 * @throws MWException
109 * @param User $user
110 * @param IContextSource $context
111 * @param array $defaultPreferences Array to load values for
112 * @return array|null
113 */
114 static function loadPreferenceValues( $user, $context, &$defaultPreferences ) {
115 ## Remove preferences that wikis don't want to use
116 foreach ( $context->getConfig()->get( 'HiddenPrefs' ) as $pref ) {
117 if ( isset( $defaultPreferences[$pref] ) ) {
118 unset( $defaultPreferences[$pref] );
119 }
120 }
121
122 ## Make sure that form fields have their parent set. See bug 41337.
123 $dummyForm = new HTMLForm( array(), $context );
124
125 $disable = !$user->isAllowed( 'editmyoptions' );
126
127 ## Prod in defaults from the user
128 foreach ( $defaultPreferences as $name => &$info ) {
129 $prefFromUser = self::getOptionFromUser( $name, $info, $user );
130 if ( $disable && !in_array( $name, self::$saveBlacklist ) ) {
131 $info['disabled'] = 'disabled';
132 }
133 $field = HTMLForm::loadInputFromParameters( $name, $info, $dummyForm ); // For validation
134 $defaultOptions = User::getDefaultOptions();
135 $globalDefault = isset( $defaultOptions[$name] )
136 ? $defaultOptions[$name]
137 : null;
138
139 // If it validates, set it as the default
140 if ( isset( $info['default'] ) ) {
141 // Already set, no problem
142 continue;
143 } elseif ( !is_null( $prefFromUser ) && // Make sure we're not just pulling nothing
144 $field->validate( $prefFromUser, $user->getOptions() ) === true ) {
145 $info['default'] = $prefFromUser;
146 } elseif ( $field->validate( $globalDefault, $user->getOptions() ) === true ) {
147 $info['default'] = $globalDefault;
148 } else {
149 throw new MWException( "Global default '$globalDefault' is invalid for field $name" );
150 }
151 }
152
153 return $defaultPreferences;
154 }
155
156 /**
157 * Pull option from a user account. Handles stuff like array-type preferences.
158 *
159 * @param string $name
160 * @param array $info
161 * @param User $user
162 * @return array|string
163 */
164 static function getOptionFromUser( $name, $info, $user ) {
165 $val = $user->getOption( $name );
166
167 // Handling for multiselect preferences
168 if ( ( isset( $info['type'] ) && $info['type'] == 'multiselect' ) ||
169 ( isset( $info['class'] ) && $info['class'] == 'HTMLMultiSelectField' ) ) {
170 $options = HTMLFormField::flattenOptions( $info['options'] );
171 $prefix = isset( $info['prefix'] ) ? $info['prefix'] : $name;
172 $val = array();
173
174 foreach ( $options as $value ) {
175 if ( $user->getOption( "$prefix$value" ) ) {
176 $val[] = $value;
177 }
178 }
179 }
180
181 // Handling for checkmatrix preferences
182 if ( ( isset( $info['type'] ) && $info['type'] == 'checkmatrix' ) ||
183 ( isset( $info['class'] ) && $info['class'] == 'HTMLCheckMatrix' ) ) {
184 $columns = HTMLFormField::flattenOptions( $info['columns'] );
185 $rows = HTMLFormField::flattenOptions( $info['rows'] );
186 $prefix = isset( $info['prefix'] ) ? $info['prefix'] : $name;
187 $val = array();
188
189 foreach ( $columns as $column ) {
190 foreach ( $rows as $row ) {
191 if ( $user->getOption( "$prefix$column-$row" ) ) {
192 $val[] = "$column-$row";
193 }
194 }
195 }
196 }
197
198 return $val;
199 }
200
201 /**
202 * @param User $user
203 * @param IContextSource $context
204 * @param array $defaultPreferences
205 * @return void
206 */
207 static function profilePreferences( $user, IContextSource $context, &$defaultPreferences ) {
208 global $wgAuth, $wgContLang, $wgParser;
209
210 $config = $context->getConfig();
211 // retrieving user name for GENDER and misc.
212 $userName = $user->getName();
213
214 ## User info #####################################
215 // Information panel
216 $defaultPreferences['username'] = array(
217 'type' => 'info',
218 'label-message' => array( 'username', $userName ),
219 'default' => $userName,
220 'section' => 'personal/info',
221 );
222
223 # Get groups to which the user belongs
224 $userEffectiveGroups = $user->getEffectiveGroups();
225 $userGroups = $userMembers = array();
226 foreach ( $userEffectiveGroups as $ueg ) {
227 if ( $ueg == '*' ) {
228 // Skip the default * group, seems useless here
229 continue;
230 }
231 $groupName = User::getGroupName( $ueg );
232 $userGroups[] = User::makeGroupLinkHTML( $ueg, $groupName );
233
234 $memberName = User::getGroupMember( $ueg, $userName );
235 $userMembers[] = User::makeGroupLinkHTML( $ueg, $memberName );
236 }
237 asort( $userGroups );
238 asort( $userMembers );
239
240 $lang = $context->getLanguage();
241
242 $defaultPreferences['usergroups'] = array(
243 'type' => 'info',
244 'label' => $context->msg( 'prefs-memberingroups' )->numParams(
245 count( $userGroups ) )->params( $userName )->parse(),
246 'default' => $context->msg( 'prefs-memberingroups-type' )
247 ->rawParams( $lang->commaList( $userGroups ), $lang->commaList( $userMembers ) )
248 ->escaped(),
249 'raw' => true,
250 'section' => 'personal/info',
251 );
252
253 $editCount = Linker::link( SpecialPage::getTitleFor( "Contributions", $userName ),
254 $lang->formatNum( $user->getEditCount() ) );
255
256 $defaultPreferences['editcount'] = array(
257 'type' => 'info',
258 'raw' => true,
259 'label-message' => 'prefs-edits',
260 'default' => $editCount,
261 'section' => 'personal/info',
262 );
263
264 if ( $user->getRegistration() ) {
265 $displayUser = $context->getUser();
266 $userRegistration = $user->getRegistration();
267 $defaultPreferences['registrationdate'] = array(
268 'type' => 'info',
269 'label-message' => 'prefs-registration',
270 'default' => $context->msg(
271 'prefs-registration-date-time',
272 $lang->userTimeAndDate( $userRegistration, $displayUser ),
273 $lang->userDate( $userRegistration, $displayUser ),
274 $lang->userTime( $userRegistration, $displayUser )
275 )->parse(),
276 'section' => 'personal/info',
277 );
278 }
279
280 $canViewPrivateInfo = $user->isAllowed( 'viewmyprivateinfo' );
281 $canEditPrivateInfo = $user->isAllowed( 'editmyprivateinfo' );
282
283 // Actually changeable stuff
284 $defaultPreferences['realname'] = array(
285 // (not really "private", but still shouldn't be edited without permission)
286 'type' => $canEditPrivateInfo && $wgAuth->allowPropChange( 'realname' ) ? 'text' : 'info',
287 'default' => $user->getRealName(),
288 'section' => 'personal/info',
289 'label-message' => 'yourrealname',
290 'help-message' => 'prefs-help-realname',
291 );
292
293 if ( $canEditPrivateInfo && $wgAuth->allowPasswordChange() ) {
294 $link = Linker::link( SpecialPage::getTitleFor( 'ChangePassword' ),
295 $context->msg( 'prefs-resetpass' )->escaped(), array(),
296 array( 'returnto' => SpecialPage::getTitleFor( 'Preferences' )->getPrefixedText() ) );
297
298 $defaultPreferences['password'] = array(
299 'type' => 'info',
300 'raw' => true,
301 'default' => $link,
302 'label-message' => 'yourpassword',
303 'section' => 'personal/info',
304 );
305 }
306 // Only show prefershttps if secure login is turned on
307 if ( $config->get( 'SecureLogin' ) && wfCanIPUseHTTPS( $context->getRequest()->getIP() ) ) {
308 $defaultPreferences['prefershttps'] = array(
309 'type' => 'toggle',
310 'label-message' => 'tog-prefershttps',
311 'help-message' => 'prefs-help-prefershttps',
312 'section' => 'personal/info'
313 );
314 }
315
316 // Language
317 $languages = Language::fetchLanguageNames( null, 'mw' );
318 $languageCode = $config->get( 'LanguageCode' );
319 if ( !array_key_exists( $languageCode, $languages ) ) {
320 $languages[$languageCode] = $languageCode;
321 }
322 ksort( $languages );
323
324 $options = array();
325 foreach ( $languages as $code => $name ) {
326 $display = wfBCP47( $code ) . ' - ' . $name;
327 $options[$display] = $code;
328 }
329 $defaultPreferences['language'] = array(
330 'type' => 'select',
331 'section' => 'personal/i18n',
332 'options' => $options,
333 'label-message' => 'yourlanguage',
334 );
335
336 $defaultPreferences['gender'] = array(
337 'type' => 'radio',
338 'section' => 'personal/i18n',
339 'options' => array(
340 $context->msg( 'parentheses' )
341 ->params( $context->msg( 'gender-unknown' )->plain() )
342 ->escaped() => 'unknown',
343 $context->msg( 'gender-female' )->escaped() => 'female',
344 $context->msg( 'gender-male' )->escaped() => 'male',
345 ),
346 'label-message' => 'yourgender',
347 'help-message' => 'prefs-help-gender',
348 );
349
350 // see if there are multiple language variants to choose from
351 if ( !$config->get( 'DisableLangConversion' ) ) {
352 foreach ( LanguageConverter::$languagesWithVariants as $langCode ) {
353 if ( $langCode == $wgContLang->getCode() ) {
354 $variants = $wgContLang->getVariants();
355
356 if ( count( $variants ) <= 1 ) {
357 continue;
358 }
359
360 $variantArray = array();
361 foreach ( $variants as $v ) {
362 $v = str_replace( '_', '-', strtolower( $v ) );
363 $variantArray[$v] = $lang->getVariantname( $v, false );
364 }
365
366 $options = array();
367 foreach ( $variantArray as $code => $name ) {
368 $display = wfBCP47( $code ) . ' - ' . $name;
369 $options[$display] = $code;
370 }
371
372 $defaultPreferences['variant'] = array(
373 'label-message' => 'yourvariant',
374 'type' => 'select',
375 'options' => $options,
376 'section' => 'personal/i18n',
377 'help-message' => 'prefs-help-variant',
378 );
379 } else {
380 $defaultPreferences["variant-$langCode"] = array(
381 'type' => 'api',
382 );
383 }
384 }
385 }
386
387 // Stuff from Language::getExtraUserToggles()
388 // FIXME is this dead code? $extraUserToggles doesn't seem to be defined for any language
389 $toggles = $wgContLang->getExtraUserToggles();
390
391 foreach ( $toggles as $toggle ) {
392 $defaultPreferences[$toggle] = array(
393 'type' => 'toggle',
394 'section' => 'personal/i18n',
395 'label-message' => "tog-$toggle",
396 );
397 }
398
399 // show a preview of the old signature first
400 $oldsigWikiText = $wgParser->preSaveTransform(
401 '~~~',
402 $context->getTitle(),
403 $user,
404 ParserOptions::newFromContext( $context )
405 );
406 $oldsigHTML = $context->getOutput()->parseInline( $oldsigWikiText, true, true );
407 $defaultPreferences['oldsig'] = array(
408 'type' => 'info',
409 'raw' => true,
410 'label-message' => 'tog-oldsig',
411 'default' => $oldsigHTML,
412 'section' => 'personal/signature',
413 );
414 $defaultPreferences['nickname'] = array(
415 'type' => $wgAuth->allowPropChange( 'nickname' ) ? 'text' : 'info',
416 'maxlength' => $config->get( 'MaxSigChars' ),
417 'label-message' => 'yournick',
418 'validation-callback' => array( 'Preferences', 'validateSignature' ),
419 'section' => 'personal/signature',
420 'filter-callback' => array( 'Preferences', 'cleanSignature' ),
421 );
422 $defaultPreferences['fancysig'] = array(
423 'type' => 'toggle',
424 'label-message' => 'tog-fancysig',
425 // show general help about signature at the bottom of the section
426 'help-message' => 'prefs-help-signature',
427 'section' => 'personal/signature'
428 );
429
430 ## Email stuff
431
432 if ( $config->get( 'EnableEmail' ) ) {
433 if ( $canViewPrivateInfo ) {
434 $helpMessages[] = $config->get( 'EmailConfirmToEdit' )
435 ? 'prefs-help-email-required'
436 : 'prefs-help-email';
437
438 if ( $config->get( 'EnableUserEmail' ) ) {
439 // additional messages when users can send email to each other
440 $helpMessages[] = 'prefs-help-email-others';
441 }
442
443 $emailAddress = $user->getEmail() ? htmlspecialchars( $user->getEmail() ) : '';
444 if ( $canEditPrivateInfo && $wgAuth->allowPropChange( 'emailaddress' ) ) {
445 $link = Linker::link(
446 SpecialPage::getTitleFor( 'ChangeEmail' ),
447 $context->msg( $user->getEmail() ? 'prefs-changeemail' : 'prefs-setemail' )->escaped(),
448 array(),
449 array( 'returnto' => SpecialPage::getTitleFor( 'Preferences' )->getPrefixedText() ) );
450
451 $emailAddress .= $emailAddress == '' ? $link : (
452 $context->msg( 'word-separator' )->escaped()
453 . $context->msg( 'parentheses' )->rawParams( $link )->escaped()
454 );
455 }
456
457 $defaultPreferences['emailaddress'] = array(
458 'type' => 'info',
459 'raw' => true,
460 'default' => $emailAddress,
461 'label-message' => 'youremail',
462 'section' => 'personal/email',
463 'help-messages' => $helpMessages,
464 # 'cssclass' chosen below
465 );
466 }
467
468 $disableEmailPrefs = false;
469
470 if ( $config->get( 'EmailAuthentication' ) ) {
471 $emailauthenticationclass = 'mw-email-not-authenticated';
472 if ( $user->getEmail() ) {
473 if ( $user->getEmailAuthenticationTimestamp() ) {
474 // date and time are separate parameters to facilitate localisation.
475 // $time is kept for backward compat reasons.
476 // 'emailauthenticated' is also used in SpecialConfirmemail.php
477 $displayUser = $context->getUser();
478 $emailTimestamp = $user->getEmailAuthenticationTimestamp();
479 $time = $lang->userTimeAndDate( $emailTimestamp, $displayUser );
480 $d = $lang->userDate( $emailTimestamp, $displayUser );
481 $t = $lang->userTime( $emailTimestamp, $displayUser );
482 $emailauthenticated = $context->msg( 'emailauthenticated',
483 $time, $d, $t )->parse() . '<br />';
484 $disableEmailPrefs = false;
485 $emailauthenticationclass = 'mw-email-authenticated';
486 } else {
487 $disableEmailPrefs = true;
488 $emailauthenticated = $context->msg( 'emailnotauthenticated' )->parse() . '<br />' .
489 Linker::linkKnown(
490 SpecialPage::getTitleFor( 'Confirmemail' ),
491 $context->msg( 'emailconfirmlink' )->escaped()
492 ) . '<br />';
493 $emailauthenticationclass = "mw-email-not-authenticated";
494 }
495 } else {
496 $disableEmailPrefs = true;
497 $emailauthenticated = $context->msg( 'noemailprefs' )->escaped();
498 $emailauthenticationclass = 'mw-email-none';
499 }
500
501 if ( $canViewPrivateInfo ) {
502 $defaultPreferences['emailauthentication'] = array(
503 'type' => 'info',
504 'raw' => true,
505 'section' => 'personal/email',
506 'label-message' => 'prefs-emailconfirm-label',
507 'default' => $emailauthenticated,
508 # Apply the same CSS class used on the input to the message:
509 'cssclass' => $emailauthenticationclass,
510 );
511 $defaultPreferences['emailaddress']['cssclass'] = $emailauthenticationclass;
512 }
513 }
514
515 if ( $config->get( 'EnableUserEmail' ) && $user->isAllowed( 'sendemail' ) ) {
516 $defaultPreferences['disablemail'] = array(
517 'type' => 'toggle',
518 'invert' => true,
519 'section' => 'personal/email',
520 'label-message' => 'allowemail',
521 'disabled' => $disableEmailPrefs,
522 );
523 $defaultPreferences['ccmeonemails'] = array(
524 'type' => 'toggle',
525 'section' => 'personal/email',
526 'label-message' => 'tog-ccmeonemails',
527 'disabled' => $disableEmailPrefs,
528 );
529 }
530
531 if ( $config->get( 'EnotifWatchlist' ) ) {
532 $defaultPreferences['enotifwatchlistpages'] = array(
533 'type' => 'toggle',
534 'section' => 'personal/email',
535 'label-message' => 'tog-enotifwatchlistpages',
536 'disabled' => $disableEmailPrefs,
537 );
538 }
539 if ( $config->get( 'EnotifUserTalk' ) ) {
540 $defaultPreferences['enotifusertalkpages'] = array(
541 'type' => 'toggle',
542 'section' => 'personal/email',
543 'label-message' => 'tog-enotifusertalkpages',
544 'disabled' => $disableEmailPrefs,
545 );
546 }
547 if ( $config->get( 'EnotifUserTalk' ) || $config->get( 'EnotifWatchlist' ) ) {
548 $defaultPreferences['enotifminoredits'] = array(
549 'type' => 'toggle',
550 'section' => 'personal/email',
551 'label-message' => 'tog-enotifminoredits',
552 'disabled' => $disableEmailPrefs,
553 );
554
555 if ( $config->get( 'EnotifRevealEditorAddress' ) ) {
556 $defaultPreferences['enotifrevealaddr'] = array(
557 'type' => 'toggle',
558 'section' => 'personal/email',
559 'label-message' => 'tog-enotifrevealaddr',
560 'disabled' => $disableEmailPrefs,
561 );
562 }
563 }
564 }
565 }
566
567 /**
568 * @param User $user
569 * @param IContextSource $context
570 * @param array $defaultPreferences
571 * @return void
572 */
573 static function skinPreferences( $user, IContextSource $context, &$defaultPreferences ) {
574 ## Skin #####################################
575
576 // Skin selector, if there is at least one valid skin
577 $skinOptions = self::generateSkinOptions( $user, $context );
578 if ( $skinOptions ) {
579 $defaultPreferences['skin'] = array(
580 'type' => 'radio',
581 'options' => $skinOptions,
582 'label' => '&#160;',
583 'section' => 'rendering/skin',
584 );
585 }
586
587 $config = $context->getConfig();
588 $allowUserCss = $config->get( 'AllowUserCss' );
589 $allowUserJs = $config->get( 'AllowUserJs' );
590 # Create links to user CSS/JS pages for all skins
591 # This code is basically copied from generateSkinOptions(). It'd
592 # be nice to somehow merge this back in there to avoid redundancy.
593 if ( $allowUserCss || $allowUserJs ) {
594 $linkTools = array();
595 $userName = $user->getName();
596
597 if ( $allowUserCss ) {
598 $cssPage = Title::makeTitleSafe( NS_USER, $userName . '/common.css' );
599 $linkTools[] = Linker::link( $cssPage, $context->msg( 'prefs-custom-css' )->escaped() );
600 }
601
602 if ( $allowUserJs ) {
603 $jsPage = Title::makeTitleSafe( NS_USER, $userName . '/common.js' );
604 $linkTools[] = Linker::link( $jsPage, $context->msg( 'prefs-custom-js' )->escaped() );
605 }
606
607 $defaultPreferences['commoncssjs'] = array(
608 'type' => 'info',
609 'raw' => true,
610 'default' => $context->getLanguage()->pipeList( $linkTools ),
611 'label-message' => 'prefs-common-css-js',
612 'section' => 'rendering/skin',
613 );
614 }
615 }
616
617 /**
618 * @param User $user
619 * @param IContextSource $context
620 * @param array $defaultPreferences
621 */
622 static function filesPreferences( $user, IContextSource $context, &$defaultPreferences ) {
623 ## Files #####################################
624 $defaultPreferences['imagesize'] = array(
625 'type' => 'select',
626 'options' => self::getImageSizes( $context ),
627 'label-message' => 'imagemaxsize',
628 'section' => 'rendering/files',
629 );
630 $defaultPreferences['thumbsize'] = array(
631 'type' => 'select',
632 'options' => self::getThumbSizes( $context ),
633 'label-message' => 'thumbsize',
634 'section' => 'rendering/files',
635 );
636 }
637
638 /**
639 * @param User $user
640 * @param IContextSource $context
641 * @param array $defaultPreferences
642 * @return void
643 */
644 static function datetimePreferences( $user, IContextSource $context, &$defaultPreferences ) {
645 ## Date and time #####################################
646 $dateOptions = self::getDateOptions( $context );
647 if ( $dateOptions ) {
648 $defaultPreferences['date'] = array(
649 'type' => 'radio',
650 'options' => $dateOptions,
651 'label' => '&#160;',
652 'section' => 'rendering/dateformat',
653 );
654 }
655
656 // Info
657 $now = wfTimestampNow();
658 $lang = $context->getLanguage();
659 $nowlocal = Xml::element( 'span', array( 'id' => 'wpLocalTime' ),
660 $lang->time( $now, true ) );
661 $nowserver = $lang->time( $now, false ) .
662 Html::hidden( 'wpServerTime', (int)substr( $now, 8, 2 ) * 60 + (int)substr( $now, 10, 2 ) );
663
664 $defaultPreferences['nowserver'] = array(
665 'type' => 'info',
666 'raw' => 1,
667 'label-message' => 'servertime',
668 'default' => $nowserver,
669 'section' => 'rendering/timeoffset',
670 );
671
672 $defaultPreferences['nowlocal'] = array(
673 'type' => 'info',
674 'raw' => 1,
675 'label-message' => 'localtime',
676 'default' => $nowlocal,
677 'section' => 'rendering/timeoffset',
678 );
679
680 // Grab existing pref.
681 $tzOffset = $user->getOption( 'timecorrection' );
682 $tz = explode( '|', $tzOffset, 3 );
683
684 $tzOptions = self::getTimezoneOptions( $context );
685
686 $tzSetting = $tzOffset;
687 if ( count( $tz ) > 1 && $tz[0] == 'Offset' ) {
688 $minDiff = $tz[1];
689 $tzSetting = sprintf( '%+03d:%02d', floor( $minDiff / 60 ), abs( $minDiff ) % 60 );
690 } elseif ( count( $tz ) > 1 && $tz[0] == 'ZoneInfo' &&
691 !in_array( $tzOffset, HTMLFormField::flattenOptions( $tzOptions ) )
692 ) {
693 # Timezone offset can vary with DST
694 $userTZ = timezone_open( $tz[2] );
695 if ( $userTZ !== false ) {
696 $minDiff = floor( timezone_offset_get( $userTZ, date_create( 'now' ) ) / 60 );
697 $tzSetting = "ZoneInfo|$minDiff|{$tz[2]}";
698 }
699 }
700
701 $defaultPreferences['timecorrection'] = array(
702 'class' => 'HTMLSelectOrOtherField',
703 'label-message' => 'timezonelegend',
704 'options' => $tzOptions,
705 'default' => $tzSetting,
706 'size' => 20,
707 'section' => 'rendering/timeoffset',
708 );
709 }
710
711 /**
712 * @param User $user
713 * @param IContextSource $context
714 * @param array $defaultPreferences
715 */
716 static function renderingPreferences( $user, IContextSource $context, &$defaultPreferences ) {
717 ## Diffs ####################################
718 $defaultPreferences['diffonly'] = array(
719 'type' => 'toggle',
720 'section' => 'rendering/diffs',
721 'label-message' => 'tog-diffonly',
722 );
723 $defaultPreferences['norollbackdiff'] = array(
724 'type' => 'toggle',
725 'section' => 'rendering/diffs',
726 'label-message' => 'tog-norollbackdiff',
727 );
728
729 ## Page Rendering ##############################
730 if ( $context->getConfig()->get( 'AllowUserCssPrefs' ) ) {
731 $defaultPreferences['underline'] = array(
732 'type' => 'select',
733 'options' => array(
734 $context->msg( 'underline-never' )->text() => 0,
735 $context->msg( 'underline-always' )->text() => 1,
736 $context->msg( 'underline-default' )->text() => 2,
737 ),
738 'label-message' => 'tog-underline',
739 'section' => 'rendering/advancedrendering',
740 );
741 }
742
743 $stubThresholdValues = array( 50, 100, 500, 1000, 2000, 5000, 10000 );
744 $stubThresholdOptions = array( $context->msg( 'stub-threshold-disabled' )->text() => 0 );
745 foreach ( $stubThresholdValues as $value ) {
746 $stubThresholdOptions[$context->msg( 'size-bytes', $value )->text()] = $value;
747 }
748
749 $defaultPreferences['stubthreshold'] = array(
750 'type' => 'select',
751 'section' => 'rendering/advancedrendering',
752 'options' => $stubThresholdOptions,
753 'label-raw' => $context->msg( 'stub-threshold' )->text(), // Raw HTML message. Yay?
754 );
755
756 $defaultPreferences['showhiddencats'] = array(
757 'type' => 'toggle',
758 'section' => 'rendering/advancedrendering',
759 'label-message' => 'tog-showhiddencats'
760 );
761
762 $defaultPreferences['numberheadings'] = array(
763 'type' => 'toggle',
764 'section' => 'rendering/advancedrendering',
765 'label-message' => 'tog-numberheadings',
766 );
767 }
768
769 /**
770 * @param User $user
771 * @param IContextSource $context
772 * @param array $defaultPreferences
773 */
774 static function editingPreferences( $user, IContextSource $context, &$defaultPreferences ) {
775 ## Editing #####################################
776 $defaultPreferences['editsectiononrightclick'] = array(
777 'type' => 'toggle',
778 'section' => 'editing/advancedediting',
779 'label-message' => 'tog-editsectiononrightclick',
780 );
781 $defaultPreferences['editondblclick'] = array(
782 'type' => 'toggle',
783 'section' => 'editing/advancedediting',
784 'label-message' => 'tog-editondblclick',
785 );
786
787 if ( $context->getConfig()->get( 'AllowUserCssPrefs' ) ) {
788 $defaultPreferences['editfont'] = array(
789 'type' => 'select',
790 'section' => 'editing/editor',
791 'label-message' => 'editfont-style',
792 'options' => array(
793 $context->msg( 'editfont-default' )->text() => 'default',
794 $context->msg( 'editfont-monospace' )->text() => 'monospace',
795 $context->msg( 'editfont-sansserif' )->text() => 'sans-serif',
796 $context->msg( 'editfont-serif' )->text() => 'serif',
797 )
798 );
799 }
800 $defaultPreferences['cols'] = array(
801 'type' => 'int',
802 'label-message' => 'columns',
803 'section' => 'editing/editor',
804 'min' => 4,
805 'max' => 1000,
806 );
807 $defaultPreferences['rows'] = array(
808 'type' => 'int',
809 'label-message' => 'rows',
810 'section' => 'editing/editor',
811 'min' => 4,
812 'max' => 1000,
813 );
814 if ( $user->isAllowed( 'minoredit' ) ) {
815 $defaultPreferences['minordefault'] = array(
816 'type' => 'toggle',
817 'section' => 'editing/editor',
818 'label-message' => 'tog-minordefault',
819 );
820 }
821 $defaultPreferences['forceeditsummary'] = array(
822 'type' => 'toggle',
823 'section' => 'editing/editor',
824 'label-message' => 'tog-forceeditsummary',
825 );
826 $defaultPreferences['useeditwarning'] = array(
827 'type' => 'toggle',
828 'section' => 'editing/editor',
829 'label-message' => 'tog-useeditwarning',
830 );
831 $defaultPreferences['showtoolbar'] = array(
832 'type' => 'toggle',
833 'section' => 'editing/editor',
834 'label-message' => 'tog-showtoolbar',
835 );
836
837 $defaultPreferences['previewonfirst'] = array(
838 'type' => 'toggle',
839 'section' => 'editing/preview',
840 'label-message' => 'tog-previewonfirst',
841 );
842 $defaultPreferences['previewontop'] = array(
843 'type' => 'toggle',
844 'section' => 'editing/preview',
845 'label-message' => 'tog-previewontop',
846 );
847 $defaultPreferences['uselivepreview'] = array(
848 'type' => 'toggle',
849 'section' => 'editing/preview',
850 'label-message' => 'tog-uselivepreview',
851 );
852
853 }
854
855 /**
856 * @param User $user
857 * @param IContextSource $context
858 * @param array $defaultPreferences
859 */
860 static function rcPreferences( $user, IContextSource $context, &$defaultPreferences ) {
861 $config = $context->getConfig();
862 $rcMaxAge = $config->get( 'RCMaxAge' );
863 ## RecentChanges #####################################
864 $defaultPreferences['rcdays'] = array(
865 'type' => 'float',
866 'label-message' => 'recentchangesdays',
867 'section' => 'rc/displayrc',
868 'min' => 1,
869 'max' => ceil( $rcMaxAge / ( 3600 * 24 ) ),
870 'help' => $context->msg( 'recentchangesdays-max' )->numParams(
871 ceil( $rcMaxAge / ( 3600 * 24 ) ) )->escaped()
872 );
873 $defaultPreferences['rclimit'] = array(
874 'type' => 'int',
875 'label-message' => 'recentchangescount',
876 'help-message' => 'prefs-help-recentchangescount',
877 'section' => 'rc/displayrc',
878 );
879 $defaultPreferences['usenewrc'] = array(
880 'type' => 'toggle',
881 'label-message' => 'tog-usenewrc',
882 'section' => 'rc/advancedrc',
883 );
884 $defaultPreferences['hideminor'] = array(
885 'type' => 'toggle',
886 'label-message' => 'tog-hideminor',
887 'section' => 'rc/advancedrc',
888 );
889
890 if ( $user->useRCPatrol() ) {
891 $defaultPreferences['hidepatrolled'] = array(
892 'type' => 'toggle',
893 'section' => 'rc/advancedrc',
894 'label-message' => 'tog-hidepatrolled',
895 );
896 $defaultPreferences['newpageshidepatrolled'] = array(
897 'type' => 'toggle',
898 'section' => 'rc/advancedrc',
899 'label-message' => 'tog-newpageshidepatrolled',
900 );
901 }
902
903 if ( $config->get( 'RCShowWatchingUsers' ) ) {
904 $defaultPreferences['shownumberswatching'] = array(
905 'type' => 'toggle',
906 'section' => 'rc/advancedrc',
907 'label-message' => 'tog-shownumberswatching',
908 );
909 }
910 }
911
912 /**
913 * @param User $user
914 * @param IContextSource $context
915 * @param array $defaultPreferences
916 */
917 static function watchlistPreferences( $user, IContextSource $context, &$defaultPreferences ) {
918 $config = $context->getConfig();
919 $watchlistdaysMax = ceil( $config->get( 'RCMaxAge' ) / ( 3600 * 24 ) );
920
921 ## Watchlist #####################################
922 if ( $user->isAllowed( 'editmywatchlist' ) ) {
923 $editWatchlistLinks = array();
924 $editWatchlistModes = array(
925 'edit' => array( 'EditWatchlist', false ),
926 'raw' => array( 'EditWatchlist', 'raw' ),
927 'clear' => array( 'EditWatchlist', 'clear' ),
928 );
929 foreach ( $editWatchlistModes as $editWatchlistMode => $mode ) {
930 // Messages: prefs-editwatchlist-edit, prefs-editwatchlist-raw, prefs-editwatchlist-clear
931 $editWatchlistLinks[] = Linker::linkKnown(
932 SpecialPage::getTitleFor( $mode[0], $mode[1] ),
933 $context->msg( "prefs-editwatchlist-{$editWatchlistMode}" )->parse()
934 );
935 }
936
937 $defaultPreferences['editwatchlist'] = array(
938 'type' => 'info',
939 'raw' => true,
940 'default' => $context->getLanguage()->pipeList( $editWatchlistLinks ),
941 'label-message' => 'prefs-editwatchlist-label',
942 'section' => 'watchlist/editwatchlist',
943 );
944 }
945
946 $defaultPreferences['watchlistdays'] = array(
947 'type' => 'float',
948 'min' => 0,
949 'max' => $watchlistdaysMax,
950 'section' => 'watchlist/displaywatchlist',
951 'help' => $context->msg( 'prefs-watchlist-days-max' )->numParams(
952 $watchlistdaysMax )->escaped(),
953 'label-message' => 'prefs-watchlist-days',
954 );
955 $defaultPreferences['wllimit'] = array(
956 'type' => 'int',
957 'min' => 0,
958 'max' => 1000,
959 'label-message' => 'prefs-watchlist-edits',
960 'help' => $context->msg( 'prefs-watchlist-edits-max' )->escaped(),
961 'section' => 'watchlist/displaywatchlist',
962 );
963 $defaultPreferences['extendwatchlist'] = array(
964 'type' => 'toggle',
965 'section' => 'watchlist/advancedwatchlist',
966 'label-message' => 'tog-extendwatchlist',
967 );
968 $defaultPreferences['watchlisthideminor'] = array(
969 'type' => 'toggle',
970 'section' => 'watchlist/advancedwatchlist',
971 'label-message' => 'tog-watchlisthideminor',
972 );
973 $defaultPreferences['watchlisthidebots'] = array(
974 'type' => 'toggle',
975 'section' => 'watchlist/advancedwatchlist',
976 'label-message' => 'tog-watchlisthidebots',
977 );
978 $defaultPreferences['watchlisthideown'] = array(
979 'type' => 'toggle',
980 'section' => 'watchlist/advancedwatchlist',
981 'label-message' => 'tog-watchlisthideown',
982 );
983 $defaultPreferences['watchlisthideanons'] = array(
984 'type' => 'toggle',
985 'section' => 'watchlist/advancedwatchlist',
986 'label-message' => 'tog-watchlisthideanons',
987 );
988 $defaultPreferences['watchlisthideliu'] = array(
989 'type' => 'toggle',
990 'section' => 'watchlist/advancedwatchlist',
991 'label-message' => 'tog-watchlisthideliu',
992 );
993
994 if ( $context->getConfig()->get( 'UseRCPatrol' ) ) {
995 $defaultPreferences['watchlisthidepatrolled'] = array(
996 'type' => 'toggle',
997 'section' => 'watchlist/advancedwatchlist',
998 'label-message' => 'tog-watchlisthidepatrolled',
999 );
1000 }
1001
1002 $watchTypes = array(
1003 'edit' => 'watchdefault',
1004 'move' => 'watchmoves',
1005 'delete' => 'watchdeletion'
1006 );
1007
1008 // Kinda hacky
1009 if ( $user->isAllowed( 'createpage' ) || $user->isAllowed( 'createtalk' ) ) {
1010 $watchTypes['read'] = 'watchcreations';
1011 }
1012
1013 if ( $user->isAllowed( 'rollback' ) ) {
1014 $watchTypes['rollback'] = 'watchrollback';
1015 }
1016
1017 foreach ( $watchTypes as $action => $pref ) {
1018 if ( $user->isAllowed( $action ) ) {
1019 // Messages:
1020 // tog-watchdefault, tog-watchmoves, tog-watchdeletion, tog-watchcreations
1021 // tog-watchrollback
1022 $defaultPreferences[$pref] = array(
1023 'type' => 'toggle',
1024 'section' => 'watchlist/advancedwatchlist',
1025 'label-message' => "tog-$pref",
1026 );
1027 }
1028 }
1029
1030 if ( $config->get( 'EnableAPI' ) ) {
1031 $defaultPreferences['watchlisttoken'] = array(
1032 'type' => 'api',
1033 );
1034 $defaultPreferences['watchlisttoken-info'] = array(
1035 'type' => 'info',
1036 'section' => 'watchlist/tokenwatchlist',
1037 'label-message' => 'prefs-watchlist-token',
1038 'default' => $user->getTokenFromOption( 'watchlisttoken' ),
1039 'help-message' => 'prefs-help-watchlist-token2',
1040 );
1041 }
1042 }
1043
1044 /**
1045 * @param User $user
1046 * @param IContextSource $context
1047 * @param array $defaultPreferences
1048 */
1049 static function searchPreferences( $user, IContextSource $context, &$defaultPreferences ) {
1050 foreach ( MWNamespace::getValidNamespaces() as $n ) {
1051 $defaultPreferences['searchNs' . $n] = array(
1052 'type' => 'api',
1053 );
1054 }
1055 }
1056
1057 /**
1058 * Dummy, kept for backwards-compatibility.
1059 */
1060 static function miscPreferences( $user, IContextSource $context, &$defaultPreferences ) {
1061 }
1062
1063 /**
1064 * @param User $user The User object
1065 * @param IContextSource $context
1066 * @return array Text/links to display as key; $skinkey as value
1067 */
1068 static function generateSkinOptions( $user, IContextSource $context ) {
1069 $ret = array();
1070
1071 $mptitle = Title::newMainPage();
1072 $previewtext = $context->msg( 'skin-preview' )->escaped();
1073
1074 # Only show skins that aren't disabled in $wgSkipSkins
1075 $validSkinNames = Skin::getAllowedSkins();
1076
1077 # Sort by UI skin name. First though need to update validSkinNames as sometimes
1078 # the skinkey & UI skinname differ (e.g. "standard" skinkey is "Classic" in the UI).
1079 foreach ( $validSkinNames as $skinkey => &$skinname ) {
1080 $msg = $context->msg( "skinname-{$skinkey}" );
1081 if ( $msg->exists() ) {
1082 $skinname = htmlspecialchars( $msg->text() );
1083 }
1084 }
1085 asort( $validSkinNames );
1086
1087 $config = $context->getConfig();
1088 $defaultSkin = $config->get( 'DefaultSkin' );
1089 $allowUserCss = $config->get( 'AllowUserCss' );
1090 $allowUserJs = $config->get( 'AllowUserJs' );
1091
1092 $foundDefault = false;
1093 foreach ( $validSkinNames as $skinkey => $sn ) {
1094 $linkTools = array();
1095
1096 # Mark the default skin
1097 if ( $skinkey == $defaultSkin ) {
1098 $linkTools[] = $context->msg( 'default' )->escaped();
1099 $foundDefault = true;
1100 }
1101
1102 # Create preview link
1103 $mplink = htmlspecialchars( $mptitle->getLocalURL( array( 'useskin' => $skinkey ) ) );
1104 $linkTools[] = "<a target='_blank' href=\"$mplink\">$previewtext</a>";
1105
1106 # Create links to user CSS/JS pages
1107 if ( $allowUserCss ) {
1108 $cssPage = Title::makeTitleSafe( NS_USER, $user->getName() . '/' . $skinkey . '.css' );
1109 $linkTools[] = Linker::link( $cssPage, $context->msg( 'prefs-custom-css' )->escaped() );
1110 }
1111
1112 if ( $allowUserJs ) {
1113 $jsPage = Title::makeTitleSafe( NS_USER, $user->getName() . '/' . $skinkey . '.js' );
1114 $linkTools[] = Linker::link( $jsPage, $context->msg( 'prefs-custom-js' )->escaped() );
1115 }
1116
1117 $display = $sn . ' ' . $context->msg( 'parentheses' )
1118 ->rawParams( $context->getLanguage()->pipeList( $linkTools ) )
1119 ->escaped();
1120 $ret[$display] = $skinkey;
1121 }
1122
1123 if ( !$foundDefault ) {
1124 // If the default skin is not available, things are going to break horribly because the
1125 // default value for skin selector will not be a valid value. Let's just not show it then.
1126 return array();
1127 }
1128
1129 return $ret;
1130 }
1131
1132 /**
1133 * @param IContextSource $context
1134 * @return array
1135 */
1136 static function getDateOptions( IContextSource $context ) {
1137 $lang = $context->getLanguage();
1138 $dateopts = $lang->getDatePreferences();
1139
1140 $ret = array();
1141
1142 if ( $dateopts ) {
1143 if ( !in_array( 'default', $dateopts ) ) {
1144 $dateopts[] = 'default'; // Make sure default is always valid
1145 // Bug 19237
1146 }
1147
1148 // FIXME KLUGE: site default might not be valid for user language
1149 global $wgDefaultUserOptions;
1150 if ( !in_array( $wgDefaultUserOptions['date'], $dateopts ) ) {
1151 $wgDefaultUserOptions['date'] = 'default';
1152 }
1153
1154 $epoch = wfTimestampNow();
1155 foreach ( $dateopts as $key ) {
1156 if ( $key == 'default' ) {
1157 $formatted = $context->msg( 'datedefault' )->escaped();
1158 } else {
1159 $formatted = htmlspecialchars( $lang->timeanddate( $epoch, false, $key ) );
1160 }
1161 $ret[$formatted] = $key;
1162 }
1163 }
1164 return $ret;
1165 }
1166
1167 /**
1168 * @param IContextSource $context
1169 * @return array
1170 */
1171 static function getImageSizes( IContextSource $context ) {
1172 $ret = array();
1173 $pixels = $context->msg( 'unit-pixel' )->text();
1174
1175 foreach ( $context->getConfig()->get( 'ImageLimits' ) as $index => $limits ) {
1176 $display = "{$limits[0]}×{$limits[1]}" . $pixels;
1177 $ret[$display] = $index;
1178 }
1179
1180 return $ret;
1181 }
1182
1183 /**
1184 * @param IContextSource $context
1185 * @return array
1186 */
1187 static function getThumbSizes( IContextSource $context ) {
1188 $ret = array();
1189 $pixels = $context->msg( 'unit-pixel' )->text();
1190
1191 foreach ( $context->getConfig()->get( 'ThumbLimits' ) as $index => $size ) {
1192 $display = $size . $pixels;
1193 $ret[$display] = $index;
1194 }
1195
1196 return $ret;
1197 }
1198
1199 /**
1200 * @param string $signature
1201 * @param array $alldata
1202 * @param HTMLForm $form
1203 * @return bool|string
1204 */
1205 static function validateSignature( $signature, $alldata, $form ) {
1206 global $wgParser;
1207 $maxSigChars = $form->getConfig()->get( 'MaxSigChars' );
1208 if ( mb_strlen( $signature ) > $maxSigChars ) {
1209 return Xml::element( 'span', array( 'class' => 'error' ),
1210 $form->msg( 'badsiglength' )->numParams( $maxSigChars )->text() );
1211 } elseif ( isset( $alldata['fancysig'] ) &&
1212 $alldata['fancysig'] &&
1213 $wgParser->validateSig( $signature ) === false
1214 ) {
1215 return Xml::element(
1216 'span',
1217 array( 'class' => 'error' ),
1218 $form->msg( 'badsig' )->text()
1219 );
1220 } else {
1221 return true;
1222 }
1223 }
1224
1225 /**
1226 * @param string $signature
1227 * @param array $alldata
1228 * @param HTMLForm $form
1229 * @return string
1230 */
1231 static function cleanSignature( $signature, $alldata, $form ) {
1232 if ( isset( $alldata['fancysig'] ) && $alldata['fancysig'] ) {
1233 global $wgParser;
1234 $signature = $wgParser->cleanSig( $signature );
1235 } else {
1236 // When no fancy sig used, make sure ~{3,5} get removed.
1237 $signature = Parser::cleanSigInSig( $signature );
1238 }
1239
1240 return $signature;
1241 }
1242
1243 /**
1244 * @param User $user
1245 * @param IContextSource $context
1246 * @param string $formClass
1247 * @param array $remove Array of items to remove
1248 * @return HtmlForm
1249 */
1250 static function getFormObject(
1251 $user,
1252 IContextSource $context,
1253 $formClass = 'PreferencesForm',
1254 array $remove = array()
1255 ) {
1256 $formDescriptor = Preferences::getPreferences( $user, $context );
1257 if ( count( $remove ) ) {
1258 $removeKeys = array_flip( $remove );
1259 $formDescriptor = array_diff_key( $formDescriptor, $removeKeys );
1260 }
1261
1262 // Remove type=api preferences. They are not intended for rendering in the form.
1263 foreach ( $formDescriptor as $name => $info ) {
1264 if ( isset( $info['type'] ) && $info['type'] === 'api' ) {
1265 unset( $formDescriptor[$name] );
1266 }
1267 }
1268
1269 /**
1270 * @var $htmlForm PreferencesForm
1271 */
1272 $htmlForm = new $formClass( $formDescriptor, $context, 'prefs' );
1273
1274 $htmlForm->setModifiedUser( $user );
1275 $htmlForm->setId( 'mw-prefs-form' );
1276 $htmlForm->setSubmitText( $context->msg( 'saveprefs' )->text() );
1277 # Used message keys: 'accesskey-preferences-save', 'tooltip-preferences-save'
1278 $htmlForm->setSubmitTooltip( 'preferences-save' );
1279 $htmlForm->setSubmitID( 'prefsubmit' );
1280 $htmlForm->setSubmitCallback( array( 'Preferences', 'tryFormSubmit' ) );
1281
1282 return $htmlForm;
1283 }
1284
1285 /**
1286 * @param IContextSource $context
1287 * @return array
1288 */
1289 static function getTimezoneOptions( IContextSource $context ) {
1290 $opt = array();
1291
1292 $localTZoffset = $context->getConfig()->get( 'LocalTZoffset' );
1293 $timestamp = MWTimestamp::getLocalInstance();
1294 // Check that the LocalTZoffset is the same as the local time zone offset
1295 if ( $localTZoffset == $timestamp->format( 'Z' ) / 60 ) {
1296 $server_tz_msg = $context->msg(
1297 'timezoneuseserverdefault',
1298 $timestamp->getTimezone()->getName()
1299 )->text();
1300 } else {
1301 $tzstring = sprintf(
1302 '%+03d:%02d',
1303 floor( $localTZoffset / 60 ),
1304 abs( $localTZoffset ) % 60
1305 );
1306 $server_tz_msg = $context->msg( 'timezoneuseserverdefault', $tzstring )->text();
1307 }
1308 $opt[$server_tz_msg] = "System|$localTZoffset";
1309 $opt[$context->msg( 'timezoneuseoffset' )->text()] = 'other';
1310 $opt[$context->msg( 'guesstimezone' )->text()] = 'guess';
1311
1312 if ( function_exists( 'timezone_identifiers_list' ) ) {
1313 # Read timezone list
1314 $tzs = timezone_identifiers_list();
1315 sort( $tzs );
1316
1317 $tzRegions = array();
1318 $tzRegions['Africa'] = $context->msg( 'timezoneregion-africa' )->text();
1319 $tzRegions['America'] = $context->msg( 'timezoneregion-america' )->text();
1320 $tzRegions['Antarctica'] = $context->msg( 'timezoneregion-antarctica' )->text();
1321 $tzRegions['Arctic'] = $context->msg( 'timezoneregion-arctic' )->text();
1322 $tzRegions['Asia'] = $context->msg( 'timezoneregion-asia' )->text();
1323 $tzRegions['Atlantic'] = $context->msg( 'timezoneregion-atlantic' )->text();
1324 $tzRegions['Australia'] = $context->msg( 'timezoneregion-australia' )->text();
1325 $tzRegions['Europe'] = $context->msg( 'timezoneregion-europe' )->text();
1326 $tzRegions['Indian'] = $context->msg( 'timezoneregion-indian' )->text();
1327 $tzRegions['Pacific'] = $context->msg( 'timezoneregion-pacific' )->text();
1328 asort( $tzRegions );
1329
1330 $prefill = array_fill_keys( array_values( $tzRegions ), array() );
1331 $opt = array_merge( $opt, $prefill );
1332
1333 $now = date_create( 'now' );
1334
1335 foreach ( $tzs as $tz ) {
1336 $z = explode( '/', $tz, 2 );
1337
1338 # timezone_identifiers_list() returns a number of
1339 # backwards-compatibility entries. This filters them out of the
1340 # list presented to the user.
1341 if ( count( $z ) != 2 || !array_key_exists( $z[0], $tzRegions ) ) {
1342 continue;
1343 }
1344
1345 # Localize region
1346 $z[0] = $tzRegions[$z[0]];
1347
1348 $minDiff = floor( timezone_offset_get( timezone_open( $tz ), $now ) / 60 );
1349
1350 $display = str_replace( '_', ' ', $z[0] . '/' . $z[1] );
1351 $value = "ZoneInfo|$minDiff|$tz";
1352
1353 $opt[$z[0]][$display] = $value;
1354 }
1355 }
1356 return $opt;
1357 }
1358
1359 /**
1360 * @param string $value
1361 * @param array $alldata
1362 * @return int
1363 */
1364 static function filterIntval( $value, $alldata ) {
1365 return intval( $value );
1366 }
1367
1368 /**
1369 * @param string $tz
1370 * @param array $alldata
1371 * @return string
1372 */
1373 static function filterTimezoneInput( $tz, $alldata ) {
1374 $data = explode( '|', $tz, 3 );
1375 switch ( $data[0] ) {
1376 case 'ZoneInfo':
1377 case 'System':
1378 return $tz;
1379 default:
1380 $data = explode( ':', $tz, 2 );
1381 if ( count( $data ) == 2 ) {
1382 $data[0] = intval( $data[0] );
1383 $data[1] = intval( $data[1] );
1384 $minDiff = abs( $data[0] ) * 60 + $data[1];
1385 if ( $data[0] < 0 ) {
1386 $minDiff = - $minDiff;
1387 }
1388 } else {
1389 $minDiff = intval( $data[0] ) * 60;
1390 }
1391
1392 # Max is +14:00 and min is -12:00, see:
1393 # http://en.wikipedia.org/wiki/Timezone
1394 $minDiff = min( $minDiff, 840 ); # 14:00
1395 $minDiff = max( $minDiff, - 720 ); # -12:00
1396 return 'Offset|' . $minDiff;
1397 }
1398 }
1399
1400 /**
1401 * Handle the form submission if everything validated properly
1402 *
1403 * @param array $formData
1404 * @param PreferencesForm $form
1405 * @return bool|Status|string
1406 */
1407 static function tryFormSubmit( $formData, $form ) {
1408 global $wgAuth;
1409
1410 $user = $form->getModifiedUser();
1411 $hiddenPrefs = $form->getConfig()->get( 'HiddenPrefs' );
1412 $result = true;
1413
1414 if ( !$user->isAllowedAny( 'editmyprivateinfo', 'editmyoptions' ) ) {
1415 return Status::newFatal( 'mypreferencesprotected' );
1416 }
1417
1418 // Filter input
1419 foreach ( array_keys( $formData ) as $name ) {
1420 if ( isset( self::$saveFilters[$name] ) ) {
1421 $formData[$name] =
1422 call_user_func( self::$saveFilters[$name], $formData[$name], $formData );
1423 }
1424 }
1425
1426 // Fortunately, the realname field is MUCH simpler
1427 // (not really "private", but still shouldn't be edited without permission)
1428 if ( !in_array( 'realname', $hiddenPrefs )
1429 && $user->isAllowed( 'editmyprivateinfo' )
1430 && array_key_exists( 'realname', $formData )
1431 ) {
1432 $realName = $formData['realname'];
1433 $user->setRealName( $realName );
1434 }
1435
1436 if ( $user->isAllowed( 'editmyoptions' ) ) {
1437 foreach ( self::$saveBlacklist as $b ) {
1438 unset( $formData[$b] );
1439 }
1440
1441 # If users have saved a value for a preference which has subsequently been disabled
1442 # via $wgHiddenPrefs, we don't want to destroy that setting in case the preference
1443 # is subsequently re-enabled
1444 foreach ( $hiddenPrefs as $pref ) {
1445 # If the user has not set a non-default value here, the default will be returned
1446 # and subsequently discarded
1447 $formData[$pref] = $user->getOption( $pref, null, true );
1448 }
1449
1450 // Keep old preferences from interfering due to back-compat code, etc.
1451 $user->resetOptions( 'unused', $form->getContext() );
1452
1453 foreach ( $formData as $key => $value ) {
1454 $user->setOption( $key, $value );
1455 }
1456
1457 Hooks::run( 'PreferencesFormPreSave', array( $formData, $form, $user, &$result ) );
1458 $user->saveSettings();
1459 }
1460
1461 $wgAuth->updateExternalDB( $user );
1462
1463 return $result;
1464 }
1465
1466 /**
1467 * @param array $formData
1468 * @param PreferencesForm $form
1469 * @return Status
1470 */
1471 public static function tryUISubmit( $formData, $form ) {
1472 $res = self::tryFormSubmit( $formData, $form );
1473
1474 if ( $res ) {
1475 $urlOptions = array( 'success' => 1 );
1476
1477 if ( $res === 'eauth' ) {
1478 $urlOptions['eauth'] = 1;
1479 }
1480
1481 $urlOptions += $form->getExtraSuccessRedirectParameters();
1482
1483 $url = $form->getTitle()->getFullURL( $urlOptions );
1484
1485 $form->getContext()->getOutput()->redirect( $url );
1486 }
1487
1488 return Status::newGood();
1489 }
1490 }
1491
1492 /** Some tweaks to allow js prefs to work */
1493 class PreferencesForm extends HTMLForm {
1494 // Override default value from HTMLForm
1495 protected $mSubSectionBeforeFields = false;
1496
1497 private $modifiedUser;
1498
1499 /**
1500 * @param User $user
1501 */
1502 public function setModifiedUser( $user ) {
1503 $this->modifiedUser = $user;
1504 }
1505
1506 /**
1507 * @return User
1508 */
1509 public function getModifiedUser() {
1510 if ( $this->modifiedUser === null ) {
1511 return $this->getUser();
1512 } else {
1513 return $this->modifiedUser;
1514 }
1515 }
1516
1517 /**
1518 * Get extra parameters for the query string when redirecting after
1519 * successful save.
1520 *
1521 * @return array()
1522 */
1523 public function getExtraSuccessRedirectParameters() {
1524 return array();
1525 }
1526
1527 /**
1528 * @param string $html
1529 * @return string
1530 */
1531 function wrapForm( $html ) {
1532 $html = Xml::tags( 'div', array( 'id' => 'preferences' ), $html );
1533
1534 return parent::wrapForm( $html );
1535 }
1536
1537 /**
1538 * @return string
1539 */
1540 function getButtons() {
1541
1542 $attrs = array( 'id' => 'mw-prefs-restoreprefs' );
1543
1544 if ( !$this->getModifiedUser()->isAllowedAny( 'editmyprivateinfo', 'editmyoptions' ) ) {
1545 return '';
1546 }
1547
1548 $html = parent::getButtons();
1549
1550 if ( $this->getModifiedUser()->isAllowed( 'editmyoptions' ) ) {
1551 $t = SpecialPage::getTitleFor( 'Preferences', 'reset' );
1552
1553 $html .= "\n" . Linker::link( $t, $this->msg( 'restoreprefs' )->escaped(),
1554 Html::buttonAttributes( $attrs, array( 'mw-ui-quiet' ) ) );
1555
1556 $html = Xml::tags( 'div', array( 'class' => 'mw-prefs-buttons' ), $html );
1557 }
1558
1559 return $html;
1560 }
1561
1562 /**
1563 * Separate multi-option preferences into multiple preferences, since we
1564 * have to store them separately
1565 * @param array $data
1566 * @return array
1567 */
1568 function filterDataForSubmit( $data ) {
1569 foreach ( $this->mFlatFields as $fieldname => $field ) {
1570 if ( $field instanceof HTMLNestedFilterable ) {
1571 $info = $field->mParams;
1572 $prefix = isset( $info['prefix'] ) ? $info['prefix'] : $fieldname;
1573 foreach ( $field->filterDataForSubmit( $data[$fieldname] ) as $key => $value ) {
1574 $data["$prefix$key"] = $value;
1575 }
1576 unset( $data[$fieldname] );
1577 }
1578 }
1579
1580 return $data;
1581 }
1582
1583 /**
1584 * Get the whole body of the form.
1585 * @return string
1586 */
1587 function getBody() {
1588 return $this->displaySection( $this->mFieldTree, '', 'mw-prefsection-' );
1589 }
1590
1591 /**
1592 * Get the "<legend>" for a given section key. Normally this is the
1593 * prefs-$key message but we'll allow extensions to override it.
1594 * @param string $key
1595 * @return string
1596 */
1597 function getLegend( $key ) {
1598 $legend = parent::getLegend( $key );
1599 Hooks::run( 'PreferencesGetLegend', array( $this, $key, &$legend ) );
1600 return $legend;
1601 }
1602 }