1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186
|
<?php
/**
* Implements Special:FileDuplicateSearch
*
* 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
* @ingroup SpecialPage
* @author Raimond Spekking, based on Special:MIMESearch by Ævar Arnfjörð Bjarmason
*/
/**
* Searches the database for files of the requested hash, comparing this with the
* 'img_sha1' field in the image table.
*
* @ingroup SpecialPage
*/
class FileDuplicateSearchPage extends QueryPage {
protected $hash = '', $filename = '';
/**
* @var File $file selected reference file, if present
*/
protected $file = null;
function __construct( $name = 'FileDuplicateSearch' ) {
parent::__construct( $name );
}
function isSyndicated() { return false; }
function isCacheable() { return false; }
function isCached() { return false; }
function linkParameters() {
return array( 'filename' => $this->filename );
}
/**
* Fetch dupes from all connected file repositories.
*
* @return Array of File objects
*/
function getDupes() {
return RepoGroup::singleton()->findBySha1( $this->hash );
}
/**
*
* @param $dupes Array of File objects
*/
function showList( $dupes ) {
$html = array();
$html[] = $this->openList( 0 );
foreach ( $dupes as $dupe ) {
$line = $this->formatResult( null, $dupe );
$html[] = "<li>" . $line . "</li>";
}
$html[] = $this->closeList();
$this->getOutput()->addHtml( implode( "\n", $html ) );
}
function getQueryInfo() {
return array(
'tables' => array( 'image' ),
'fields' => array(
'img_name AS title',
'img_sha1 AS value',
'img_user_text',
'img_timestamp'
),
'conds' => array( 'img_sha1' => $this->hash )
);
}
function execute( $par ) {
global $wgScript;
$this->setHeaders();
$this->outputHeader();
$this->filename = isset( $par ) ? $par : $this->getRequest()->getText( 'filename' );
$this->file = null;
$this->hash = '';
$title = Title::newFromText( $this->filename, NS_FILE );
if( $title && $title->getText() != '' ) {
$this->file = wfFindFile( $title );
}
$out = $this->getOutput();
# Create the input form
$out->addHTML(
Xml::openElement( 'form', array( 'id' => 'fileduplicatesearch', 'method' => 'get', 'action' => $wgScript ) ) .
Html::hidden( 'title', $this->getTitle()->getPrefixedDbKey() ) .
Xml::openElement( 'fieldset' ) .
Xml::element( 'legend', null, $this->msg( 'fileduplicatesearch-legend' )->text() ) .
Xml::inputLabel( $this->msg( 'fileduplicatesearch-filename' )->text(), 'filename', 'filename', 50, $this->filename ) . ' ' .
Xml::submitButton( $this->msg( 'fileduplicatesearch-submit' )->text() ) .
Xml::closeElement( 'fieldset' ) .
Xml::closeElement( 'form' )
);
if( $this->file ) {
$this->hash = $this->file->getSha1();
} elseif( $this->filename !== '' ) {
$out->wrapWikiMsg(
"<p class='mw-fileduplicatesearch-noresults'>\n$1\n</p>",
array( 'fileduplicatesearch-noresults', wfEscapeWikiText( $this->filename ) )
);
}
if( $this->hash != '' ) {
# Show a thumbnail of the file
$img = $this->file;
if ( $img ) {
$thumb = $img->transform( array( 'width' => 120, 'height' => 120 ) );
if( $thumb ) {
$out->addHTML( '<div id="mw-fileduplicatesearch-icon">' .
$thumb->toHtml( array( 'desc-link' => false ) ) . '<br />' .
$this->msg( 'fileduplicatesearch-info' )->numParams(
$img->getWidth(), $img->getHeight() )->params(
$this->getLanguage()->formatSize( $img->getSize() ),
$img->getMimeType() )->parseAsBlock() .
'</div>' );
}
}
$dupes = $this->getDupes();
$numRows = count( $dupes );
# Show a short summary
if( $numRows == 1 ) {
$out->wrapWikiMsg(
"<p class='mw-fileduplicatesearch-result-1'>\n$1\n</p>",
array( 'fileduplicatesearch-result-1', wfEscapeWikiText( $this->filename ) )
);
} elseif ( $numRows ) {
$out->wrapWikiMsg(
"<p class='mw-fileduplicatesearch-result-n'>\n$1\n</p>",
array( 'fileduplicatesearch-result-n', wfEscapeWikiText( $this->filename ),
$this->getLanguage()->formatNum( $numRows - 1 ) )
);
}
$this->showList( $dupes );
}
}
/**
*
* @param Skin $skin
* @param File $result
* @return string
*/
function formatResult( $skin, $result ) {
global $wgContLang;
$nt = $result->getTitle();
$text = $wgContLang->convert( $nt->getText() );
$plink = Linker::link(
Title::newFromText( $nt->getPrefixedText() ),
$text
);
$userText = $result->getUser( 'text' );
$user = Linker::link( Title::makeTitle( NS_USER, $userText ), $userText );
$time = $this->getLanguage()->userTimeAndDate( $result->getTimestamp(), $this->getUser() );
return "$plink . . $user . . $time";
}
}
|