MediaWiki REL1_37
SpecialResetTokens.php
Go to the documentation of this file.
1<?php
31 private $tokensList;
32
33 public function __construct() {
34 parent::__construct( 'ResetTokens' );
35 }
36
37 public function doesWrites() {
38 return true;
39 }
40
41 public function requiresUnblock() {
42 return false;
43 }
44
51 protected function getTokensList() {
52 if ( !isset( $this->tokensList ) ) {
53 $tokens = [
54 [ 'preference' => 'watchlisttoken', 'label-message' => 'resettokens-watchlist-token' ],
55 ];
56 $this->getHookRunner()->onSpecialResetTokensTokens( $tokens );
57
58 $hiddenPrefs = $this->getConfig()->get( 'HiddenPrefs' );
59 $tokens = array_filter( $tokens, static function ( $tok ) use ( $hiddenPrefs ) {
60 return !in_array( $tok['preference'], $hiddenPrefs );
61 } );
62
63 $this->tokensList = $tokens;
64 }
65
66 return $this->tokensList;
67 }
68
69 public function execute( $par ) {
70 // This is a preferences page, so no user JS for y'all.
71 $this->getOutput()->disallowUserJs();
72 $this->requireLogin();
73
74 parent::execute( $par );
75
76 $this->getOutput()->addReturnTo( SpecialPage::getTitleFor( 'Preferences' ) );
77 }
78
79 public function onSuccess() {
80 $this->getOutput()->wrapWikiMsg(
81 Html::successBox( '$1' ),
82 'resettokens-done'
83 );
84 }
85
91 protected function getFormFields() {
92 $user = $this->getUser();
93 $tokens = $this->getTokensList();
94
95 if ( $tokens ) {
96 $tokensForForm = [];
97 foreach ( $tokens as $tok ) {
98 $label = $this->msg( 'resettokens-token-label' )
99 ->rawParams( $this->msg( $tok['label-message'] )->parse() )
100 ->params( $user->getTokenFromOption( $tok['preference'] ) )
101 ->escaped();
102 $tokensForForm[$label] = $tok['preference'];
103 }
104
105 $desc = [
106 'label-message' => 'resettokens-tokens',
107 'type' => 'multiselect',
108 'options' => $tokensForForm,
109 ];
110 } else {
111 $desc = [
112 'label-message' => 'resettokens-no-tokens',
113 'type' => 'info',
114 ];
115 }
116
117 return [
118 'tokens' => $desc,
119 ];
120 }
121
127 protected function alterForm( HTMLForm $form ) {
128 $form->setSubmitDestructive();
129 if ( $this->getTokensList() ) {
130 $form->setSubmitTextMsg( 'resettokens-resetbutton' );
131 } else {
132 $form->suppressDefaultSubmit();
133 }
134 }
135
136 protected function getDisplayFormat() {
137 return 'ooui';
138 }
139
140 public function onSubmit( array $formData ) {
141 if ( $formData['tokens'] ) {
142 $user = $this->getUser();
143 foreach ( $formData['tokens'] as $tokenPref ) {
144 $user->resetTokenFromOption( $tokenPref );
145 }
146 $user->saveSettings();
147
148 return true;
149 }
150
151 return false;
152 }
153
154 protected function getGroupName() {
155 return 'users';
156 }
157
158 public function isListed() {
159 return (bool)$this->getTokensList();
160 }
161}
Special page which uses an HTMLForm to handle processing.
string null $par
The sub-page of the special page.
Object handling generic submission, CSRF protection, layout and other logic for UI forms in a reusabl...
Definition HTMLForm.php:143
setSubmitTextMsg( $msg)
Set the text for the submit button to a message.
setSubmitDestructive()
Identify that the submit button in the form has a destructive action.
suppressDefaultSubmit( $suppressSubmit=true)
Stop a default submit button being shown for this form.
getOutput()
Get the OutputPage being used for this instance.
requireLogin( $reasonMsg='exception-nologin-text', $titleMsg='exception-nologin')
If the user is not logged in, throws UserNotLoggedIn error.
getUser()
Shortcut to get the User executing this instance.
static getTitleFor( $name, $subpage=false, $fragment='')
Get a localised Title object for a specified special page name If you don't need a full Title object,...
msg( $key,... $params)
Wrapper around wfMessage that sets the current context.
getConfig()
Shortcut to get main config object.
Let users reset tokens like the watchlist token.
requiresUnblock()
Whether this action cannot be executed by a blocked user.
onSuccess()
Do something exciting on successful processing of the form, most likely to show a confirmation messag...
doesWrites()
Indicates whether this special page may perform database writes.
getDisplayFormat()
Get display format for the form.
onSubmit(array $formData)
Process the form on POST submission.
alterForm(HTMLForm $form)
Suppress the submit button if there's nothing to do; provide additional message on it otherwise.
getTokensList()
Returns the token information list for this page after running the hook and filtering out disabled pr...
getGroupName()
Under which header this special page is listed in Special:SpecialPages See messages 'specialpages-gro...
getFormFields()
Display appropriate message if there's nothing to do.
execute( $par)
Basic SpecialPage workflow: get a form, send it to the user; get some data back,.
isListed()
Whether this special page is listed in Special:SpecialPages.