38 parent::__construct(
$query, $moduleName,
'adr' );
52 $revisionStore = MediaWikiServices::getInstance()->getRevisionStore();
57 if (
$params[
'namespace'] === [] ) {
58 if ( $resultPageSet ===
null ) {
72 if ( $mode ==
'user' ) {
73 foreach ( [
'from',
'to',
'prefix',
'excludeuser' ] as $param ) {
77 [
'apierror-invalidparammix-cannotusewith', $p . $param,
"{$p}user" ],
83 foreach ( [
'start',
'end' ] as $param ) {
87 [
'apierror-invalidparammix-mustusewith', $p . $param,
"{$p}user" ],
99 $optimizeGenerateTitles =
false;
100 if ( $mode ===
'all' &&
$params[
'generatetitles'] && $resultPageSet !==
null ) {
101 if ( $dir ===
'newer' ) {
102 $optimizeGenerateTitles =
true;
105 $this->
addWarning( [
'apiwarn-alldeletedrevisions-performance', $p ],
'performance' );
109 if ( $resultPageSet ===
null ) {
111 $arQuery = $revisionStore->getArchiveQueryInfo();
115 $this->
addFields( [
'ar_title',
'ar_namespace' ] );
119 $this->
addFields( [
'ar_title',
'ar_namespace' ] );
120 if ( $optimizeGenerateTitles ) {
123 $this->
addFields( [
'ar_timestamp',
'ar_rev_id',
'ar_id' ] );
127 if ( $this->fld_tags ) {
134 [
'change_tag' => [
'JOIN', [
'ar_rev_id=ct_rev_id' ] ] ]
136 $changeTagDefStore = MediaWikiServices::getInstance()->getChangeTagDefStore();
145 if ( $this->fetchContent ) {
148 [
'text' => [
'LEFT JOIN', [
'ar_text_id=old_id' ] ] ]
150 $this->
addFields( [
'old_text',
'old_flags' ] );
158 if ( $mode ==
'all' ) {
167 $isDirNewer = ( $dir ===
'newer' );
168 $after = ( $isDirNewer ?
'>=' :
'<=' );
169 $before = ( $isDirNewer ?
'<=' :
'>=' );
173 if (
$params[
'from'] !==
null ) {
174 $w[] =
'ar_title' . $after .
177 if (
$params[
'to'] !==
null ) {
178 $w[] =
'ar_title' . $before .
184 if ( count(
$where ) == 1 ) {
189 foreach (
$where as $w => $ns ) {
190 $where2[] = $db->makeList( [ $w,
'ar_namespace' => $ns ],
LIST_AND );
199 $w =
'ar_title' . $db->buildLike(
204 if ( count(
$where ) == 1 ) {
209 foreach (
$where as $w => $ns ) {
210 $where2[] = $db->makeList( [ $w,
'ar_namespace' => $ns ],
LIST_AND );
216 if ( $this->
getConfig()->
get(
'MiserMode' ) ) {
217 $miser_ns =
$params[
'namespace'];
226 $actorQuery = ActorMigration::newMigration()
228 $this->
addTables( $actorQuery[
'tables'] );
230 $this->
addWhere( $actorQuery[
'conds'] );
233 $actorQuery = ActorMigration::newMigration()
235 $this->
addTables( $actorQuery[
'tables'] );
237 $this->
addWhere(
'NOT(' . $actorQuery[
'conds'] .
')' );
244 if ( !$user->isAllowed(
'deletedhistory' ) ) {
245 $bitmask = RevisionRecord::DELETED_USER;
246 }
elseif ( !$user->isAllowedAny(
'suppressrevision',
'viewsuppressed' ) ) {
247 $bitmask = RevisionRecord::DELETED_USER | RevisionRecord::DELETED_RESTRICTED;
252 $this->
addWhere( $db->bitAnd(
'ar_deleted', $bitmask ) .
" != $bitmask" );
257 $cont = explode(
'|',
$params[
'continue'] );
258 $op = ( $dir ==
'newer' ?
'>' :
'<' );
259 if ( $optimizeGenerateTitles ) {
263 $title = $db->addQuotes( $cont[1] );
264 $this->
addWhere(
"ar_namespace $op $ns OR " .
265 "(ar_namespace = $ns AND ar_title $op= $title)" );
266 }
elseif ( $mode ==
'all' ) {
270 $title = $db->addQuotes( $cont[1] );
271 $ts = $db->addQuotes( $db->timestamp( $cont[2] ) );
272 $ar_id = (
int)$cont[3];
274 $this->
addWhere(
"ar_namespace $op $ns OR " .
275 "(ar_namespace = $ns AND " .
276 "(ar_title $op $title OR " .
277 "(ar_title = $title AND " .
278 "(ar_timestamp $op $ts OR " .
279 "(ar_timestamp = $ts AND " .
280 "ar_id $op= $ar_id)))))" );
283 $ts = $db->addQuotes( $db->timestamp( $cont[0] ) );
284 $ar_id = (
int)$cont[1];
286 $this->
addWhere(
"ar_timestamp $op $ts OR " .
287 "(ar_timestamp = $ts AND " .
288 "ar_id $op= $ar_id)" );
292 $this->
addOption(
'LIMIT', $this->limit + 1 );
294 $sort = ( $dir ==
'newer' ?
'' :
' DESC' );
296 if ( $optimizeGenerateTitles ) {
299 $orderby[] =
"ar_namespace $sort";
301 $orderby[] =
"ar_title $sort";
302 }
elseif ( $mode ==
'all' ) {
305 $orderby[] =
"ar_namespace $sort";
307 $orderby[] =
"ar_title $sort";
308 $orderby[] =
"ar_timestamp $sort";
309 $orderby[] =
"ar_id $sort";
313 $orderby[] =
"ar_timestamp $sort";
314 $orderby[] =
"ar_id $sort";
316 $this->
addOption(
'ORDER BY', $orderby );
323 foreach (
$res as $row ) {
324 if ( ++$count > $this->limit ) {
326 if ( $optimizeGenerateTitles ) {
328 }
elseif ( $mode ==
'all' ) {
330 "$row->ar_namespace|$row->ar_title|$row->ar_timestamp|$row->ar_id"
339 if ( $miser_ns !==
null && !
in_array( $row->ar_namespace, $miser_ns ) ) {
343 if ( $resultPageSet !==
null ) {
344 if (
$params[
'generatetitles'] ) {
345 $key =
"{$row->ar_namespace}:{$row->ar_title}";
346 if ( !
isset( $generated[$key] ) ) {
347 $generated[$key] = Title::makeTitle( $row->ar_namespace, $row->ar_title );
350 $generated[] = $row->ar_rev_id;
353 $revision = $revisionStore->newRevisionFromArchiveRow( $row );
356 if ( !
isset( $pageMap[$row->ar_namespace][$row->ar_title] ) ) {
357 $index = $nextIndex++;
358 $pageMap[$row->ar_namespace][$row->ar_title] = $index;
359 $title = Title::newFromLinkTarget( $revision->getPageAsLinkTarget() );
361 'pageid' => $title->getArticleID(),
362 'revisions' => [
$rev ],
366 $fit = $result->addValue( [
'query', $this->
getModuleName() ], $index, $a );
368 $index = $pageMap[$row->ar_namespace][$row->ar_title];
369 $fit = $result->addValue(
374 if ( $mode ==
'all' ) {
376 "$row->ar_namespace|$row->ar_title|$row->ar_timestamp|$row->ar_id"
386 if ( $resultPageSet !==
null ) {
387 if (
$params[
'generatetitles'] ) {
388 $resultPageSet->populateFromTitles( $generated );
390 $resultPageSet->populateFromRevisionIDs( $generated );
393 $result->addIndexedTagName( [
'query', $this->
getModuleName() ],
'page' );
398 $ret = parent::getAllowedParams() + [
439 'generatetitles' => [
444 if ( $this->
getConfig()->
get(
'MiserMode' ) ) {
446 'apihelp-query+alldeletedrevisions-param-miser-user-namespace',
449 'apihelp-query+alldeletedrevisions-param-miser-user-namespace',
458 'action=query&list=alldeletedrevisions&adruser=Example&adrlimit=50'
459 =>
'apihelp-query+alldeletedrevisions-example-user',
460 'action=query&list=alldeletedrevisions&adrdir=newer&adrnamespace=0&adrlimit=50'
461 =>
'apihelp-query+alldeletedrevisions-example-ns-main',
466 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Alldeletedrevisions';
and that you know you can do these things To protect your we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights These restrictions translate to certain responsibilities for you if you distribute copies of the or if you modify it For if you distribute copies of such a whether gratis or for a you must give the recipients all the rights that you have You must make sure that receive or can get the source code And you must show them these terms so they know their rights We protect your rights with two and(2) offer you this license which gives you legal permission to copy
getModulePrefix()
Get parameter prefix (usually two letters or an empty string).
checkUserRightsAny( $rights, $user=null)
Helper function for permission-denied errors.
getParameter( $paramName, $parseLimit=true)
Get a value for the given parameter.
dieWithError( $msg, $code=null, $data=null, $httpCode=null)
Abort execution with an error.
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_HELP_MSG_INFO
(array) Specify additional information tags for the parameter.
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 ...
getResult()
Get the result object.
extractRequestParams( $options=[])
Using getAllowedParams(), this function makes an array of the values provided by the user,...
const PARAM_HELP_MSG
(string|array|Message) Specify an alternative i18n documentation message for this parameter.
addWarning( $msg, $code=null, $data=null)
Add a warning for this module.
getModuleName()
Get the name of the module being executed by this instance.
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 deleted revisions.
getExamplesMessages()
Returns usage examples for this module.
getAllowedParams()
Returns an array of allowed parameters (parameter name) => (default value) or (parameter name) => (ar...
getHelpUrls()
Return links to more detailed help pages about the module.
__construct(ApiQuery $query, $moduleName)
run(ApiPageSet $resultPageSet=null)
static addTitleInfo(&$arr, $title, $prefix='')
Add information (title and namespace) about a Title object to a result array.
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)
addJoinConds( $join_conds)
Add a set of JOIN conditions to the internal array.
addWhereFld( $field, $value)
Equivalent to addWhere(array($field => $value))
titlePartToKey( $titlePart, $namespace=NS_MAIN)
Convert an input title or title prefix into a dbkey.
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(RevisionRecord $revision, $row)
Extract information from the RevisionRecord.
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
namespace and then decline to actually register it & $namespaces
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation use $formDescriptor instead default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message key
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
processing should stop and the error should be shown to the user * false