wiki.techinc.nl/includes/api/ApiUsageException.php
Amir Sarabadani f4e68e055f Reorg: Move Status to MediaWiki\Status\
This class is used heavily basically everywhere, moving it to Utils
wouldn't make much sense. Also with this change, we can move
StatusValue to MediaWiki\Status as well.

Bug: T321882
Depends-On: I5f89ecf27ce1471a74f31c6018806461781213c3
Change-Id: I04c1dcf5129df437589149f0f3e284974d7c98fa
2023-08-25 15:44:17 +02:00

134 lines
3.8 KiB
PHP

<?php
/**
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
* http://www.gnu.org/copyleft/gpl.html
*
* @file
*/
use MediaWiki\Status\Status;
/**
* Exception used to abort API execution with an error
*
* If possible, use ApiBase::dieWithError() instead of throwing this directly.
*
* @newable
* @ingroup API
*/
class ApiUsageException extends MWException implements ILocalizedException {
protected $modulePath;
protected $status;
/**
*
* @stable to call
* @param ApiBase|null $module API module responsible for the error, if known
* @param StatusValue $status Status holding errors
* @param int $httpCode HTTP error code to use
* @param Throwable|null $previous Previous exception
*/
public function __construct(
?ApiBase $module, StatusValue $status, $httpCode = 0, Throwable $previous = null
) {
if ( $status->isOK() ) {
throw new InvalidArgumentException( __METHOD__ . ' requires a fatal Status' );
}
$this->modulePath = $module ? $module->getModulePath() : null;
$this->status = $status;
// Bug T46111: Messages in the log files should be in English and not
// customized by the local wiki.
$enMsg = clone $this->getApiMessage();
$enMsg->inLanguage( 'en' )->useDatabase( false );
parent::__construct( ApiErrorFormatter::stripMarkup( $enMsg->text() ), $httpCode, $previous );
}
/**
* @param ApiBase|null $module API module responsible for the error, if known
* @param string|array|Message $msg See ApiMessage::create()
* @param string|null $code See ApiMessage::create()
* @param array|null $data See ApiMessage::create()
* @param int $httpCode HTTP error code to use
* @param Throwable|null $previous Previous exception
* @return static
*/
public static function newWithMessage(
?ApiBase $module, $msg, $code = null, $data = null, $httpCode = 0, Throwable $previous = null
) {
return new static(
$module,
StatusValue::newFatal( ApiMessage::create( $msg, $code, $data ) ),
$httpCode,
$previous
);
}
/**
* @return ApiMessage
*/
private function getApiMessage() {
$errors = $this->status->getErrorsByType( 'error' );
if ( !$errors ) {
$errors = $this->status->getErrors();
}
if ( !$errors ) {
$msg = new ApiMessage( 'apierror-unknownerror-nocode', 'unknownerror' );
} else {
$msg = ApiMessage::create( $errors[0] );
}
return $msg;
}
/**
* Fetch the responsible module name
* @return string|null
*/
public function getModulePath() {
return $this->modulePath;
}
/**
* Fetch the error status
* @return StatusValue
*/
public function getStatusValue() {
return $this->status;
}
/**
* @inheritDoc
*/
public function getMessageObject() {
return Status::wrap( $this->status )->getMessage();
}
/**
* @return string
*/
public function __toString() {
$enMsg = clone $this->getApiMessage();
$enMsg->inLanguage( 'en' )->useDatabase( false );
$text = ApiErrorFormatter::stripMarkup( $enMsg->text() );
return get_class( $this ) . ": {$enMsg->getApiCode()}: {$text} "
. "in {$this->getFile()}:{$this->getLine()}\n"
. "Stack trace:\n{$this->getTraceAsString()}"
. ( $this->getPrevious() ? "\n\nNext {$this->getPrevious()}" : "" );
}
}