40 if ( !$user || $user->isAnon() ) {
42 [
'apierror-mustbeloggedin', $this->
msg(
'action-editmyoptions' ) ],
'notloggedin'
51 if ( isset( $params[
'optionvalue'] ) && !isset( $params[
'optionname'] ) ) {
52 $this->
dieWithError( [
'apierror-missingparam',
'optionname' ] );
55 $resetKinds = $params[
'resetkinds'];
56 if ( !$params[
'reset'] ) {
61 if ( $params[
'change'] ) {
62 foreach ( $params[
'change'] as $entry ) {
63 $array = explode(
'=', $entry, 2 );
64 $changes[$array[0]] = $array[1] ??
null;
67 if ( isset( $params[
'optionname'] ) ) {
68 $newValue = $params[
'optionvalue'] ??
null;
69 $changes[$params[
'optionname']] = $newValue;
72 Hooks::run(
'ApiOptions', [ $this, $user, $changes, $resetKinds ] );
79 if ( !$changed && !count( $changes ) ) {
84 $prefsKinds = $user->getOptionKinds( $this->
getContext(), $changes );
87 foreach ( $changes as $key => $value ) {
88 switch ( $prefsKinds[$key] ) {
91 if ( $value ===
null ) {
96 if ( $htmlForm ===
null ) {
98 $htmlForm =
new HTMLForm( [], $this );
100 $field = HTMLForm::loadInputFromParameters( $key, $prefs[$key], $htmlForm );
101 $validation = $field->validate( $value, $user->getOptions() );
104 case 'registered-multiselect':
105 case 'registered-checkmatrix':
108 $value = $value !==
null ? (bool)$value :
null;
112 if ( strlen( $key ) > 255 ) {
114 } elseif ( preg_match(
'/[^a-zA-Z0-9_-]/', $key ) !== 0 ) {
115 $validation = $this->
msg(
'apiwarn-validationfailed-badchars' );
121 $validation = $this->
msg(
'apiwarn-validationfailed-cannotset' );
125 $validation = $this->
msg(
'apiwarn-validationfailed-badpref' );
128 if ( $validation ===
true ) {
149 if ( !$this->userForUpdates ) {
150 $this->userForUpdates = $this->
getUser()->getInstanceForUpdate();
161 $preferencesFactory = MediaWikiServices::getInstance()->getPreferencesFactory();
199 $optionKinds = User::listOptionKinds();
200 $optionKinds[] =
'all';
226 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Options';
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',
wfEscapeWikiText( $text)
Escapes the given text so that it may be output using addWikiText() without any linking,...
This abstract class implements many basic API functions, and is the base of all API classes.
checkUserRightsAny( $rights, $user=null)
Helper function for permission-denied errors.
dieWithError( $msg, $code=null, $data=null, $httpCode=null)
Abort execution with an error.
const PARAM_TYPE
(string|string[]) Either an array of allowed value strings, or a string type as described below.
const PARAM_DFLT
(null|boolean|integer|string) Default value of the parameter.
getResult()
Get the result object.
extractRequestParams( $options=[])
Using getAllowedParams(), this function makes an array of the values provided by the user,...
addWarning( $msg, $code=null, $data=null)
Add a warning for this module.
getModuleName()
Get the name of the module being executed by this instance.
const PARAM_ISMULTI
(boolean) Accept multiple pipe-separated values for this parameter (e.g.
API module that facilitates the changing of user's preferences.
resetPreferences(array $kinds)
commitChanges()
Applies changes to user preferences.
isWriteMode()
Indicates whether this module requires write mode.
getExamplesMessages()
Returns usage examples for this module.
setPreference( $preference, $value)
Sets one user preference to be applied by commitChanges()
needsToken()
Returns the token type this module requires in order to execute.
getHelpUrls()
Return links to more detailed help pages about the module.
User $userForUpdates
User account to modify.
execute()
Changes preferences of the current user.
getAllowedParams()
Returns an array of allowed parameters (parameter name) => (default value) or (parameter name) => (ar...
getPreferences()
Returns preferences form descriptor.
mustBePosted()
Indicates whether this module must be called with a POST request.
getUserForUpdates()
Load the user from the master to reduce CAS errors on double post (T95839)
msg( $key,... $params)
Get a Message object with context set Parameters are the same as wfMessage()
getContext()
Get the base IContextSource object.
The User object encapsulates all of the user-specific settings (user_id, name, rights,...