MediaWiki  1.33.0
ApiOptions.php
Go to the documentation of this file.
1 <?php
24 
31 class ApiOptions extends ApiBase {
33  private $userForUpdates;
34 
38  public function execute() {
39  $user = $this->getUserForUpdates();
40  if ( !$user || $user->isAnon() ) {
41  $this->dieWithError(
42  [ 'apierror-mustbeloggedin', $this->msg( 'action-editmyoptions' ) ], 'notloggedin'
43  );
44  }
45 
46  $this->checkUserRightsAny( 'editmyoptions' );
47 
48  $params = $this->extractRequestParams();
49  $changed = false;
50 
51  if ( isset( $params['optionvalue'] ) && !isset( $params['optionname'] ) ) {
52  $this->dieWithError( [ 'apierror-missingparam', 'optionname' ] );
53  }
54 
55  $resetKinds = $params['resetkinds'];
56  if ( !$params['reset'] ) {
57  $resetKinds = [];
58  }
59 
60  $changes = [];
61  if ( $params['change'] ) {
62  foreach ( $params['change'] as $entry ) {
63  $array = explode( '=', $entry, 2 );
64  $changes[$array[0]] = $array[1] ?? null;
65  }
66  }
67  if ( isset( $params['optionname'] ) ) {
68  $newValue = $params['optionvalue'] ?? null;
69  $changes[$params['optionname']] = $newValue;
70  }
71 
72  Hooks::run( 'ApiOptions', [ $this, $user, $changes, $resetKinds ] );
73 
74  if ( $resetKinds ) {
75  $this->resetPreferences( $resetKinds );
76  $changed = true;
77  }
78 
79  if ( !$changed && !count( $changes ) ) {
80  $this->dieWithError( 'apierror-nochanges' );
81  }
82 
83  $prefs = $this->getPreferences();
84  $prefsKinds = $user->getOptionKinds( $this->getContext(), $changes );
85 
86  $htmlForm = null;
87  foreach ( $changes as $key => $value ) {
88  switch ( $prefsKinds[$key] ) {
89  case 'registered':
90  // Regular option.
91  if ( $value === null ) {
92  // Reset it
93  $validation = true;
94  } else {
95  // Validate
96  if ( $htmlForm === null ) {
97  // We need a dummy HTMLForm for the validate callback...
98  $htmlForm = new HTMLForm( [], $this );
99  }
100  $field = HTMLForm::loadInputFromParameters( $key, $prefs[$key], $htmlForm );
101  $validation = $field->validate( $value, $user->getOptions() );
102  }
103  break;
104  case 'registered-multiselect':
105  case 'registered-checkmatrix':
106  // A key for a multiselect or checkmatrix option.
107  $validation = true;
108  $value = $value !== null ? (bool)$value : null;
109  break;
110  case 'userjs':
111  // Allow non-default preferences prefixed with 'userjs-', to be set by user scripts
112  if ( strlen( $key ) > 255 ) {
113  $validation = $this->msg( 'apiwarn-validationfailed-keytoolong', Message::numParam( 255 ) );
114  } elseif ( preg_match( '/[^a-zA-Z0-9_-]/', $key ) !== 0 ) {
115  $validation = $this->msg( 'apiwarn-validationfailed-badchars' );
116  } else {
117  $validation = true;
118  }
119  break;
120  case 'special':
121  $validation = $this->msg( 'apiwarn-validationfailed-cannotset' );
122  break;
123  case 'unused':
124  default:
125  $validation = $this->msg( 'apiwarn-validationfailed-badpref' );
126  break;
127  }
128  if ( $validation === true ) {
129  $this->setPreference( $key, $value );
130  $changed = true;
131  } else {
132  $this->addWarning( [ 'apiwarn-validationfailed', wfEscapeWikiText( $key ), $validation ] );
133  }
134  }
135 
136  if ( $changed ) {
137  $this->commitChanges();
138  }
139 
140  $this->getResult()->addValue( null, $this->getModuleName(), 'success' );
141  }
142 
148  protected function getUserForUpdates() {
149  if ( !$this->userForUpdates ) {
150  $this->userForUpdates = $this->getUser()->getInstanceForUpdate();
151  }
152 
153  return $this->userForUpdates;
154  }
155 
160  protected function getPreferences() {
161  $preferencesFactory = MediaWikiServices::getInstance()->getPreferencesFactory();
162  return $preferencesFactory->getFormDescriptor( $this->getUserForUpdates(),
163  $this->getContext() );
164  }
165 
169  protected function resetPreferences( array $kinds ) {
170  $this->getUserForUpdates()->resetOptions( $kinds, $this->getContext() );
171  }
172 
179  protected function setPreference( $preference, $value ) {
180  $this->getUserForUpdates()->setOption( $preference, $value );
181  }
182 
186  protected function commitChanges() {
187  $this->getUserForUpdates()->saveSettings();
188  }
189 
190  public function mustBePosted() {
191  return true;
192  }
193 
194  public function isWriteMode() {
195  return true;
196  }
197 
198  public function getAllowedParams() {
199  $optionKinds = User::listOptionKinds();
200  $optionKinds[] = 'all';
201 
202  return [
203  'reset' => false,
204  'resetkinds' => [
205  ApiBase::PARAM_TYPE => $optionKinds,
206  ApiBase::PARAM_DFLT => 'all',
208  ],
209  'change' => [
210  ApiBase::PARAM_ISMULTI => true,
211  ],
212  'optionname' => [
213  ApiBase::PARAM_TYPE => 'string',
214  ],
215  'optionvalue' => [
216  ApiBase::PARAM_TYPE => 'string',
217  ],
218  ];
219  }
220 
221  public function needsToken() {
222  return 'csrf';
223  }
224 
225  public function getHelpUrls() {
226  return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Options';
227  }
228 
229  protected function getExamplesMessages() {
230  return [
231  'action=options&reset=&token=123ABC'
232  => 'apihelp-options-example-reset',
233  'action=options&change=skin=vector|hideminor=1&token=123ABC'
234  => 'apihelp-options-example-change',
235  'action=options&reset=&change=skin=monobook&optionname=nickname&' .
236  'optionvalue=[[User:Beau|Beau]]%20([[User_talk:Beau|talk]])&token=123ABC'
237  => 'apihelp-options-example-complex',
238  ];
239  }
240 }
$user
return true to allow those checks to and false if checking is done & $user
Definition: hooks.txt:1476
ContextSource\getContext
getContext()
Get the base IContextSource object.
Definition: ContextSource.php:40
ApiBase\addWarning
addWarning( $msg, $code=null, $data=null)
Add a warning for this module.
Definition: ApiBase.php:1909
ApiOptions\getUserForUpdates
getUserForUpdates()
Load the user from the master to reduce CAS errors on double post (T95839)
Definition: ApiOptions.php:148
captcha-old.count
count
Definition: captcha-old.py:249
ApiOptions\commitChanges
commitChanges()
Applies changes to user preferences.
Definition: ApiOptions.php:186
ApiBase\dieWithError
dieWithError( $msg, $code=null, $data=null, $httpCode=null)
Abort execution with an error.
Definition: ApiBase.php:1990
ApiOptions\isWriteMode
isWriteMode()
Indicates whether this module requires write mode.
Definition: ApiOptions.php:194
ContextSource\msg
msg( $key)
Get a Message object with context set Parameters are the same as wfMessage()
Definition: ContextSource.php:168
ApiOptions\getPreferences
getPreferences()
Returns preferences form descriptor.
Definition: ApiOptions.php:160
ApiBase\PARAM_TYPE
const PARAM_TYPE
(string|string[]) Either an array of allowed value strings, or a string type as described below.
Definition: ApiBase.php:87
ApiBase\getResult
getResult()
Get the result object.
Definition: ApiBase.php:632
ApiBase\checkUserRightsAny
checkUserRightsAny( $rights, $user=null)
Helper function for permission-denied errors.
Definition: ApiBase.php:2105
$params
$params
Definition: styleTest.css.php:44
ContextSource\getUser
getUser()
Definition: ContextSource.php:120
php
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
ApiBase
This abstract class implements many basic API functions, and is the base of all API classes.
Definition: ApiBase.php:37
ApiOptions\setPreference
setPreference( $preference, $value)
Sets one user preference to be applied by commitChanges()
Definition: ApiOptions.php:179
ApiOptions\getAllowedParams
getAllowedParams()
Returns an array of allowed parameters (parameter name) => (default value) or (parameter name) => (ar...
Definition: ApiOptions.php:198
ApiOptions\execute
execute()
Changes preferences of the current user.
Definition: ApiOptions.php:38
ApiOptions\getExamplesMessages
getExamplesMessages()
Returns usage examples for this module.
Definition: ApiOptions.php:229
ApiOptions\mustBePosted
mustBePosted()
Indicates whether this module must be called with a POST request.
Definition: ApiOptions.php:190
use
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
Definition: MIT-LICENSE.txt:10
ApiBase\extractRequestParams
extractRequestParams( $options=[])
Using getAllowedParams(), this function makes an array of the values provided by the user,...
Definition: ApiBase.php:743
array
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))
HTMLForm\loadInputFromParameters
static loadInputFromParameters( $fieldname, $descriptor, HTMLForm $parent=null)
Initialise a new Object for the field.
Definition: HTMLForm.php:478
ApiOptions
API module that facilitates the changing of user's preferences.
Definition: ApiOptions.php:31
ApiOptions\needsToken
needsToken()
Returns the token type this module requires in order to execute.
Definition: ApiOptions.php:221
$value
$value
Definition: styleTest.css.php:49
wfEscapeWikiText
wfEscapeWikiText( $text)
Escapes the given text so that it may be output using addWikiText() without any linking,...
Definition: GlobalFunctions.php:1577
ApiBase\PARAM_DFLT
const PARAM_DFLT
(null|boolean|integer|string) Default value of the parameter.
Definition: ApiBase.php:48
as
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
Definition: distributors.txt:9
ApiBase\getModuleName
getModuleName()
Get the name of the module being executed by this instance.
Definition: ApiBase.php:512
ApiBase\PARAM_ISMULTI
const PARAM_ISMULTI
(boolean) Accept multiple pipe-separated values for this parameter (e.g.
Definition: ApiBase.php:51
true
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return true
Definition: hooks.txt:1985
MediaWikiServices
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency MediaWikiServices
Definition: injection.txt:23
ApiOptions\resetPreferences
resetPreferences(array $kinds)
Definition: ApiOptions.php:169
User
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
Definition: User.php:48
Hooks\run
static run( $event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.
Definition: Hooks.php:200
ApiOptions\getHelpUrls
getHelpUrls()
Return links to more detailed help pages about the module.
Definition: ApiOptions.php:225
User\listOptionKinds
static listOptionKinds()
Return a list of the types of user options currently returned by User::getOptionKinds().
Definition: User.php:3342
ApiOptions\$userForUpdates
User $userForUpdates
User account to modify.
Definition: ApiOptions.php:33
HTMLForm
Object handling generic submission, CSRF protection, layout and other logic for UI forms.
Definition: HTMLForm.php:133