MediaWiki REL1_30
NewPagesPager.php
Go to the documentation of this file.
1<?php
26
27 // Stored opts
28 protected $opts;
29
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 $conds = [];
43 $conds['rc_new'] = 1;
44
45 $namespace = $this->opts->getValue( 'namespace' );
46 $namespace = ( $namespace === 'all' ) ? false : intval( $namespace );
47
48 $username = $this->opts->getValue( 'username' );
49 $user = Title::makeTitleSafe( NS_USER, $username );
50
51 $size = abs( intval( $this->opts->getValue( 'size' ) ) );
52 if ( $size > 0 ) {
53 if ( $this->opts->getValue( 'size-mode' ) === 'max' ) {
54 $conds[] = 'page_len <= ' . $size;
55 } else {
56 $conds[] = 'page_len >= ' . $size;
57 }
58 }
59
60 $rcIndexes = [];
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['rc_user_text'] = $user->getText();
72 $rcIndexes = 'rc_user_text';
73 } elseif ( User::groupHasPermission( '*', 'createpage' ) &&
74 $this->opts->getValue( 'hideliu' )
75 ) {
76 # If anons cannot make new pages, don't "exclude logged in users"!
77 $conds['rc_user'] = 0;
78 }
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'] = 0;
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 $commentQuery = CommentStore::newKey( 'rc_comment' )->getJoin();
94
95 // Allow changes to the New Pages query
96 $tables = [ 'recentchanges', 'page' ] + $commentQuery['tables'];
97 $fields = [
98 'rc_namespace', 'rc_title', 'rc_cur_id', 'rc_user', 'rc_user_text',
99 'rc_timestamp', 'rc_patrolled', 'rc_id', 'rc_deleted',
100 'length' => 'page_len', 'rev_id' => 'page_latest', 'rc_this_oldid',
101 'page_namespace', 'page_title'
102 ] + $commentQuery['fields'];
103 $join_conds = [ 'page' => [ 'INNER JOIN', 'page_id=rc_cur_id' ] ] + $commentQuery['joins'];
104
105 // Avoid PHP 7.1 warning from passing $this by reference
106 $pager = $this;
107 Hooks::run( 'SpecialNewpagesConditions',
108 [ &$pager, $this->opts, &$conds, &$tables, &$fields, &$join_conds ] );
109
110 $options = [];
111
112 if ( $rcIndexes ) {
113 $options = [ 'USE INDEX' => [ 'recentchanges' => $rcIndexes ] ];
114 }
115
116 $info = [
117 'tables' => $tables,
118 'fields' => $fields,
119 'conds' => $conds,
120 'options' => $options,
121 'join_conds' => $join_conds
122 ];
123
124 // Modify query for tags
126 $info['tables'],
127 $info['fields'],
128 $info['conds'],
129 $info['join_conds'],
130 $info['options'],
131 $this->opts['tagfilter']
132 );
133
134 return $info;
135 }
136
137 function getIndexField() {
138 return 'rc_timestamp';
139 }
140
141 function formatRow( $row ) {
142 return $this->mForm->formatRow( $row );
143 }
144
145 function getStartBody() {
146 # Do a batch existence check on pages
147 $linkBatch = new LinkBatch();
148 foreach ( $this->mResult as $row ) {
149 $linkBatch->add( NS_USER, $row->rc_user_text );
150 $linkBatch->add( NS_USER_TALK, $row->rc_user_text );
151 $linkBatch->add( $row->page_namespace, $row->page_title );
152 }
153 $linkBatch->execute();
154
155 return '<ul>';
156 }
157
158 function getEndBody() {
159 return '</ul>';
160 }
161}
static modifyDisplayQuery(&$tables, &$fields, &$conds, &$join_conds, &$options, $filter_tag='')
Applies all tags-related changes to a query.
static newKey( $key)
Static constructor for easier chaining.
Helper class to keep track of options when mixing links and form elements.
Class representing a list of titles The execute() method checks them all for existence and adds them ...
Definition LinkBatch.php:34
formatRow( $row)
Abstract formatting function.
__construct( $form, FormOptions $opts)
getQueryInfo()
This function should be overridden to provide all parameters needed for the main paged query.
getStartBody()
Hook into getBody(), allows text to be inserted at the start.
getIndexField()
This function should be overridden to return the name of the index fi- eld.
getEndBody()
Hook into getBody() for the end of the list.
Efficient paging for SQL queries.
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
const NS_USER
Definition Defines.php:67
const NS_USER_TALK
Definition Defines.php:68
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist Do not use this to implement individual filters if they are compatible with the ChangesListFilter and ChangesListFilterGroup structure use sub classes of those in conjunction with the ChangesListSpecialPageStructuredFilters hook This hook can be used to implement filters that do not implement that or custom behavior that is not an individual filter e g Watchlist & $tables
Definition hooks.txt:1013
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped & $options
Definition hooks.txt:1971
this hook is for auditing only or null if authentication failed before getting that far $username
Definition hooks.txt:783
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a local account $user
Definition hooks.txt:247
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition injection.txt:37