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