2015-04-15 01:31:53 +00:00
|
|
|
<?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
|
|
|
|
|
*
|
|
|
|
|
* @file
|
|
|
|
|
* @ingroup Actions
|
|
|
|
|
*/
|
|
|
|
|
|
2021-07-31 03:02:29 +00:00
|
|
|
use MediaWiki\SpecialPage\SpecialPageFactory;
|
2018-08-12 09:08:58 +00:00
|
|
|
|
2015-04-15 01:31:53 +00:00
|
|
|
/**
|
|
|
|
|
* An action that just passes the request to the relevant special page
|
|
|
|
|
*
|
|
|
|
|
* @ingroup Actions
|
2015-04-15 21:30:19 +00:00
|
|
|
* @since 1.25
|
2015-04-15 01:31:53 +00:00
|
|
|
*/
|
|
|
|
|
class SpecialPageAction extends FormlessAction {
|
|
|
|
|
/**
|
|
|
|
|
* @var array A mapping of action names to special page names.
|
|
|
|
|
*/
|
2016-02-17 09:09:32 +00:00
|
|
|
public static $actionToSpecialPageMapping = [
|
2015-04-15 01:31:53 +00:00
|
|
|
'revisiondelete' => 'Revisiondelete',
|
|
|
|
|
'editchangetags' => 'EditTags',
|
2016-02-17 09:09:32 +00:00
|
|
|
];
|
2015-04-15 01:31:53 +00:00
|
|
|
|
2021-07-31 03:02:29 +00:00
|
|
|
/** @var SpecialPageFactory */
|
|
|
|
|
private $specialPageFactory;
|
|
|
|
|
|
|
|
|
|
/** @var string Name of this action, must exist as a key in $actionToSpecialPageMapping */
|
|
|
|
|
private $actionName;
|
|
|
|
|
|
2019-09-15 13:22:08 +00:00
|
|
|
/**
|
2021-07-31 03:02:29 +00:00
|
|
|
* @param Page $page
|
|
|
|
|
* @param IContextSource $context
|
|
|
|
|
* @param SpecialPageFactory $specialPageFactory
|
|
|
|
|
* @param string $actionName
|
2019-09-15 13:22:08 +00:00
|
|
|
*/
|
2021-07-31 03:02:29 +00:00
|
|
|
public function __construct(
|
|
|
|
|
Page $page,
|
|
|
|
|
IContextSource $context,
|
|
|
|
|
SpecialPageFactory $specialPageFactory,
|
|
|
|
|
string $actionName
|
|
|
|
|
) {
|
|
|
|
|
parent::__construct( $page, $context );
|
|
|
|
|
$this->specialPageFactory = $specialPageFactory;
|
|
|
|
|
if ( !isset( self::$actionToSpecialPageMapping[$actionName] ) ) {
|
|
|
|
|
throw new InvalidArgumentException(
|
|
|
|
|
__CLASS__ . " does not support the action $actionName"
|
|
|
|
|
);
|
2015-04-15 01:31:53 +00:00
|
|
|
}
|
2021-07-31 03:02:29 +00:00
|
|
|
$this->actionName = $actionName;
|
|
|
|
|
}
|
2016-01-15 20:34:56 +00:00
|
|
|
|
2021-07-31 03:02:29 +00:00
|
|
|
/**
|
|
|
|
|
* @inheritDoc
|
|
|
|
|
*/
|
|
|
|
|
public function getName() {
|
|
|
|
|
return $this->actionName;
|
2015-04-15 01:31:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function requiresUnblock() {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function getDescription() {
|
|
|
|
|
return '';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function onView() {
|
|
|
|
|
return '';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function show() {
|
2016-01-15 20:34:56 +00:00
|
|
|
$special = $this->getSpecialPage();
|
|
|
|
|
if ( !$special ) {
|
|
|
|
|
throw new ErrorPageError(
|
|
|
|
|
$this->msg( 'nosuchaction' ), $this->msg( 'nosuchactiontext' ) );
|
2015-04-15 01:31:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$special->setContext( $this->getContext() );
|
|
|
|
|
$special->getContext()->setTitle( $special->getPageTitle() );
|
|
|
|
|
$special->run( '' );
|
|
|
|
|
}
|
2016-01-15 20:34:56 +00:00
|
|
|
|
|
|
|
|
public function doesWrites() {
|
|
|
|
|
$special = $this->getSpecialPage();
|
|
|
|
|
|
|
|
|
|
return $special ? $special->doesWrites() : false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @return SpecialPage|null
|
|
|
|
|
*/
|
|
|
|
|
protected function getSpecialPage() {
|
2021-03-19 16:12:50 +00:00
|
|
|
// map actions to (allowed) special pages
|
2021-07-31 03:02:29 +00:00
|
|
|
return $this->specialPageFactory->getPage(
|
|
|
|
|
self::$actionToSpecialPageMapping[$this->actionName]
|
|
|
|
|
);
|
2016-01-15 20:34:56 +00:00
|
|
|
}
|
2015-04-15 01:31:53 +00:00
|
|
|
}
|