MediaWiki 1.42.0
|
Formats errors and warnings for the API, and add them to the associated ApiResult. More...
Inherited by ApiErrorFormatter_BackCompat.
Public Member Functions | |
__construct (ApiResult $result, Language $lang, $format, $useDB=false) | |
addError ( $modulePath, $msg, $code=null, $data=null) | |
Add an error to the result. | |
addMessagesFromStatus ( $modulePath, StatusValue $status, $types=[ 'warning', 'error'], array $filter=[]) | |
Add warnings and errors from a StatusValue object to the result. | |
addWarning ( $modulePath, $msg, $code=null, $data=null) | |
Add a warning to the result. | |
arrayFromStatus (StatusValue $status, $type='error', $format=null) | |
Format messages from a StatusValue as an array. | |
formatException (Throwable $exception, array $options=[]) | |
Format a throwable as an array. | |
formatMessage ( $msg, $format=null) | |
Format a message as an array. | |
getContextTitle () | |
Get the page used for rendering error messages, e.g. | |
getFormat () | |
Fetch the format for this formatter. | |
getLanguage () | |
Fetch the Language for this formatter. | |
getMessageFromException (Throwable $exception, array $options=[]) | |
Get an ApiMessage from a throwable. | |
newWithFormat ( $format) | |
Return a formatter like this one but with a different format. | |
setContextTitle (PageReference $title) | |
Set the page used for rendering error messages, e.g. | |
Static Public Member Functions | |
static | isValidApiCode ( $code) |
Test whether a code is a valid API error code. | |
static | stripMarkup ( $text) |
Turn wikitext into something resembling plaintext. | |
Protected Member Functions | |
addWarningOrError ( $tag, $modulePath, $msg) | |
Actually add the warning or error to the result. | |
formatMessageInternal ( $msg, $format) | |
Format a message as an array. | |
getDummyTitle () | |
Fetch a dummy title to set on Messages. | |
Protected Attributes | |
$format = 'none' | |
Language | $lang |
ApiResult | $result |
$useDB = false | |
Formats errors and warnings for the API, and add them to the associated ApiResult.
Definition at line 36 of file ApiErrorFormatter.php.
ApiResult | $result | Into which data will be added |
Language | $lang | Used for i18n |
string | $format |
|
bool | $useDB | Whether to use local translations for errors and warnings. |
Definition at line 62 of file ApiErrorFormatter.php.
ApiErrorFormatter::addError | ( | $modulePath, | |
$msg, | |||
$code = null, | |||
$data = null ) |
Add an error to the result.
string | null | $modulePath | |
Message | array | string | $msg | Warning message. See ApiMessage::create(). |
string | null | $code | See ApiMessage::create(). |
array | null | $data | See ApiMessage::create(). |
Definition at line 172 of file ApiErrorFormatter.php.
ApiErrorFormatter::addMessagesFromStatus | ( | $modulePath, | |
StatusValue | $status, | ||
$types = [ 'warning', 'error' ], | |||
array | $filter = [] ) |
Add warnings and errors from a StatusValue object to the result.
string | null | $modulePath | |
StatusValue | $status | |
string[] | string | $types | 'warning' and/or 'error' |
string[] | $filter | Messages to filter out (since 1.33) |
Definition at line 187 of file ApiErrorFormatter.php.
References StatusValue\getErrors(), and StatusValue\isGood().
Referenced by arrayFromStatus().
ApiErrorFormatter::addWarning | ( | $modulePath, | |
$msg, | |||
$code = null, | |||
$data = null ) |
Add a warning to the result.
string | null | $modulePath | |
Message | array | string | $msg | Warning message. See ApiMessage::create(). |
string | null | $code | See ApiMessage::create(). |
array | null | $data | See ApiMessage::create(). |
Definition at line 157 of file ApiErrorFormatter.php.
|
protected |
Actually add the warning or error to the result.
string | $tag | 'warning' or 'error' |
string | null | $modulePath | |
ApiMessage | ApiRawMessage | $msg |
Reimplemented in ApiErrorFormatter_BackCompat.
Definition at line 401 of file ApiErrorFormatter.php.
References $path.
ApiErrorFormatter::arrayFromStatus | ( | StatusValue | $status, |
$type = 'error', | |||
$format = null ) |
Format messages from a StatusValue as an array.
StatusValue | $status | |
string | $type | 'warning' or 'error' |
string | null | $format |
Reimplemented in ApiErrorFormatter_BackCompat.
Definition at line 295 of file ApiErrorFormatter.php.
References addMessagesFromStatus(), StatusValue\getErrors(), and StatusValue\isGood().
ApiErrorFormatter::formatException | ( | Throwable | $exception, |
array | $options = [] ) |
Format a throwable as an array.
Throwable | $exception | |
array | $options | See self::getMessageFromException(), plus
|
Reimplemented in ApiErrorFormatter_BackCompat.
Definition at line 266 of file ApiErrorFormatter.php.
ApiErrorFormatter::formatMessage | ( | $msg, | |
$format = null ) |
Format a message as an array.
Message | array | string | $msg | Message. See ApiMessage::create(). |
string | null | $format |
Definition at line 280 of file ApiErrorFormatter.php.
|
protected |
Format a message as an array.
ApiMessage | ApiRawMessage | $msg | |
string | null | $format |
Reimplemented in ApiErrorFormatter_BackCompat.
Definition at line 355 of file ApiErrorFormatter.php.
ApiErrorFormatter::getContextTitle | ( | ) |
Get the page used for rendering error messages, e.g.
for wikitext magic words like {{PAGENAME}}
Definition at line 137 of file ApiErrorFormatter.php.
|
protected |
Fetch a dummy title to set on Messages.
Definition at line 122 of file ApiErrorFormatter.php.
References NS_SPECIAL.
ApiErrorFormatter::getFormat | ( | ) |
Fetch the format for this formatter.
Reimplemented in ApiErrorFormatter_BackCompat.
Definition at line 105 of file ApiErrorFormatter.php.
References $format.
ApiErrorFormatter::getLanguage | ( | ) |
Fetch the Language for this formatter.
Definition at line 114 of file ApiErrorFormatter.php.
References $lang.
Referenced by ApiErrorFormatter_BackCompat\__construct().
ApiErrorFormatter::getMessageFromException | ( | Throwable | $exception, |
array | $options = [] ) |
Get an ApiMessage from a throwable.
Throwable | $exception | |
array | $options |
|
Definition at line 229 of file ApiErrorFormatter.php.
References $params, and wfEscapeWikiText().
|
static |
Test whether a code is a valid API error code.
A valid code contains only ASCII letters, numbers, underscore, and hyphen and is not the empty string.
For backwards compatibility, any code beginning 'internal_api_error_' is also allowed.
string | $code |
Definition at line 81 of file ApiErrorFormatter.php.
Referenced by setApiCode(), and ApiMain\substituteResultWithError().
ApiErrorFormatter::newWithFormat | ( | $format | ) |
Return a formatter like this one but with a different format.
string | $format | New format. |
Definition at line 96 of file ApiErrorFormatter.php.
ApiErrorFormatter::setContextTitle | ( | PageReference | $title | ) |
Set the page used for rendering error messages, e.g.
for wikitext magic words like {{PAGENAME}}
PageReference | $title |
Definition at line 146 of file ApiErrorFormatter.php.
|
static |
Turn wikitext into something resembling plaintext.
string | $text |
Definition at line 319 of file ApiErrorFormatter.php.
Referenced by ApiUsageException\__construct(), ApiUsageException\__toString(), and ApiErrorFormatter_BackCompat\addWarningOrError().
|
protected |
Definition at line 48 of file ApiErrorFormatter.php.
Referenced by __construct(), getFormat(), and newWithFormat().
|
protected |
Definition at line 44 of file ApiErrorFormatter.php.
Referenced by __construct(), getLanguage(), and newWithFormat().
|
protected |
Definition at line 41 of file ApiErrorFormatter.php.
Referenced by ApiErrorFormatter_BackCompat\__construct(), __construct(), ApiErrorFormatter_BackCompat\arrayFromStatus(), and newWithFormat().
|
protected |
Definition at line 47 of file ApiErrorFormatter.php.
Referenced by __construct(), and newWithFormat().