wiki.techinc.nl/includes/specials/pagers/NewFilesPager.php
Brad Jorsch c29909e59f Mostly drop old pre-actor user schemas
This removes most of the pre-actor user and user_text columns, and the
$wgActorTableSchemaMigrationStage setting that used to determine
whether the columns were used.

rev_user and rev_user_text remain in the code, as on Wikimedia wikis the
revision table is too large to alter at this time. A future change will
combine that with the removal of rev_comment, rev_content_model, and
rev_content_format (and the addition of rev_comment_id and rev_actor).

ActorMigration's constructor continues to take a $stage parameter, and
continues to have the logic for handling it, for the benefit of
extensions that might need their own migration process. Code using
ActorMigration for accessing the core fields should be updated to use
the new actor fields directly. That will be done for in a followup.

Bug: T188327
Change-Id: Id35544b879af1cd708f3efd303fce8d9a1b9eb02
2019-09-09 11:38:36 -04:00

191 lines
5.1 KiB
PHP

<?php
/**
* 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 Pager
*/
/**
* @ingroup Pager
*/
use MediaWiki\Linker\LinkRenderer;
use MediaWiki\MediaWikiServices;
class NewFilesPager extends RangeChronologicalPager {
/**
* @var ImageGalleryBase
*/
protected $gallery;
/**
* @var FormOptions
*/
protected $opts;
/**
* @param IContextSource $context
* @param FormOptions $opts
* @param LinkRenderer $linkRenderer
*/
public function __construct( IContextSource $context, FormOptions $opts,
LinkRenderer $linkRenderer
) {
parent::__construct( $context, $linkRenderer );
$this->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 );
}
function getQueryInfo() {
$opts = $this->opts;
$conds = [];
$imgQuery = LocalFile::getQueryInfo();
$tables = $imgQuery['tables'];
$fields = [ 'img_name', 'img_timestamp' ] + $imgQuery['fields'];
$options = [];
$jconds = $imgQuery['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 = ' . $imgQuery['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 = ' . $imgQuery['fields']['img_actor'],
'rc_timestamp = img_timestamp'
]
];
// We're ordering by img_timestamp, so we have to make sure MariaDB queries `image` first.
// It sometimes decides to query `recentchanges` first and filesort the result set later
// to get the right ordering. T124205 / https://mariadb.atlassian.net/browse/MDEV-8880
$options[] = 'STRAIGHT_JOIN';
}
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";
}
}
$query = [
'tables' => $tables,
'fields' => $fields,
'join_conds' => $jconds,
'conds' => $conds,
'options' => $options,
];
return $query;
}
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();
}
function formatRow( $row ) {
$name = $row->img_name;
$user = User::newFromId( $row->img_user );
$title = Title::makeTitle( NS_FILE, $name );
$ul = $this->getLinkRenderer()->makeLink(
$user->getUserPage(),
$user->getName()
);
$time = $this->getLanguage()->userTimeAndDate( $row->img_timestamp, $this->getUser() );
$this->gallery->add(
$title,
"$ul<br />\n<i>"
. htmlspecialchars( $time )
. "</i><br />\n"
);
return '';
}
}