MediaWiki
1.32.0
|
Generic operation result class Has warning/error list, boolean status and arbitrary value. More...
Public Member Functions | |
__get ( $name) | |
Backwards compatibility logic. More... | |
__set ( $name, $value) | |
Change operation result Backwards compatibility logic. More... | |
__sleep () | |
Don't save the callback when serializing, because Closures can't be serialized and we're going to clear it in __wakeup anyway. More... | |
__wakeup () | |
Sanitize the callback parameter on wakeup, to avoid arbitrary execution. More... | |
getErrorsArray () | |
Get the list of errors (but not warnings) More... | |
getHTML ( $shortContext=false, $longContext=false, $lang=null) | |
Get the error message as HTML. More... | |
getMessage ( $shortContext=false, $longContext=false, $lang=null) | |
Get a bullet list of the errors as a Message object. More... | |
getStatusValue () | |
Returns the wrapped StatusValue object. More... | |
getWarningsArray () | |
Get the list of warnings (but not errors) More... | |
getWikiText ( $shortContext=false, $longContext=false, $lang=null) | |
Get the error list as a wikitext formatted list. More... | |
splitByErrorType () | |
Splits this Status object into two new Status objects, one which contains only the error messages, and one that contains the warnings, only. More... | |
Public Member Functions inherited from StatusValue | |
__toString () | |
error ( $message) | |
Add an error, do not set fatal flag This can be used for non-fatal errors. More... | |
fatal ( $message) | |
Add an error and set OK to false, indicating that the operation as a whole was fatal. More... | |
getErrors () | |
Get the list of errors. More... | |
getErrorsByType ( $type) | |
Returns a list of status messages of the given type. More... | |
getValue () | |
hasMessage ( $message) | |
Returns true if the specified message is present as a warning or error. More... | |
isGood () | |
Returns whether the operation completed and didn't have any error or warnings. More... | |
isOK () | |
Returns whether the operation completed. More... | |
merge ( $other, $overwriteValue=false) | |
Merge another status object into this one. More... | |
replaceMessage ( $source, $dest) | |
If the specified source message exists, replace it with the specified destination message, but keep the same parameters as in the original error. More... | |
setOK ( $ok) | |
Change operation status. More... | |
setResult ( $ok, $value=null) | |
Change operation result. More... | |
warning ( $message) | |
Add a new warning. More... | |
Static Public Member Functions | |
static | wrap ( $sv) |
Succinct helper method to wrap a StatusValue. More... | |
Static Public Member Functions inherited from StatusValue | |
static | newFatal ( $message) |
Factory function for fatal errors. More... | |
static | newGood ( $value=null) |
Factory function for good results. More... | |
Public Attributes | |
callable | $cleanCallback = false |
Public Attributes inherited from StatusValue | |
int | $failCount = 0 |
Counter for batch operations. More... | |
bool[] | $success = [] |
Map of (key => bool) to indicate success of each part of batch operations. More... | |
int | $successCount = 0 |
Counter for batch operations. More... | |
mixed | $value |
Protected Member Functions | |
cleanParams (array $params) | |
getErrorMessage ( $error, $lang=null) | |
Return the message for a single error. More... | |
getErrorMessageArray ( $errors, $lang=null) | |
Return an array with a Message object for each error. More... | |
getStatusArray ( $type=false) | |
Returns a list of status messages of the given type (or all if false) More... | |
languageFromParam ( $lang) | |
Additional Inherited Members | |
Protected Attributes inherited from StatusValue | |
array[] | $errors = [] |
bool | $ok = true |
Generic operation result class Has warning/error list, boolean status and arbitrary value.
"Good" means the operation was completed with no warnings or errors.
"OK" means the operation was partially or wholly completed.
An operation which is not OK should have errors so that the user can be informed as to what went wrong. Calling the fatal() function sets an error message and simultaneously switches off the OK flag.
The recommended pattern for Status objects is to return a Status object unconditionally, i.e. both on success and on failure – so that the developer of the calling code is reminded that the function can fail, and so that a lack of error-handling will be explicit.
Definition at line 40 of file Status.php.
Status::__get | ( | $name | ) |
Backwards compatibility logic.
string | $name |
RuntimeException |
Definition at line 78 of file Status.php.
References $name, StatusValue\getErrors(), and StatusValue\isOK().
Status::__set | ( | $name, | |
$value | |||
) |
Change operation result Backwards compatibility logic.
string | $name | |
mixed | $value |
RuntimeException |
Definition at line 96 of file Status.php.
References $name, StatusValue\$value, and StatusValue\setOK().
Status::__sleep | ( | ) |
Don't save the callback when serializing, because Closures can't be serialized and we're going to clear it in __wakeup anyway.
Definition at line 392 of file Status.php.
References $keys.
Status::__wakeup | ( | ) |
Sanitize the callback parameter on wakeup, to avoid arbitrary execution.
Definition at line 400 of file Status.php.
|
protected |
array | $params |
Definition at line 139 of file Status.php.
Referenced by getErrorMessage().
|
protected |
Return the message for a single error.
The code string can be used a message key with per-language versions. If $error is an array, the "params" field is a list of parameters for the message.
array | string | $error | Code string or (key: code string, params: string[]) map |
string | Language | null | $lang | Language to use for processing messages |
Definition at line 285 of file Status.php.
References $lang, cleanParams(), languageFromParam(), and wfMessage().
Referenced by getErrorMessageArray(), getMessage(), and getWikiText().
|
protected |
Return an array with a Message object for each error.
Definition at line 330 of file Status.php.
References $e, StatusValue\$errors, $lang, getErrorMessage(), languageFromParam(), and use.
Referenced by getMessage(), and getWikiText().
Status::getErrorsArray | ( | ) |
Get the list of errors (but not warnings)
Definition at line 344 of file Status.php.
References getStatusArray().
Get the error message as HTML.
This is done by parsing the wikitext error message
string | bool | $shortContext | A short enclosing context message name, to be used when there is a single error |
string | bool | $longContext | A long enclosing context message name, for a list |
string | Language | null | $lang | Language to use for processing messages |
Definition at line 315 of file Status.php.
References $lang, $out, getWikiText(), languageFromParam(), and MessageCache\singleton().
Get a bullet list of the errors as a Message object.
$shortContext and $longContext can be used to wrap the error list in some text. $shortContext will be preferred when there is a single error; $longContext will be preferred when there are multiple ones. In either case, $1 will be replaced with the list of errors.
$shortContext is assumed to use $1 as an inline parameter: if there is a single item, it will not be made into a list; if there are multiple items, newlines will be inserted around the list. $longContext is assumed to use $1 as a standalone parameter; it will always receive a list.
If both parameters are missing, and there is only one error, no bullet will be added.
string | string[] | bool | $shortContext | A message name or an array of message names. |
string | string[] | bool | $longContext | A message name or an array of message names. |
string | Language | null | $lang | Language to use for processing messages |
Definition at line 233 of file Status.php.
References $lang, $s, captcha-old\count, StatusValue\fatal(), getErrorMessage(), getErrorMessageArray(), StatusValue\getErrors(), StatusValue\isOK(), languageFromParam(), and wfMessage().
|
protected |
Returns a list of status messages of the given type (or all if false)
string | bool | $type |
Definition at line 367 of file Status.php.
References $type, as, and StatusValue\getErrors().
Referenced by getErrorsArray(), and getWarningsArray().
Status::getStatusValue | ( | ) |
Returns the wrapped StatusValue object.
Definition at line 131 of file Status.php.
Status::getWarningsArray | ( | ) |
Get the list of warnings (but not errors)
Definition at line 355 of file Status.php.
References getStatusArray().
Get the error list as a wikitext formatted list.
string | bool | $shortContext | A short enclosing context message name, to be used when there is a single error |
string | bool | $longContext | A long enclosing context message name, for a list |
string | Language | null | $lang | Language to use for processing messages |
Definition at line 177 of file Status.php.
References StatusValue\$errors, $lang, $s, as, captcha-old\count, StatusValue\fatal(), getErrorMessage(), getErrorMessageArray(), StatusValue\getErrors(), StatusValue\isOK(), languageFromParam(), and wfMessage().
Referenced by getHTML().
|
protected |
string | Language | null | $lang | Language to use for processing messages, or null to default to the user language. |
Definition at line 155 of file Status.php.
References $lang, $wgLang, and Language\factory().
Referenced by getErrorMessage(), getErrorMessageArray(), getHTML(), getMessage(), and getWikiText().
Status::splitByErrorType | ( | ) |
Splits this Status object into two new Status objects, one which contains only the error messages, and one that contains the warnings, only.
The returned array is defined as: [ 0 => object(Status) # the Status with error messages, only 1 => object(Status) # The Status with warning messages, only ]
Reimplemented from StatusValue.
Definition at line 118 of file Status.php.
References $cleanCallback, and list.
|
static |
Succinct helper method to wrap a StatusValue.
This is is useful when formatting StatusValue objects:
StatusValue | Status | $sv |
Definition at line 55 of file Status.php.
Referenced by LocalFile\acquireFileLock(), MediaWiki\Auth\AuthManager\allowsAuthenticationDataChange(), MediaWiki\Auth\AuthManager\autoCreateUser(), MediaWiki\Auth\AuthManager\beginAccountCreation(), MediaWiki\Auth\AuthManager\beginAccountLink(), MediaWiki\Auth\AuthManager\beginAuthentication(), MediaWiki\Auth\AuthManager\canCreateAccount(), SpecialPasswordReset\checkExecutePermissions(), MediaWiki\Auth\AuthManager\continueAccountCreation(), MediaWiki\Auth\AuthManager\continueAuthentication(), AuthManagerSpecialPage\displayForm(), CurlHttpRequest\execute(), ApiResetPassword\execute(), GenerateFancyCaptchas\execute(), PhpHttpRequest\execute(), MultiHttpClientTest\getHttpRequest(), ApiUsageException\getMessageObject(), ThumbnailRenderJob\hitThumbUrl(), SpecialPasswordReset\onSubmit(), MediaWiki\Auth\AuthManagerTest\provideAllowsAuthenticationDataChange(), MediaWiki\Auth\TemporaryPasswordPrimaryAuthenticationProviderTest\provideProviderAllowsAuthenticationDataChange(), MediaWiki\Auth\LocalPasswordPrimaryAuthenticationProviderTest\provideProviderAllowsAuthenticationDataChange(), LocalFile\releaseFileLock(), Http\request(), LoginSignupSpecialPage\showSuccessPage(), and AuthManagerSpecialPage\trySubmit().
callable Status::$cleanCallback = false |
Definition at line 42 of file Status.php.
Referenced by splitByErrorType().