Merge "parser: use 'vary-revision-sha1' in Parser::statelessFetchTemplate"
[lhc/web/wiklou.git] / includes / specials / pagers / NewPagesPager.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 NewPagesPager extends ReverseChronologicalPager {
28
29 /**
30 * @var FormOptions
31 */
32 protected $opts;
33
34 /**
35 * @var SpecialNewpages
36 */
37 protected $mForm;
38
39 /**
40 * @param SpecialNewpages $form
41 * @param FormOptions $opts
42 */
43 public function __construct( $form, FormOptions $opts ) {
44 parent::__construct( $form->getContext() );
45 $this->mForm = $form;
46 $this->opts = $opts;
47 }
48
49 function getQueryInfo() {
50 $rcQuery = RecentChange::getQueryInfo();
51
52 $conds = [];
53 $conds['rc_new'] = 1;
54
55 $username = $this->opts->getValue( 'username' );
56 $user = Title::makeTitleSafe( NS_USER, $username );
57
58 $size = abs( intval( $this->opts->getValue( 'size' ) ) );
59 if ( $size > 0 ) {
60 if ( $this->opts->getValue( 'size-mode' ) === 'max' ) {
61 $conds[] = 'page_len <= ' . $size;
62 } else {
63 $conds[] = 'page_len >= ' . $size;
64 }
65 }
66
67 if ( $user ) {
68 $conds[] = ActorMigration::newMigration()->getWhere(
69 $this->mDb, 'rc_user', User::newFromName( $user->getText(), false ), false
70 )['conds'];
71 } elseif ( User::groupHasPermission( '*', 'createpage' ) &&
72 $this->opts->getValue( 'hideliu' )
73 ) {
74 # If anons cannot make new pages, don't "exclude logged in users"!
75 $conds[] = ActorMigration::newMigration()->isAnon( $rcQuery['fields']['rc_user'] );
76 }
77
78 $conds = array_merge( $conds, $this->getNamespaceCond() );
79
80 # If this user cannot see patrolled edits or they are off, don't do dumb queries!
81 if ( $this->opts->getValue( 'hidepatrolled' ) && $this->getUser()->useNPPatrol() ) {
82 $conds['rc_patrolled'] = RecentChange::PRC_UNPATROLLED;
83 }
84
85 if ( $this->opts->getValue( 'hidebots' ) ) {
86 $conds['rc_bot'] = 0;
87 }
88
89 if ( $this->opts->getValue( 'hideredirs' ) ) {
90 $conds['page_is_redirect'] = 0;
91 }
92
93 // Allow changes to the New Pages query
94 $tables = array_merge( $rcQuery['tables'], [ 'page' ] );
95 $fields = array_merge( $rcQuery['fields'], [
96 'length' => 'page_len', 'rev_id' => 'page_latest', 'page_namespace', 'page_title'
97 ] );
98 $join_conds = [ 'page' => [ 'JOIN', 'page_id=rc_cur_id' ] ] + $rcQuery['joins'];
99
100 // Avoid PHP 7.1 warning from passing $this by reference
101 $pager = $this;
102 Hooks::run( 'SpecialNewpagesConditions',
103 [ &$pager, $this->opts, &$conds, &$tables, &$fields, &$join_conds ] );
104
105 $info = [
106 'tables' => $tables,
107 'fields' => $fields,
108 'conds' => $conds,
109 'options' => [],
110 'join_conds' => $join_conds
111 ];
112
113 // Modify query for tags
114 ChangeTags::modifyDisplayQuery(
115 $info['tables'],
116 $info['fields'],
117 $info['conds'],
118 $info['join_conds'],
119 $info['options'],
120 $this->opts['tagfilter']
121 );
122
123 return $info;
124 }
125
126 // Based on ContribsPager.php
127 function getNamespaceCond() {
128 $namespace = $this->opts->getValue( 'namespace' );
129 if ( $namespace === 'all' || $namespace === '' ) {
130 return [];
131 }
132
133 $namespace = intval( $namespace );
134 $invert = $this->opts->getValue( 'invert' );
135 $associated = $this->opts->getValue( 'associated' );
136
137 $eq_op = $invert ? '!=' : '=';
138 $bool_op = $invert ? 'AND' : 'OR';
139
140 if ( !$associated ) {
141 return [ "rc_namespace $eq_op " . $this->mDb->addQuotes( $namespace ) ];
142 }
143
144 $associatedNS = MediaWikiServices::getInstance()->getNamespaceInfo()->getAssociated( $namespace );
145 return [
146 "rc_namespace $eq_op " . $this->mDb->addQuotes( $namespace ) .
147 $bool_op .
148 " rc_namespace $eq_op " . $this->mDb->addQuotes( $associatedNS )
149 ];
150 }
151
152 function getIndexField() {
153 return 'rc_timestamp';
154 }
155
156 function formatRow( $row ) {
157 return $this->mForm->formatRow( $row );
158 }
159
160 protected function getStartBody() {
161 # Do a batch existence check on pages
162 $linkBatch = new LinkBatch();
163 foreach ( $this->mResult as $row ) {
164 $linkBatch->add( NS_USER, $row->rc_user_text );
165 $linkBatch->add( NS_USER_TALK, $row->rc_user_text );
166 $linkBatch->add( $row->page_namespace, $row->page_title );
167 }
168 $linkBatch->execute();
169
170 return '<ul>';
171 }
172
173 protected function getEndBody() {
174 return '</ul>';
175 }
176 }