$this->filename ]; } /** * Fetch dupes from all connected file repositories. * * @return array Array of File objects */ private function getDupes() { return MediaWikiServices::getInstance()->getRepoGroup()->findBySha1( $this->hash ); } /** * @param array $dupes Array of File objects */ private function showList( $dupes ) { $html = []; $html[] = $this->openList( 0 ); foreach ( $dupes as $dupe ) { $line = $this->formatResult( null, $dupe ); $html[] = "
\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( '\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 ); } } private function doBatchLookups( $list ) { $batch = new LinkBatch(); /** @var File $file */ 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 HTML */ public function formatResult( $skin, $result ) { $linkRenderer = $this->getLinkRenderer(); $nt = $result->getTitle(); $text = MediaWikiServices::getInstance()->getContentLanguage()->convert( htmlspecialchars( $nt->getText() ) ); $plink = $linkRenderer->makeLink( $nt, new HtmlArmor( $text ) ); $userText = $result->getUser( 'text' ); if ( $result->isLocal() ) { $userId = $result->getUser( 'id' ); $user = Linker::userLink( $userId, $userText ); $user .= ''; $user .= Linker::userToolLinks( $userId, $userText ); $user .= ''; } else { $user = htmlspecialchars( $userText ); } $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 = MediaWikiServices::getInstance()->newSearchEngine(); $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( function ( Title $t ) { // Remove namespace in search suggestion return $t->getText(); }, $result ); } protected function getGroupName() { return 'media'; } }