$this->filename ); } /** * Fetch dupes from all connected file repositories. * * @return Array of File objects */ function getDupes() { return RepoGroup::singleton()->findBySha1( $this->hash ); } /** * * @param array $dupes of File objects */ function showList( $dupes ) { $html = array(); $html[] = $this->openList( 0 ); foreach ( $dupes as $dupe ) { $line = $this->formatResult( null, $dupe ); $html[] = "
  • " . $line . "
  • "; } $html[] = $this->closeList(); $this->getOutput()->addHtml( implode( "\n", $html ) ); } function getQueryInfo() { return array( 'tables' => array( 'image' ), 'fields' => array( 'title' => 'img_name', 'value' => 'img_sha1', '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( "

    \n$1\n

    ", 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( '
    ' . $thumb->toHtml( array( 'desc-link' => false ) ) . '
    ' . $this->msg( 'fileduplicatesearch-info' )->numParams( $img->getWidth(), $img->getHeight() )->params( $this->getLanguage()->formatSize( $img->getSize() ), $img->getMimeType() )->parseAsBlock() . '
    ' ); } } $dupes = $this->getDupes(); $numRows = count( $dupes ); # Show a short summary if( $numRows == 1 ) { $out->wrapWikiMsg( "

    \n$1\n

    ", array( 'fileduplicatesearch-result-1', wfEscapeWikiText( $this->filename ) ) ); } elseif ( $numRows ) { $out->wrapWikiMsg( "

    \n$1\n

    ", array( 'fileduplicatesearch-result-n', wfEscapeWikiText( $this->filename ), $this->getLanguage()->formatNum( $numRows - 1 ) ) ); } $this->doBatchLookups( $dupes ); $this->showList( $dupes ); } } function doBatchLookups( $list ) { $batch = new LinkBatch(); foreach( $list as $file ) { $batch->addObj( $file->getTitle() ); if( $file->isLocal() ) { $userName = $file->getUser( 'text' ); $batch->add( NS_USER, $userName ); $batch->add( NS_USER_TALK, $userName ); } } $batch->execute(); } /** * * @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' ); if ( $result->isLocal() ) { $userId = $result->getUser( 'id' ); $user = Linker::userLink( $userId, $userText ); $user .= $this->getContext()->msg( 'word-separator' )->plain(); $user .= ''; $user .= Linker::userToolLinks( $userId, $userText ); $user .= ''; } else { $user = htmlspecialchars( $userText ); } $time = $this->getLanguage()->userTimeAndDate( $result->getTimestamp(), $this->getUser() ); return "$plink . . $user . . $time"; } protected function getGroupName() { return 'media'; } }