|
MediaWiki REL1_39
|
Formats errors and warnings for the API, and add them to the associated ApiResult. More...


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 34 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 60 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 170 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 185 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 155 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 399 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 293 of file ApiErrorFormatter.php.
References $type, 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 264 of file ApiErrorFormatter.php.
| ApiErrorFormatter::formatMessage | ( | $msg, | |
| $format = null ) |
|
protected |
Format a message as an array.
| ApiMessage | ApiRawMessage | $msg | |
| string | null | $format |
Reimplemented in ApiErrorFormatter_BackCompat.
Definition at line 353 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 135 of file ApiErrorFormatter.php.
|
protected |
Fetch a dummy title to set on Messages.
Definition at line 120 of file ApiErrorFormatter.php.
References NS_SPECIAL.
| ApiErrorFormatter::getFormat | ( | ) |
Fetch the format for this formatter.
Reimplemented in ApiErrorFormatter_BackCompat.
Definition at line 103 of file ApiErrorFormatter.php.
References $format.
| ApiErrorFormatter::getLanguage | ( | ) |
Fetch the Language for this formatter.
Definition at line 112 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 227 of file ApiErrorFormatter.php.
References Message\newFromSpecifier(), 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 79 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 94 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 144 of file ApiErrorFormatter.php.
References $title.
|
static |
Turn wikitext into something resembling plaintext.
| string | $text |
Definition at line 317 of file ApiErrorFormatter.php.
Referenced by ApiUsageException\__construct(), ApiUsageException\__toString(), and ApiErrorFormatter_BackCompat\addWarningOrError().
|
protected |
Definition at line 46 of file ApiErrorFormatter.php.
Referenced by __construct(), getFormat(), and newWithFormat().
|
protected |
Definition at line 42 of file ApiErrorFormatter.php.
Referenced by __construct(), getLanguage(), and newWithFormat().
|
protected |
Definition at line 39 of file ApiErrorFormatter.php.
Referenced by ApiErrorFormatter_BackCompat\__construct(), __construct(), ApiErrorFormatter_BackCompat\arrayFromStatus(), and newWithFormat().
|
protected |
Definition at line 45 of file ApiErrorFormatter.php.
Referenced by __construct(), and newWithFormat().