mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Nuke
synced 2024-11-15 20:09:37 +00:00
eaef492c15
Recommit of r66254 to trunk. This was just find extensions phase3 -iname '*.php' \! -iname '*.i18n.php' \! -iname 'Messages*.php' \! -iname '*_Messages.php' -exec sed -i 's/ /\ /g;s/—/―/g;s/•/•/g;s/á/á/g;s/´/´/g;s/à/à/g;s/α/α/g;s/ä/ä/g;s/ç/ç/g;s/©/©/g;s/↓/↓/g;s/°/°/g;s/é/é/g;s/ê/ê/g;s/ë/ë/g;s/è/è/g;s/€/€/g;s/↔//g;s/…/…/g;s/í/í/g;s/ì/ì/g;s/←/←/g;s/“/“/g;s/·/·/g;s/−/−/g;s/–/–/g;s/ó/ó/g;s/ô/ô/g;s/œ/œ/g;s/ò/ò/g;s/õ/õ/g;s/ö/ö/g;s/£/£/g;s/′/′/g;s/″/″/g;s/»/»/g;s/→/→/g;s/”/”/g;s/Σ/Σ/g;s/×/×/g;s/ú/ú/g;s/↑/↑/g;s/ü/ü/g;s/¥/¥/g' {} + followed by reading over every single line of the resulting diff and fixing a whole bunch of false positives. The reason for this change is given in <http://lists.wikimedia.org/pipermail/wikitech-l/2010-April/047617.html>. I cleared it with Tim and Brion on IRC before committing. It might cause a few problems, but I tried to be careful; please report any issues. I skipped all messages files. I plan to make a follow-up commit that alters wfMsgExt() with 'escapenoentities' to sanitize all the entities. That way, the only messages that will be problems will be ones that output raw HTML, and we want to get rid of those anyway. This should get rid of all named entities everywhere except messages. I skipped a few things like   that I noticed in manual inspection, because they weren't well-formed XML anyway. Also, to everyone who uses non-breaking spaces when they could use a normal space, or nothing at all, or CSS padding: I still hate you. Die.
155 lines
4 KiB
PHP
155 lines
4 KiB
PHP
<?php
|
|
|
|
if( !defined( 'MEDIAWIKI' ) )
|
|
die( 'Not an entry point.' );
|
|
|
|
class SpecialNuke extends SpecialPage {
|
|
function __construct() {
|
|
wfLoadExtensionMessages( 'Nuke' );
|
|
parent::__construct( 'Nuke', 'nuke' );
|
|
}
|
|
|
|
function execute( $par ){
|
|
global $wgUser, $wgRequest;
|
|
|
|
if( !$this->userCanExecute( $wgUser ) ){
|
|
$this->displayRestrictionError();
|
|
return;
|
|
}
|
|
|
|
$this->setHeaders();
|
|
$this->outputHeader();
|
|
|
|
$target = $wgRequest->getText( 'target', $par );
|
|
|
|
// Normalise name
|
|
if ( $target !== '' ) {
|
|
$user = User::newFromName( $target );
|
|
if ( $user ) $target = $user->getName();
|
|
}
|
|
|
|
$reason = $wgRequest->getText( 'wpReason',
|
|
wfMsgForContent( 'nuke-defaultreason', $target ) );
|
|
$posted = $wgRequest->wasPosted() &&
|
|
$wgUser->matchEditToken( $wgRequest->getVal( 'wpEditToken' ) );
|
|
if( $posted ) {
|
|
$pages = $wgRequest->getArray( 'pages' );
|
|
if( $pages ) {
|
|
return $this->doDelete( $pages, $reason );
|
|
}
|
|
}
|
|
if( $target != '' ) {
|
|
$this->listForm( $target, $reason );
|
|
} else {
|
|
$this->promptForm();
|
|
}
|
|
}
|
|
|
|
function promptForm() {
|
|
global $wgOut;
|
|
|
|
$input = Xml::input( 'target', 40 );
|
|
$submit = Xml::submitButton( wfMsg( 'nuke-submit-user' ) );
|
|
|
|
$wgOut->addWikiMsg( 'nuke-tools' );
|
|
$wgOut->addHTML(
|
|
Xml::openElement( 'form', array(
|
|
'action' => $this->getTitle()->getLocalURL( 'action=submit' ),
|
|
'method' => 'post' )
|
|
) . "$input\n$submit\n"
|
|
);
|
|
|
|
$wgOut->addHTML( "</form>" );
|
|
}
|
|
|
|
function listForm( $username, $reason ) {
|
|
global $wgUser, $wgOut, $wgLang;
|
|
|
|
$pages = $this->getNewPages( $username );
|
|
|
|
if( count( $pages ) == 0 ) {
|
|
$wgOut->addWikiMsg( 'nuke-nopages', $username );
|
|
return $this->promptForm();
|
|
}
|
|
$wgOut->addWikiMsg( 'nuke-list', $username );
|
|
|
|
$nuke = $this->getTitle();
|
|
$submit = Xml::submitButton( wfMsg( 'nuke-submit-delete' ) );
|
|
|
|
$wgOut->addHTML(
|
|
Xml::openElement( 'form', array(
|
|
'action' => $nuke->getLocalURL( 'action=delete' ),
|
|
'method' => 'post' )
|
|
) .
|
|
Xml::hidden( 'wpEditToken', $wgUser->editToken() ) .
|
|
Xml::inputLabel(
|
|
wfMsg( 'deletecomment' ), 'wpReason', 'wpReason', 60, $reason
|
|
) . '<br /><br />' .
|
|
Xml::submitButton( wfMsg( 'nuke-submit-delete' ) )
|
|
);
|
|
|
|
$wgOut->addHTML( '<ul>' );
|
|
|
|
$sk = $wgUser->getSkin();
|
|
foreach( $pages as $info ) {
|
|
list( $title, $edits ) = $info;
|
|
$image = $title->getNamespace() == NS_IMAGE ? wfLocalFile( $title ) : false;
|
|
$thumb = $image && $image->exists() ? $image->getThumbnail( 120, 120 ) : false;
|
|
|
|
$changes = wfMsgExt( 'nchanges', 'parsemag', $wgLang->formatNum( $edits ) );
|
|
|
|
$wgOut->addHTML( '<li>' .
|
|
Xml::check( 'pages[]', true,
|
|
array( 'value' => $title->getPrefixedDbKey() )
|
|
) .
|
|
' ' .
|
|
( $thumb ? $thumb->toHtml( array( 'desc-link' => true ) ) : '' ) .
|
|
$sk->makeKnownLinkObj( $title ) .
|
|
' (' .
|
|
$sk->makeKnownLinkObj( $title, $changes, 'action=history' ) .
|
|
")</li>\n" );
|
|
}
|
|
$wgOut->addHTML(
|
|
"</ul>\n" .
|
|
Xml::submitButton( wfMsg( 'nuke-submit-delete' ) ) .
|
|
"</form>"
|
|
);
|
|
}
|
|
|
|
function getNewPages( $username ) {
|
|
$dbr = wfGetDB( DB_SLAVE );
|
|
$result = $dbr->select( 'recentchanges',
|
|
array( 'rc_namespace', 'rc_title', 'rc_timestamp', 'COUNT(*) AS edits' ),
|
|
array(
|
|
'rc_user_text' => $username,
|
|
"(rc_new = 1) OR (rc_log_type = 'upload' AND rc_log_action = 'upload')"
|
|
),
|
|
__METHOD__,
|
|
array(
|
|
'ORDER BY' => 'rc_timestamp DESC',
|
|
'GROUP BY' => 'rc_namespace, rc_title'
|
|
)
|
|
);
|
|
$pages = array();
|
|
while( $row = $dbr->fetchObject( $result ) ) {
|
|
$pages[] = array( Title::makeTitle( $row->rc_namespace, $row->rc_title ), $row->edits );
|
|
}
|
|
$dbr->freeResult( $result );
|
|
return $pages;
|
|
}
|
|
|
|
function doDelete( $pages, $reason ) {
|
|
foreach( $pages as $page ) {
|
|
$title = Title::newFromURL( $page );
|
|
$file = $title->getNamespace() == NS_IMAGE ? wfLocalFile( $title ) : false;
|
|
if ( $file ) {
|
|
$oldimage = null; // Must be passed by reference
|
|
FileDeleteForm::doDelete( $title, $file, $oldimage, $reason, false );
|
|
} else {
|
|
$article = new Article( $title );
|
|
$article->doDelete( $reason );
|
|
}
|
|
}
|
|
}
|
|
}
|