2017-11-07 03:10:14 +00:00
|
|
|
|
<?php
|
|
|
|
|
|
/**
|
|
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
|
*
|
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
|
*
|
|
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
|
|
* http://www.gnu.org/copyleft/gpl.html
|
|
|
|
|
|
*
|
|
|
|
|
|
* @file
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
namespace MediaWiki\Preferences;
|
|
|
|
|
|
|
|
|
|
|
|
use Config;
|
|
|
|
|
|
use DateTime;
|
|
|
|
|
|
use DateTimeZone;
|
|
|
|
|
|
use Exception;
|
|
|
|
|
|
use Hooks;
|
|
|
|
|
|
use Html;
|
|
|
|
|
|
use HTMLForm;
|
|
|
|
|
|
use HTMLFormField;
|
|
|
|
|
|
use IContextSource;
|
|
|
|
|
|
use Language;
|
|
|
|
|
|
use LanguageCode;
|
|
|
|
|
|
use LanguageConverter;
|
|
|
|
|
|
use MediaWiki\Auth\AuthManager;
|
|
|
|
|
|
use MediaWiki\Auth\PasswordAuthenticationRequest;
|
|
|
|
|
|
use MediaWiki\Linker\LinkRenderer;
|
|
|
|
|
|
use MediaWiki\MediaWikiServices;
|
|
|
|
|
|
use MessageLocalizer;
|
|
|
|
|
|
use MWException;
|
|
|
|
|
|
use MWNamespace;
|
|
|
|
|
|
use MWTimestamp;
|
2018-05-01 13:59:29 +00:00
|
|
|
|
use OutputPage;
|
2017-11-07 03:10:14 +00:00
|
|
|
|
use Parser;
|
|
|
|
|
|
use ParserOptions;
|
2018-05-29 20:24:40 +00:00
|
|
|
|
use PreferencesFormLegacy;
|
2018-04-09 21:35:29 +00:00
|
|
|
|
use Psr\Log\LoggerAwareTrait;
|
|
|
|
|
|
use Psr\Log\NullLogger;
|
2017-11-07 03:10:14 +00:00
|
|
|
|
use Skin;
|
|
|
|
|
|
use SpecialPage;
|
|
|
|
|
|
use Status;
|
|
|
|
|
|
use Title;
|
2018-07-06 19:21:22 +00:00
|
|
|
|
use UnexpectedValueException;
|
2017-11-07 03:10:14 +00:00
|
|
|
|
use User;
|
|
|
|
|
|
use UserGroupMembership;
|
|
|
|
|
|
use Xml;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* This is the default implementation of PreferencesFactory.
|
|
|
|
|
|
*/
|
|
|
|
|
|
class DefaultPreferencesFactory implements PreferencesFactory {
|
2018-04-09 21:35:29 +00:00
|
|
|
|
use LoggerAwareTrait;
|
2017-11-07 03:10:14 +00:00
|
|
|
|
|
|
|
|
|
|
/** @var Config */
|
|
|
|
|
|
protected $config;
|
|
|
|
|
|
|
2018-07-29 12:24:54 +00:00
|
|
|
|
/** @var Language The wiki's content language. */
|
2017-11-07 03:10:14 +00:00
|
|
|
|
protected $contLang;
|
|
|
|
|
|
|
|
|
|
|
|
/** @var AuthManager */
|
|
|
|
|
|
protected $authManager;
|
|
|
|
|
|
|
|
|
|
|
|
/** @var LinkRenderer */
|
|
|
|
|
|
protected $linkRenderer;
|
|
|
|
|
|
|
2018-01-07 10:38:43 +00:00
|
|
|
|
/**
|
|
|
|
|
|
* @param Config $config
|
|
|
|
|
|
* @param Language $contLang
|
|
|
|
|
|
* @param AuthManager $authManager
|
|
|
|
|
|
* @param LinkRenderer $linkRenderer
|
|
|
|
|
|
*/
|
2017-11-07 03:10:14 +00:00
|
|
|
|
public function __construct(
|
|
|
|
|
|
Config $config,
|
|
|
|
|
|
Language $contLang,
|
|
|
|
|
|
AuthManager $authManager,
|
|
|
|
|
|
LinkRenderer $linkRenderer
|
|
|
|
|
|
) {
|
|
|
|
|
|
$this->config = $config;
|
|
|
|
|
|
$this->contLang = $contLang;
|
|
|
|
|
|
$this->authManager = $authManager;
|
|
|
|
|
|
$this->linkRenderer = $linkRenderer;
|
2018-04-09 21:35:29 +00:00
|
|
|
|
$this->logger = new NullLogger();
|
2017-11-07 03:10:14 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* @inheritDoc
|
|
|
|
|
|
*/
|
|
|
|
|
|
public function getSaveBlacklist() {
|
|
|
|
|
|
return [
|
|
|
|
|
|
'realname',
|
|
|
|
|
|
'emailaddress',
|
|
|
|
|
|
];
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* @throws MWException
|
|
|
|
|
|
* @param User $user
|
|
|
|
|
|
* @param IContextSource $context
|
|
|
|
|
|
* @return array|null
|
|
|
|
|
|
*/
|
|
|
|
|
|
public function getFormDescriptor( User $user, IContextSource $context ) {
|
|
|
|
|
|
$preferences = [];
|
|
|
|
|
|
|
2018-09-18 18:46:46 +00:00
|
|
|
|
OutputPage::setupOOUI(
|
|
|
|
|
|
strtolower( $context->getSkin()->getSkinName() ),
|
|
|
|
|
|
$context->getLanguage()->getDir()
|
|
|
|
|
|
);
|
2018-05-01 13:59:29 +00:00
|
|
|
|
|
2017-11-07 03:10:14 +00:00
|
|
|
|
$canIPUseHTTPS = wfCanIPUseHTTPS( $context->getRequest()->getIP() );
|
|
|
|
|
|
$this->profilePreferences( $user, $context, $preferences, $canIPUseHTTPS );
|
|
|
|
|
|
$this->skinPreferences( $user, $context, $preferences );
|
|
|
|
|
|
$this->datetimePreferences( $user, $context, $preferences );
|
|
|
|
|
|
$this->filesPreferences( $context, $preferences );
|
|
|
|
|
|
$this->renderingPreferences( $context, $preferences );
|
|
|
|
|
|
$this->editingPreferences( $user, $context, $preferences );
|
|
|
|
|
|
$this->rcPreferences( $user, $context, $preferences );
|
|
|
|
|
|
$this->watchlistPreferences( $user, $context, $preferences );
|
|
|
|
|
|
$this->searchPreferences( $preferences );
|
|
|
|
|
|
|
2018-09-06 22:18:17 +00:00
|
|
|
|
Hooks::run( 'GetPreferences', [ $user, &$preferences, $context ] );
|
2017-11-07 03:10:14 +00:00
|
|
|
|
|
|
|
|
|
|
$this->loadPreferenceValues( $user, $context, $preferences );
|
2018-04-09 21:35:29 +00:00
|
|
|
|
$this->logger->debug( "Created form descriptor for user '{$user->getName()}'" );
|
2017-11-07 03:10:14 +00:00
|
|
|
|
return $preferences;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* Loads existing values for a given array of preferences
|
|
|
|
|
|
* @throws MWException
|
|
|
|
|
|
* @param User $user
|
|
|
|
|
|
* @param IContextSource $context
|
|
|
|
|
|
* @param array &$defaultPreferences Array to load values for
|
|
|
|
|
|
* @return array|null
|
|
|
|
|
|
*/
|
|
|
|
|
|
private function loadPreferenceValues(
|
|
|
|
|
|
User $user, IContextSource $context, &$defaultPreferences
|
|
|
|
|
|
) {
|
|
|
|
|
|
# # Remove preferences that wikis don't want to use
|
|
|
|
|
|
foreach ( $this->config->get( 'HiddenPrefs' ) as $pref ) {
|
|
|
|
|
|
if ( isset( $defaultPreferences[$pref] ) ) {
|
|
|
|
|
|
unset( $defaultPreferences[$pref] );
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
# # Make sure that form fields have their parent set. See T43337.
|
|
|
|
|
|
$dummyForm = new HTMLForm( [], $context );
|
|
|
|
|
|
|
|
|
|
|
|
$disable = !$user->isAllowed( 'editmyoptions' );
|
|
|
|
|
|
|
|
|
|
|
|
$defaultOptions = User::getDefaultOptions();
|
2018-07-06 19:21:22 +00:00
|
|
|
|
$userOptions = $user->getOptions();
|
|
|
|
|
|
$this->applyFilters( $userOptions, $defaultPreferences, 'filterForForm' );
|
2017-11-07 03:10:14 +00:00
|
|
|
|
# # Prod in defaults from the user
|
|
|
|
|
|
foreach ( $defaultPreferences as $name => &$info ) {
|
2018-07-06 19:21:22 +00:00
|
|
|
|
$prefFromUser = $this->getOptionFromUser( $name, $info, $userOptions );
|
2017-11-07 03:10:14 +00:00
|
|
|
|
if ( $disable && !in_array( $name, $this->getSaveBlacklist() ) ) {
|
|
|
|
|
|
$info['disabled'] = 'disabled';
|
|
|
|
|
|
}
|
|
|
|
|
|
$field = HTMLForm::loadInputFromParameters( $name, $info, $dummyForm ); // For validation
|
2017-10-06 22:17:58 +00:00
|
|
|
|
$globalDefault = $defaultOptions[$name] ?? null;
|
2017-11-07 03:10:14 +00:00
|
|
|
|
|
|
|
|
|
|
// If it validates, set it as the default
|
|
|
|
|
|
if ( isset( $info['default'] ) ) {
|
|
|
|
|
|
// Already set, no problem
|
|
|
|
|
|
continue;
|
|
|
|
|
|
} elseif ( !is_null( $prefFromUser ) && // Make sure we're not just pulling nothing
|
|
|
|
|
|
$field->validate( $prefFromUser, $user->getOptions() ) === true ) {
|
|
|
|
|
|
$info['default'] = $prefFromUser;
|
|
|
|
|
|
} elseif ( $field->validate( $globalDefault, $user->getOptions() ) === true ) {
|
|
|
|
|
|
$info['default'] = $globalDefault;
|
|
|
|
|
|
} else {
|
|
|
|
|
|
throw new MWException( "Global default '$globalDefault' is invalid for field $name" );
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return $defaultPreferences;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* Pull option from a user account. Handles stuff like array-type preferences.
|
|
|
|
|
|
*
|
|
|
|
|
|
* @param string $name
|
|
|
|
|
|
* @param array $info
|
2018-07-06 19:21:22 +00:00
|
|
|
|
* @param array $userOptions
|
2017-11-07 03:10:14 +00:00
|
|
|
|
* @return array|string
|
|
|
|
|
|
*/
|
2018-07-06 19:21:22 +00:00
|
|
|
|
protected function getOptionFromUser( $name, $info, array $userOptions ) {
|
|
|
|
|
|
$val = $userOptions[$name] ?? null;
|
2017-11-07 03:10:14 +00:00
|
|
|
|
|
|
|
|
|
|
// Handling for multiselect preferences
|
|
|
|
|
|
if ( ( isset( $info['type'] ) && $info['type'] == 'multiselect' ) ||
|
2018-01-13 00:02:09 +00:00
|
|
|
|
( isset( $info['class'] ) && $info['class'] == \HTMLMultiSelectField::class ) ) {
|
2017-11-07 03:10:14 +00:00
|
|
|
|
$options = HTMLFormField::flattenOptions( $info['options'] );
|
2017-10-06 22:17:58 +00:00
|
|
|
|
$prefix = $info['prefix'] ?? $name;
|
2017-11-07 03:10:14 +00:00
|
|
|
|
$val = [];
|
|
|
|
|
|
|
|
|
|
|
|
foreach ( $options as $value ) {
|
2018-07-06 19:21:22 +00:00
|
|
|
|
if ( $userOptions["$prefix$value"] ?? false ) {
|
2017-11-07 03:10:14 +00:00
|
|
|
|
$val[] = $value;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Handling for checkmatrix preferences
|
|
|
|
|
|
if ( ( isset( $info['type'] ) && $info['type'] == 'checkmatrix' ) ||
|
2018-01-13 00:02:09 +00:00
|
|
|
|
( isset( $info['class'] ) && $info['class'] == \HTMLCheckMatrix::class ) ) {
|
2017-11-07 03:10:14 +00:00
|
|
|
|
$columns = HTMLFormField::flattenOptions( $info['columns'] );
|
|
|
|
|
|
$rows = HTMLFormField::flattenOptions( $info['rows'] );
|
2017-10-06 22:17:58 +00:00
|
|
|
|
$prefix = $info['prefix'] ?? $name;
|
2017-11-07 03:10:14 +00:00
|
|
|
|
$val = [];
|
|
|
|
|
|
|
|
|
|
|
|
foreach ( $columns as $column ) {
|
|
|
|
|
|
foreach ( $rows as $row ) {
|
2018-07-06 19:21:22 +00:00
|
|
|
|
if ( $userOptions["$prefix$column-$row"] ?? false ) {
|
2017-11-07 03:10:14 +00:00
|
|
|
|
$val[] = "$column-$row";
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return $val;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* @todo Inject user Language instead of using context.
|
|
|
|
|
|
* @param User $user
|
|
|
|
|
|
* @param IContextSource $context
|
|
|
|
|
|
* @param array &$defaultPreferences
|
|
|
|
|
|
* @param bool $canIPUseHTTPS Whether the user's IP is likely to be able to access the wiki
|
|
|
|
|
|
* via HTTPS.
|
|
|
|
|
|
* @return void
|
|
|
|
|
|
*/
|
|
|
|
|
|
protected function profilePreferences(
|
|
|
|
|
|
User $user, IContextSource $context, &$defaultPreferences, $canIPUseHTTPS
|
|
|
|
|
|
) {
|
|
|
|
|
|
// retrieving user name for GENDER and misc.
|
|
|
|
|
|
$userName = $user->getName();
|
|
|
|
|
|
|
|
|
|
|
|
# # User info #####################################
|
|
|
|
|
|
// Information panel
|
|
|
|
|
|
$defaultPreferences['username'] = [
|
|
|
|
|
|
'type' => 'info',
|
|
|
|
|
|
'label-message' => [ 'username', $userName ],
|
|
|
|
|
|
'default' => $userName,
|
|
|
|
|
|
'section' => 'personal/info',
|
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
|
|
$lang = $context->getLanguage();
|
|
|
|
|
|
|
|
|
|
|
|
# Get groups to which the user belongs
|
|
|
|
|
|
$userEffectiveGroups = $user->getEffectiveGroups();
|
|
|
|
|
|
$userGroupMemberships = $user->getGroupMemberships();
|
|
|
|
|
|
$userGroups = $userMembers = $userTempGroups = $userTempMembers = [];
|
|
|
|
|
|
foreach ( $userEffectiveGroups as $ueg ) {
|
|
|
|
|
|
if ( $ueg == '*' ) {
|
|
|
|
|
|
// Skip the default * group, seems useless here
|
|
|
|
|
|
continue;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-10-20 21:55:44 +00:00
|
|
|
|
$groupStringOrObject = $userGroupMemberships[$ueg] ?? $ueg;
|
2017-11-07 03:10:14 +00:00
|
|
|
|
|
|
|
|
|
|
$userG = UserGroupMembership::getLink( $groupStringOrObject, $context, 'html' );
|
|
|
|
|
|
$userM = UserGroupMembership::getLink( $groupStringOrObject, $context, 'html',
|
|
|
|
|
|
$userName );
|
|
|
|
|
|
|
|
|
|
|
|
// Store expiring groups separately, so we can place them before non-expiring
|
|
|
|
|
|
// groups in the list. This is to avoid the ambiguity of something like
|
|
|
|
|
|
// "administrator, bureaucrat (until X date)" -- users might wonder whether the
|
|
|
|
|
|
// expiry date applies to both groups, or just the last one
|
|
|
|
|
|
if ( $groupStringOrObject instanceof UserGroupMembership &&
|
|
|
|
|
|
$groupStringOrObject->getExpiry()
|
|
|
|
|
|
) {
|
|
|
|
|
|
$userTempGroups[] = $userG;
|
|
|
|
|
|
$userTempMembers[] = $userM;
|
|
|
|
|
|
} else {
|
|
|
|
|
|
$userGroups[] = $userG;
|
|
|
|
|
|
$userMembers[] = $userM;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
sort( $userGroups );
|
|
|
|
|
|
sort( $userMembers );
|
|
|
|
|
|
sort( $userTempGroups );
|
|
|
|
|
|
sort( $userTempMembers );
|
|
|
|
|
|
$userGroups = array_merge( $userTempGroups, $userGroups );
|
|
|
|
|
|
$userMembers = array_merge( $userTempMembers, $userMembers );
|
|
|
|
|
|
|
|
|
|
|
|
$defaultPreferences['usergroups'] = [
|
|
|
|
|
|
'type' => 'info',
|
|
|
|
|
|
'label' => $context->msg( 'prefs-memberingroups' )->numParams(
|
|
|
|
|
|
count( $userGroups ) )->params( $userName )->parse(),
|
|
|
|
|
|
'default' => $context->msg( 'prefs-memberingroups-type' )
|
|
|
|
|
|
->rawParams( $lang->commaList( $userGroups ), $lang->commaList( $userMembers ) )
|
|
|
|
|
|
->escaped(),
|
|
|
|
|
|
'raw' => true,
|
|
|
|
|
|
'section' => 'personal/info',
|
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
|
|
$contribTitle = SpecialPage::getTitleFor( "Contributions", $userName );
|
|
|
|
|
|
$formattedEditCount = $lang->formatNum( $user->getEditCount() );
|
|
|
|
|
|
$editCount = $this->linkRenderer->makeLink( $contribTitle, $formattedEditCount );
|
|
|
|
|
|
|
|
|
|
|
|
$defaultPreferences['editcount'] = [
|
|
|
|
|
|
'type' => 'info',
|
|
|
|
|
|
'raw' => true,
|
|
|
|
|
|
'label-message' => 'prefs-edits',
|
|
|
|
|
|
'default' => $editCount,
|
|
|
|
|
|
'section' => 'personal/info',
|
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
|
|
if ( $user->getRegistration() ) {
|
|
|
|
|
|
$displayUser = $context->getUser();
|
|
|
|
|
|
$userRegistration = $user->getRegistration();
|
|
|
|
|
|
$defaultPreferences['registrationdate'] = [
|
|
|
|
|
|
'type' => 'info',
|
|
|
|
|
|
'label-message' => 'prefs-registration',
|
|
|
|
|
|
'default' => $context->msg(
|
|
|
|
|
|
'prefs-registration-date-time',
|
|
|
|
|
|
$lang->userTimeAndDate( $userRegistration, $displayUser ),
|
|
|
|
|
|
$lang->userDate( $userRegistration, $displayUser ),
|
|
|
|
|
|
$lang->userTime( $userRegistration, $displayUser )
|
2018-09-20 06:28:40 +00:00
|
|
|
|
)->text(),
|
2017-11-07 03:10:14 +00:00
|
|
|
|
'section' => 'personal/info',
|
|
|
|
|
|
];
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
$canViewPrivateInfo = $user->isAllowed( 'viewmyprivateinfo' );
|
|
|
|
|
|
$canEditPrivateInfo = $user->isAllowed( 'editmyprivateinfo' );
|
|
|
|
|
|
|
|
|
|
|
|
// Actually changeable stuff
|
|
|
|
|
|
$defaultPreferences['realname'] = [
|
|
|
|
|
|
// (not really "private", but still shouldn't be edited without permission)
|
|
|
|
|
|
'type' => $canEditPrivateInfo && $this->authManager->allowsPropertyChange( 'realname' )
|
|
|
|
|
|
? 'text' : 'info',
|
|
|
|
|
|
'default' => $user->getRealName(),
|
|
|
|
|
|
'section' => 'personal/info',
|
|
|
|
|
|
'label-message' => 'yourrealname',
|
|
|
|
|
|
'help-message' => 'prefs-help-realname',
|
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
|
|
if ( $canEditPrivateInfo && $this->authManager->allowsAuthenticationDataChange(
|
|
|
|
|
|
new PasswordAuthenticationRequest(), false )->isGood()
|
|
|
|
|
|
) {
|
2018-09-18 18:46:46 +00:00
|
|
|
|
$defaultPreferences['password'] = [
|
|
|
|
|
|
'type' => 'info',
|
|
|
|
|
|
'raw' => true,
|
|
|
|
|
|
'default' => (string)new \OOUI\ButtonWidget( [
|
2018-05-01 13:59:29 +00:00
|
|
|
|
'href' => SpecialPage::getTitleFor( 'ChangePassword' )->getLinkURL( [
|
|
|
|
|
|
'returnto' => SpecialPage::getTitleFor( 'Preferences' )->getPrefixedText()
|
|
|
|
|
|
] ),
|
|
|
|
|
|
'label' => $context->msg( 'prefs-resetpass' )->text(),
|
2018-09-18 18:46:46 +00:00
|
|
|
|
] ),
|
2017-11-07 03:10:14 +00:00
|
|
|
|
'label-message' => 'yourpassword',
|
|
|
|
|
|
'section' => 'personal/info',
|
|
|
|
|
|
];
|
|
|
|
|
|
}
|
|
|
|
|
|
// Only show prefershttps if secure login is turned on
|
|
|
|
|
|
if ( $this->config->get( 'SecureLogin' ) && $canIPUseHTTPS ) {
|
|
|
|
|
|
$defaultPreferences['prefershttps'] = [
|
|
|
|
|
|
'type' => 'toggle',
|
|
|
|
|
|
'label-message' => 'tog-prefershttps',
|
|
|
|
|
|
'help-message' => 'prefs-help-prefershttps',
|
|
|
|
|
|
'section' => 'personal/info'
|
|
|
|
|
|
];
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Language
|
2018-02-24 14:49:46 +00:00
|
|
|
|
$languages = Language::fetchLanguageNames( null, 'mwfile' );
|
2017-11-07 03:10:14 +00:00
|
|
|
|
$languageCode = $this->config->get( 'LanguageCode' );
|
|
|
|
|
|
if ( !array_key_exists( $languageCode, $languages ) ) {
|
|
|
|
|
|
$languages[$languageCode] = $languageCode;
|
2018-02-22 21:09:04 +00:00
|
|
|
|
// Sort the array again
|
|
|
|
|
|
ksort( $languages );
|
2017-11-07 03:10:14 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
$options = [];
|
|
|
|
|
|
foreach ( $languages as $code => $name ) {
|
|
|
|
|
|
$display = LanguageCode::bcp47( $code ) . ' - ' . $name;
|
|
|
|
|
|
$options[$display] = $code;
|
|
|
|
|
|
}
|
|
|
|
|
|
$defaultPreferences['language'] = [
|
|
|
|
|
|
'type' => 'select',
|
|
|
|
|
|
'section' => 'personal/i18n',
|
|
|
|
|
|
'options' => $options,
|
|
|
|
|
|
'label-message' => 'yourlanguage',
|
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
|
|
$defaultPreferences['gender'] = [
|
|
|
|
|
|
'type' => 'radio',
|
|
|
|
|
|
'section' => 'personal/i18n',
|
|
|
|
|
|
'options' => [
|
|
|
|
|
|
$context->msg( 'parentheses' )
|
|
|
|
|
|
->params( $context->msg( 'gender-unknown' )->plain() )
|
|
|
|
|
|
->escaped() => 'unknown',
|
|
|
|
|
|
$context->msg( 'gender-female' )->escaped() => 'female',
|
|
|
|
|
|
$context->msg( 'gender-male' )->escaped() => 'male',
|
|
|
|
|
|
],
|
|
|
|
|
|
'label-message' => 'yourgender',
|
|
|
|
|
|
'help-message' => 'prefs-help-gender',
|
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
|
|
// see if there are multiple language variants to choose from
|
|
|
|
|
|
if ( !$this->config->get( 'DisableLangConversion' ) ) {
|
|
|
|
|
|
foreach ( LanguageConverter::$languagesWithVariants as $langCode ) {
|
|
|
|
|
|
if ( $langCode == $this->contLang->getCode() ) {
|
2018-07-03 20:14:06 +00:00
|
|
|
|
if ( !$this->contLang->hasVariants() ) {
|
2017-11-07 03:10:14 +00:00
|
|
|
|
continue;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-07-03 20:14:06 +00:00
|
|
|
|
$variants = $this->contLang->getVariants();
|
2017-11-07 03:10:14 +00:00
|
|
|
|
$variantArray = [];
|
|
|
|
|
|
foreach ( $variants as $v ) {
|
|
|
|
|
|
$v = str_replace( '_', '-', strtolower( $v ) );
|
|
|
|
|
|
$variantArray[$v] = $lang->getVariantname( $v, false );
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
$options = [];
|
|
|
|
|
|
foreach ( $variantArray as $code => $name ) {
|
|
|
|
|
|
$display = LanguageCode::bcp47( $code ) . ' - ' . $name;
|
|
|
|
|
|
$options[$display] = $code;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
$defaultPreferences['variant'] = [
|
|
|
|
|
|
'label-message' => 'yourvariant',
|
|
|
|
|
|
'type' => 'select',
|
|
|
|
|
|
'options' => $options,
|
|
|
|
|
|
'section' => 'personal/i18n',
|
|
|
|
|
|
'help-message' => 'prefs-help-variant',
|
|
|
|
|
|
];
|
|
|
|
|
|
} else {
|
|
|
|
|
|
$defaultPreferences["variant-$langCode"] = [
|
|
|
|
|
|
'type' => 'api',
|
|
|
|
|
|
];
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Stuff from Language::getExtraUserToggles()
|
|
|
|
|
|
// FIXME is this dead code? $extraUserToggles doesn't seem to be defined for any language
|
|
|
|
|
|
$toggles = $this->contLang->getExtraUserToggles();
|
|
|
|
|
|
|
|
|
|
|
|
foreach ( $toggles as $toggle ) {
|
|
|
|
|
|
$defaultPreferences[$toggle] = [
|
|
|
|
|
|
'type' => 'toggle',
|
|
|
|
|
|
'section' => 'personal/i18n',
|
|
|
|
|
|
'label-message' => "tog-$toggle",
|
|
|
|
|
|
];
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// show a preview of the old signature first
|
|
|
|
|
|
$oldsigWikiText = MediaWikiServices::getInstance()->getParser()->preSaveTransform(
|
|
|
|
|
|
'~~~',
|
|
|
|
|
|
$context->getTitle(),
|
|
|
|
|
|
$user,
|
|
|
|
|
|
ParserOptions::newFromContext( $context )
|
|
|
|
|
|
);
|
2018-10-26 15:39:07 +00:00
|
|
|
|
$oldsigHTML = Parser::stripOuterParagraph(
|
|
|
|
|
|
$context->getOutput()->parseAsContent( $oldsigWikiText )
|
|
|
|
|
|
);
|
2017-11-07 03:10:14 +00:00
|
|
|
|
$defaultPreferences['oldsig'] = [
|
|
|
|
|
|
'type' => 'info',
|
|
|
|
|
|
'raw' => true,
|
|
|
|
|
|
'label-message' => 'tog-oldsig',
|
|
|
|
|
|
'default' => $oldsigHTML,
|
|
|
|
|
|
'section' => 'personal/signature',
|
|
|
|
|
|
];
|
|
|
|
|
|
$defaultPreferences['nickname'] = [
|
|
|
|
|
|
'type' => $this->authManager->allowsPropertyChange( 'nickname' ) ? 'text' : 'info',
|
|
|
|
|
|
'maxlength' => $this->config->get( 'MaxSigChars' ),
|
|
|
|
|
|
'label-message' => 'yournick',
|
|
|
|
|
|
'validation-callback' => function ( $signature, $alldata, HTMLForm $form ) {
|
|
|
|
|
|
return $this->validateSignature( $signature, $alldata, $form );
|
|
|
|
|
|
},
|
|
|
|
|
|
'section' => 'personal/signature',
|
|
|
|
|
|
'filter-callback' => function ( $signature, array $alldata, HTMLForm $form ) {
|
|
|
|
|
|
return $this->cleanSignature( $signature, $alldata, $form );
|
|
|
|
|
|
},
|
|
|
|
|
|
];
|
|
|
|
|
|
$defaultPreferences['fancysig'] = [
|
|
|
|
|
|
'type' => 'toggle',
|
|
|
|
|
|
'label-message' => 'tog-fancysig',
|
|
|
|
|
|
// show general help about signature at the bottom of the section
|
|
|
|
|
|
'help-message' => 'prefs-help-signature',
|
|
|
|
|
|
'section' => 'personal/signature'
|
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
|
|
# # Email stuff
|
|
|
|
|
|
|
|
|
|
|
|
if ( $this->config->get( 'EnableEmail' ) ) {
|
|
|
|
|
|
if ( $canViewPrivateInfo ) {
|
|
|
|
|
|
$helpMessages[] = $this->config->get( 'EmailConfirmToEdit' )
|
|
|
|
|
|
? 'prefs-help-email-required'
|
|
|
|
|
|
: 'prefs-help-email';
|
|
|
|
|
|
|
|
|
|
|
|
if ( $this->config->get( 'EnableUserEmail' ) ) {
|
|
|
|
|
|
// additional messages when users can send email to each other
|
|
|
|
|
|
$helpMessages[] = 'prefs-help-email-others';
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
$emailAddress = $user->getEmail() ? htmlspecialchars( $user->getEmail() ) : '';
|
|
|
|
|
|
if ( $canEditPrivateInfo && $this->authManager->allowsPropertyChange( 'emailaddress' ) ) {
|
2018-09-18 18:46:46 +00:00
|
|
|
|
$button = new \OOUI\ButtonWidget( [
|
|
|
|
|
|
'href' => SpecialPage::getTitleFor( 'ChangeEmail' )->getLinkURL( [
|
|
|
|
|
|
'returnto' => SpecialPage::getTitleFor( 'Preferences' )->getPrefixedText()
|
|
|
|
|
|
] ),
|
|
|
|
|
|
'label' =>
|
2018-05-01 13:59:29 +00:00
|
|
|
|
$context->msg( $user->getEmail() ? 'prefs-changeemail' : 'prefs-setemail' )->text(),
|
2018-09-18 18:46:46 +00:00
|
|
|
|
] );
|
2018-05-01 13:59:29 +00:00
|
|
|
|
|
2018-09-18 18:46:46 +00:00
|
|
|
|
$emailAddress .= $emailAddress == '' ? $button : ( '<br />' . $button );
|
2017-11-07 03:10:14 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
$defaultPreferences['emailaddress'] = [
|
|
|
|
|
|
'type' => 'info',
|
|
|
|
|
|
'raw' => true,
|
|
|
|
|
|
'default' => $emailAddress,
|
|
|
|
|
|
'label-message' => 'youremail',
|
|
|
|
|
|
'section' => 'personal/email',
|
|
|
|
|
|
'help-messages' => $helpMessages,
|
|
|
|
|
|
# 'cssclass' chosen below
|
|
|
|
|
|
];
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
$disableEmailPrefs = false;
|
|
|
|
|
|
|
|
|
|
|
|
if ( $this->config->get( 'EmailAuthentication' ) ) {
|
|
|
|
|
|
$emailauthenticationclass = 'mw-email-not-authenticated';
|
|
|
|
|
|
if ( $user->getEmail() ) {
|
|
|
|
|
|
if ( $user->getEmailAuthenticationTimestamp() ) {
|
|
|
|
|
|
// date and time are separate parameters to facilitate localisation.
|
|
|
|
|
|
// $time is kept for backward compat reasons.
|
|
|
|
|
|
// 'emailauthenticated' is also used in SpecialConfirmemail.php
|
|
|
|
|
|
$displayUser = $context->getUser();
|
|
|
|
|
|
$emailTimestamp = $user->getEmailAuthenticationTimestamp();
|
|
|
|
|
|
$time = $lang->userTimeAndDate( $emailTimestamp, $displayUser );
|
|
|
|
|
|
$d = $lang->userDate( $emailTimestamp, $displayUser );
|
|
|
|
|
|
$t = $lang->userTime( $emailTimestamp, $displayUser );
|
|
|
|
|
|
$emailauthenticated = $context->msg( 'emailauthenticated',
|
|
|
|
|
|
$time, $d, $t )->parse() . '<br />';
|
|
|
|
|
|
$disableEmailPrefs = false;
|
|
|
|
|
|
$emailauthenticationclass = 'mw-email-authenticated';
|
|
|
|
|
|
} else {
|
|
|
|
|
|
$disableEmailPrefs = true;
|
2018-09-18 18:46:46 +00:00
|
|
|
|
$emailauthenticated = $context->msg( 'emailnotauthenticated' )->parse() . '<br />' .
|
|
|
|
|
|
new \OOUI\ButtonWidget( [
|
|
|
|
|
|
'href' => SpecialPage::getTitleFor( 'Confirmemail' )->getLinkURL(),
|
|
|
|
|
|
'label' => $context->msg( 'emailconfirmlink' )->text(),
|
|
|
|
|
|
] );
|
2017-11-07 03:10:14 +00:00
|
|
|
|
$emailauthenticationclass = "mw-email-not-authenticated";
|
|
|
|
|
|
}
|
|
|
|
|
|
} else {
|
|
|
|
|
|
$disableEmailPrefs = true;
|
|
|
|
|
|
$emailauthenticated = $context->msg( 'noemailprefs' )->escaped();
|
|
|
|
|
|
$emailauthenticationclass = 'mw-email-none';
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if ( $canViewPrivateInfo ) {
|
|
|
|
|
|
$defaultPreferences['emailauthentication'] = [
|
|
|
|
|
|
'type' => 'info',
|
|
|
|
|
|
'raw' => true,
|
|
|
|
|
|
'section' => 'personal/email',
|
|
|
|
|
|
'label-message' => 'prefs-emailconfirm-label',
|
|
|
|
|
|
'default' => $emailauthenticated,
|
|
|
|
|
|
# Apply the same CSS class used on the input to the message:
|
|
|
|
|
|
'cssclass' => $emailauthenticationclass,
|
|
|
|
|
|
];
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if ( $this->config->get( 'EnableUserEmail' ) && $user->isAllowed( 'sendemail' ) ) {
|
|
|
|
|
|
$defaultPreferences['disablemail'] = [
|
|
|
|
|
|
'id' => 'wpAllowEmail',
|
|
|
|
|
|
'type' => 'toggle',
|
|
|
|
|
|
'invert' => true,
|
|
|
|
|
|
'section' => 'personal/email',
|
|
|
|
|
|
'label-message' => 'allowemail',
|
|
|
|
|
|
'disabled' => $disableEmailPrefs,
|
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
|
|
$defaultPreferences['email-allow-new-users'] = [
|
|
|
|
|
|
'id' => 'wpAllowEmailFromNewUsers',
|
|
|
|
|
|
'type' => 'toggle',
|
|
|
|
|
|
'section' => 'personal/email',
|
|
|
|
|
|
'label-message' => 'email-allow-new-users-label',
|
|
|
|
|
|
'disabled' => $disableEmailPrefs,
|
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
|
|
$defaultPreferences['ccmeonemails'] = [
|
|
|
|
|
|
'type' => 'toggle',
|
|
|
|
|
|
'section' => 'personal/email',
|
|
|
|
|
|
'label-message' => 'tog-ccmeonemails',
|
|
|
|
|
|
'disabled' => $disableEmailPrefs,
|
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
|
|
if ( $this->config->get( 'EnableUserEmailBlacklist' ) ) {
|
|
|
|
|
|
$defaultPreferences['email-blacklist'] = [
|
|
|
|
|
|
'type' => 'usersmultiselect',
|
|
|
|
|
|
'label-message' => 'email-blacklist-label',
|
|
|
|
|
|
'section' => 'personal/email',
|
|
|
|
|
|
'disabled' => $disableEmailPrefs,
|
2018-07-06 19:21:22 +00:00
|
|
|
|
'filter' => MultiUsernameFilter::class,
|
2017-11-07 03:10:14 +00:00
|
|
|
|
];
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if ( $this->config->get( 'EnotifWatchlist' ) ) {
|
|
|
|
|
|
$defaultPreferences['enotifwatchlistpages'] = [
|
|
|
|
|
|
'type' => 'toggle',
|
|
|
|
|
|
'section' => 'personal/email',
|
|
|
|
|
|
'label-message' => 'tog-enotifwatchlistpages',
|
|
|
|
|
|
'disabled' => $disableEmailPrefs,
|
|
|
|
|
|
];
|
|
|
|
|
|
}
|
|
|
|
|
|
if ( $this->config->get( 'EnotifUserTalk' ) ) {
|
|
|
|
|
|
$defaultPreferences['enotifusertalkpages'] = [
|
|
|
|
|
|
'type' => 'toggle',
|
|
|
|
|
|
'section' => 'personal/email',
|
|
|
|
|
|
'label-message' => 'tog-enotifusertalkpages',
|
|
|
|
|
|
'disabled' => $disableEmailPrefs,
|
|
|
|
|
|
];
|
|
|
|
|
|
}
|
|
|
|
|
|
if ( $this->config->get( 'EnotifUserTalk' ) || $this->config->get( 'EnotifWatchlist' ) ) {
|
|
|
|
|
|
if ( $this->config->get( 'EnotifMinorEdits' ) ) {
|
|
|
|
|
|
$defaultPreferences['enotifminoredits'] = [
|
|
|
|
|
|
'type' => 'toggle',
|
|
|
|
|
|
'section' => 'personal/email',
|
|
|
|
|
|
'label-message' => 'tog-enotifminoredits',
|
|
|
|
|
|
'disabled' => $disableEmailPrefs,
|
|
|
|
|
|
];
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if ( $this->config->get( 'EnotifRevealEditorAddress' ) ) {
|
|
|
|
|
|
$defaultPreferences['enotifrevealaddr'] = [
|
|
|
|
|
|
'type' => 'toggle',
|
|
|
|
|
|
'section' => 'personal/email',
|
|
|
|
|
|
'label-message' => 'tog-enotifrevealaddr',
|
|
|
|
|
|
'disabled' => $disableEmailPrefs,
|
|
|
|
|
|
];
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* @param User $user
|
|
|
|
|
|
* @param IContextSource $context
|
|
|
|
|
|
* @param array &$defaultPreferences
|
|
|
|
|
|
* @return void
|
|
|
|
|
|
*/
|
|
|
|
|
|
protected function skinPreferences( User $user, IContextSource $context, &$defaultPreferences ) {
|
|
|
|
|
|
# # Skin #####################################
|
|
|
|
|
|
|
|
|
|
|
|
// Skin selector, if there is at least one valid skin
|
|
|
|
|
|
$skinOptions = $this->generateSkinOptions( $user, $context );
|
|
|
|
|
|
if ( $skinOptions ) {
|
|
|
|
|
|
$defaultPreferences['skin'] = [
|
|
|
|
|
|
'type' => 'radio',
|
|
|
|
|
|
'options' => $skinOptions,
|
|
|
|
|
|
'section' => 'rendering/skin',
|
|
|
|
|
|
];
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
$allowUserCss = $this->config->get( 'AllowUserCss' );
|
|
|
|
|
|
$allowUserJs = $this->config->get( 'AllowUserJs' );
|
|
|
|
|
|
# Create links to user CSS/JS pages for all skins
|
|
|
|
|
|
# This code is basically copied from generateSkinOptions(). It'd
|
|
|
|
|
|
# be nice to somehow merge this back in there to avoid redundancy.
|
|
|
|
|
|
if ( $allowUserCss || $allowUserJs ) {
|
|
|
|
|
|
$linkTools = [];
|
|
|
|
|
|
$userName = $user->getName();
|
|
|
|
|
|
|
|
|
|
|
|
if ( $allowUserCss ) {
|
|
|
|
|
|
$cssPage = Title::makeTitleSafe( NS_USER, $userName . '/common.css' );
|
|
|
|
|
|
$cssLinkText = $context->msg( 'prefs-custom-css' )->text();
|
|
|
|
|
|
$linkTools[] = $this->linkRenderer->makeLink( $cssPage, $cssLinkText );
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if ( $allowUserJs ) {
|
|
|
|
|
|
$jsPage = Title::makeTitleSafe( NS_USER, $userName . '/common.js' );
|
|
|
|
|
|
$jsLinkText = $context->msg( 'prefs-custom-js' )->text();
|
|
|
|
|
|
$linkTools[] = $this->linkRenderer->makeLink( $jsPage, $jsLinkText );
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
$defaultPreferences['commoncssjs'] = [
|
|
|
|
|
|
'type' => 'info',
|
|
|
|
|
|
'raw' => true,
|
|
|
|
|
|
'default' => $context->getLanguage()->pipeList( $linkTools ),
|
2018-02-13 00:15:30 +00:00
|
|
|
|
'label-message' => 'prefs-common-config',
|
2017-11-07 03:10:14 +00:00
|
|
|
|
'section' => 'rendering/skin',
|
|
|
|
|
|
];
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* @param IContextSource $context
|
|
|
|
|
|
* @param array &$defaultPreferences
|
|
|
|
|
|
*/
|
|
|
|
|
|
protected function filesPreferences( IContextSource $context, &$defaultPreferences ) {
|
|
|
|
|
|
# # Files #####################################
|
|
|
|
|
|
$defaultPreferences['imagesize'] = [
|
|
|
|
|
|
'type' => 'select',
|
|
|
|
|
|
'options' => $this->getImageSizes( $context ),
|
|
|
|
|
|
'label-message' => 'imagemaxsize',
|
|
|
|
|
|
'section' => 'rendering/files',
|
|
|
|
|
|
];
|
|
|
|
|
|
$defaultPreferences['thumbsize'] = [
|
|
|
|
|
|
'type' => 'select',
|
|
|
|
|
|
'options' => $this->getThumbSizes( $context ),
|
|
|
|
|
|
'label-message' => 'thumbsize',
|
|
|
|
|
|
'section' => 'rendering/files',
|
|
|
|
|
|
];
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* @param User $user
|
|
|
|
|
|
* @param IContextSource $context
|
|
|
|
|
|
* @param array &$defaultPreferences
|
|
|
|
|
|
* @return void
|
|
|
|
|
|
*/
|
|
|
|
|
|
protected function datetimePreferences( $user, IContextSource $context, &$defaultPreferences ) {
|
|
|
|
|
|
# # Date and time #####################################
|
|
|
|
|
|
$dateOptions = $this->getDateOptions( $context );
|
|
|
|
|
|
if ( $dateOptions ) {
|
|
|
|
|
|
$defaultPreferences['date'] = [
|
|
|
|
|
|
'type' => 'radio',
|
|
|
|
|
|
'options' => $dateOptions,
|
|
|
|
|
|
'section' => 'rendering/dateformat',
|
|
|
|
|
|
];
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Info
|
|
|
|
|
|
$now = wfTimestampNow();
|
|
|
|
|
|
$lang = $context->getLanguage();
|
|
|
|
|
|
$nowlocal = Xml::element( 'span', [ 'id' => 'wpLocalTime' ],
|
|
|
|
|
|
$lang->userTime( $now, $user ) );
|
|
|
|
|
|
$nowserver = $lang->userTime( $now, $user,
|
|
|
|
|
|
[ 'format' => false, 'timecorrection' => false ] ) .
|
|
|
|
|
|
Html::hidden( 'wpServerTime', (int)substr( $now, 8, 2 ) * 60 + (int)substr( $now, 10, 2 ) );
|
|
|
|
|
|
|
|
|
|
|
|
$defaultPreferences['nowserver'] = [
|
|
|
|
|
|
'type' => 'info',
|
|
|
|
|
|
'raw' => 1,
|
|
|
|
|
|
'label-message' => 'servertime',
|
|
|
|
|
|
'default' => $nowserver,
|
|
|
|
|
|
'section' => 'rendering/timeoffset',
|
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
|
|
$defaultPreferences['nowlocal'] = [
|
|
|
|
|
|
'type' => 'info',
|
|
|
|
|
|
'raw' => 1,
|
|
|
|
|
|
'label-message' => 'localtime',
|
|
|
|
|
|
'default' => $nowlocal,
|
|
|
|
|
|
'section' => 'rendering/timeoffset',
|
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
|
|
// Grab existing pref.
|
|
|
|
|
|
$tzOffset = $user->getOption( 'timecorrection' );
|
|
|
|
|
|
$tz = explode( '|', $tzOffset, 3 );
|
|
|
|
|
|
|
|
|
|
|
|
$tzOptions = $this->getTimezoneOptions( $context );
|
|
|
|
|
|
|
|
|
|
|
|
$tzSetting = $tzOffset;
|
|
|
|
|
|
if ( count( $tz ) > 1 && $tz[0] == 'ZoneInfo' &&
|
|
|
|
|
|
!in_array( $tzOffset, HTMLFormField::flattenOptions( $tzOptions ) )
|
|
|
|
|
|
) {
|
|
|
|
|
|
// Timezone offset can vary with DST
|
|
|
|
|
|
try {
|
|
|
|
|
|
$userTZ = new DateTimeZone( $tz[2] );
|
|
|
|
|
|
$minDiff = floor( $userTZ->getOffset( new DateTime( 'now' ) ) / 60 );
|
|
|
|
|
|
$tzSetting = "ZoneInfo|$minDiff|{$tz[2]}";
|
|
|
|
|
|
} catch ( Exception $e ) {
|
|
|
|
|
|
// User has an invalid time zone set. Fall back to just using the offset
|
|
|
|
|
|
$tz[0] = 'Offset';
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
if ( count( $tz ) > 1 && $tz[0] == 'Offset' ) {
|
|
|
|
|
|
$minDiff = $tz[1];
|
|
|
|
|
|
$tzSetting = sprintf( '%+03d:%02d', floor( $minDiff / 60 ), abs( $minDiff ) % 60 );
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
$defaultPreferences['timecorrection'] = [
|
2018-01-13 00:02:09 +00:00
|
|
|
|
'class' => \HTMLSelectOrOtherField::class,
|
2017-11-07 03:10:14 +00:00
|
|
|
|
'label-message' => 'timezonelegend',
|
|
|
|
|
|
'options' => $tzOptions,
|
|
|
|
|
|
'default' => $tzSetting,
|
|
|
|
|
|
'size' => 20,
|
|
|
|
|
|
'section' => 'rendering/timeoffset',
|
2018-05-01 13:59:29 +00:00
|
|
|
|
'id' => 'wpTimeCorrection',
|
2018-07-06 19:21:22 +00:00
|
|
|
|
'filter' => TimezoneFilter::class,
|
2018-11-27 23:03:02 +00:00
|
|
|
|
'placeholder-message' => 'timezone-useoffset-placeholder',
|
2017-11-07 03:10:14 +00:00
|
|
|
|
];
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* @param MessageLocalizer $l10n
|
|
|
|
|
|
* @param array &$defaultPreferences
|
|
|
|
|
|
*/
|
|
|
|
|
|
protected function renderingPreferences( MessageLocalizer $l10n, &$defaultPreferences ) {
|
|
|
|
|
|
# # Diffs ####################################
|
|
|
|
|
|
$defaultPreferences['diffonly'] = [
|
|
|
|
|
|
'type' => 'toggle',
|
|
|
|
|
|
'section' => 'rendering/diffs',
|
|
|
|
|
|
'label-message' => 'tog-diffonly',
|
|
|
|
|
|
];
|
|
|
|
|
|
$defaultPreferences['norollbackdiff'] = [
|
|
|
|
|
|
'type' => 'toggle',
|
|
|
|
|
|
'section' => 'rendering/diffs',
|
|
|
|
|
|
'label-message' => 'tog-norollbackdiff',
|
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
|
|
# # Page Rendering ##############################
|
|
|
|
|
|
if ( $this->config->get( 'AllowUserCssPrefs' ) ) {
|
|
|
|
|
|
$defaultPreferences['underline'] = [
|
|
|
|
|
|
'type' => 'select',
|
|
|
|
|
|
'options' => [
|
|
|
|
|
|
$l10n->msg( 'underline-never' )->text() => 0,
|
|
|
|
|
|
$l10n->msg( 'underline-always' )->text() => 1,
|
|
|
|
|
|
$l10n->msg( 'underline-default' )->text() => 2,
|
|
|
|
|
|
],
|
|
|
|
|
|
'label-message' => 'tog-underline',
|
|
|
|
|
|
'section' => 'rendering/advancedrendering',
|
|
|
|
|
|
];
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
$stubThresholdValues = [ 50, 100, 500, 1000, 2000, 5000, 10000 ];
|
|
|
|
|
|
$stubThresholdOptions = [ $l10n->msg( 'stub-threshold-disabled' )->text() => 0 ];
|
|
|
|
|
|
foreach ( $stubThresholdValues as $value ) {
|
|
|
|
|
|
$stubThresholdOptions[$l10n->msg( 'size-bytes', $value )->text()] = $value;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
$defaultPreferences['stubthreshold'] = [
|
|
|
|
|
|
'type' => 'select',
|
|
|
|
|
|
'section' => 'rendering/advancedrendering',
|
|
|
|
|
|
'options' => $stubThresholdOptions,
|
|
|
|
|
|
// This is not a raw HTML message; label-raw is needed for the manual <a></a>
|
|
|
|
|
|
'label-raw' => $l10n->msg( 'stub-threshold' )->rawParams(
|
|
|
|
|
|
'<a href="#" class="stub">' .
|
|
|
|
|
|
$l10n->msg( 'stub-threshold-sample-link' )->parse() .
|
|
|
|
|
|
'</a>' )->parse(),
|
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
|
|
$defaultPreferences['showhiddencats'] = [
|
|
|
|
|
|
'type' => 'toggle',
|
|
|
|
|
|
'section' => 'rendering/advancedrendering',
|
|
|
|
|
|
'label-message' => 'tog-showhiddencats'
|
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
|
|
$defaultPreferences['numberheadings'] = [
|
|
|
|
|
|
'type' => 'toggle',
|
|
|
|
|
|
'section' => 'rendering/advancedrendering',
|
|
|
|
|
|
'label-message' => 'tog-numberheadings',
|
|
|
|
|
|
];
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* @param User $user
|
|
|
|
|
|
* @param MessageLocalizer $l10n
|
|
|
|
|
|
* @param array &$defaultPreferences
|
|
|
|
|
|
*/
|
|
|
|
|
|
protected function editingPreferences( User $user, MessageLocalizer $l10n, &$defaultPreferences ) {
|
|
|
|
|
|
# # Editing #####################################
|
|
|
|
|
|
$defaultPreferences['editsectiononrightclick'] = [
|
|
|
|
|
|
'type' => 'toggle',
|
|
|
|
|
|
'section' => 'editing/advancedediting',
|
|
|
|
|
|
'label-message' => 'tog-editsectiononrightclick',
|
|
|
|
|
|
];
|
|
|
|
|
|
$defaultPreferences['editondblclick'] = [
|
|
|
|
|
|
'type' => 'toggle',
|
|
|
|
|
|
'section' => 'editing/advancedediting',
|
|
|
|
|
|
'label-message' => 'tog-editondblclick',
|
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
|
|
if ( $this->config->get( 'AllowUserCssPrefs' ) ) {
|
|
|
|
|
|
$defaultPreferences['editfont'] = [
|
|
|
|
|
|
'type' => 'select',
|
|
|
|
|
|
'section' => 'editing/editor',
|
|
|
|
|
|
'label-message' => 'editfont-style',
|
|
|
|
|
|
'options' => [
|
|
|
|
|
|
$l10n->msg( 'editfont-monospace' )->text() => 'monospace',
|
|
|
|
|
|
$l10n->msg( 'editfont-sansserif' )->text() => 'sans-serif',
|
|
|
|
|
|
$l10n->msg( 'editfont-serif' )->text() => 'serif',
|
|
|
|
|
|
]
|
|
|
|
|
|
];
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if ( $user->isAllowed( 'minoredit' ) ) {
|
|
|
|
|
|
$defaultPreferences['minordefault'] = [
|
|
|
|
|
|
'type' => 'toggle',
|
|
|
|
|
|
'section' => 'editing/editor',
|
|
|
|
|
|
'label-message' => 'tog-minordefault',
|
|
|
|
|
|
];
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
$defaultPreferences['forceeditsummary'] = [
|
|
|
|
|
|
'type' => 'toggle',
|
|
|
|
|
|
'section' => 'editing/editor',
|
|
|
|
|
|
'label-message' => 'tog-forceeditsummary',
|
|
|
|
|
|
];
|
|
|
|
|
|
$defaultPreferences['useeditwarning'] = [
|
|
|
|
|
|
'type' => 'toggle',
|
|
|
|
|
|
'section' => 'editing/editor',
|
|
|
|
|
|
'label-message' => 'tog-useeditwarning',
|
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
|
|
$defaultPreferences['previewonfirst'] = [
|
|
|
|
|
|
'type' => 'toggle',
|
|
|
|
|
|
'section' => 'editing/preview',
|
|
|
|
|
|
'label-message' => 'tog-previewonfirst',
|
|
|
|
|
|
];
|
|
|
|
|
|
$defaultPreferences['previewontop'] = [
|
|
|
|
|
|
'type' => 'toggle',
|
|
|
|
|
|
'section' => 'editing/preview',
|
|
|
|
|
|
'label-message' => 'tog-previewontop',
|
|
|
|
|
|
];
|
|
|
|
|
|
$defaultPreferences['uselivepreview'] = [
|
|
|
|
|
|
'type' => 'toggle',
|
|
|
|
|
|
'section' => 'editing/preview',
|
|
|
|
|
|
'label-message' => 'tog-uselivepreview',
|
|
|
|
|
|
];
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* @param User $user
|
|
|
|
|
|
* @param MessageLocalizer $l10n
|
|
|
|
|
|
* @param array &$defaultPreferences
|
|
|
|
|
|
*/
|
|
|
|
|
|
protected function rcPreferences( User $user, MessageLocalizer $l10n, &$defaultPreferences ) {
|
|
|
|
|
|
$rcMaxAge = $this->config->get( 'RCMaxAge' );
|
|
|
|
|
|
# # RecentChanges #####################################
|
|
|
|
|
|
$defaultPreferences['rcdays'] = [
|
|
|
|
|
|
'type' => 'float',
|
|
|
|
|
|
'label-message' => 'recentchangesdays',
|
|
|
|
|
|
'section' => 'rc/displayrc',
|
2018-09-21 19:17:16 +00:00
|
|
|
|
'min' => 1 / 24,
|
2017-11-07 03:10:14 +00:00
|
|
|
|
'max' => ceil( $rcMaxAge / ( 3600 * 24 ) ),
|
|
|
|
|
|
'help' => $l10n->msg( 'recentchangesdays-max' )->numParams(
|
|
|
|
|
|
ceil( $rcMaxAge / ( 3600 * 24 ) ) )->escaped()
|
|
|
|
|
|
];
|
|
|
|
|
|
$defaultPreferences['rclimit'] = [
|
|
|
|
|
|
'type' => 'int',
|
2018-09-21 19:17:16 +00:00
|
|
|
|
'min' => 1,
|
2017-11-07 03:10:14 +00:00
|
|
|
|
'max' => 1000,
|
|
|
|
|
|
'label-message' => 'recentchangescount',
|
|
|
|
|
|
'help-message' => 'prefs-help-recentchangescount',
|
|
|
|
|
|
'section' => 'rc/displayrc',
|
2018-07-06 19:21:22 +00:00
|
|
|
|
'filter' => IntvalFilter::class,
|
2017-11-07 03:10:14 +00:00
|
|
|
|
];
|
|
|
|
|
|
$defaultPreferences['usenewrc'] = [
|
|
|
|
|
|
'type' => 'toggle',
|
|
|
|
|
|
'label-message' => 'tog-usenewrc',
|
|
|
|
|
|
'section' => 'rc/advancedrc',
|
|
|
|
|
|
];
|
|
|
|
|
|
$defaultPreferences['hideminor'] = [
|
|
|
|
|
|
'type' => 'toggle',
|
|
|
|
|
|
'label-message' => 'tog-hideminor',
|
2018-09-25 05:35:55 +00:00
|
|
|
|
'section' => 'rc/changesrc',
|
2017-11-07 03:10:14 +00:00
|
|
|
|
];
|
2018-06-18 22:04:47 +00:00
|
|
|
|
$defaultPreferences['rcfilters-rc-collapsed'] = [
|
|
|
|
|
|
'type' => 'api',
|
|
|
|
|
|
];
|
|
|
|
|
|
$defaultPreferences['rcfilters-wl-collapsed'] = [
|
|
|
|
|
|
'type' => 'api',
|
|
|
|
|
|
];
|
2017-11-07 03:10:14 +00:00
|
|
|
|
$defaultPreferences['rcfilters-saved-queries'] = [
|
|
|
|
|
|
'type' => 'api',
|
|
|
|
|
|
];
|
|
|
|
|
|
$defaultPreferences['rcfilters-wl-saved-queries'] = [
|
|
|
|
|
|
'type' => 'api',
|
|
|
|
|
|
];
|
|
|
|
|
|
// Override RCFilters preferences for RecentChanges 'limit'
|
|
|
|
|
|
$defaultPreferences['rcfilters-limit'] = [
|
|
|
|
|
|
'type' => 'api',
|
|
|
|
|
|
];
|
|
|
|
|
|
$defaultPreferences['rcfilters-saved-queries-versionbackup'] = [
|
|
|
|
|
|
'type' => 'api',
|
|
|
|
|
|
];
|
|
|
|
|
|
$defaultPreferences['rcfilters-wl-saved-queries-versionbackup'] = [
|
|
|
|
|
|
'type' => 'api',
|
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
|
|
if ( $this->config->get( 'RCWatchCategoryMembership' ) ) {
|
|
|
|
|
|
$defaultPreferences['hidecategorization'] = [
|
|
|
|
|
|
'type' => 'toggle',
|
|
|
|
|
|
'label-message' => 'tog-hidecategorization',
|
2018-09-25 05:35:55 +00:00
|
|
|
|
'section' => 'rc/changesrc',
|
2017-11-07 03:10:14 +00:00
|
|
|
|
];
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if ( $user->useRCPatrol() ) {
|
|
|
|
|
|
$defaultPreferences['hidepatrolled'] = [
|
|
|
|
|
|
'type' => 'toggle',
|
2018-09-25 05:35:55 +00:00
|
|
|
|
'section' => 'rc/changesrc',
|
2017-11-07 03:10:14 +00:00
|
|
|
|
'label-message' => 'tog-hidepatrolled',
|
|
|
|
|
|
];
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if ( $user->useNPPatrol() ) {
|
|
|
|
|
|
$defaultPreferences['newpageshidepatrolled'] = [
|
|
|
|
|
|
'type' => 'toggle',
|
2018-09-25 05:35:55 +00:00
|
|
|
|
'section' => 'rc/changesrc',
|
2017-11-07 03:10:14 +00:00
|
|
|
|
'label-message' => 'tog-newpageshidepatrolled',
|
|
|
|
|
|
];
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if ( $this->config->get( 'RCShowWatchingUsers' ) ) {
|
|
|
|
|
|
$defaultPreferences['shownumberswatching'] = [
|
|
|
|
|
|
'type' => 'toggle',
|
|
|
|
|
|
'section' => 'rc/advancedrc',
|
|
|
|
|
|
'label-message' => 'tog-shownumberswatching',
|
|
|
|
|
|
];
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-09-27 17:09:33 +00:00
|
|
|
|
$defaultPreferences['rcenhancedfilters-disable'] = [
|
|
|
|
|
|
'type' => 'toggle',
|
2018-11-06 21:45:09 +00:00
|
|
|
|
'section' => 'rc/advancedrc',
|
2018-09-27 17:09:33 +00:00
|
|
|
|
'label-message' => 'rcfilters-preference-label',
|
|
|
|
|
|
'help-message' => 'rcfilters-preference-help',
|
|
|
|
|
|
];
|
2017-11-07 03:10:14 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* @param User $user
|
|
|
|
|
|
* @param IContextSource $context
|
|
|
|
|
|
* @param array &$defaultPreferences
|
|
|
|
|
|
*/
|
|
|
|
|
|
protected function watchlistPreferences(
|
|
|
|
|
|
User $user, IContextSource $context, &$defaultPreferences
|
|
|
|
|
|
) {
|
|
|
|
|
|
$watchlistdaysMax = ceil( $this->config->get( 'RCMaxAge' ) / ( 3600 * 24 ) );
|
|
|
|
|
|
|
|
|
|
|
|
# # Watchlist #####################################
|
|
|
|
|
|
if ( $user->isAllowed( 'editmywatchlist' ) ) {
|
2018-05-01 13:59:29 +00:00
|
|
|
|
$editWatchlistLinks = '';
|
|
|
|
|
|
$editWatchlistLinksOld = [];
|
2017-11-07 03:10:14 +00:00
|
|
|
|
$editWatchlistModes = [
|
2018-05-01 13:59:29 +00:00
|
|
|
|
'edit' => [ 'subpage' => false, 'flags' => [] ],
|
|
|
|
|
|
'raw' => [ 'subpage' => 'raw', 'flags' => [] ],
|
|
|
|
|
|
'clear' => [ 'subpage' => 'clear', 'flags' => [ 'destructive' ] ],
|
2017-11-07 03:10:14 +00:00
|
|
|
|
];
|
2018-05-01 13:59:29 +00:00
|
|
|
|
foreach ( $editWatchlistModes as $mode => $options ) {
|
2017-11-07 03:10:14 +00:00
|
|
|
|
// Messages: prefs-editwatchlist-edit, prefs-editwatchlist-raw, prefs-editwatchlist-clear
|
2018-09-18 18:46:46 +00:00
|
|
|
|
$editWatchlistLinks .=
|
|
|
|
|
|
new \OOUI\ButtonWidget( [
|
|
|
|
|
|
'href' => SpecialPage::getTitleFor( 'EditWatchlist', $options['subpage'] )->getLinkURL(),
|
|
|
|
|
|
'flags' => $options[ 'flags' ],
|
|
|
|
|
|
'label' => new \OOUI\HtmlSnippet(
|
|
|
|
|
|
$context->msg( "prefs-editwatchlist-{$mode}" )->parse()
|
|
|
|
|
|
),
|
|
|
|
|
|
] );
|
2017-11-07 03:10:14 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
$defaultPreferences['editwatchlist'] = [
|
|
|
|
|
|
'type' => 'info',
|
|
|
|
|
|
'raw' => true,
|
2018-09-18 18:46:46 +00:00
|
|
|
|
'default' => $editWatchlistLinks,
|
2017-11-07 03:10:14 +00:00
|
|
|
|
'label-message' => 'prefs-editwatchlist-label',
|
|
|
|
|
|
'section' => 'watchlist/editwatchlist',
|
|
|
|
|
|
];
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
$defaultPreferences['watchlistdays'] = [
|
|
|
|
|
|
'type' => 'float',
|
2018-09-06 14:50:08 +00:00
|
|
|
|
'min' => 1 / 24,
|
2017-11-07 03:10:14 +00:00
|
|
|
|
'max' => $watchlistdaysMax,
|
|
|
|
|
|
'section' => 'watchlist/displaywatchlist',
|
|
|
|
|
|
'help' => $context->msg( 'prefs-watchlist-days-max' )->numParams(
|
|
|
|
|
|
$watchlistdaysMax )->escaped(),
|
|
|
|
|
|
'label-message' => 'prefs-watchlist-days',
|
|
|
|
|
|
];
|
|
|
|
|
|
$defaultPreferences['wllimit'] = [
|
|
|
|
|
|
'type' => 'int',
|
2018-09-06 14:50:08 +00:00
|
|
|
|
'min' => 1,
|
2017-11-07 03:10:14 +00:00
|
|
|
|
'max' => 1000,
|
|
|
|
|
|
'label-message' => 'prefs-watchlist-edits',
|
|
|
|
|
|
'help' => $context->msg( 'prefs-watchlist-edits-max' )->escaped(),
|
|
|
|
|
|
'section' => 'watchlist/displaywatchlist',
|
2018-07-06 19:21:22 +00:00
|
|
|
|
'filter' => IntvalFilter::class,
|
2017-11-07 03:10:14 +00:00
|
|
|
|
];
|
|
|
|
|
|
$defaultPreferences['extendwatchlist'] = [
|
|
|
|
|
|
'type' => 'toggle',
|
|
|
|
|
|
'section' => 'watchlist/advancedwatchlist',
|
|
|
|
|
|
'label-message' => 'tog-extendwatchlist',
|
|
|
|
|
|
];
|
|
|
|
|
|
$defaultPreferences['watchlisthideminor'] = [
|
|
|
|
|
|
'type' => 'toggle',
|
2018-09-25 05:35:55 +00:00
|
|
|
|
'section' => 'watchlist/changeswatchlist',
|
2017-11-07 03:10:14 +00:00
|
|
|
|
'label-message' => 'tog-watchlisthideminor',
|
|
|
|
|
|
];
|
|
|
|
|
|
$defaultPreferences['watchlisthidebots'] = [
|
|
|
|
|
|
'type' => 'toggle',
|
2018-09-25 05:35:55 +00:00
|
|
|
|
'section' => 'watchlist/changeswatchlist',
|
2017-11-07 03:10:14 +00:00
|
|
|
|
'label-message' => 'tog-watchlisthidebots',
|
|
|
|
|
|
];
|
|
|
|
|
|
$defaultPreferences['watchlisthideown'] = [
|
|
|
|
|
|
'type' => 'toggle',
|
2018-09-25 05:35:55 +00:00
|
|
|
|
'section' => 'watchlist/changeswatchlist',
|
2017-11-07 03:10:14 +00:00
|
|
|
|
'label-message' => 'tog-watchlisthideown',
|
|
|
|
|
|
];
|
|
|
|
|
|
$defaultPreferences['watchlisthideanons'] = [
|
|
|
|
|
|
'type' => 'toggle',
|
2018-09-25 05:35:55 +00:00
|
|
|
|
'section' => 'watchlist/changeswatchlist',
|
2017-11-07 03:10:14 +00:00
|
|
|
|
'label-message' => 'tog-watchlisthideanons',
|
|
|
|
|
|
];
|
|
|
|
|
|
$defaultPreferences['watchlisthideliu'] = [
|
|
|
|
|
|
'type' => 'toggle',
|
2018-09-25 05:35:55 +00:00
|
|
|
|
'section' => 'watchlist/changeswatchlist',
|
2017-11-07 03:10:14 +00:00
|
|
|
|
'label-message' => 'tog-watchlisthideliu',
|
|
|
|
|
|
];
|
2018-03-26 08:04:40 +00:00
|
|
|
|
|
|
|
|
|
|
if ( !\SpecialWatchlist::checkStructuredFilterUiEnabled(
|
|
|
|
|
|
$this->config,
|
|
|
|
|
|
$user
|
|
|
|
|
|
) ) {
|
|
|
|
|
|
$defaultPreferences['watchlistreloadautomatically'] = [
|
|
|
|
|
|
'type' => 'toggle',
|
|
|
|
|
|
'section' => 'watchlist/advancedwatchlist',
|
|
|
|
|
|
'label-message' => 'tog-watchlistreloadautomatically',
|
|
|
|
|
|
];
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2017-11-07 03:10:14 +00:00
|
|
|
|
$defaultPreferences['watchlistunwatchlinks'] = [
|
|
|
|
|
|
'type' => 'toggle',
|
|
|
|
|
|
'section' => 'watchlist/advancedwatchlist',
|
|
|
|
|
|
'label-message' => 'tog-watchlistunwatchlinks',
|
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
|
|
if ( $this->config->get( 'RCWatchCategoryMembership' ) ) {
|
|
|
|
|
|
$defaultPreferences['watchlisthidecategorization'] = [
|
|
|
|
|
|
'type' => 'toggle',
|
2018-09-25 05:35:55 +00:00
|
|
|
|
'section' => 'watchlist/changeswatchlist',
|
2017-11-07 03:10:14 +00:00
|
|
|
|
'label-message' => 'tog-watchlisthidecategorization',
|
|
|
|
|
|
];
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if ( $user->useRCPatrol() ) {
|
|
|
|
|
|
$defaultPreferences['watchlisthidepatrolled'] = [
|
|
|
|
|
|
'type' => 'toggle',
|
2018-09-25 05:35:55 +00:00
|
|
|
|
'section' => 'watchlist/changeswatchlist',
|
2017-11-07 03:10:14 +00:00
|
|
|
|
'label-message' => 'tog-watchlisthidepatrolled',
|
|
|
|
|
|
];
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
$watchTypes = [
|
|
|
|
|
|
'edit' => 'watchdefault',
|
|
|
|
|
|
'move' => 'watchmoves',
|
|
|
|
|
|
'delete' => 'watchdeletion'
|
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
|
|
// Kinda hacky
|
|
|
|
|
|
if ( $user->isAllowed( 'createpage' ) || $user->isAllowed( 'createtalk' ) ) {
|
|
|
|
|
|
$watchTypes['read'] = 'watchcreations';
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if ( $user->isAllowed( 'rollback' ) ) {
|
|
|
|
|
|
$watchTypes['rollback'] = 'watchrollback';
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if ( $user->isAllowed( 'upload' ) ) {
|
|
|
|
|
|
$watchTypes['upload'] = 'watchuploads';
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
foreach ( $watchTypes as $action => $pref ) {
|
|
|
|
|
|
if ( $user->isAllowed( $action ) ) {
|
|
|
|
|
|
// Messages:
|
|
|
|
|
|
// tog-watchdefault, tog-watchmoves, tog-watchdeletion, tog-watchcreations, tog-watchuploads
|
|
|
|
|
|
// tog-watchrollback
|
|
|
|
|
|
$defaultPreferences[$pref] = [
|
|
|
|
|
|
'type' => 'toggle',
|
2018-09-25 05:35:55 +00:00
|
|
|
|
'section' => 'watchlist/pageswatchlist',
|
2017-11-07 03:10:14 +00:00
|
|
|
|
'label-message' => "tog-$pref",
|
|
|
|
|
|
];
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2017-11-20 23:50:22 +00:00
|
|
|
|
$defaultPreferences['watchlisttoken'] = [
|
|
|
|
|
|
'type' => 'api',
|
|
|
|
|
|
];
|
2018-05-01 13:59:29 +00:00
|
|
|
|
|
2018-09-18 18:46:46 +00:00
|
|
|
|
$tokenButton = new \OOUI\ButtonWidget( [
|
|
|
|
|
|
'href' => SpecialPage::getTitleFor( 'ResetTokens' )->getLinkURL( [
|
|
|
|
|
|
'returnto' => SpecialPage::getTitleFor( 'Preferences' )->getPrefixedText()
|
|
|
|
|
|
] ),
|
|
|
|
|
|
'label' => $context->msg( 'prefs-watchlist-managetokens' )->text(),
|
|
|
|
|
|
] );
|
|
|
|
|
|
$defaultPreferences['watchlisttoken-info'] = [
|
|
|
|
|
|
'type' => 'info',
|
|
|
|
|
|
'section' => 'watchlist/tokenwatchlist',
|
|
|
|
|
|
'label-message' => 'prefs-watchlist-token',
|
|
|
|
|
|
'help-message' => 'prefs-help-tokenmanagement',
|
|
|
|
|
|
'raw' => true,
|
|
|
|
|
|
'default' => (string)$tokenButton,
|
|
|
|
|
|
];
|
2018-05-31 02:25:17 +00:00
|
|
|
|
|
2018-09-27 17:09:33 +00:00
|
|
|
|
$defaultPreferences['wlenhancedfilters-disable'] = [
|
|
|
|
|
|
'type' => 'toggle',
|
2018-11-06 21:45:09 +00:00
|
|
|
|
'section' => 'watchlist/advancedwatchlist',
|
2018-09-27 17:09:33 +00:00
|
|
|
|
'label-message' => 'rcfilters-watchlist-preference-label',
|
|
|
|
|
|
'help-message' => 'rcfilters-watchlist-preference-help',
|
|
|
|
|
|
];
|
2017-11-07 03:10:14 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* @param array &$defaultPreferences
|
|
|
|
|
|
*/
|
|
|
|
|
|
protected function searchPreferences( &$defaultPreferences ) {
|
|
|
|
|
|
foreach ( MWNamespace::getValidNamespaces() as $n ) {
|
|
|
|
|
|
$defaultPreferences['searchNs' . $n] = [
|
|
|
|
|
|
'type' => 'api',
|
|
|
|
|
|
];
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* @param User $user The User object
|
|
|
|
|
|
* @param IContextSource $context
|
|
|
|
|
|
* @return array Text/links to display as key; $skinkey as value
|
|
|
|
|
|
*/
|
|
|
|
|
|
protected function generateSkinOptions( User $user, IContextSource $context ) {
|
|
|
|
|
|
$ret = [];
|
|
|
|
|
|
|
|
|
|
|
|
$mptitle = Title::newMainPage();
|
|
|
|
|
|
$previewtext = $context->msg( 'skin-preview' )->escaped();
|
|
|
|
|
|
|
|
|
|
|
|
# Only show skins that aren't disabled in $wgSkipSkins
|
|
|
|
|
|
$validSkinNames = Skin::getAllowedSkins();
|
|
|
|
|
|
|
|
|
|
|
|
foreach ( $validSkinNames as $skinkey => &$skinname ) {
|
|
|
|
|
|
$msg = $context->msg( "skinname-{$skinkey}" );
|
|
|
|
|
|
if ( $msg->exists() ) {
|
|
|
|
|
|
$skinname = htmlspecialchars( $msg->text() );
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
$defaultSkin = $this->config->get( 'DefaultSkin' );
|
|
|
|
|
|
$allowUserCss = $this->config->get( 'AllowUserCss' );
|
|
|
|
|
|
$allowUserJs = $this->config->get( 'AllowUserJs' );
|
|
|
|
|
|
|
|
|
|
|
|
# Sort by the internal name, so that the ordering is the same for each display language,
|
|
|
|
|
|
# especially if some skin names are translated to use a different alphabet and some are not.
|
|
|
|
|
|
uksort( $validSkinNames, function ( $a, $b ) use ( $defaultSkin ) {
|
|
|
|
|
|
# Display the default first in the list by comparing it as lesser than any other.
|
|
|
|
|
|
if ( strcasecmp( $a, $defaultSkin ) === 0 ) {
|
|
|
|
|
|
return -1;
|
|
|
|
|
|
}
|
|
|
|
|
|
if ( strcasecmp( $b, $defaultSkin ) === 0 ) {
|
|
|
|
|
|
return 1;
|
|
|
|
|
|
}
|
|
|
|
|
|
return strcasecmp( $a, $b );
|
|
|
|
|
|
} );
|
|
|
|
|
|
|
|
|
|
|
|
$foundDefault = false;
|
|
|
|
|
|
foreach ( $validSkinNames as $skinkey => $sn ) {
|
|
|
|
|
|
$linkTools = [];
|
|
|
|
|
|
|
|
|
|
|
|
# Mark the default skin
|
|
|
|
|
|
if ( strcasecmp( $skinkey, $defaultSkin ) === 0 ) {
|
|
|
|
|
|
$linkTools[] = $context->msg( 'default' )->escaped();
|
|
|
|
|
|
$foundDefault = true;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
# Create preview link
|
|
|
|
|
|
$mplink = htmlspecialchars( $mptitle->getLocalURL( [ 'useskin' => $skinkey ] ) );
|
|
|
|
|
|
$linkTools[] = "<a target='_blank' href=\"$mplink\">$previewtext</a>";
|
|
|
|
|
|
|
|
|
|
|
|
# Create links to user CSS/JS pages
|
|
|
|
|
|
if ( $allowUserCss ) {
|
|
|
|
|
|
$cssPage = Title::makeTitleSafe( NS_USER, $user->getName() . '/' . $skinkey . '.css' );
|
|
|
|
|
|
$cssLinkText = $context->msg( 'prefs-custom-css' )->text();
|
|
|
|
|
|
$linkTools[] = $this->linkRenderer->makeLink( $cssPage, $cssLinkText );
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if ( $allowUserJs ) {
|
|
|
|
|
|
$jsPage = Title::makeTitleSafe( NS_USER, $user->getName() . '/' . $skinkey . '.js' );
|
|
|
|
|
|
$jsLinkText = $context->msg( 'prefs-custom-js' )->text();
|
|
|
|
|
|
$linkTools[] = $this->linkRenderer->makeLink( $jsPage, $jsLinkText );
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
$display = $sn . ' ' . $context->msg( 'parentheses' )
|
|
|
|
|
|
->rawParams( $context->getLanguage()->pipeList( $linkTools ) )
|
|
|
|
|
|
->escaped();
|
|
|
|
|
|
$ret[$display] = $skinkey;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if ( !$foundDefault ) {
|
|
|
|
|
|
// If the default skin is not available, things are going to break horribly because the
|
|
|
|
|
|
// default value for skin selector will not be a valid value. Let's just not show it then.
|
|
|
|
|
|
return [];
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return $ret;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* @param IContextSource $context
|
|
|
|
|
|
* @return array
|
|
|
|
|
|
*/
|
|
|
|
|
|
protected function getDateOptions( IContextSource $context ) {
|
|
|
|
|
|
$lang = $context->getLanguage();
|
|
|
|
|
|
$dateopts = $lang->getDatePreferences();
|
|
|
|
|
|
|
|
|
|
|
|
$ret = [];
|
|
|
|
|
|
|
|
|
|
|
|
if ( $dateopts ) {
|
|
|
|
|
|
if ( !in_array( 'default', $dateopts ) ) {
|
|
|
|
|
|
$dateopts[] = 'default'; // Make sure default is always valid T21237
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// FIXME KLUGE: site default might not be valid for user language
|
|
|
|
|
|
global $wgDefaultUserOptions;
|
|
|
|
|
|
if ( !in_array( $wgDefaultUserOptions['date'], $dateopts ) ) {
|
|
|
|
|
|
$wgDefaultUserOptions['date'] = 'default';
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
$epoch = wfTimestampNow();
|
|
|
|
|
|
foreach ( $dateopts as $key ) {
|
|
|
|
|
|
if ( $key == 'default' ) {
|
|
|
|
|
|
$formatted = $context->msg( 'datedefault' )->escaped();
|
|
|
|
|
|
} else {
|
|
|
|
|
|
$formatted = htmlspecialchars( $lang->timeanddate( $epoch, false, $key ) );
|
|
|
|
|
|
}
|
|
|
|
|
|
$ret[$formatted] = $key;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
return $ret;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* @param MessageLocalizer $l10n
|
|
|
|
|
|
* @return array
|
|
|
|
|
|
*/
|
|
|
|
|
|
protected function getImageSizes( MessageLocalizer $l10n ) {
|
|
|
|
|
|
$ret = [];
|
|
|
|
|
|
$pixels = $l10n->msg( 'unit-pixel' )->text();
|
|
|
|
|
|
|
|
|
|
|
|
foreach ( $this->config->get( 'ImageLimits' ) as $index => $limits ) {
|
2018-01-08 22:18:00 +00:00
|
|
|
|
// Note: A left-to-right marker (U+200E) is inserted, see T144386
|
|
|
|
|
|
$display = "{$limits[0]}\u{200E}×{$limits[1]}$pixels";
|
2017-11-07 03:10:14 +00:00
|
|
|
|
$ret[$display] = $index;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return $ret;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* @param MessageLocalizer $l10n
|
|
|
|
|
|
* @return array
|
|
|
|
|
|
*/
|
|
|
|
|
|
protected function getThumbSizes( MessageLocalizer $l10n ) {
|
|
|
|
|
|
$ret = [];
|
|
|
|
|
|
$pixels = $l10n->msg( 'unit-pixel' )->text();
|
|
|
|
|
|
|
|
|
|
|
|
foreach ( $this->config->get( 'ThumbLimits' ) as $index => $size ) {
|
|
|
|
|
|
$display = $size . $pixels;
|
|
|
|
|
|
$ret[$display] = $index;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return $ret;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* @param string $signature
|
|
|
|
|
|
* @param array $alldata
|
|
|
|
|
|
* @param HTMLForm $form
|
|
|
|
|
|
* @return bool|string
|
|
|
|
|
|
*/
|
|
|
|
|
|
protected function validateSignature( $signature, $alldata, HTMLForm $form ) {
|
|
|
|
|
|
$maxSigChars = $this->config->get( 'MaxSigChars' );
|
|
|
|
|
|
if ( mb_strlen( $signature ) > $maxSigChars ) {
|
|
|
|
|
|
return Xml::element( 'span', [ 'class' => 'error' ],
|
|
|
|
|
|
$form->msg( 'badsiglength' )->numParams( $maxSigChars )->text() );
|
|
|
|
|
|
} elseif ( isset( $alldata['fancysig'] ) &&
|
|
|
|
|
|
$alldata['fancysig'] &&
|
|
|
|
|
|
MediaWikiServices::getInstance()->getParser()->validateSig( $signature ) === false
|
|
|
|
|
|
) {
|
|
|
|
|
|
return Xml::element(
|
|
|
|
|
|
'span',
|
|
|
|
|
|
[ 'class' => 'error' ],
|
|
|
|
|
|
$form->msg( 'badsig' )->text()
|
|
|
|
|
|
);
|
|
|
|
|
|
} else {
|
|
|
|
|
|
return true;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* @param string $signature
|
|
|
|
|
|
* @param array $alldata
|
|
|
|
|
|
* @param HTMLForm $form
|
|
|
|
|
|
* @return string
|
|
|
|
|
|
*/
|
|
|
|
|
|
protected function cleanSignature( $signature, $alldata, HTMLForm $form ) {
|
|
|
|
|
|
$parser = MediaWikiServices::getInstance()->getParser();
|
|
|
|
|
|
if ( isset( $alldata['fancysig'] ) && $alldata['fancysig'] ) {
|
|
|
|
|
|
$signature = $parser->cleanSig( $signature );
|
|
|
|
|
|
} else {
|
|
|
|
|
|
// When no fancy sig used, make sure ~{3,5} get removed.
|
|
|
|
|
|
$signature = Parser::cleanSigInSig( $signature );
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return $signature;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* @param User $user
|
|
|
|
|
|
* @param IContextSource $context
|
|
|
|
|
|
* @param string $formClass
|
|
|
|
|
|
* @param array $remove Array of items to remove
|
2018-05-09 20:39:20 +00:00
|
|
|
|
* @return HTMLForm
|
2017-11-07 03:10:14 +00:00
|
|
|
|
*/
|
|
|
|
|
|
public function getForm(
|
|
|
|
|
|
User $user,
|
|
|
|
|
|
IContextSource $context,
|
2018-05-29 20:24:40 +00:00
|
|
|
|
$formClass = PreferencesFormLegacy::class,
|
2017-11-07 03:10:14 +00:00
|
|
|
|
array $remove = []
|
|
|
|
|
|
) {
|
2018-09-18 18:46:46 +00:00
|
|
|
|
// We use ButtonWidgets in some of the getPreferences() functions
|
|
|
|
|
|
$context->getOutput()->enableOOUI();
|
2018-05-01 13:59:29 +00:00
|
|
|
|
|
2017-11-07 03:10:14 +00:00
|
|
|
|
$formDescriptor = $this->getFormDescriptor( $user, $context );
|
|
|
|
|
|
if ( count( $remove ) ) {
|
|
|
|
|
|
$removeKeys = array_flip( $remove );
|
|
|
|
|
|
$formDescriptor = array_diff_key( $formDescriptor, $removeKeys );
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Remove type=api preferences. They are not intended for rendering in the form.
|
|
|
|
|
|
foreach ( $formDescriptor as $name => $info ) {
|
|
|
|
|
|
if ( isset( $info['type'] ) && $info['type'] === 'api' ) {
|
|
|
|
|
|
unset( $formDescriptor[$name] );
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2018-05-09 20:39:20 +00:00
|
|
|
|
* @var $htmlForm HTMLForm
|
2017-11-07 03:10:14 +00:00
|
|
|
|
*/
|
|
|
|
|
|
$htmlForm = new $formClass( $formDescriptor, $context, 'prefs' );
|
|
|
|
|
|
|
|
|
|
|
|
$htmlForm->setModifiedUser( $user );
|
|
|
|
|
|
$htmlForm->setId( 'mw-prefs-form' );
|
|
|
|
|
|
$htmlForm->setAutocomplete( 'off' );
|
|
|
|
|
|
$htmlForm->setSubmitText( $context->msg( 'saveprefs' )->text() );
|
|
|
|
|
|
# Used message keys: 'accesskey-preferences-save', 'tooltip-preferences-save'
|
|
|
|
|
|
$htmlForm->setSubmitTooltip( 'preferences-save' );
|
|
|
|
|
|
$htmlForm->setSubmitID( 'prefcontrol' );
|
2018-07-06 19:21:22 +00:00
|
|
|
|
$htmlForm->setSubmitCallback(
|
|
|
|
|
|
function ( array $formData, HTMLForm $form ) use ( $formDescriptor ) {
|
|
|
|
|
|
return $this->submitForm( $formData, $form, $formDescriptor );
|
|
|
|
|
|
}
|
|
|
|
|
|
);
|
2017-11-07 03:10:14 +00:00
|
|
|
|
|
|
|
|
|
|
return $htmlForm;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* @param IContextSource $context
|
|
|
|
|
|
* @return array
|
|
|
|
|
|
*/
|
|
|
|
|
|
protected function getTimezoneOptions( IContextSource $context ) {
|
|
|
|
|
|
$opt = [];
|
|
|
|
|
|
|
|
|
|
|
|
$localTZoffset = $this->config->get( 'LocalTZoffset' );
|
|
|
|
|
|
$timeZoneList = $this->getTimeZoneList( $context->getLanguage() );
|
|
|
|
|
|
|
|
|
|
|
|
$timestamp = MWTimestamp::getLocalInstance();
|
|
|
|
|
|
// Check that the LocalTZoffset is the same as the local time zone offset
|
|
|
|
|
|
if ( $localTZoffset == $timestamp->format( 'Z' ) / 60 ) {
|
|
|
|
|
|
$timezoneName = $timestamp->getTimezone()->getName();
|
|
|
|
|
|
// Localize timezone
|
|
|
|
|
|
if ( isset( $timeZoneList[$timezoneName] ) ) {
|
|
|
|
|
|
$timezoneName = $timeZoneList[$timezoneName]['name'];
|
|
|
|
|
|
}
|
|
|
|
|
|
$server_tz_msg = $context->msg(
|
|
|
|
|
|
'timezoneuseserverdefault',
|
|
|
|
|
|
$timezoneName
|
|
|
|
|
|
)->text();
|
|
|
|
|
|
} else {
|
|
|
|
|
|
$tzstring = sprintf(
|
|
|
|
|
|
'%+03d:%02d',
|
|
|
|
|
|
floor( $localTZoffset / 60 ),
|
|
|
|
|
|
abs( $localTZoffset ) % 60
|
|
|
|
|
|
);
|
|
|
|
|
|
$server_tz_msg = $context->msg( 'timezoneuseserverdefault', $tzstring )->text();
|
|
|
|
|
|
}
|
|
|
|
|
|
$opt[$server_tz_msg] = "System|$localTZoffset";
|
|
|
|
|
|
$opt[$context->msg( 'timezoneuseoffset' )->text()] = 'other';
|
|
|
|
|
|
$opt[$context->msg( 'guesstimezone' )->text()] = 'guess';
|
|
|
|
|
|
|
|
|
|
|
|
foreach ( $timeZoneList as $timeZoneInfo ) {
|
|
|
|
|
|
$region = $timeZoneInfo['region'];
|
|
|
|
|
|
if ( !isset( $opt[$region] ) ) {
|
|
|
|
|
|
$opt[$region] = [];
|
|
|
|
|
|
}
|
|
|
|
|
|
$opt[$region][$timeZoneInfo['name']] = $timeZoneInfo['timecorrection'];
|
|
|
|
|
|
}
|
|
|
|
|
|
return $opt;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* Handle the form submission if everything validated properly
|
|
|
|
|
|
*
|
|
|
|
|
|
* @param array $formData
|
2018-05-09 20:39:20 +00:00
|
|
|
|
* @param HTMLForm $form
|
2018-07-06 19:21:22 +00:00
|
|
|
|
* @param array[] $formDescriptor
|
2017-11-07 03:10:14 +00:00
|
|
|
|
* @return bool|Status|string
|
|
|
|
|
|
*/
|
2018-07-06 19:21:22 +00:00
|
|
|
|
protected function saveFormData( $formData, HTMLForm $form, array $formDescriptor ) {
|
|
|
|
|
|
/** @var \User $user */
|
2017-11-07 03:10:14 +00:00
|
|
|
|
$user = $form->getModifiedUser();
|
|
|
|
|
|
$hiddenPrefs = $this->config->get( 'HiddenPrefs' );
|
|
|
|
|
|
$result = true;
|
|
|
|
|
|
|
|
|
|
|
|
if ( !$user->isAllowedAny( 'editmyprivateinfo', 'editmyoptions' ) ) {
|
|
|
|
|
|
return Status::newFatal( 'mypreferencesprotected' );
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Filter input
|
2018-07-06 19:21:22 +00:00
|
|
|
|
$this->applyFilters( $formData, $formDescriptor, 'filterFromForm' );
|
2017-11-07 03:10:14 +00:00
|
|
|
|
|
|
|
|
|
|
// Fortunately, the realname field is MUCH simpler
|
|
|
|
|
|
// (not really "private", but still shouldn't be edited without permission)
|
|
|
|
|
|
|
|
|
|
|
|
if ( !in_array( 'realname', $hiddenPrefs )
|
|
|
|
|
|
&& $user->isAllowed( 'editmyprivateinfo' )
|
|
|
|
|
|
&& array_key_exists( 'realname', $formData )
|
|
|
|
|
|
) {
|
|
|
|
|
|
$realName = $formData['realname'];
|
|
|
|
|
|
$user->setRealName( $realName );
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if ( $user->isAllowed( 'editmyoptions' ) ) {
|
|
|
|
|
|
$oldUserOptions = $user->getOptions();
|
|
|
|
|
|
|
|
|
|
|
|
foreach ( $this->getSaveBlacklist() as $b ) {
|
|
|
|
|
|
unset( $formData[$b] );
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
# If users have saved a value for a preference which has subsequently been disabled
|
|
|
|
|
|
# via $wgHiddenPrefs, we don't want to destroy that setting in case the preference
|
|
|
|
|
|
# is subsequently re-enabled
|
|
|
|
|
|
foreach ( $hiddenPrefs as $pref ) {
|
|
|
|
|
|
# If the user has not set a non-default value here, the default will be returned
|
|
|
|
|
|
# and subsequently discarded
|
|
|
|
|
|
$formData[$pref] = $user->getOption( $pref, null, true );
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// If the user changed the rclimit preference, also change the rcfilters-rclimit preference
|
|
|
|
|
|
if (
|
|
|
|
|
|
isset( $formData['rclimit'] ) &&
|
|
|
|
|
|
intval( $formData[ 'rclimit' ] ) !== $user->getIntOption( 'rclimit' )
|
|
|
|
|
|
) {
|
|
|
|
|
|
$formData['rcfilters-limit'] = $formData['rclimit'];
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Keep old preferences from interfering due to back-compat code, etc.
|
|
|
|
|
|
$user->resetOptions( 'unused', $form->getContext() );
|
|
|
|
|
|
|
|
|
|
|
|
foreach ( $formData as $key => $value ) {
|
|
|
|
|
|
$user->setOption( $key, $value );
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Hooks::run(
|
|
|
|
|
|
'PreferencesFormPreSave',
|
|
|
|
|
|
[ $formData, $form, $user, &$result, $oldUserOptions ]
|
|
|
|
|
|
);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
AuthManager::callLegacyAuthPlugin( 'updateExternalDB', [ $user ] );
|
|
|
|
|
|
$user->saveSettings();
|
|
|
|
|
|
|
|
|
|
|
|
return $result;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2018-07-06 19:21:22 +00:00
|
|
|
|
* Applies filters to preferences either before or after form usage
|
2017-11-07 03:10:14 +00:00
|
|
|
|
*
|
2018-07-06 19:21:22 +00:00
|
|
|
|
* @param array &$preferences
|
|
|
|
|
|
* @param array $formDescriptor
|
|
|
|
|
|
* @param string $verb Name of the filter method to call, either 'filterFromForm' or
|
|
|
|
|
|
* 'filterForForm'
|
2017-11-07 03:10:14 +00:00
|
|
|
|
*/
|
2018-07-06 19:21:22 +00:00
|
|
|
|
protected function applyFilters( array &$preferences, array $formDescriptor, $verb ) {
|
|
|
|
|
|
foreach ( $formDescriptor as $preference => $desc ) {
|
|
|
|
|
|
if ( !isset( $desc['filter'] ) || !isset( $preferences[$preference] ) ) {
|
|
|
|
|
|
continue;
|
|
|
|
|
|
}
|
|
|
|
|
|
$filterDesc = $desc['filter'];
|
|
|
|
|
|
if ( $filterDesc instanceof Filter ) {
|
|
|
|
|
|
$filter = $filterDesc;
|
|
|
|
|
|
} elseif ( class_exists( $filterDesc ) ) {
|
|
|
|
|
|
$filter = new $filterDesc();
|
|
|
|
|
|
} elseif ( is_callable( $filterDesc ) ) {
|
|
|
|
|
|
$filter = $filterDesc();
|
|
|
|
|
|
} else {
|
|
|
|
|
|
throw new UnexpectedValueException(
|
|
|
|
|
|
"Unrecognized filter type for preference '$preference'"
|
|
|
|
|
|
);
|
|
|
|
|
|
}
|
|
|
|
|
|
$preferences[$preference] = $filter->$verb( $preferences[$preference] );
|
|
|
|
|
|
}
|
2017-11-07 03:10:14 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* Save the form data and reload the page
|
|
|
|
|
|
*
|
|
|
|
|
|
* @param array $formData
|
2018-05-09 20:39:20 +00:00
|
|
|
|
* @param HTMLForm $form
|
2018-07-06 19:21:22 +00:00
|
|
|
|
* @param array $formDescriptor
|
2017-11-07 03:10:14 +00:00
|
|
|
|
* @return Status
|
|
|
|
|
|
*/
|
2018-07-06 19:21:22 +00:00
|
|
|
|
protected function submitForm( array $formData, HTMLForm $form, array $formDescriptor ) {
|
|
|
|
|
|
$res = $this->saveFormData( $formData, $form, $formDescriptor );
|
2017-11-07 03:10:14 +00:00
|
|
|
|
|
2018-04-10 22:20:20 +00:00
|
|
|
|
if ( $res === true ) {
|
2018-05-03 13:17:41 +00:00
|
|
|
|
$context = $form->getContext();
|
2017-11-07 03:10:14 +00:00
|
|
|
|
$urlOptions = [];
|
|
|
|
|
|
|
|
|
|
|
|
if ( $res === 'eauth' ) {
|
|
|
|
|
|
$urlOptions['eauth'] = 1;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
$urlOptions += $form->getExtraSuccessRedirectParameters();
|
|
|
|
|
|
|
|
|
|
|
|
$url = $form->getTitle()->getFullURL( $urlOptions );
|
|
|
|
|
|
|
|
|
|
|
|
// Set session data for the success message
|
|
|
|
|
|
$context->getRequest()->getSession()->set( 'specialPreferencesSaveSuccess', 1 );
|
|
|
|
|
|
|
|
|
|
|
|
$context->getOutput()->redirect( $url );
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-04-10 22:20:20 +00:00
|
|
|
|
return ( $res === true ? Status::newGood() : $res );
|
2017-11-07 03:10:14 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* Get a list of all time zones
|
|
|
|
|
|
* @param Language $language Language used for the localized names
|
|
|
|
|
|
* @return array A list of all time zones. The system name of the time zone is used as key and
|
|
|
|
|
|
* the value is an array which contains localized name, the timecorrection value used for
|
|
|
|
|
|
* preferences and the region
|
|
|
|
|
|
* @since 1.26
|
|
|
|
|
|
*/
|
|
|
|
|
|
protected function getTimeZoneList( Language $language ) {
|
|
|
|
|
|
$identifiers = DateTimeZone::listIdentifiers();
|
|
|
|
|
|
if ( $identifiers === false ) {
|
|
|
|
|
|
return [];
|
|
|
|
|
|
}
|
|
|
|
|
|
sort( $identifiers );
|
|
|
|
|
|
|
|
|
|
|
|
$tzRegions = [
|
|
|
|
|
|
'Africa' => wfMessage( 'timezoneregion-africa' )->inLanguage( $language )->text(),
|
|
|
|
|
|
'America' => wfMessage( 'timezoneregion-america' )->inLanguage( $language )->text(),
|
|
|
|
|
|
'Antarctica' => wfMessage( 'timezoneregion-antarctica' )->inLanguage( $language )->text(),
|
|
|
|
|
|
'Arctic' => wfMessage( 'timezoneregion-arctic' )->inLanguage( $language )->text(),
|
|
|
|
|
|
'Asia' => wfMessage( 'timezoneregion-asia' )->inLanguage( $language )->text(),
|
|
|
|
|
|
'Atlantic' => wfMessage( 'timezoneregion-atlantic' )->inLanguage( $language )->text(),
|
|
|
|
|
|
'Australia' => wfMessage( 'timezoneregion-australia' )->inLanguage( $language )->text(),
|
|
|
|
|
|
'Europe' => wfMessage( 'timezoneregion-europe' )->inLanguage( $language )->text(),
|
|
|
|
|
|
'Indian' => wfMessage( 'timezoneregion-indian' )->inLanguage( $language )->text(),
|
|
|
|
|
|
'Pacific' => wfMessage( 'timezoneregion-pacific' )->inLanguage( $language )->text(),
|
|
|
|
|
|
];
|
|
|
|
|
|
asort( $tzRegions );
|
|
|
|
|
|
|
|
|
|
|
|
$timeZoneList = [];
|
|
|
|
|
|
|
|
|
|
|
|
$now = new DateTime();
|
|
|
|
|
|
|
|
|
|
|
|
foreach ( $identifiers as $identifier ) {
|
|
|
|
|
|
$parts = explode( '/', $identifier, 2 );
|
|
|
|
|
|
|
|
|
|
|
|
// DateTimeZone::listIdentifiers() returns a number of
|
|
|
|
|
|
// backwards-compatibility entries. This filters them out of the
|
|
|
|
|
|
// list presented to the user.
|
|
|
|
|
|
if ( count( $parts ) !== 2 || !array_key_exists( $parts[0], $tzRegions ) ) {
|
|
|
|
|
|
continue;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Localize region
|
|
|
|
|
|
$parts[0] = $tzRegions[$parts[0]];
|
|
|
|
|
|
|
|
|
|
|
|
$dateTimeZone = new DateTimeZone( $identifier );
|
|
|
|
|
|
$minDiff = floor( $dateTimeZone->getOffset( $now ) / 60 );
|
|
|
|
|
|
|
|
|
|
|
|
$display = str_replace( '_', ' ', $parts[0] . '/' . $parts[1] );
|
|
|
|
|
|
$value = "ZoneInfo|$minDiff|$identifier";
|
|
|
|
|
|
|
|
|
|
|
|
$timeZoneList[$identifier] = [
|
|
|
|
|
|
'name' => $display,
|
|
|
|
|
|
'timecorrection' => $value,
|
|
|
|
|
|
'region' => $parts[0],
|
|
|
|
|
|
];
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return $timeZoneList;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|