mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/AbuseFilter.git
synced 2024-11-15 02:03:53 +00:00
a51b9bf903
Thanks to this, we will be able to provide more information to consequences and watchers, which will open door for new features and possibly cleaner code. Change-Id: I7135509823ea84b2a2923d2c1831ce293b98a9f9
94 lines
2.6 KiB
PHP
94 lines
2.6 KiB
PHP
<?php
|
|
|
|
namespace MediaWiki\Extension\AbuseFilter\Parser;
|
|
|
|
use Message;
|
|
|
|
/**
|
|
* Exceptions that we might conceivably want to report to ordinary users
|
|
* (i.e. exceptions that don't represent bugs in the extension itself)
|
|
*/
|
|
class AFPUserVisibleException extends AFPException {
|
|
/** @var string */
|
|
public $mExceptionID;
|
|
/** @var int */
|
|
protected $mPosition;
|
|
/** @var array */
|
|
protected $mParams;
|
|
|
|
/**
|
|
* @param string $exception_id
|
|
* @param int $position
|
|
* @param array $params
|
|
*/
|
|
public function __construct( $exception_id, $position, $params ) {
|
|
$this->mExceptionID = $exception_id;
|
|
$this->mPosition = $position;
|
|
$this->mParams = $params;
|
|
|
|
parent::__construct( $exception_id );
|
|
}
|
|
|
|
/**
|
|
* @return int
|
|
*/
|
|
public function getPosition() : int {
|
|
return $this->mPosition;
|
|
}
|
|
|
|
/**
|
|
* Returns the error message for use in logs
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getMessageForLogs() : string {
|
|
return "ID: {$this->mExceptionID}; position: {$this->mPosition}; params: " . implode( $this->mParams );
|
|
}
|
|
|
|
/**
|
|
* @return Message
|
|
*/
|
|
public function getMessageObj() : Message {
|
|
// Give grep a chance to find the usages:
|
|
// abusefilter-exception-unexpectedatend, abusefilter-exception-expectednotfound
|
|
// abusefilter-exception-unrecognisedkeyword, abusefilter-exception-unexpectedtoken
|
|
// abusefilter-exception-unclosedstring, abusefilter-exception-invalidoperator
|
|
// abusefilter-exception-unrecognisedtoken, abusefilter-exception-noparams
|
|
// abusefilter-exception-dividebyzero, abusefilter-exception-unrecognisedvar
|
|
// abusefilter-exception-notenoughargs, abusefilter-exception-regexfailure
|
|
// abusefilter-exception-overridebuiltin, abusefilter-exception-outofbounds
|
|
// abusefilter-exception-notarray, abusefilter-exception-unclosedcomment
|
|
// abusefilter-exception-invalidiprange, abusefilter-exception-disabledvar
|
|
// abusefilter-exception-variablevariable, abusefilter-exception-toomanyargs
|
|
// abusefilter-exception-negativeoffset
|
|
return new Message(
|
|
'abusefilter-exception-' . $this->mExceptionID,
|
|
array_merge( [ $this->mPosition ], $this->mParams )
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Serialize data for edit stash
|
|
* @return array
|
|
*/
|
|
public function toArray() : array {
|
|
return [
|
|
'class' => static::class,
|
|
'exceptionID' => $this->mExceptionID,
|
|
'position' => $this->mPosition,
|
|
'params' => $this->mParams,
|
|
];
|
|
}
|
|
|
|
/**
|
|
* Deserialize data from edit stash
|
|
* @param array $value
|
|
* @return static
|
|
*/
|
|
public static function fromArray( array $value ) {
|
|
$cls = $value['class'];
|
|
return new $cls( $value['exceptionID'], $value['position'], $value['params'] );
|
|
}
|
|
|
|
}
|