Merge "Don't retry invalid thumbnail requests due to impossible width"
[mediawiki.git] / includes / specials / SpecialResetTokens.php
blob27a3a699efad2fb2782c007734b9b620f154b179
1 <?php
2 /**
3 * Implements Special:ResetTokens
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.
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.
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
20 * @file
21 * @ingroup SpecialPage
24 /**
25 * Let users reset tokens like the watchlist token.
27 * @ingroup SpecialPage
29 class SpecialResetTokens extends FormSpecialPage {
30 private $tokensList;
32 public function __construct() {
33 parent::__construct( 'ResetTokens' );
36 /**
37 * Returns the token information list for this page after running
38 * the hook and filtering out disabled preferences.
40 * @return array
42 protected function getTokensList() {
43 if ( !isset( $this->tokensList ) ) {
44 $tokens = array(
45 array( 'preference' => 'watchlisttoken', 'label-message' => 'resettokens-watchlist-token' ),
47 Hooks::run( 'SpecialResetTokensTokens', array( &$tokens ) );
49 $hiddenPrefs = $this->getConfig()->get( 'HiddenPrefs' );
50 $tokens = array_filter( $tokens, function ( $tok ) use ( $hiddenPrefs ) {
51 return !in_array( $tok['preference'], $hiddenPrefs );
52 } );
54 $this->tokensList = $tokens;
57 return $this->tokensList;
60 public function execute( $par ) {
61 // This is a preferences page, so no user JS for y'all.
62 $this->getOutput()->disallowUserJs();
63 $this->requireLogin();
65 parent::execute( $par );
67 $this->getOutput()->addReturnTo( SpecialPage::getTitleFor( 'Preferences' ) );
70 public function onSuccess() {
71 $this->getOutput()->wrapWikiMsg(
72 "<div class='successbox'>\n$1\n</div>",
73 'resettokens-done'
77 /**
78 * Display appropriate message if there's nothing to do.
79 * The submit button is also suppressed in this case (see alterForm()).
80 * @return array
82 protected function getFormFields() {
83 $user = $this->getUser();
84 $tokens = $this->getTokensList();
86 if ( $tokens ) {
87 $tokensForForm = array();
88 foreach ( $tokens as $tok ) {
89 $label = $this->msg( 'resettokens-token-label' )
90 ->rawParams( $this->msg( $tok['label-message'] )->parse() )
91 ->params( $user->getTokenFromOption( $tok['preference'] ) )
92 ->escaped();
93 $tokensForForm[$label] = $tok['preference'];
96 $desc = array(
97 'label-message' => 'resettokens-tokens',
98 'type' => 'multiselect',
99 'options' => $tokensForForm,
101 } else {
102 $desc = array(
103 'label-message' => 'resettokens-no-tokens',
104 'type' => 'info',
108 return array(
109 'tokens' => $desc,
114 * Suppress the submit button if there's nothing to do;
115 * provide additional message on it otherwise.
116 * @param HTMLForm $form
118 protected function alterForm( HTMLForm $form ) {
119 if ( $this->getTokensList() ) {
120 $form->setSubmitTextMsg( 'resettokens-resetbutton' );
121 } else {
122 $form->suppressDefaultSubmit();
126 protected function getDisplayFormat() {
127 return 'ooui';
130 public function onSubmit( array $formData ) {
131 if ( $formData['tokens'] ) {
132 $user = $this->getUser();
133 foreach ( $formData['tokens'] as $tokenPref ) {
134 $user->resetTokenFromOption( $tokenPref );
136 $user->saveSettings();
138 return true;
141 return false;
144 protected function getGroupName() {
145 return 'users';
148 public function isListed() {
149 return (bool)$this->getTokensList();