2008-05-09 18:53:09 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
class SpecialNuke extends SpecialPage {
|
2011-09-27 16:17:06 +00:00
|
|
|
|
2011-02-14 20:21:02 +00:00
|
|
|
public function __construct() {
|
2008-05-09 18:53:09 +00:00
|
|
|
parent::__construct( 'Nuke', 'nuke' );
|
|
|
|
}
|
|
|
|
|
2016-01-19 20:06:35 +00:00
|
|
|
public function doesWrites() {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-02-04 22:50:54 +00:00
|
|
|
/**
|
|
|
|
* @param null|string $par
|
|
|
|
*/
|
2011-12-03 12:28:29 +00:00
|
|
|
public function execute( $par ) {
|
2008-05-09 18:53:09 +00:00
|
|
|
$this->setHeaders();
|
2016-05-25 06:12:17 +00:00
|
|
|
$this->checkPermissions();
|
|
|
|
$this->checkReadOnly();
|
2008-05-09 18:53:09 +00:00
|
|
|
$this->outputHeader();
|
2019-07-17 19:44:07 +00:00
|
|
|
$this->addHelpLink( 'Extension:Nuke' );
|
2011-09-27 16:17:06 +00:00
|
|
|
|
2016-05-25 06:12:17 +00:00
|
|
|
$currentUser = $this->getUser();
|
|
|
|
if ( $currentUser->isBlocked() ) {
|
|
|
|
$block = $currentUser->getBlock();
|
2012-03-14 01:58:01 +00:00
|
|
|
throw new UserBlockedError( $block );
|
|
|
|
}
|
2012-06-02 15:08:09 +00:00
|
|
|
|
2011-11-10 17:22:05 +00:00
|
|
|
$req = $this->getRequest();
|
2017-02-22 13:54:14 +00:00
|
|
|
$target = trim( $req->getText( 'target', $par ) );
|
2011-11-25 00:20:54 +00:00
|
|
|
|
2011-10-18 22:46:31 +00:00
|
|
|
// Normalise name
|
|
|
|
if ( $target !== '' ) {
|
|
|
|
$user = User::newFromName( $target );
|
2012-10-20 17:41:44 +00:00
|
|
|
if ( $user ) {
|
|
|
|
$target = $user->getName();
|
|
|
|
}
|
2011-10-18 22:46:31 +00:00
|
|
|
}
|
2011-11-25 00:20:54 +00:00
|
|
|
|
2012-08-16 13:19:22 +00:00
|
|
|
$msg = $target === '' ?
|
|
|
|
$this->msg( 'nuke-multiplepeople' )->inContentLanguage()->text() :
|
2012-10-20 17:41:44 +00:00
|
|
|
$this->msg( 'nuke-defaultreason', $target )->
|
2015-10-02 07:48:42 +00:00
|
|
|
inContentLanguage()->text();
|
2012-08-16 13:19:22 +00:00
|
|
|
$reason = $req->getText( 'wpReason', $msg );
|
2011-11-25 00:20:54 +00:00
|
|
|
|
2017-02-22 13:54:14 +00:00
|
|
|
$limit = $req->getInt( 'limit', 500 );
|
|
|
|
$namespace = $req->getVal( 'namespace' );
|
2012-10-05 13:49:43 +00:00
|
|
|
$namespace = ctype_digit( $namespace ) ? (int)$namespace : null;
|
|
|
|
|
2012-08-16 13:19:22 +00:00
|
|
|
if ( $req->wasPosted()
|
2016-05-25 06:12:17 +00:00
|
|
|
&& $currentUser->matchEditToken( $req->getVal( 'wpEditToken' ) )
|
2015-10-02 07:48:42 +00:00
|
|
|
) {
|
|
|
|
if ( $req->getVal( 'action' ) === 'delete' ) {
|
2011-11-10 17:22:05 +00:00
|
|
|
$pages = $req->getArray( 'pages' );
|
2011-10-18 22:46:31 +00:00
|
|
|
|
2012-08-16 13:19:22 +00:00
|
|
|
if ( $pages ) {
|
2012-01-13 22:45:24 +00:00
|
|
|
$this->doDelete( $pages, $reason );
|
2015-10-02 07:48:42 +00:00
|
|
|
|
2012-01-13 22:45:24 +00:00
|
|
|
return;
|
2011-11-10 17:04:38 +00:00
|
|
|
}
|
2015-10-02 07:48:42 +00:00
|
|
|
} elseif ( $req->getVal( 'action' ) === 'submit' ) {
|
2012-10-05 13:49:43 +00:00
|
|
|
$this->listForm( $target, $reason, $limit, $namespace );
|
2012-01-13 22:45:24 +00:00
|
|
|
} else {
|
2011-11-10 17:04:38 +00:00
|
|
|
$this->promptForm();
|
2008-05-09 18:53:09 +00:00
|
|
|
}
|
2012-01-13 22:45:24 +00:00
|
|
|
} elseif ( $target === '' ) {
|
2008-05-09 18:53:09 +00:00
|
|
|
$this->promptForm();
|
2012-01-13 22:45:24 +00:00
|
|
|
} else {
|
2012-10-05 13:49:43 +00:00
|
|
|
$this->listForm( $target, $reason, $limit, $namespace );
|
2011-10-18 22:46:31 +00:00
|
|
|
}
|
2008-05-09 18:53:09 +00:00
|
|
|
}
|
|
|
|
|
2010-12-01 20:46:05 +00:00
|
|
|
/**
|
2011-02-14 20:21:02 +00:00
|
|
|
* Prompt for a username or IP address.
|
2011-12-03 12:28:29 +00:00
|
|
|
*
|
2017-08-09 21:47:49 +00:00
|
|
|
* @param string $userName
|
2010-12-01 20:46:05 +00:00
|
|
|
*/
|
2011-10-18 22:46:31 +00:00
|
|
|
protected function promptForm( $userName = '' ) {
|
2011-11-10 17:22:05 +00:00
|
|
|
$out = $this->getOutput();
|
2011-11-25 00:20:54 +00:00
|
|
|
|
2011-11-10 17:22:05 +00:00
|
|
|
$out->addWikiMsg( 'nuke-tools' );
|
2011-09-27 16:17:06 +00:00
|
|
|
|
2016-12-22 23:42:01 +00:00
|
|
|
$formDescriptor = [
|
|
|
|
'nuke-target' => [
|
|
|
|
'id' => 'nuke-target',
|
|
|
|
'default' => $userName,
|
|
|
|
'label' => $this->msg( 'nuke-userorip' )->text(),
|
|
|
|
'type' => 'user',
|
2018-03-30 20:52:50 +00:00
|
|
|
'name' => 'target',
|
|
|
|
'autofocus' => true
|
2016-12-22 23:42:01 +00:00
|
|
|
],
|
|
|
|
'nuke-pattern' => [
|
|
|
|
'id' => 'nuke-pattern',
|
|
|
|
'label' => $this->msg( 'nuke-pattern' )->text(),
|
|
|
|
'maxLength' => 40,
|
2017-02-22 13:54:14 +00:00
|
|
|
'type' => 'text',
|
|
|
|
'name' => 'pattern'
|
2016-12-22 23:42:01 +00:00
|
|
|
],
|
|
|
|
'namespace' => [
|
|
|
|
'id' => 'nuke-namespace',
|
|
|
|
'type' => 'namespaceselect',
|
|
|
|
'label' => $this->msg( 'nuke-namespace' )->text(),
|
2017-02-22 13:54:14 +00:00
|
|
|
'all' => 'all',
|
|
|
|
'name' => 'namespace'
|
2016-12-22 23:42:01 +00:00
|
|
|
],
|
|
|
|
'limit' => [
|
|
|
|
'id' => 'nuke-limit',
|
|
|
|
'maxLength' => 7,
|
|
|
|
'default' => 500,
|
|
|
|
'label' => $this->msg( 'nuke-maxpages' )->text(),
|
2017-02-22 13:54:14 +00:00
|
|
|
'type' => 'int',
|
|
|
|
'name' => 'limit'
|
2016-12-22 23:42:01 +00:00
|
|
|
]
|
|
|
|
];
|
|
|
|
|
|
|
|
HTMLForm::factory( 'ooui', $formDescriptor, $this->getContext() )
|
|
|
|
->setName( 'massdelete' )
|
|
|
|
->setFormIdentifier( 'massdelete' )
|
|
|
|
->setWrapperLegendMsg( 'nuke' )
|
|
|
|
->setSubmitTextMsg( 'nuke-submit-user' )
|
|
|
|
->setSubmitName( 'nuke-submit-user' )
|
|
|
|
->setAction( $this->getPageTitle()->getLocalURL( 'action=submit' ) )
|
|
|
|
->addHiddenField( 'wpEditToken', $this->getUser()->getEditToken() )
|
|
|
|
->prepareForm()
|
|
|
|
->displayForm( false );
|
2008-05-09 18:53:09 +00:00
|
|
|
}
|
|
|
|
|
2010-12-01 20:46:05 +00:00
|
|
|
/**
|
2011-02-14 20:21:02 +00:00
|
|
|
* Display list of pages to delete.
|
2011-09-27 16:17:06 +00:00
|
|
|
*
|
2011-02-14 20:21:02 +00:00
|
|
|
* @param string $username
|
|
|
|
* @param string $reason
|
2017-08-09 21:47:49 +00:00
|
|
|
* @param int $limit
|
|
|
|
* @param int|null $namespace
|
2010-12-01 20:46:05 +00:00
|
|
|
*/
|
2012-10-05 13:49:43 +00:00
|
|
|
protected function listForm( $username, $reason, $limit, $namespace = null ) {
|
2011-11-10 17:22:05 +00:00
|
|
|
$out = $this->getOutput();
|
2011-11-25 00:20:54 +00:00
|
|
|
|
2012-10-05 13:49:43 +00:00
|
|
|
$pages = $this->getNewPages( $username, $limit, $namespace );
|
2009-01-12 18:23:47 +00:00
|
|
|
|
2015-10-02 07:48:42 +00:00
|
|
|
if ( count( $pages ) === 0 ) {
|
2011-11-10 17:04:38 +00:00
|
|
|
if ( $username === '' ) {
|
2011-11-10 17:22:05 +00:00
|
|
|
$out->addWikiMsg( 'nuke-nopages-global' );
|
2012-01-13 22:45:24 +00:00
|
|
|
} else {
|
2011-11-10 17:22:05 +00:00
|
|
|
$out->addWikiMsg( 'nuke-nopages', $username );
|
2011-11-10 17:04:38 +00:00
|
|
|
}
|
2011-11-25 00:20:54 +00:00
|
|
|
|
2012-01-13 22:45:24 +00:00
|
|
|
$this->promptForm( $username );
|
2015-10-02 07:48:42 +00:00
|
|
|
|
2012-01-13 22:45:24 +00:00
|
|
|
return;
|
2008-05-09 18:53:09 +00:00
|
|
|
}
|
2011-09-27 16:17:06 +00:00
|
|
|
|
2016-12-28 08:15:54 +00:00
|
|
|
$out->addModules( 'ext.nuke.confirm' );
|
|
|
|
|
2011-11-10 17:04:38 +00:00
|
|
|
if ( $username === '' ) {
|
2011-11-10 17:22:05 +00:00
|
|
|
$out->addWikiMsg( 'nuke-list-multiple' );
|
2011-09-27 16:17:06 +00:00
|
|
|
} else {
|
2011-11-10 17:22:05 +00:00
|
|
|
$out->addWikiMsg( 'nuke-list', $username );
|
2011-02-14 20:21:02 +00:00
|
|
|
}
|
2008-05-09 18:53:09 +00:00
|
|
|
|
2015-10-02 07:48:42 +00:00
|
|
|
$nuke = $this->getPageTitle();
|
2009-01-12 18:23:47 +00:00
|
|
|
|
2011-11-10 17:22:05 +00:00
|
|
|
$out->addHTML(
|
2016-03-07 14:53:32 +00:00
|
|
|
Xml::openElement( 'form', [
|
2015-10-02 07:48:42 +00:00
|
|
|
'action' => $nuke->getLocalURL( 'action=delete' ),
|
|
|
|
'method' => 'post',
|
2016-03-07 14:53:32 +00:00
|
|
|
'name' => 'nukelist' ]
|
2009-01-12 18:23:47 +00:00
|
|
|
) .
|
2012-08-17 14:43:17 +00:00
|
|
|
Html::hidden( 'wpEditToken', $this->getUser()->getEditToken() ) .
|
2010-12-01 20:46:05 +00:00
|
|
|
Xml::tags( 'p',
|
|
|
|
null,
|
|
|
|
Xml::inputLabel(
|
2012-08-16 13:19:22 +00:00
|
|
|
$this->msg( 'deletecomment' )->text(), 'wpReason', 'wpReason', 70, $reason
|
2010-12-01 20:46:05 +00:00
|
|
|
)
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
2015-01-12 17:19:19 +00:00
|
|
|
// Select: All, None, Invert
|
2019-03-03 00:21:56 +00:00
|
|
|
$listToggle = new ListToggle( $this->getOutput() );
|
|
|
|
$selectLinks = $listToggle->getHTML();
|
2010-12-01 20:46:05 +00:00
|
|
|
|
2011-11-10 17:22:05 +00:00
|
|
|
$out->addHTML(
|
2016-05-25 06:01:35 +00:00
|
|
|
$selectLinks .
|
2016-09-13 15:38:35 +00:00
|
|
|
'<ul>'
|
2009-01-12 18:23:47 +00:00
|
|
|
);
|
|
|
|
|
2015-02-07 13:39:43 +00:00
|
|
|
$wordSeparator = $this->msg( 'word-separator' )->escaped();
|
|
|
|
$commaSeparator = $this->msg( 'comma-separator' )->escaped();
|
2012-08-16 13:19:22 +00:00
|
|
|
|
2017-02-25 10:18:18 +00:00
|
|
|
$linkRenderer = $this->getLinkRenderer();
|
2012-08-16 13:19:22 +00:00
|
|
|
foreach ( $pages as $info ) {
|
2012-01-13 22:45:24 +00:00
|
|
|
/**
|
2012-01-13 22:59:39 +00:00
|
|
|
* @var $title Title
|
2012-01-13 22:45:24 +00:00
|
|
|
*/
|
2012-03-21 19:25:49 +00:00
|
|
|
list( $title, $userName ) = $info;
|
2011-11-25 00:20:54 +00:00
|
|
|
|
2016-09-28 03:32:25 +00:00
|
|
|
$image = $title->inNamespace( NS_FILE ) ? wfLocalFile( $title ) : false;
|
2015-10-02 07:48:42 +00:00
|
|
|
$thumb = $image && $image->exists() ?
|
2016-03-07 14:53:32 +00:00
|
|
|
$image->transform( [ 'width' => 120, 'height' => 120 ], 0 ) :
|
2015-10-02 07:48:42 +00:00
|
|
|
false;
|
2009-01-12 18:23:47 +00:00
|
|
|
|
2015-10-02 07:48:42 +00:00
|
|
|
$userNameText = $userName ?
|
|
|
|
$this->msg( 'nuke-editby', $userName )->parse() . $commaSeparator :
|
|
|
|
'';
|
2017-02-25 10:18:18 +00:00
|
|
|
$changesLink = $linkRenderer->makeKnownLink(
|
2012-08-16 13:19:22 +00:00
|
|
|
$title,
|
2017-02-25 10:18:18 +00:00
|
|
|
$this->msg( 'nuke-viewchanges' )->text(),
|
2016-03-07 14:53:32 +00:00
|
|
|
[],
|
|
|
|
[ 'action' => 'history' ]
|
2012-08-16 13:19:22 +00:00
|
|
|
);
|
2011-11-10 17:22:05 +00:00
|
|
|
$out->addHTML( '<li>' .
|
2012-02-12 14:45:29 +00:00
|
|
|
Xml::check(
|
|
|
|
'pages[]',
|
|
|
|
true,
|
2016-03-07 14:53:32 +00:00
|
|
|
[ 'value' => $title->getPrefixedDBkey() ]
|
2012-08-16 13:19:22 +00:00
|
|
|
) . ' ' .
|
2016-03-07 14:53:32 +00:00
|
|
|
( $thumb ? $thumb->toHtml( [ 'desc-link' => true ] ) : '' ) .
|
2017-02-25 10:18:18 +00:00
|
|
|
$linkRenderer->makeKnownLink( $title ) . $wordSeparator .
|
2012-08-16 13:19:22 +00:00
|
|
|
$this->msg( 'parentheses' )->rawParams( $userNameText . $changesLink )->escaped() .
|
|
|
|
"</li>\n" );
|
2008-05-09 18:53:09 +00:00
|
|
|
}
|
2011-09-27 16:17:06 +00:00
|
|
|
|
2011-11-10 17:22:05 +00:00
|
|
|
$out->addHTML(
|
2009-01-12 18:23:47 +00:00
|
|
|
"</ul>\n" .
|
2016-05-25 06:05:49 +00:00
|
|
|
Xml::submitButton( $this->msg( 'nuke-submit-delete' )->text() ) .
|
2012-01-11 09:34:47 +00:00
|
|
|
'</form>'
|
2009-01-12 18:23:47 +00:00
|
|
|
);
|
2008-05-09 18:53:09 +00:00
|
|
|
}
|
|
|
|
|
2011-02-14 20:21:02 +00:00
|
|
|
/**
|
|
|
|
* Gets a list of new pages by the specified user or everyone when none is specified.
|
2011-09-27 16:17:06 +00:00
|
|
|
*
|
2011-02-14 20:21:02 +00:00
|
|
|
* @param string $username
|
2017-08-09 21:47:49 +00:00
|
|
|
* @param int $limit
|
|
|
|
* @param int|null $namespace
|
2011-09-27 16:17:06 +00:00
|
|
|
*
|
2011-02-14 20:21:02 +00:00
|
|
|
* @return array
|
|
|
|
*/
|
2012-10-05 13:49:43 +00:00
|
|
|
protected function getNewPages( $username, $limit, $namespace = null ) {
|
2017-09-24 05:30:18 +00:00
|
|
|
$dbr = wfGetDB( DB_REPLICA );
|
2011-09-27 16:17:06 +00:00
|
|
|
|
2016-03-07 14:53:32 +00:00
|
|
|
$what = [
|
2011-02-14 20:21:02 +00:00
|
|
|
'rc_namespace',
|
|
|
|
'rc_title',
|
2012-03-21 19:25:49 +00:00
|
|
|
'rc_timestamp',
|
2016-03-07 14:53:32 +00:00
|
|
|
];
|
2011-09-27 16:17:06 +00:00
|
|
|
|
2016-03-07 14:53:32 +00:00
|
|
|
$where = [ "(rc_new = 1) OR (rc_log_type = 'upload' AND rc_log_action = 'upload')" ];
|
2011-09-27 16:17:06 +00:00
|
|
|
|
2019-03-03 01:05:36 +00:00
|
|
|
if ( class_exists( ActorMigration::class ) ) {
|
2018-03-12 18:18:09 +00:00
|
|
|
if ( $username === '' ) {
|
|
|
|
$actorQuery = ActorMigration::newMigration()->getJoin( 'rc_user' );
|
|
|
|
$what['rc_user_text'] = $actorQuery['fields']['rc_user_text'];
|
|
|
|
} else {
|
|
|
|
$actorQuery = ActorMigration::newMigration()
|
|
|
|
->getWhere( $dbr, 'rc_user', User::newFromName( $username, false ) );
|
|
|
|
$where[] = $actorQuery['conds'];
|
|
|
|
}
|
2011-09-27 16:17:06 +00:00
|
|
|
} else {
|
2018-03-12 18:18:09 +00:00
|
|
|
$actorQuery = [ 'tables' => [], 'joins' => [] ];
|
|
|
|
if ( $username === '' ) {
|
|
|
|
$what[] = 'rc_user_text';
|
|
|
|
} else {
|
|
|
|
$where['rc_user_text'] = $username;
|
|
|
|
}
|
2011-02-14 20:21:02 +00:00
|
|
|
}
|
2011-11-25 00:20:54 +00:00
|
|
|
|
2012-10-05 13:49:43 +00:00
|
|
|
if ( $namespace !== null ) {
|
|
|
|
$where['rc_namespace'] = $namespace;
|
|
|
|
}
|
|
|
|
|
2017-02-22 13:54:14 +00:00
|
|
|
$pattern = $this->getRequest()->getText( 'pattern' );
|
2020-01-14 08:25:54 +00:00
|
|
|
if ( $pattern !== null && trim( $pattern ) !== '' ) {
|
2017-04-20 19:35:40 +00:00
|
|
|
// $pattern is a SQL pattern supporting wildcards, so buildLike
|
|
|
|
// will not work.
|
|
|
|
$where[] = 'rc_title LIKE ' . $dbr->addQuotes( $pattern );
|
2011-11-10 17:04:38 +00:00
|
|
|
}
|
2012-03-11 22:58:58 +00:00
|
|
|
$group = implode( ', ', $what );
|
2011-09-27 16:17:06 +00:00
|
|
|
|
2018-03-12 18:18:09 +00:00
|
|
|
$result = $dbr->select(
|
|
|
|
[ 'recentchanges' ] + $actorQuery['tables'],
|
2011-02-14 20:21:02 +00:00
|
|
|
$what,
|
|
|
|
$where,
|
2008-05-09 18:53:09 +00:00
|
|
|
__METHOD__,
|
2016-03-07 14:53:32 +00:00
|
|
|
[
|
2012-03-21 19:25:49 +00:00
|
|
|
'ORDER BY' => 'rc_timestamp DESC',
|
2012-03-11 22:58:58 +00:00
|
|
|
'GROUP BY' => $group,
|
2012-03-21 19:25:49 +00:00
|
|
|
'LIMIT' => $limit
|
2018-03-12 18:18:09 +00:00
|
|
|
],
|
|
|
|
$actorQuery['joins']
|
2008-09-16 01:57:01 +00:00
|
|
|
);
|
2011-09-27 16:17:06 +00:00
|
|
|
|
2016-03-07 14:53:32 +00:00
|
|
|
$pages = [];
|
2011-09-27 16:17:06 +00:00
|
|
|
|
2010-10-29 21:30:20 +00:00
|
|
|
foreach ( $result as $row ) {
|
2016-03-07 14:53:32 +00:00
|
|
|
$pages[] = [
|
2011-02-14 20:21:02 +00:00
|
|
|
Title::makeTitle( $row->rc_namespace, $row->rc_title ),
|
2012-03-21 19:25:49 +00:00
|
|
|
$username === '' ? $row->rc_user_text : false
|
2016-03-07 14:53:32 +00:00
|
|
|
];
|
2008-05-09 18:53:09 +00:00
|
|
|
}
|
2011-09-27 16:17:06 +00:00
|
|
|
|
2015-11-30 11:30:08 +00:00
|
|
|
// Allows other extensions to provide pages to be nuked that don't use
|
|
|
|
// the recentchanges table the way mediawiki-core does
|
2016-03-07 14:53:32 +00:00
|
|
|
Hooks::run( 'NukeGetNewPages', [ $username, $pattern, $namespace, $limit, &$pages ] );
|
2015-11-30 11:30:08 +00:00
|
|
|
|
|
|
|
// Re-enforcing the limit *after* the hook because other extensions
|
|
|
|
// may add and/or remove pages. We need to make sure we don't end up
|
|
|
|
// with more pages than $limit.
|
|
|
|
if ( count( $pages ) > $limit ) {
|
|
|
|
$pages = array_slice( $pages, 0, $limit );
|
|
|
|
}
|
|
|
|
|
2008-05-09 18:53:09 +00:00
|
|
|
return $pages;
|
|
|
|
}
|
|
|
|
|
2011-02-14 20:21:02 +00:00
|
|
|
/**
|
|
|
|
* Does the actual deletion of the pages.
|
2011-09-27 16:17:06 +00:00
|
|
|
*
|
2011-02-14 20:21:02 +00:00
|
|
|
* @param array $pages The pages to delete
|
|
|
|
* @param string $reason
|
2012-08-16 13:19:22 +00:00
|
|
|
* @throws PermissionsError
|
2011-02-14 20:21:02 +00:00
|
|
|
*/
|
|
|
|
protected function doDelete( array $pages, $reason ) {
|
2016-03-07 14:53:32 +00:00
|
|
|
$res = [];
|
2011-11-25 00:20:54 +00:00
|
|
|
|
2012-08-16 13:19:22 +00:00
|
|
|
foreach ( $pages as $page ) {
|
2015-12-11 23:09:54 +00:00
|
|
|
$title = Title::newFromText( $page );
|
2012-03-14 01:58:01 +00:00
|
|
|
|
2015-11-30 11:30:08 +00:00
|
|
|
$deletionResult = false;
|
2016-03-07 14:53:32 +00:00
|
|
|
if ( !Hooks::run( 'NukeDeletePage', [ $title, $reason, &$deletionResult ] ) ) {
|
2015-11-30 11:30:08 +00:00
|
|
|
if ( $deletionResult ) {
|
2016-05-25 06:05:49 +00:00
|
|
|
$res[] = $this->msg( 'nuke-deleted', $title->getPrefixedText() )->parse();
|
2015-11-30 11:30:08 +00:00
|
|
|
} else {
|
2016-05-25 06:05:49 +00:00
|
|
|
$res[] = $this->msg( 'nuke-not-deleted', $title->getPrefixedText() )->parse();
|
2015-11-30 11:30:08 +00:00
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
$file = $title->getNamespace() === NS_FILE ? wfLocalFile( $title ) : false;
|
2012-08-16 13:19:22 +00:00
|
|
|
$permission_errors = $title->getUserPermissionsErrors( 'delete', $this->getUser() );
|
2012-03-14 01:58:01 +00:00
|
|
|
|
2016-03-07 14:53:32 +00:00
|
|
|
if ( $permission_errors !== [] ) {
|
2012-03-14 01:58:01 +00:00
|
|
|
throw new PermissionsError( 'delete', $permission_errors );
|
|
|
|
}
|
|
|
|
|
2008-06-01 19:34:23 +00:00
|
|
|
if ( $file ) {
|
|
|
|
$oldimage = null; // Must be passed by reference
|
2011-07-10 07:00:09 +00:00
|
|
|
$ok = FileDeleteForm::doDelete( $title, $file, $oldimage, $reason, false )->isOK();
|
|
|
|
} else {
|
|
|
|
$article = new Article( $title, 0 );
|
|
|
|
$ok = $article->doDeleteArticle( $reason );
|
|
|
|
}
|
2012-03-14 01:58:01 +00:00
|
|
|
|
2011-07-10 07:00:09 +00:00
|
|
|
if ( $ok ) {
|
2016-05-25 06:05:49 +00:00
|
|
|
$res[] = $this->msg( 'nuke-deleted', $title->getPrefixedText() )->parse();
|
2008-06-01 19:34:23 +00:00
|
|
|
} else {
|
2016-05-25 06:05:49 +00:00
|
|
|
$res[] = $this->msg( 'nuke-not-deleted', $title->getPrefixedText() )->parse();
|
2008-06-01 19:34:23 +00:00
|
|
|
}
|
2008-05-09 18:53:09 +00:00
|
|
|
}
|
2011-11-25 00:20:54 +00:00
|
|
|
|
2011-11-10 17:22:05 +00:00
|
|
|
$this->getOutput()->addHTML( "<ul>\n<li>" . implode( "</li>\n<li>", $res ) . "</li>\n</ul>\n" );
|
|
|
|
$this->getOutput()->addWikiMsg( 'nuke-delete-more' );
|
2008-05-09 18:53:09 +00:00
|
|
|
}
|
2015-05-15 19:49:35 +00:00
|
|
|
|
2016-01-30 20:01:03 +00:00
|
|
|
/**
|
|
|
|
* Return an array of subpages beginning with $search that this special page will accept.
|
|
|
|
*
|
|
|
|
* @param string $search Prefix to search for
|
|
|
|
* @param int $limit Maximum number of results to return (usually 10)
|
|
|
|
* @param int $offset Number of results to skip (usually 0)
|
|
|
|
* @return string[] Matching subpages
|
|
|
|
*/
|
|
|
|
public function prefixSearchSubpages( $search, $limit, $offset ) {
|
|
|
|
$user = User::newFromName( $search );
|
|
|
|
if ( !$user ) {
|
|
|
|
// No prefix suggestion for invalid user
|
2016-03-07 14:53:32 +00:00
|
|
|
return [];
|
2016-01-30 20:01:03 +00:00
|
|
|
}
|
|
|
|
// Autocomplete subpage as user list - public to allow caching
|
|
|
|
return UserNamePrefixSearch::search( 'public', $search, $limit, $offset );
|
|
|
|
}
|
|
|
|
|
2015-05-15 19:49:35 +00:00
|
|
|
protected function getGroupName() {
|
|
|
|
return 'pagetools';
|
|
|
|
}
|
2008-05-09 18:53:09 +00:00
|
|
|
}
|