40 parent::__construct(
$query, $moduleName,
'rv' );
52 if ( isset( $this->tokenFunctions ) ) {
62 $this->tokenFunctions = [
63 'rollback' => [
'ApiQueryRevisions',
'getRollbackToken' ]
65 Hooks::run(
'APIQueryRevisionsTokens', [ &$this->tokenFunctions ] );
79 if ( !
$wgUser->isAllowed(
'rollback' ) ) {
83 return $wgUser->getEditToken(
'rollback' );
93 $enumRevMode = (
$params[
'user'] !==
null ||
$params[
'excludeuser'] !==
null ||
99 $pageCount = $pageSet->getGoodTitleCount();
100 $revCount = $pageSet->getRevisionCount();
103 if ( $revCount === 0 && $pageCount === 0 ) {
107 if ( $revCount > 0 && count( $pageSet->getLiveRevisionIDs() ) === 0 ) {
112 if ( $revCount > 0 && $enumRevMode ) {
114 'The revids= parameter may not be used with the list options ' .
115 '(limit, startid, endid, dirNewer, start, end).',
120 if ( $pageCount > 1 && $enumRevMode ) {
122 'titles, pageids or a generator was used to supply multiple pages, ' .
123 'but the limit, startid, endid, dirNewer, user, excludeuser, start ' .
124 'and end parameters may only be used on a single page.',
131 if ( !$enumRevMode ) {
132 $this->setParsedLimit =
false;
136 $db = $this->
getDB();
137 $this->
addTables( [
'revision',
'page' ] );
139 [
'page' => [
'INNER JOIN', [
'page_id = rev_page' ] ] ]
142 if ( $resultPageSet ===
null ) {
144 $this->token =
$params[
'token'];
146 if ( $this->token !==
null || $pageCount > 0 ) {
151 $this->
addFields( [
'rev_id',
'rev_timestamp',
'rev_page' ] );
154 if ( $this->fld_tags ) {
157 [
'tag_summary' => [
'LEFT JOIN', [
'rev_id=ts_rev_id' ] ] ]
162 if (
$params[
'tag'] !==
null ) {
165 [
'change_tag' => [
'INNER JOIN', [
'rev_id=ct_rev_id' ] ] ]
170 if ( $this->fetchContent ) {
174 foreach ( $pageSet->getGoodTitles()
as $title ) {
177 'The current user is not allowed to read ' . $title->getPrefixedText(),
184 [
'text' => [
'INNER JOIN', [
'rev_text_id=old_id' ] ] ]
191 if ( $this->fld_user ) {
197 if ( $enumRevMode ) {
205 $this->
dieUsage(
'start and startid cannot be used together',
'badparams' );
209 $this->
dieUsage(
'end and endid cannot be used together',
'badparams' );
212 if (
$params[
'user'] !==
null &&
$params[
'excludeuser'] !==
null ) {
213 $this->
dieUsage(
'user and excludeuser cannot be used together',
'badparams' );
216 if (
$params[
'continue'] !==
null ) {
217 $cont = explode(
'|',
$params[
'continue'] );
219 $op = (
$params[
'dir'] ===
'newer' ?
'>' :
'<' );
220 $continueTimestamp = $db->addQuotes( $db->timestamp( $cont[0] ) );
221 $continueId = (int)$cont[1];
223 $this->
addWhere(
"rev_timestamp $op $continueTimestamp OR " .
224 "(rev_timestamp = $continueTimestamp AND " .
225 "rev_id $op= $continueId)"
235 $ids = array_keys( $pageSet->getGoodTitles() );
238 if (
$params[
'user'] !==
null ) {
245 } elseif (
$params[
'excludeuser'] !==
null ) {
250 $this->
addWhere(
'rev_user_text != ' .
251 $db->addQuotes(
$params[
'excludeuser'] ) );
254 if (
$params[
'user'] !==
null ||
$params[
'excludeuser'] !==
null ) {
256 if ( !$this->
getUser()->isAllowed(
'deletedhistory' ) ) {
258 } elseif ( !$this->
getUser()->isAllowedAny(
'suppressrevision',
'viewsuppressed' ) ) {
264 $this->
addWhere( $db->bitAnd(
'rev_deleted', $bitmask ) .
" != $bitmask" );
267 } elseif ( $revCount > 0 ) {
270 $revs = $pageSet->getLiveRevisionIDs();
273 $this->
addWhereFld(
'rev_id', array_keys( $revs ) );
275 if (
$params[
'continue'] !==
null ) {
278 $this->
addOption(
'ORDER BY',
'rev_id' );
279 } elseif ( $pageCount > 0 ) {
282 $titles = $pageSet->getGoodTitles();
286 $this->
addWhere(
'page_latest=rev_id' );
293 if (
$params[
'continue'] !==
null ) {
294 $cont = explode(
'|',
$params[
'continue'] );
296 $pageid = intval( $cont[0] );
297 $revid = intval( $cont[1] );
299 "rev_page > $pageid OR " .
300 "(rev_page = $pageid AND " .
312 $this->
addOption(
'LIMIT', $this->limit + 1 );
317 $res = $this->
select( __METHOD__, [], $hookData );
319 foreach (
$res as $row ) {
320 if ( ++
$count > $this->limit ) {
323 if ( $enumRevMode ) {
325 $row->rev_timestamp .
'|' . intval( $row->rev_id ) );
326 } elseif ( $revCount > 0 ) {
330 '|' . intval( $row->rev_id ) );
335 if ( $resultPageSet !==
null ) {
336 $generated[] = $row->rev_id;
341 if ( $this->token !==
null ) {
342 $title = $revision->getTitle();
344 foreach ( $this->token
as $t ) {
346 if ( $val ===
false ) {
347 $this->
setWarning(
"Action '$t' is not allowed for the current user" );
349 $rev[$t .
'token'] = $val;
357 if ( $enumRevMode ) {
359 $row->rev_timestamp .
'|' . intval( $row->rev_id ) );
360 } elseif ( $revCount > 0 ) {
364 '|' . intval( $row->rev_id ) );
371 if ( $resultPageSet !==
null ) {
372 $resultPageSet->populateFromRevisionIDs( $generated );
377 if ( isset(
$params[
'token'] ) ) {
380 return parent::getCacheMode(
$params );
384 $ret = parent::getAllowedParams() + [
436 'action=query&prop=revisions&titles=API|Main%20Page&' .
437 'rvprop=timestamp|user|comment|content'
438 =>
'apihelp-query+revisions-example-content',
439 'action=query&prop=revisions&titles=Main%20Page&rvlimit=5&' .
440 'rvprop=timestamp|user|comment'
441 =>
'apihelp-query+revisions-example-last5',
442 'action=query&prop=revisions&titles=Main%20Page&rvlimit=5&' .
443 'rvprop=timestamp|user|comment&rvdir=newer'
444 =>
'apihelp-query+revisions-example-first5',
445 'action=query&prop=revisions&titles=Main%20Page&rvlimit=5&' .
446 'rvprop=timestamp|user|comment&rvdir=newer&rvstart=2006-05-01T00:00:00Z'
447 =>
'apihelp-query+revisions-example-first5-after',
448 'action=query&prop=revisions&titles=Main%20Page&rvlimit=5&' .
449 'rvprop=timestamp|user|comment&rvexcludeuser=127.0.0.1'
450 =>
'apihelp-query+revisions-example-first5-not-localhost',
451 'action=query&prop=revisions&titles=Main%20Page&rvlimit=5&' .
452 'rvprop=timestamp|user|comment&rvuser=MediaWiki%20default'
453 =>
'apihelp-query+revisions-example-first5-user',
458 return 'https://www.mediawiki.org/wiki/API:Revisions';
const PARAM_DEPRECATED
(boolean) Is the parameter deprecated (will show a warning)?
getParameter( $paramName, $parseLimit=true)
Get a value for the given parameter.
dieContinueUsageIf( $condition)
Die with the $prefix.
static dieDebug( $method, $message)
Internal code errors should be reported with this method.
const PARAM_TYPE
(string|string[]) Either an array of allowed value strings, or a string type as described below.
const PARAM_HELP_MSG_INFO
(array) Specify additional information tags for the parameter.
const PARAM_DFLT
(null|boolean|integer|string) Default value of the parameter.
extractRequestParams( $parseLimit=true)
Using getAllowedParams(), this function makes an array of the values provided by the user,...
setWarning( $warning)
Set warning section for this module.
const PARAM_HELP_MSG
(string|array|Message) Specify an alternative i18n documentation message for this parameter.
dieUsage( $description, $errorCode, $httpRespCode=0, $extradata=null)
Throw a UsageException, which will (if uncaught) call the main module's error handler and die with an...
const PARAM_ISMULTI
(boolean) Accept multiple pipe-separated values for this parameter (e.g.
lacksSameOriginSecurity()
Returns true if the current request breaks the same-origin policy.
This class contains a list of pages that the client has requested.
processRow( $row, array &$data, array &$hookData)
Call the ApiQueryBaseProcessRow hook.
addWhereRange( $field, $dir, $start, $end, $sort=true)
Add a WHERE clause corresponding to a range, and an ORDER BY clause to sort in the right direction.
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.
addTimestampWhereRange( $field, $dir, $start, $end, $sort=true)
Add a WHERE clause corresponding to a range, similar to addWhereRange, but converts $start and $end t...
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))
addWhere( $value)
Add a set of WHERE clauses to the internal array.
setContinueEnumParameter( $paramName, $paramValue)
Overridden to set the generator param if in generator mode.
getPageSet()
Get the PageSet object to work on.
A base class for functions common to producing a list of revisions.
parseParameters( $params)
Parse the parameters into the various instance fields.
extractRevisionInfo(Revision $revision, $row)
Extract information from the Revision.
A query action to enumerate revisions of a given page, or show top revisions of multiple pages.
__construct(ApiQuery $query, $moduleName)
getCacheMode( $params)
Get the cache mode for the data generated by this module.
getHelpUrls()
Return links to more detailed help pages about the module.
run(ApiPageSet $resultPageSet=null)
getAllowedParams()
Returns an array of allowed parameters (parameter name) => (default value) or (parameter name) => (ar...
static getRollbackToken( $pageid, $title, $rev)
getExamplesMessages()
Returns usage examples for this module.
This is the main query class.
getUser()
Get the User object.
static userJoinCond()
Return the value of a select() JOIN conds array for the user table.
static selectTextFields()
Return the list of text fields that should be selected to read the revision text.
static selectPageFields()
Return the list of page fields that should be selected from page table.
static selectFields()
Return the list of revision fields that should be selected to create a new revision.
static selectUserFields()
Return the list of user fields that should be selected from user table.
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
when a variable name is used in a it is silently declared as a new local masking the global
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
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
namespace and then decline to actually register it file or subcat img or subcat $title
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 noclasses just before the function returns a value If you return true
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 noclasses & $ret
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
presenting them properly to the user as errors is done by the caller return true use this to change the list i e etc $rev
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
linkcache txt The LinkCache class maintains a list of article titles and the information about whether or not the article exists in the database This is used to mark up links when displaying a page If the same link appears more than once on any page then it only has to be looked up once In most cases link lookups are done in batches with the LinkBatch class or the equivalent in so the link cache is mostly useful for short snippets of parsed and for links in the navigation areas of the skin The link cache was formerly used to track links used in a document for the purposes of updating the link tables This application is now deprecated To create a you can use the following $titles