linkBatchFactory = $linkBatchFactory; $this->repoGroup = $repoGroup; $this->searchEngineFactory = $searchEngineFactory; $this->languageConverter = $languageConverterFactory->getLanguageConverter( $this->getContentLanguage() ); } /** * Fetch dupes from all connected file repositories. * * @return File[] */ private function getDupes() { return $this->repoGroup->findBySha1( $this->hash ); } /** * @param File[] $dupes */ private function showList( $dupes ) { $html = []; $html[] = "
    "; foreach ( $dupes as $dupe ) { $line = $this->formatResult( $dupe ); $html[] = "
  1. " . $line . "
  2. "; } $html[] = '
'; $this->getOutput()->addHTML( implode( "\n", $html ) ); } public function execute( $par ) { $this->setHeaders(); $this->outputHeader(); $this->filename = $par ?? $this->getRequest()->getText( 'filename' ); $this->file = null; $this->hash = ''; $title = Title::newFromText( $this->filename, NS_FILE ); if ( $title && $title->getText() != '' ) { $this->file = $this->repoGroup->findFile( $title ); } $out = $this->getOutput(); # Create the input form $formFields = [ 'filename' => [ 'type' => 'text', 'name' => 'filename', 'label-message' => 'fileduplicatesearch-filename', 'id' => 'filename', 'size' => 50, 'default' => $this->filename, ], ]; $hiddenFields = [ 'title' => $this->getPageTitle()->getPrefixedDBkey(), ]; $htmlForm = HTMLForm::factory( 'ooui', $formFields, $this->getContext() ); $htmlForm->addHiddenFields( $hiddenFields ); $htmlForm->setAction( wfScript() ); $htmlForm->setMethod( 'get' ); $htmlForm->setSubmitTextMsg( $this->msg( 'fileduplicatesearch-submit' ) ); // The form should be visible always, even if it was submitted (e.g. to perform another action). // To bypass the callback validation of HTMLForm, use prepareForm() and displayForm(). $htmlForm->prepareForm()->displayForm( false ); if ( $this->file ) { $this->hash = $this->file->getSha1(); } elseif ( $this->filename !== '' ) { $out->wrapWikiMsg( "

\n$1\n

", [ 'fileduplicatesearch-noresults', wfEscapeWikiText( $this->filename ) ] ); } if ( $this->hash != '' ) { # Show a thumbnail of the file $img = $this->file; if ( $img ) { $thumb = $img->transform( [ 'width' => 120, 'height' => 120 ] ); if ( $thumb ) { $out->addModuleStyles( 'mediawiki.special' ); $out->addHTML( '
' . $thumb->toHtml( [ '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

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

\n$1\n

", [ 'fileduplicatesearch-result-n', wfEscapeWikiText( $this->filename ), $this->getLanguage()->formatNum( $numRows - 1 ) ] ); } $this->doBatchLookups( $dupes ); $this->showList( $dupes ); } } /** * @param File[] $list */ private function doBatchLookups( $list ) { $batch = $this->linkBatchFactory->newLinkBatch(); foreach ( $list as $file ) { $batch->addObj( $file->getTitle() ); if ( $file->isLocal() ) { $uploader = $file->getUploader( File::FOR_THIS_USER, $this->getAuthority() ); if ( $uploader ) { $batch->add( NS_USER, $uploader->getName() ); $batch->add( NS_USER_TALK, $uploader->getName() ); } } } $batch->execute(); } /** * @param File $result * @return string HTML */ private function formatResult( $result ) { $linkRenderer = $this->getLinkRenderer(); $nt = $result->getTitle(); $text = $this->languageConverter->convert( $nt->getText() ); $plink = $linkRenderer->makeLink( $nt, $text ); $uploader = $result->getUploader( File::FOR_THIS_USER, $this->getAuthority() ); if ( $result->isLocal() && $uploader ) { $user = Linker::userLink( $uploader->getId(), $uploader->getName() ); $user .= ''; $user .= Linker::userToolLinks( $uploader->getId(), $uploader->getName() ); $user .= ''; } elseif ( $uploader ) { $user = htmlspecialchars( $uploader->getName() ); } else { $user = '' . $this->msg( 'rev-deleted-user' )->escaped() . ''; } $time = htmlspecialchars( $this->getLanguage()->userTimeAndDate( $result->getTimestamp(), $this->getUser() ) ); return "$plink . . $user . . $time"; } /** * 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 ) { $title = Title::newFromText( $search, NS_FILE ); if ( !$title || $title->getNamespace() !== NS_FILE ) { // No prefix suggestion outside of file namespace return []; } $searchEngine = $this->searchEngineFactory->create(); $searchEngine->setLimitOffset( $limit, $offset ); // Autocomplete subpage the same as a normal search, but just for files $searchEngine->setNamespaces( [ NS_FILE ] ); $result = $searchEngine->defaultPrefixSearch( $search ); return array_map( static function ( Title $t ) { // Remove namespace in search suggestion return $t->getText(); }, $result ); } protected function getGroupName() { return 'media'; } }