opts = $opts; $this->setLimit( $opts->getValue( 'limit' ) ); $startTimestamp = ''; $endTimestamp = ''; if ( $opts->getValue( 'start' ) ) { $startTimestamp = $opts->getValue( 'start' ) . ' 00:00:00'; } if ( $opts->getValue( 'end' ) ) { $endTimestamp = $opts->getValue( 'end' ) . ' 23:59:59'; } $this->getDateRangeCond( $startTimestamp, $endTimestamp ); } public function getQueryInfo() { $opts = $this->opts; $conds = []; $actorQuery = ActorMigration::newMigration()->getJoin( 'img_user' ); $tables = [ 'image' ] + $actorQuery['tables']; $fields = [ 'img_name', 'img_timestamp' ] + $actorQuery['fields']; $options = []; $jconds = $actorQuery['joins']; $user = $opts->getValue( 'user' ); if ( $user !== '' ) { $conds[] = ActorMigration::newMigration() ->getWhere( wfGetDB( DB_REPLICA ), 'img_user', User::newFromName( $user, false ) )['conds']; } if ( !$opts->getValue( 'showbots' ) ) { $groupsWithBotPermission = MediaWikiServices::getInstance() ->getPermissionManager() ->getGroupsWithPermission( 'bot' ); if ( count( $groupsWithBotPermission ) ) { $dbr = wfGetDB( DB_REPLICA ); $tables[] = 'user_groups'; $conds[] = 'ug_group IS NULL'; $jconds['user_groups'] = [ 'LEFT JOIN', [ 'ug_group' => $groupsWithBotPermission, 'ug_user = ' . $actorQuery['fields']['img_user'], 'ug_expiry IS NULL OR ug_expiry >= ' . $dbr->addQuotes( $dbr->timestamp() ) ] ]; } } if ( $opts->getValue( 'hidepatrolled' ) ) { $tables[] = 'recentchanges'; $conds['rc_type'] = RC_LOG; $conds['rc_log_type'] = 'upload'; $conds['rc_patrolled'] = RecentChange::PRC_UNPATROLLED; $conds['rc_namespace'] = NS_FILE; $jconds['recentchanges'] = [ 'JOIN', [ 'rc_title = img_name', 'rc_actor = ' . $actorQuery['fields']['img_actor'], 'rc_timestamp = img_timestamp' ] ]; } if ( $opts->getValue( 'mediatype' ) ) { $conds['img_media_type'] = $opts->getValue( 'mediatype' ); } $likeVal = $opts->getValue( 'like' ); if ( !$this->getConfig()->get( 'MiserMode' ) && $likeVal !== '' ) { $dbr = wfGetDB( DB_REPLICA ); $likeObj = Title::newFromText( $likeVal ); if ( $likeObj instanceof Title ) { $like = $dbr->buildLike( $dbr->anyString(), strtolower( $likeObj->getDBkey() ), $dbr->anyString() ); $conds[] = "LOWER(img_name) $like"; } } // We're ordering by img_timestamp, but MariaDB sometimes likes to query other tables first // and filesort the result set later. // See T124205 / https://mariadb.atlassian.net/browse/MDEV-8880, and T244533 $options[] = 'STRAIGHT_JOIN'; $query = [ 'tables' => $tables, 'fields' => $fields, 'join_conds' => $jconds, 'conds' => $conds, 'options' => $options, ]; return $query; } public function getIndexField() { return 'img_timestamp'; } protected function getStartBody() { if ( !$this->gallery ) { // Note that null for mode is taken to mean use default. $mode = $this->getRequest()->getVal( 'gallerymode', null ); try { $this->gallery = ImageGalleryBase::factory( $mode, $this->getContext() ); } catch ( Exception $e ) { // User specified something invalid, fallback to default. $this->gallery = ImageGalleryBase::factory( false, $this->getContext() ); } } return ''; } protected function getEndBody() { return $this->gallery->toHTML(); } protected function doBatchLookups() { $userIds = []; $this->mResult->seek( 0 ); foreach ( $this->mResult as $row ) { $userIds[] = $row->img_user; } // Do a link batch query for names and userpages UserCache::singleton()->doQuery( $userIds, [ 'userpage' ], __METHOD__ ); } public function formatRow( $row ) { $name = $row->img_name; $username = UserCache::singleton()->getUserName( $row->img_user, $row->img_user_text ); $title = Title::makeTitle( NS_FILE, $name ); if ( ExternalUserNames::isExternal( $username ) ) { $ul = htmlspecialchars( $username ); } else { $ul = $this->getLinkRenderer()->makeLink( Title::makeTitle( NS_USER, $username ), $username ); } $time = $this->getLanguage()->userTimeAndDate( $row->img_timestamp, $this->getUser() ); $this->gallery->add( $title, "$ul
\n" . htmlspecialchars( $time ) . "
\n", '', '', [], ImageGalleryBase::LOADING_LAZY ); return ''; } }