MediaWiki REL1_30
ApiQueryContributors.php
Go to the documentation of this file.
1<?php
39 const MAX_PAGES = 100;
40
41 public function __construct( ApiQuery $query, $moduleName ) {
42 // "pc" is short for "page contributors", "co" was already taken by the
43 // GeoData extension's prop=coordinates.
44 parent::__construct( $query, $moduleName, 'pc' );
45 }
46
47 public function execute() {
48 $db = $this->getDB();
50 $this->requireMaxOneParameter( $params, 'group', 'excludegroup', 'rights', 'excluderights' );
51
52 // Only operate on existing pages
53 $pages = array_keys( $this->getPageSet()->getGoodTitles() );
54
55 // Filter out already-processed pages
56 if ( $params['continue'] !== null ) {
57 $cont = explode( '|', $params['continue'] );
58 $this->dieContinueUsageIf( count( $cont ) != 2 );
59 $cont_page = (int)$cont[0];
60 $pages = array_filter( $pages, function ( $v ) use ( $cont_page ) {
61 return $v >= $cont_page;
62 } );
63 }
64 if ( !count( $pages ) ) {
65 // Nothing to do
66 return;
67 }
68
69 // Apply MAX_PAGES, leaving any over the limit for a continue.
70 sort( $pages );
71 $continuePages = null;
72 if ( count( $pages ) > self::MAX_PAGES ) {
73 $continuePages = $pages[self::MAX_PAGES] . '|0';
74 $pages = array_slice( $pages, 0, self::MAX_PAGES );
75 }
76
77 $result = $this->getResult();
78
79 // First, count anons
80 $this->addTables( 'revision' );
81 $this->addFields( [
82 'page' => 'rev_page',
83 'anons' => 'COUNT(DISTINCT rev_user_text)',
84 ] );
85 $this->addWhereFld( 'rev_page', $pages );
86 $this->addWhere( 'rev_user = 0' );
87 $this->addWhere( $db->bitAnd( 'rev_deleted', Revision::DELETED_USER ) . ' = 0' );
88 $this->addOption( 'GROUP BY', 'rev_page' );
89 $res = $this->select( __METHOD__ );
90 foreach ( $res as $row ) {
91 $fit = $result->addValue( [ 'query', 'pages', $row->page ],
92 'anoncontributors', (int)$row->anons
93 );
94 if ( !$fit ) {
95 // This not fitting isn't reasonable, so it probably means that
96 // some other module used up all the space. Just set a dummy
97 // continue and hope it works next time.
98 $this->setContinueEnumParameter( 'continue',
99 $params['continue'] !== null ? $params['continue'] : '0|0'
100 );
101
102 return;
103 }
104 }
105
106 // Next, add logged-in users
107 $this->resetQueryParams();
108 $this->addTables( 'revision' );
109 $this->addFields( [
110 'page' => 'rev_page',
111 'user' => 'rev_user',
112 'username' => 'MAX(rev_user_text)', // Non-MySQL databases don't like partial group-by
113 ] );
114 $this->addWhereFld( 'rev_page', $pages );
115 $this->addWhere( 'rev_user != 0' );
116 $this->addWhere( $db->bitAnd( 'rev_deleted', Revision::DELETED_USER ) . ' = 0' );
117 $this->addOption( 'GROUP BY', 'rev_page, rev_user' );
118 $this->addOption( 'LIMIT', $params['limit'] + 1 );
119
120 // Force a sort order to ensure that properties are grouped by page
121 // But only if pp_page is not constant in the WHERE clause.
122 if ( count( $pages ) > 1 ) {
123 $this->addOption( 'ORDER BY', 'rev_page, rev_user' );
124 } else {
125 $this->addOption( 'ORDER BY', 'rev_user' );
126 }
127
128 $limitGroups = [];
129 if ( $params['group'] ) {
130 $excludeGroups = false;
131 $limitGroups = $params['group'];
132 } elseif ( $params['excludegroup'] ) {
133 $excludeGroups = true;
134 $limitGroups = $params['excludegroup'];
135 } elseif ( $params['rights'] ) {
136 $excludeGroups = false;
137 foreach ( $params['rights'] as $r ) {
138 $limitGroups = array_merge( $limitGroups, User::getGroupsWithPermission( $r ) );
139 }
140
141 // If no group has the rights requested, no need to query
142 if ( !$limitGroups ) {
143 if ( $continuePages !== null ) {
144 // But we still need to continue for the next page's worth
145 // of anoncontributors
146 $this->setContinueEnumParameter( 'continue', $continuePages );
147 }
148
149 return;
150 }
151 } elseif ( $params['excluderights'] ) {
152 $excludeGroups = true;
153 foreach ( $params['excluderights'] as $r ) {
154 $limitGroups = array_merge( $limitGroups, User::getGroupsWithPermission( $r ) );
155 }
156 }
157
158 if ( $limitGroups ) {
159 $limitGroups = array_unique( $limitGroups );
160 $this->addTables( 'user_groups' );
161 $this->addJoinConds( [ 'user_groups' => [
162 $excludeGroups ? 'LEFT OUTER JOIN' : 'INNER JOIN',
163 [
164 'ug_user=rev_user',
165 'ug_group' => $limitGroups,
166 'ug_expiry IS NULL OR ug_expiry >= ' . $db->addQuotes( $db->timestamp() )
167 ]
168 ] ] );
169 $this->addWhereIf( 'ug_user IS NULL', $excludeGroups );
170 }
171
172 if ( $params['continue'] !== null ) {
173 $cont = explode( '|', $params['continue'] );
174 $this->dieContinueUsageIf( count( $cont ) != 2 );
175 $cont_page = (int)$cont[0];
176 $cont_user = (int)$cont[1];
177 $this->addWhere(
178 "rev_page > $cont_page OR " .
179 "(rev_page = $cont_page AND " .
180 "rev_user >= $cont_user)"
181 );
182 }
183
184 $res = $this->select( __METHOD__ );
185 $count = 0;
186 foreach ( $res as $row ) {
187 if ( ++$count > $params['limit'] ) {
188 // We've reached the one extra which shows that
189 // there are additional pages to be had. Stop here...
190 $this->setContinueEnumParameter( 'continue', $row->page . '|' . $row->user );
191
192 return;
193 }
194
195 $fit = $this->addPageSubItem( $row->page,
196 [ 'userid' => (int)$row->user, 'name' => $row->username ],
197 'user'
198 );
199 if ( !$fit ) {
200 $this->setContinueEnumParameter( 'continue', $row->page . '|' . $row->user );
201
202 return;
203 }
204 }
205
206 if ( $continuePages !== null ) {
207 $this->setContinueEnumParameter( 'continue', $continuePages );
208 }
209 }
210
211 public function getCacheMode( $params ) {
212 return 'public';
213 }
214
215 public function getAllowedParams() {
216 $userGroups = User::getAllGroups();
217 $userRights = User::getAllRights();
218
219 return [
220 'group' => [
221 ApiBase::PARAM_TYPE => $userGroups,
223 ],
224 'excludegroup' => [
225 ApiBase::PARAM_TYPE => $userGroups,
227 ],
228 'rights' => [
229 ApiBase::PARAM_TYPE => $userRights,
231 ],
232 'excluderights' => [
233 ApiBase::PARAM_TYPE => $userRights,
235 ],
236 'limit' => [
238 ApiBase::PARAM_TYPE => 'limit',
242 ],
243 'continue' => [
244 ApiBase::PARAM_HELP_MSG => 'api-help-param-continue',
245 ],
246 ];
247 }
248
249 protected function getExamplesMessages() {
250 return [
251 'action=query&prop=contributors&titles=Main_Page'
252 => 'apihelp-query+contributors-example-simple',
253 ];
254 }
255
256 public function getHelpUrls() {
257 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Contributors';
258 }
259}
const PARAM_MAX2
(integer) Max value allowed for the parameter for users with the apihighlimits right,...
Definition ApiBase.php:100
const PARAM_MAX
(integer) Max value allowed for the parameter, for PARAM_TYPE 'integer' and 'limit'.
Definition ApiBase.php:94
dieContinueUsageIf( $condition)
Die with the 'badcontinue' error.
Definition ApiBase.php:2026
const PARAM_TYPE
(string|string[]) Either an array of allowed value strings, or a string type as described below.
Definition ApiBase.php:91
const PARAM_DFLT
(null|boolean|integer|string) Default value of the parameter.
Definition ApiBase.php:52
extractRequestParams( $parseLimit=true)
Using getAllowedParams(), this function makes an array of the values provided by the user,...
Definition ApiBase.php:740
const PARAM_MIN
(integer) Lowest value allowed for the parameter, for PARAM_TYPE 'integer' and 'limit'.
Definition ApiBase.php:103
const LIMIT_BIG1
Fast query, standard limit.
Definition ApiBase.php:225
getResult()
Get the result object.
Definition ApiBase.php:632
requireMaxOneParameter( $params, $required)
Die if more than one of a certain set of parameters is set and not false.
Definition ApiBase.php:814
const PARAM_HELP_MSG
(string|array|Message) Specify an alternative i18n documentation message for this parameter.
Definition ApiBase.php:128
const LIMIT_BIG2
Fast query, apihighlimits limit.
Definition ApiBase.php:227
const PARAM_ISMULTI
(boolean) Accept multiple pipe-separated values for this parameter (e.g.
Definition ApiBase.php:55
This is a base class for all Query modules.
setContinueEnumParameter( $paramName, $paramValue)
Set a query-continue value.
resetQueryParams()
Blank the internal arrays with query parameters.
addWhereIf( $value, $condition)
Same as addWhere(), but add the WHERE clauses only if a condition is met.
addFields( $value)
Add a set of fields to select to the internal array.
addPageSubItem( $pageId, $item, $elemname=null)
Same as addPageSubItems(), but one element of $data at a time.
addOption( $name, $value=null)
Add an option such as LIMIT or USE INDEX.
addTables( $tables, $alias=null)
Add a set of tables to the internal array.
getDB()
Get the Query database connection (read-only)
addJoinConds( $join_conds)
Add a set of JOIN conditions to the internal array.
addWhereFld( $field, $value)
Equivalent to addWhere(array($field => $value))
getPageSet()
Get the PageSet object to work on.
addWhere( $value)
Add a set of WHERE clauses to the internal array.
A query module to show contributors to a page.
getExamplesMessages()
Returns usage examples for this module.
__construct(ApiQuery $query, $moduleName)
getAllowedParams()
Returns an array of allowed parameters (parameter name) => (default value) or (parameter name) => (ar...
getCacheMode( $params)
Get the cache mode for the data generated by this module.
execute()
Evaluates the parameters, performs the requested query, and sets up the result.
getHelpUrls()
Return links to more detailed help pages about the module.
const MAX_PAGES
We don't want to process too many pages at once (it hits cold database pages too heavily),...
This is the main query class.
Definition ApiQuery.php:40
const DELETED_USER
Definition Revision.php:92
We use the convention $dbr for read and $dbw for write to help you keep track of whether the database object is a the world will explode Or to be a subsequent write query which succeeded on the master may fail when replicated to the slave due to a unique key collision Replication on the slave will stop and it may take hours to repair the database and get it back online Setting read_only in my cnf on the slave will avoid this but given the dire we prefer to have as many checks as possible We provide a but the wrapper functions like select() and insert() are usually more convenient. They take care of things like table prefixes and escaping for you. If you really need to make your own SQL
$res
Definition database.txt:21
null for the local wiki Added should default to null in handler for backwards compatibility add a value to it if you want to add a cookie that have to vary cache options can modify $query
Definition hooks.txt:1610
$params