32 parent::__construct(
$query, $moduleName,
'arv' );
50 $needPageTable =
false;
51 if (
$params[
'namespace'] !==
null ) {
54 if (
$params[
'namespace'] != MWNamespace::getValidNamespaces() ) {
55 $needPageTable =
true;
56 if ( $this->
getConfig()->
get(
'MiserMode' ) ) {
57 $miser_ns =
$params[
'namespace'];
64 if ( $resultPageSet ===
null ) {
67 $this->fetchContent ? [
'page',
'text' ] : [
'page' ]
78 $this->
addFields( [
'rev_timestamp',
'rev_id' ] );
79 if (
$params[
'generatetitles'] ) {
83 if ( $needPageTable ) {
86 [
'page' => [
'INNER JOIN', [
'rev_page = page_id' ] ] ]
88 $this->
addFieldsIf( [
'page_namespace' ], (
bool)$miser_ns );
98 if ( $this->fld_tags ) {
101 [
'tag_summary' => [
'LEFT JOIN', [
'rev_id=ts_rev_id' ] ] ]
106 if (
$params[
'user'] !==
null ) {
107 $actorQuery = ActorMigration::newMigration()
109 $this->
addTables( $actorQuery[
'tables'] );
111 $this->
addWhere( $actorQuery[
'conds'] );
112 } elseif (
$params[
'excludeuser'] !==
null ) {
113 $actorQuery = ActorMigration::newMigration()
115 $this->
addTables( $actorQuery[
'tables'] );
117 $this->
addWhere(
'NOT(' . $actorQuery[
'conds'] .
')' );
120 if (
$params[
'user'] !==
null ||
$params[
'excludeuser'] !==
null ) {
122 if ( !$this->
getUser()->isAllowed(
'deletedhistory' ) ) {
123 $bitmask = Revision::DELETED_USER;
124 } elseif ( !$this->
getUser()->isAllowedAny(
'suppressrevision',
'viewsuppressed' ) ) {
125 $bitmask = Revision::DELETED_USER | Revision::DELETED_RESTRICTED;
130 $this->
addWhere( $db->bitAnd(
'rev_deleted', $bitmask ) .
" != $bitmask" );
134 if (
$params[
'continue'] !==
null ) {
135 $op = ( $dir ==
'newer' ?
'>' :
'<' );
136 $cont = explode(
'|',
$params[
'continue'] );
138 $ts = $db->addQuotes( $db->timestamp( $cont[0] ) );
139 $rev_id = (int)$cont[1];
141 $this->
addWhere(
"rev_timestamp $op $ts OR " .
142 "(rev_timestamp = $ts AND " .
143 "rev_id $op= $rev_id)" );
146 $this->
addOption(
'LIMIT', $this->limit + 1 );
148 $sort = ( $dir ==
'newer' ?
'' :
' DESC' );
152 $orderby[] =
"rev_timestamp $sort";
153 $orderby[] =
"rev_id $sort";
154 $this->
addOption(
'ORDER BY', $orderby );
157 $res = $this->
select( __METHOD__, [], $hookData );
162 foreach (
$res as $row ) {
163 if ( $count === 0 && $resultPageSet !==
null ) {
167 $this,
'continue',
"$row->rev_timestamp|$row->rev_id"
170 if ( ++$count > $this->limit ) {
177 if ( $miser_ns !==
null && !in_array( $row->page_namespace, $miser_ns ) ) {
181 if ( $resultPageSet !==
null ) {
182 if (
$params[
'generatetitles'] ) {
183 $generated[$row->rev_page] = $row->rev_page;
185 $generated[] = $row->rev_id;
188 $revision = Revision::newFromRow( $row );
191 if ( !isset( $pageMap[$row->rev_page] ) ) {
192 $index = $nextIndex++;
193 $pageMap[$row->rev_page] = $index;
194 $title = $revision->getTitle();
196 'pageid' => $title->getArticleID(),
197 'revisions' => [
$rev ],
201 $fit = $this->
processRow( $row, $a[
'revisions'][0], $hookData ) &&
202 $result->addValue( [
'query', $this->
getModuleName() ], $index, $a );
204 $index = $pageMap[$row->rev_page];
206 $result->addValue( [
'query', $this->
getModuleName(), $index,
'revisions' ],
null,
$rev );
215 if ( $resultPageSet !==
null ) {
216 if (
$params[
'generatetitles'] ) {
217 $resultPageSet->populateFromPageIDs( $generated );
219 $resultPageSet->populateFromRevisionIDs( $generated );
222 $result->addIndexedTagName( [
'query', $this->
getModuleName() ],
'page' );
227 $ret = parent::getAllowedParams() + [
256 'generatetitles' => [
261 if ( $this->
getConfig()->
get(
'MiserMode' ) ) {
263 'api-help-param-limited-in-miser-mode',
272 'action=query&list=allrevisions&arvuser=Example&arvlimit=50'
273 =>
'apihelp-query+allrevisions-example-user',
274 'action=query&list=allrevisions&arvdir=newer&arvlimit=50'
275 =>
'apihelp-query+allrevisions-example-ns-main',
280 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Allrevisions';
getParameter( $paramName, $parseLimit=true)
Get a value for the given parameter.
dieContinueUsageIf( $condition)
Die with the 'badcontinue' error.
const PARAM_TYPE
(string|string[]) Either an array of allowed value strings, or a string type as described below.
const PARAM_DFLT
(null|boolean|integer|string) Default value of the parameter.
const PARAM_HELP_MSG_APPEND
((string|array|Message)[]) Specify additional i18n messages to append to the normal message for this ...
extractRequestParams( $parseLimit=true)
Using getAllowedParams(), this function makes an array of the values provided by the user,...
getResult()
Get the result object.
requireMaxOneParameter( $params, $required)
Die if more than one of a certain set of parameters is set and not false.
const PARAM_HELP_MSG
(string|array|Message) Specify an alternative i18n documentation message for this parameter.
getModuleName()
Get the name of the module being executed by this instance.
getContinuationManager()
Get the continuation manager.
const PARAM_ISMULTI
(boolean) Accept multiple pipe-separated values for this parameter (e.g.
This class contains a list of pages that the client has requested.
Query module to enumerate all revisions.
getHelpUrls()
Return links to more detailed help pages about the module.
getAllowedParams()
Returns an array of allowed parameters (parameter name) => (default value) or (parameter name) => (ar...
__construct(ApiQuery $query, $moduleName)
getExamplesMessages()
Returns usage examples for this module.
run(ApiPageSet $resultPageSet=null)
static addTitleInfo(&$arr, $title, $prefix='')
Add information (title and namespace) about a Title object to a result array.
processRow( $row, array &$data, array &$hookData)
Call the ApiQueryBaseProcessRow hook.
addFields( $value)
Add a set of fields to select to the internal array.
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)
addFieldsIf( $value, $condition)
Same as addFields(), but add the fields only if a condition is met.
addJoinConds( $join_conds)
Add a set of JOIN conditions to the internal array.
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.
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.
This is the main query class.
static setIndexedTagName(array &$arr, $tag)
Set the tag name for numeric-keyed values in XML format.
static newFromName( $name, $validate='valid')
Static factory method for creation from username.
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
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