Merge "benchmarks: Convert benchmarkHooks to use Benchmarker"
[lhc/web/wiklou.git] / includes / specials / pagers / NewFilesPager.php
1 <?php
2 /**
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 * http://www.gnu.org/copyleft/gpl.html
17 *
18 * @file
19 * @ingroup Pager
20 */
21
22 /**
23 * @ingroup Pager
24 */
25 use MediaWiki\MediaWikiServices;
26
27 class NewFilesPager extends ReverseChronologicalPager {
28
29 /**
30 * @var ImageGalleryBase
31 */
32 protected $gallery;
33
34 /**
35 * @var FormOptions
36 */
37 protected $opts;
38
39 /**
40 * @param IContextSource $context
41 * @param FormOptions $opts
42 */
43 function __construct( IContextSource $context, FormOptions $opts ) {
44 $this->opts = $opts;
45
46 $this->setLimit( $opts->getValue( 'limit' ) );
47
48 parent::__construct( $context );
49 }
50
51 function getQueryInfo() {
52 $opts = $this->opts;
53 $conds = $jconds = [];
54 $tables = [ 'image' ];
55 $fields = [ 'img_name', 'img_user', 'img_timestamp' ];
56 $options = [];
57
58 $user = $opts->getValue( 'user' );
59 if ( $user !== '' ) {
60 $userId = User::idFromName( $user );
61 if ( $userId ) {
62 $conds['img_user'] = $userId;
63 } else {
64 $conds['img_user_text'] = $user;
65 }
66 }
67
68 if ( !$opts->getValue( 'showbots' ) ) {
69 $groupsWithBotPermission = User::getGroupsWithPermission( 'bot' );
70
71 if ( count( $groupsWithBotPermission ) ) {
72 $dbr = wfGetDB( DB_REPLICA );
73 $tables[] = 'user_groups';
74 $conds[] = 'ug_group IS NULL';
75 $jconds['user_groups'] = [
76 'LEFT JOIN',
77 [
78 'ug_group' => $groupsWithBotPermission,
79 'ug_user = img_user',
80 'ug_expiry IS NULL OR ug_expiry >= ' . $dbr->addQuotes( $dbr->timestamp() )
81 ]
82 ];
83 }
84 }
85
86 if ( $opts->getValue( 'hidepatrolled' ) ) {
87 $tables[] = 'recentchanges';
88 $conds['rc_type'] = RC_LOG;
89 $conds['rc_log_type'] = 'upload';
90 $conds['rc_patrolled'] = 0;
91 $conds['rc_namespace'] = NS_FILE;
92 $jconds['recentchanges'] = [
93 'INNER JOIN',
94 [
95 'rc_title = img_name',
96 'rc_user = img_user',
97 'rc_timestamp = img_timestamp'
98 ]
99 ];
100 // We're ordering by img_timestamp, so we have to make sure MariaDB queries `image` first.
101 // It sometimes decides to query `recentchanges` first and filesort the result set later
102 // to get the right ordering. T124205 / https://mariadb.atlassian.net/browse/MDEV-8880
103 $options[] = 'STRAIGHT_JOIN';
104 }
105
106 $likeVal = $opts->getValue( 'like' );
107 if ( !$this->getConfig()->get( 'MiserMode' ) && $likeVal !== '' ) {
108 $dbr = wfGetDB( DB_REPLICA );
109 $likeObj = Title::newFromText( $likeVal );
110 if ( $likeObj instanceof Title ) {
111 $like = $dbr->buildLike(
112 $dbr->anyString(),
113 strtolower( $likeObj->getDBkey() ),
114 $dbr->anyString()
115 );
116 $conds[] = "LOWER(img_name) $like";
117 }
118 }
119
120 $query = [
121 'tables' => $tables,
122 'fields' => $fields,
123 'join_conds' => $jconds,
124 'conds' => $conds,
125 'options' => $options,
126 ];
127
128 return $query;
129 }
130
131 function getIndexField() {
132 return 'img_timestamp';
133 }
134
135 function getStartBody() {
136 if ( !$this->gallery ) {
137 // Note that null for mode is taken to mean use default.
138 $mode = $this->getRequest()->getVal( 'gallerymode', null );
139 try {
140 $this->gallery = ImageGalleryBase::factory( $mode, $this->getContext() );
141 } catch ( Exception $e ) {
142 // User specified something invalid, fallback to default.
143 $this->gallery = ImageGalleryBase::factory( false, $this->getContext() );
144 }
145 }
146
147 return '';
148 }
149
150 function getEndBody() {
151 return $this->gallery->toHTML();
152 }
153
154 function formatRow( $row ) {
155 $name = $row->img_name;
156 $user = User::newFromId( $row->img_user );
157
158 $title = Title::makeTitle( NS_FILE, $name );
159 $ul = MediaWikiServices::getInstance()->getLinkRenderer()->makeLink(
160 $user->getUserPage(),
161 $user->getName()
162 );
163 $time = $this->getLanguage()->userTimeAndDate( $row->img_timestamp, $this->getUser() );
164
165 $this->gallery->add(
166 $title,
167 "$ul<br />\n<i>"
168 . htmlspecialchars( $time )
169 . "</i><br />\n"
170 );
171 }
172 }