MediaWiki REL1_32
ApiQueryContributors.php
Go to the documentation of this file.
1<?php
28
40 const MAX_PAGES = 100;
41
42 public function __construct( ApiQuery $query, $moduleName ) {
43 // "pc" is short for "page contributors", "co" was already taken by the
44 // GeoData extension's prop=coordinates.
45 parent::__construct( $query, $moduleName, 'pc' );
46 }
47
48 public function execute() {
50
51 $db = $this->getDB();
53 $this->requireMaxOneParameter( $params, 'group', 'excludegroup', 'rights', 'excluderights' );
54
55 // Only operate on existing pages
56 $pages = array_keys( $this->getPageSet()->getGoodTitles() );
57
58 // Filter out already-processed pages
59 if ( $params['continue'] !== null ) {
60 $cont = explode( '|', $params['continue'] );
61 $this->dieContinueUsageIf( count( $cont ) != 2 );
62 $cont_page = (int)$cont[0];
63 $pages = array_filter( $pages, function ( $v ) use ( $cont_page ) {
64 return $v >= $cont_page;
65 } );
66 }
67 if ( !count( $pages ) ) {
68 // Nothing to do
69 return;
70 }
71
72 // Apply MAX_PAGES, leaving any over the limit for a continue.
73 sort( $pages );
74 $continuePages = null;
75 if ( count( $pages ) > self::MAX_PAGES ) {
76 $continuePages = $pages[self::MAX_PAGES] . '|0';
77 $pages = array_slice( $pages, 0, self::MAX_PAGES );
78 }
79
80 $result = $this->getResult();
81 $revQuery = MediaWikiServices::getInstance()->getRevisionStore()->getQueryInfo();
82
83 // For SCHEMA_COMPAT_READ_NEW, target indexes on the
84 // revision_actor_temp table, otherwise on the revision table.
86 ? 'revactor_page' : 'rev_page';
88 ? 'revactor_actor' : $revQuery['fields']['rev_user'];
90 ? 'revactor_actor' : $revQuery['fields']['rev_user_text'];
91
92 // First, count anons
93 $this->addTables( $revQuery['tables'] );
94 $this->addJoinConds( $revQuery['joins'] );
95 $this->addFields( [
96 'page' => $pageField,
97 'anons' => "COUNT(DISTINCT $countField)",
98 ] );
99 $this->addWhereFld( $pageField, $pages );
100 $this->addWhere( ActorMigration::newMigration()->isAnon( $revQuery['fields']['rev_user'] ) );
101 $this->addWhere( $db->bitAnd( 'rev_deleted', RevisionRecord::DELETED_USER ) . ' = 0' );
102 $this->addOption( 'GROUP BY', $pageField );
103 $res = $this->select( __METHOD__ );
104 foreach ( $res as $row ) {
105 $fit = $result->addValue( [ 'query', 'pages', $row->page ],
106 'anoncontributors', (int)$row->anons
107 );
108 if ( !$fit ) {
109 // This not fitting isn't reasonable, so it probably means that
110 // some other module used up all the space. Just set a dummy
111 // continue and hope it works next time.
112 $this->setContinueEnumParameter( 'continue',
113 $params['continue'] ?? '0|0'
114 );
115
116 return;
117 }
118 }
119
120 // Next, add logged-in users
121 $this->resetQueryParams();
122 $this->addTables( $revQuery['tables'] );
123 $this->addJoinConds( $revQuery['joins'] );
124 $this->addFields( [
125 'page' => $pageField,
126 'id' => $idField,
127 // Non-MySQL databases don't like partial group-by
128 'userid' => 'MAX(' . $revQuery['fields']['rev_user'] . ')',
129 'username' => 'MAX(' . $revQuery['fields']['rev_user_text'] . ')',
130 ] );
131 $this->addWhereFld( $pageField, $pages );
132 $this->addWhere( ActorMigration::newMigration()->isNotAnon( $revQuery['fields']['rev_user'] ) );
133 $this->addWhere( $db->bitAnd( 'rev_deleted', RevisionRecord::DELETED_USER ) . ' = 0' );
134 $this->addOption( 'GROUP BY', [ $pageField, $idField ] );
135 $this->addOption( 'LIMIT', $params['limit'] + 1 );
136
137 // Force a sort order to ensure that properties are grouped by page
138 // But only if rev_page is not constant in the WHERE clause.
139 if ( count( $pages ) > 1 ) {
140 $this->addOption( 'ORDER BY', [ 'page', 'id' ] );
141 } else {
142 $this->addOption( 'ORDER BY', 'id' );
143 }
144
145 $limitGroups = [];
146 if ( $params['group'] ) {
147 $excludeGroups = false;
148 $limitGroups = $params['group'];
149 } elseif ( $params['excludegroup'] ) {
150 $excludeGroups = true;
151 $limitGroups = $params['excludegroup'];
152 } elseif ( $params['rights'] ) {
153 $excludeGroups = false;
154 foreach ( $params['rights'] as $r ) {
155 $limitGroups = array_merge( $limitGroups, User::getGroupsWithPermission( $r ) );
156 }
157
158 // If no group has the rights requested, no need to query
159 if ( !$limitGroups ) {
160 if ( $continuePages !== null ) {
161 // But we still need to continue for the next page's worth
162 // of anoncontributors
163 $this->setContinueEnumParameter( 'continue', $continuePages );
164 }
165
166 return;
167 }
168 } elseif ( $params['excluderights'] ) {
169 $excludeGroups = true;
170 foreach ( $params['excluderights'] as $r ) {
171 $limitGroups = array_merge( $limitGroups, User::getGroupsWithPermission( $r ) );
172 }
173 }
174
175 if ( $limitGroups ) {
176 $limitGroups = array_unique( $limitGroups );
177 $this->addTables( 'user_groups' );
178 $this->addJoinConds( [ 'user_groups' => [
179 $excludeGroups ? 'LEFT OUTER JOIN' : 'INNER JOIN',
180 [
181 'ug_user=' . $revQuery['fields']['rev_user'],
182 'ug_group' => $limitGroups,
183 'ug_expiry IS NULL OR ug_expiry >= ' . $db->addQuotes( $db->timestamp() )
184 ]
185 ] ] );
186 $this->addWhereIf( 'ug_user IS NULL', $excludeGroups );
187 }
188
189 if ( $params['continue'] !== null ) {
190 $cont = explode( '|', $params['continue'] );
191 $this->dieContinueUsageIf( count( $cont ) != 2 );
192 $cont_page = (int)$cont[0];
193 $cont_id = (int)$cont[1];
194 $this->addWhere(
195 "$pageField > $cont_page OR " .
196 "($pageField = $cont_page AND " .
197 "$idField >= $cont_id)"
198 );
199 }
200
201 $res = $this->select( __METHOD__ );
202 $count = 0;
203 foreach ( $res as $row ) {
204 if ( ++$count > $params['limit'] ) {
205 // We've reached the one extra which shows that
206 // there are additional pages to be had. Stop here...
207 $this->setContinueEnumParameter( 'continue', $row->page . '|' . $row->id );
208 return;
209 }
210
211 $fit = $this->addPageSubItem( $row->page,
212 [ 'userid' => (int)$row->userid, 'name' => $row->username ],
213 'user'
214 );
215 if ( !$fit ) {
216 $this->setContinueEnumParameter( 'continue', $row->page . '|' . $row->id );
217 return;
218 }
219 }
220
221 if ( $continuePages !== null ) {
222 $this->setContinueEnumParameter( 'continue', $continuePages );
223 }
224 }
225
226 public function getCacheMode( $params ) {
227 return 'public';
228 }
229
230 public function getAllowedParams() {
231 $userGroups = User::getAllGroups();
232 $userRights = User::getAllRights();
233
234 return [
235 'group' => [
236 ApiBase::PARAM_TYPE => $userGroups,
238 ],
239 'excludegroup' => [
240 ApiBase::PARAM_TYPE => $userGroups,
242 ],
243 'rights' => [
244 ApiBase::PARAM_TYPE => $userRights,
246 ],
247 'excluderights' => [
248 ApiBase::PARAM_TYPE => $userRights,
250 ],
251 'limit' => [
253 ApiBase::PARAM_TYPE => 'limit',
257 ],
258 'continue' => [
259 ApiBase::PARAM_HELP_MSG => 'api-help-param-continue',
260 ],
261 ];
262 }
263
264 protected function getExamplesMessages() {
265 return [
266 'action=query&prop=contributors&titles=Main_Page'
267 => 'apihelp-query+contributors-example-simple',
268 ];
269 }
270
271 public function getHelpUrls() {
272 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Contributors';
273 }
274}
int $wgActorTableSchemaMigrationStage
Actor table schema migration stage.
const PARAM_MAX2
(integer) Max value allowed for the parameter for users with the apihighlimits right,...
Definition ApiBase.php:96
const PARAM_MAX
(integer) Max value allowed for the parameter, for PARAM_TYPE 'integer' and 'limit'.
Definition ApiBase.php:90
dieContinueUsageIf( $condition)
Die with the 'badcontinue' error.
Definition ApiBase.php:2155
const PARAM_TYPE
(string|string[]) Either an array of allowed value strings, or a string type as described below.
Definition ApiBase.php:87
const PARAM_DFLT
(null|boolean|integer|string) Default value of the parameter.
Definition ApiBase.php:48
const PARAM_MIN
(integer) Lowest value allowed for the parameter, for PARAM_TYPE 'integer' and 'limit'.
Definition ApiBase.php:99
const LIMIT_BIG1
Fast query, standard limit.
Definition ApiBase.php:252
getResult()
Get the result object.
Definition ApiBase.php:659
extractRequestParams( $options=[])
Using getAllowedParams(), this function makes an array of the values provided by the user,...
Definition ApiBase.php:770
requireMaxOneParameter( $params, $required)
Die if more than one of a certain set of parameters is set and not false.
Definition ApiBase.php:939
const PARAM_HELP_MSG
(string|array|Message) Specify an alternative i18n documentation message for this parameter.
Definition ApiBase.php:124
const LIMIT_BIG2
Fast query, apihighlimits limit.
Definition ApiBase.php:254
const PARAM_ISMULTI
(boolean) Accept multiple pipe-separated values for this parameter (e.g.
Definition ApiBase.php:51
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:36
MediaWikiServices is the service locator for the application scope of MediaWiki.
Page revision base class.
static getAllGroups()
Return the set of defined explicit groups.
Definition User.php:5107
static getGroupsWithPermission( $role)
Get all the groups who have a given permission.
Definition User.php:4990
static getAllRights()
Get a list of all available permissions.
Definition User.php:5119
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:1656
const SCHEMA_COMPAT_READ_NEW
Definition Defines.php:287
$params