2014-09-29 17:47:08 +00:00
|
|
|
<?php
|
|
|
|
|
/**
|
2017-06-13 16:51:53 +00:00
|
|
|
* Copyright © 2014 Wikimedia Foundation and contributors
|
2014-09-29 17:47:08 +00:00
|
|
|
*
|
|
|
|
|
* Heavily based on ApiQueryDeletedrevs,
|
|
|
|
|
* Copyright © 2007 Roan Kattouw "<Firstname>.<Lastname>@gmail.com"
|
|
|
|
|
*
|
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
|
* http://www.gnu.org/copyleft/gpl.html
|
|
|
|
|
*
|
|
|
|
|
* @file
|
|
|
|
|
*/
|
|
|
|
|
|
2018-02-16 18:23:45 +00:00
|
|
|
use MediaWiki\MediaWikiServices;
|
2018-09-20 17:29:04 +00:00
|
|
|
use MediaWiki\Revision\RevisionRecord;
|
2018-09-04 19:17:29 +00:00
|
|
|
use MediaWiki\Storage\NameTableAccessException;
|
2018-02-16 18:23:45 +00:00
|
|
|
|
2014-09-29 17:47:08 +00:00
|
|
|
/**
|
|
|
|
|
* Query module to enumerate all deleted revisions.
|
|
|
|
|
*
|
|
|
|
|
* @ingroup API
|
|
|
|
|
*/
|
|
|
|
|
class ApiQueryAllDeletedRevisions extends ApiQueryRevisionsBase {
|
|
|
|
|
|
|
|
|
|
public function __construct( ApiQuery $query, $moduleName ) {
|
|
|
|
|
parent::__construct( $query, $moduleName, 'adr' );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2018-06-26 21:14:43 +00:00
|
|
|
* @param ApiPageSet|null $resultPageSet
|
2014-09-29 17:47:08 +00:00
|
|
|
* @return void
|
|
|
|
|
*/
|
|
|
|
|
protected function run( ApiPageSet $resultPageSet = null ) {
|
|
|
|
|
// Before doing anything at all, let's check permissions
|
2016-10-19 16:54:25 +00:00
|
|
|
$this->checkUserRightsAny( 'deletedhistory' );
|
2014-09-29 17:47:08 +00:00
|
|
|
|
2016-10-19 16:54:25 +00:00
|
|
|
$user = $this->getUser();
|
2014-09-29 17:47:08 +00:00
|
|
|
$db = $this->getDB();
|
|
|
|
|
$params = $this->extractRequestParams( false );
|
2018-08-05 17:58:51 +00:00
|
|
|
$services = MediaWikiServices::getInstance();
|
|
|
|
|
$revisionStore = $services->getRevisionStore();
|
2014-09-29 17:47:08 +00:00
|
|
|
|
|
|
|
|
$result = $this->getResult();
|
|
|
|
|
|
2016-08-31 17:19:13 +00:00
|
|
|
// If the user wants no namespaces, they get no pages.
|
|
|
|
|
if ( $params['namespace'] === [] ) {
|
|
|
|
|
if ( $resultPageSet === null ) {
|
|
|
|
|
$result->addValue( 'query', $this->getModuleName(), [] );
|
|
|
|
|
}
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2014-09-29 17:47:08 +00:00
|
|
|
// This module operates in two modes:
|
|
|
|
|
// 'user': List deleted revs by a certain user
|
|
|
|
|
// 'all': List all deleted revs in NS
|
|
|
|
|
$mode = 'all';
|
|
|
|
|
if ( !is_null( $params['user'] ) ) {
|
|
|
|
|
$mode = 'user';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( $mode == 'user' ) {
|
2016-02-17 09:09:32 +00:00
|
|
|
foreach ( [ 'from', 'to', 'prefix', 'excludeuser' ] as $param ) {
|
2014-09-29 17:47:08 +00:00
|
|
|
if ( !is_null( $params[$param] ) ) {
|
|
|
|
|
$p = $this->getModulePrefix();
|
2016-10-19 16:54:25 +00:00
|
|
|
$this->dieWithError(
|
2018-09-07 17:01:32 +00:00
|
|
|
[ 'apierror-invalidparammix-cannotusewith', $p . $param, "{$p}user" ],
|
2016-10-19 16:54:25 +00:00
|
|
|
'invalidparammix'
|
|
|
|
|
);
|
2014-09-29 17:47:08 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else {
|
2016-02-17 09:09:32 +00:00
|
|
|
foreach ( [ 'start', 'end' ] as $param ) {
|
2014-09-29 17:47:08 +00:00
|
|
|
if ( !is_null( $params[$param] ) ) {
|
|
|
|
|
$p = $this->getModulePrefix();
|
2016-10-19 16:54:25 +00:00
|
|
|
$this->dieWithError(
|
2018-09-07 17:01:32 +00:00
|
|
|
[ 'apierror-invalidparammix-mustusewith', $p . $param, "{$p}user" ],
|
2016-10-19 16:54:25 +00:00
|
|
|
'invalidparammix'
|
|
|
|
|
);
|
2014-09-29 17:47:08 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-09-04 20:24:54 +00:00
|
|
|
// If we're generating titles only, we can use DISTINCT for a better
|
|
|
|
|
// query. But we can't do that in 'user' mode (wrong index), and we can
|
|
|
|
|
// only do it when sorting ASC (because MySQL apparently can't use an
|
|
|
|
|
// index backwards for grouping even though it can for ORDER BY, WTF?)
|
|
|
|
|
$dir = $params['dir'];
|
|
|
|
|
$optimizeGenerateTitles = false;
|
|
|
|
|
if ( $mode === 'all' && $params['generatetitles'] && $resultPageSet !== null ) {
|
|
|
|
|
if ( $dir === 'newer' ) {
|
|
|
|
|
$optimizeGenerateTitles = true;
|
|
|
|
|
} else {
|
|
|
|
|
$p = $this->getModulePrefix();
|
2016-10-19 16:54:25 +00:00
|
|
|
$this->addWarning( [ 'apiwarn-alldeletedrevisions-performance', $p ], 'performance' );
|
2015-09-04 20:24:54 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-09-29 17:47:08 +00:00
|
|
|
if ( $resultPageSet === null ) {
|
|
|
|
|
$this->parseParameters( $params );
|
2018-02-16 18:23:45 +00:00
|
|
|
$arQuery = $revisionStore->getArchiveQueryInfo();
|
2017-10-06 17:03:55 +00:00
|
|
|
$this->addTables( $arQuery['tables'] );
|
|
|
|
|
$this->addJoinConds( $arQuery['joins'] );
|
|
|
|
|
$this->addFields( $arQuery['fields'] );
|
2016-02-17 09:09:32 +00:00
|
|
|
$this->addFields( [ 'ar_title', 'ar_namespace' ] );
|
2014-09-29 17:47:08 +00:00
|
|
|
} else {
|
|
|
|
|
$this->limit = $this->getParameter( 'limit' ) ?: 10;
|
2017-10-06 17:03:55 +00:00
|
|
|
$this->addTables( 'archive' );
|
2016-02-17 09:09:32 +00:00
|
|
|
$this->addFields( [ 'ar_title', 'ar_namespace' ] );
|
2015-09-04 20:24:54 +00:00
|
|
|
if ( $optimizeGenerateTitles ) {
|
|
|
|
|
$this->addOption( 'DISTINCT' );
|
|
|
|
|
} else {
|
2016-02-17 09:09:32 +00:00
|
|
|
$this->addFields( [ 'ar_timestamp', 'ar_rev_id', 'ar_id' ] );
|
2015-09-04 20:24:54 +00:00
|
|
|
}
|
2014-09-29 17:47:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( $this->fld_tags ) {
|
2018-11-27 17:12:06 +00:00
|
|
|
$this->addFields( [ 'ts_tags' => ChangeTags::makeTagSummarySubquery( 'archive' ) ] );
|
2014-09-29 17:47:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( !is_null( $params['tag'] ) ) {
|
|
|
|
|
$this->addTables( 'change_tag' );
|
|
|
|
|
$this->addJoinConds(
|
2019-03-06 17:17:27 +00:00
|
|
|
[ 'change_tag' => [ 'JOIN', [ 'ar_rev_id=ct_rev_id' ] ] ]
|
2014-09-29 17:47:08 +00:00
|
|
|
);
|
2019-08-26 14:08:10 +00:00
|
|
|
$changeTagDefStore = $services->getChangeTagDefStore();
|
2018-11-14 22:04:29 +00:00
|
|
|
try {
|
|
|
|
|
$this->addWhereFld( 'ct_tag_id', $changeTagDefStore->getId( $params['tag'] ) );
|
|
|
|
|
} catch ( NameTableAccessException $exception ) {
|
|
|
|
|
// Return nothing.
|
|
|
|
|
$this->addWhere( '1=0' );
|
2018-09-04 19:17:29 +00:00
|
|
|
}
|
2014-09-29 17:47:08 +00:00
|
|
|
}
|
|
|
|
|
|
2019-04-24 21:46:12 +00:00
|
|
|
// This means stricter restrictions
|
2014-11-08 10:25:33 +00:00
|
|
|
if ( $this->fetchContent ) {
|
2016-10-19 16:54:25 +00:00
|
|
|
$this->checkUserRightsAny( [ 'deletedtext', 'undelete' ] );
|
2014-09-29 17:47:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$miser_ns = null;
|
|
|
|
|
|
|
|
|
|
if ( $mode == 'all' ) {
|
2018-08-05 17:58:51 +00:00
|
|
|
$namespaces = $params['namespace'] ??
|
|
|
|
|
$services->getNamespaceInfo()->getValidNamespaces();
|
2016-08-31 17:19:13 +00:00
|
|
|
$this->addWhereFld( 'ar_namespace', $namespaces );
|
2014-09-29 17:47:08 +00:00
|
|
|
|
2014-11-24 15:06:44 +00:00
|
|
|
// For from/to/prefix, we have to consider the potential
|
|
|
|
|
// transformations of the title in all specified namespaces.
|
|
|
|
|
// Generally there will be only one transformation, but wikis with
|
|
|
|
|
// some namespaces case-sensitive could have two.
|
|
|
|
|
if ( $params['from'] !== null || $params['to'] !== null ) {
|
|
|
|
|
$isDirNewer = ( $dir === 'newer' );
|
|
|
|
|
$after = ( $isDirNewer ? '>=' : '<=' );
|
|
|
|
|
$before = ( $isDirNewer ? '<=' : '>=' );
|
2016-02-17 09:09:32 +00:00
|
|
|
$where = [];
|
2014-11-24 15:06:44 +00:00
|
|
|
foreach ( $namespaces as $ns ) {
|
2016-02-17 09:09:32 +00:00
|
|
|
$w = [];
|
2014-11-24 15:06:44 +00:00
|
|
|
if ( $params['from'] !== null ) {
|
|
|
|
|
$w[] = 'ar_title' . $after .
|
|
|
|
|
$db->addQuotes( $this->titlePartToKey( $params['from'], $ns ) );
|
|
|
|
|
}
|
|
|
|
|
if ( $params['to'] !== null ) {
|
|
|
|
|
$w[] = 'ar_title' . $before .
|
|
|
|
|
$db->addQuotes( $this->titlePartToKey( $params['to'], $ns ) );
|
|
|
|
|
}
|
|
|
|
|
$w = $db->makeList( $w, LIST_AND );
|
|
|
|
|
$where[$w][] = $ns;
|
|
|
|
|
}
|
|
|
|
|
if ( count( $where ) == 1 ) {
|
|
|
|
|
$where = key( $where );
|
|
|
|
|
$this->addWhere( $where );
|
|
|
|
|
} else {
|
2016-02-17 09:09:32 +00:00
|
|
|
$where2 = [];
|
2014-11-24 15:06:44 +00:00
|
|
|
foreach ( $where as $w => $ns ) {
|
2016-02-17 09:09:32 +00:00
|
|
|
$where2[] = $db->makeList( [ $w, 'ar_namespace' => $ns ], LIST_AND );
|
2014-11-24 15:06:44 +00:00
|
|
|
}
|
|
|
|
|
$this->addWhere( $db->makeList( $where2, LIST_OR ) );
|
|
|
|
|
}
|
|
|
|
|
}
|
2014-09-29 17:47:08 +00:00
|
|
|
|
|
|
|
|
if ( isset( $params['prefix'] ) ) {
|
2016-02-17 09:09:32 +00:00
|
|
|
$where = [];
|
2014-11-24 15:06:44 +00:00
|
|
|
foreach ( $namespaces as $ns ) {
|
|
|
|
|
$w = 'ar_title' . $db->buildLike(
|
|
|
|
|
$this->titlePartToKey( $params['prefix'], $ns ),
|
|
|
|
|
$db->anyString() );
|
|
|
|
|
$where[$w][] = $ns;
|
|
|
|
|
}
|
|
|
|
|
if ( count( $where ) == 1 ) {
|
|
|
|
|
$where = key( $where );
|
|
|
|
|
$this->addWhere( $where );
|
|
|
|
|
} else {
|
2016-02-17 09:09:32 +00:00
|
|
|
$where2 = [];
|
2014-11-24 15:06:44 +00:00
|
|
|
foreach ( $where as $w => $ns ) {
|
2016-02-17 09:09:32 +00:00
|
|
|
$where2[] = $db->makeList( [ $w, 'ar_namespace' => $ns ], LIST_AND );
|
2014-11-24 15:06:44 +00:00
|
|
|
}
|
|
|
|
|
$this->addWhere( $db->makeList( $where2, LIST_OR ) );
|
|
|
|
|
}
|
2014-09-29 17:47:08 +00:00
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
if ( $this->getConfig()->get( 'MiserMode' ) ) {
|
|
|
|
|
$miser_ns = $params['namespace'];
|
|
|
|
|
} else {
|
|
|
|
|
$this->addWhereFld( 'ar_namespace', $params['namespace'] );
|
|
|
|
|
}
|
|
|
|
|
$this->addTimestampWhereRange( 'ar_timestamp', $dir, $params['start'], $params['end'] );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( !is_null( $params['user'] ) ) {
|
2017-09-12 17:12:29 +00:00
|
|
|
// Don't query by user ID here, it might be able to use the ar_usertext_timestamp index.
|
|
|
|
|
$actorQuery = ActorMigration::newMigration()
|
|
|
|
|
->getWhere( $db, 'ar_user', User::newFromName( $params['user'], false ), false );
|
|
|
|
|
$this->addTables( $actorQuery['tables'] );
|
|
|
|
|
$this->addJoinConds( $actorQuery['joins'] );
|
|
|
|
|
$this->addWhere( $actorQuery['conds'] );
|
2014-09-29 17:47:08 +00:00
|
|
|
} elseif ( !is_null( $params['excludeuser'] ) ) {
|
2017-09-12 17:12:29 +00:00
|
|
|
// Here there's no chance of using ar_usertext_timestamp.
|
|
|
|
|
$actorQuery = ActorMigration::newMigration()
|
|
|
|
|
->getWhere( $db, 'ar_user', User::newFromName( $params['excludeuser'], false ) );
|
|
|
|
|
$this->addTables( $actorQuery['tables'] );
|
|
|
|
|
$this->addJoinConds( $actorQuery['joins'] );
|
|
|
|
|
$this->addWhere( 'NOT(' . $actorQuery['conds'] . ')' );
|
2014-09-29 17:47:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( !is_null( $params['user'] ) || !is_null( $params['excludeuser'] ) ) {
|
2017-02-20 22:28:10 +00:00
|
|
|
// Paranoia: avoid brute force searches (T19342)
|
2014-09-29 17:47:08 +00:00
|
|
|
// (shouldn't be able to get here without 'deletedhistory', but
|
|
|
|
|
// check it again just in case)
|
2019-08-16 18:13:56 +00:00
|
|
|
if ( !$this->getPermissionManager()->userHasRight( $user, 'deletedhistory' ) ) {
|
2018-02-16 18:23:45 +00:00
|
|
|
$bitmask = RevisionRecord::DELETED_USER;
|
2019-08-21 22:42:08 +00:00
|
|
|
} elseif ( !$this->getPermissionManager()
|
|
|
|
|
->userHasAnyRight( $user, 'suppressrevision', 'viewsuppressed' )
|
|
|
|
|
) {
|
2018-02-16 18:23:45 +00:00
|
|
|
$bitmask = RevisionRecord::DELETED_USER | RevisionRecord::DELETED_RESTRICTED;
|
2014-09-29 17:47:08 +00:00
|
|
|
} else {
|
|
|
|
|
$bitmask = 0;
|
|
|
|
|
}
|
|
|
|
|
if ( $bitmask ) {
|
|
|
|
|
$this->addWhere( $db->bitAnd( 'ar_deleted', $bitmask ) . " != $bitmask" );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( !is_null( $params['continue'] ) ) {
|
|
|
|
|
$cont = explode( '|', $params['continue'] );
|
|
|
|
|
$op = ( $dir == 'newer' ? '>' : '<' );
|
2015-09-04 20:24:54 +00:00
|
|
|
if ( $optimizeGenerateTitles ) {
|
|
|
|
|
$this->dieContinueUsageIf( count( $cont ) != 2 );
|
2019-02-25 00:38:33 +00:00
|
|
|
$ns = (int)$cont[0];
|
2015-09-04 20:24:54 +00:00
|
|
|
$this->dieContinueUsageIf( strval( $ns ) !== $cont[0] );
|
|
|
|
|
$title = $db->addQuotes( $cont[1] );
|
|
|
|
|
$this->addWhere( "ar_namespace $op $ns OR " .
|
|
|
|
|
"(ar_namespace = $ns AND ar_title $op= $title)" );
|
|
|
|
|
} elseif ( $mode == 'all' ) {
|
2014-09-29 17:47:08 +00:00
|
|
|
$this->dieContinueUsageIf( count( $cont ) != 4 );
|
2019-02-25 00:38:33 +00:00
|
|
|
$ns = (int)$cont[0];
|
2014-09-29 17:47:08 +00:00
|
|
|
$this->dieContinueUsageIf( strval( $ns ) !== $cont[0] );
|
|
|
|
|
$title = $db->addQuotes( $cont[1] );
|
|
|
|
|
$ts = $db->addQuotes( $db->timestamp( $cont[2] ) );
|
|
|
|
|
$ar_id = (int)$cont[3];
|
|
|
|
|
$this->dieContinueUsageIf( strval( $ar_id ) !== $cont[3] );
|
|
|
|
|
$this->addWhere( "ar_namespace $op $ns OR " .
|
|
|
|
|
"(ar_namespace = $ns AND " .
|
|
|
|
|
"(ar_title $op $title OR " .
|
|
|
|
|
"(ar_title = $title AND " .
|
|
|
|
|
"(ar_timestamp $op $ts OR " .
|
|
|
|
|
"(ar_timestamp = $ts AND " .
|
|
|
|
|
"ar_id $op= $ar_id)))))" );
|
|
|
|
|
} else {
|
|
|
|
|
$this->dieContinueUsageIf( count( $cont ) != 2 );
|
|
|
|
|
$ts = $db->addQuotes( $db->timestamp( $cont[0] ) );
|
|
|
|
|
$ar_id = (int)$cont[1];
|
|
|
|
|
$this->dieContinueUsageIf( strval( $ar_id ) !== $cont[1] );
|
|
|
|
|
$this->addWhere( "ar_timestamp $op $ts OR " .
|
|
|
|
|
"(ar_timestamp = $ts AND " .
|
|
|
|
|
"ar_id $op= $ar_id)" );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$this->addOption( 'LIMIT', $this->limit + 1 );
|
|
|
|
|
|
|
|
|
|
$sort = ( $dir == 'newer' ? '' : ' DESC' );
|
2016-02-17 09:09:32 +00:00
|
|
|
$orderby = [];
|
2015-09-04 20:24:54 +00:00
|
|
|
if ( $optimizeGenerateTitles ) {
|
|
|
|
|
// Targeting index name_title_timestamp
|
|
|
|
|
if ( $params['namespace'] === null || count( array_unique( $params['namespace'] ) ) > 1 ) {
|
|
|
|
|
$orderby[] = "ar_namespace $sort";
|
|
|
|
|
}
|
|
|
|
|
$orderby[] = "ar_title $sort";
|
|
|
|
|
} elseif ( $mode == 'all' ) {
|
2014-09-29 17:47:08 +00:00
|
|
|
// Targeting index name_title_timestamp
|
|
|
|
|
if ( $params['namespace'] === null || count( array_unique( $params['namespace'] ) ) > 1 ) {
|
|
|
|
|
$orderby[] = "ar_namespace $sort";
|
|
|
|
|
}
|
|
|
|
|
$orderby[] = "ar_title $sort";
|
|
|
|
|
$orderby[] = "ar_timestamp $sort";
|
|
|
|
|
$orderby[] = "ar_id $sort";
|
|
|
|
|
} else {
|
|
|
|
|
// Targeting index usertext_timestamp
|
|
|
|
|
// 'user' is always constant.
|
|
|
|
|
$orderby[] = "ar_timestamp $sort";
|
|
|
|
|
$orderby[] = "ar_id $sort";
|
|
|
|
|
}
|
|
|
|
|
$this->addOption( 'ORDER BY', $orderby );
|
|
|
|
|
|
|
|
|
|
$res = $this->select( __METHOD__ );
|
2016-02-17 09:09:32 +00:00
|
|
|
$pageMap = []; // Maps ns&title to array index
|
2014-09-29 17:47:08 +00:00
|
|
|
$count = 0;
|
|
|
|
|
$nextIndex = 0;
|
2016-02-17 09:09:32 +00:00
|
|
|
$generated = [];
|
2014-09-29 17:47:08 +00:00
|
|
|
foreach ( $res as $row ) {
|
|
|
|
|
if ( ++$count > $this->limit ) {
|
|
|
|
|
// We've had enough
|
2015-09-04 20:24:54 +00:00
|
|
|
if ( $optimizeGenerateTitles ) {
|
|
|
|
|
$this->setContinueEnumParameter( 'continue', "$row->ar_namespace|$row->ar_title" );
|
|
|
|
|
} elseif ( $mode == 'all' ) {
|
2014-09-29 17:47:08 +00:00
|
|
|
$this->setContinueEnumParameter( 'continue',
|
|
|
|
|
"$row->ar_namespace|$row->ar_title|$row->ar_timestamp|$row->ar_id"
|
|
|
|
|
);
|
|
|
|
|
} else {
|
|
|
|
|
$this->setContinueEnumParameter( 'continue', "$row->ar_timestamp|$row->ar_id" );
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Miser mode namespace check
|
|
|
|
|
if ( $miser_ns !== null && !in_array( $row->ar_namespace, $miser_ns ) ) {
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( $resultPageSet !== null ) {
|
|
|
|
|
if ( $params['generatetitles'] ) {
|
|
|
|
|
$key = "{$row->ar_namespace}:{$row->ar_title}";
|
|
|
|
|
if ( !isset( $generated[$key] ) ) {
|
|
|
|
|
$generated[$key] = Title::makeTitle( $row->ar_namespace, $row->ar_title );
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
$generated[] = $row->ar_rev_id;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
2018-02-16 18:23:45 +00:00
|
|
|
$revision = $revisionStore->newRevisionFromArchiveRow( $row );
|
2014-09-29 17:47:08 +00:00
|
|
|
$rev = $this->extractRevisionInfo( $revision, $row );
|
|
|
|
|
|
|
|
|
|
if ( !isset( $pageMap[$row->ar_namespace][$row->ar_title] ) ) {
|
|
|
|
|
$index = $nextIndex++;
|
|
|
|
|
$pageMap[$row->ar_namespace][$row->ar_title] = $index;
|
2018-02-16 18:23:45 +00:00
|
|
|
$title = Title::newFromLinkTarget( $revision->getPageAsLinkTarget() );
|
2016-02-17 09:09:32 +00:00
|
|
|
$a = [
|
2014-09-29 17:47:08 +00:00
|
|
|
'pageid' => $title->getArticleID(),
|
2016-02-17 09:09:32 +00:00
|
|
|
'revisions' => [ $rev ],
|
|
|
|
|
];
|
API: Overhaul ApiResult, make format=xml not throw, and add json formatversion
ApiResult was a mess: some methods could only be used with an array
reference instead of manipulating the stored data, methods that had both
array-ref and internal-data versions had names that didn't at all
correspond, some methods that worked on an array reference were
annoyingly non-static, and then the whole mess with setIndexedTagName.
ApiFormatXml is also entirely annoying to deal with, as it liked to
throw exceptions if certain metadata wasn't provided that no other
formatter required. Its legacy also means we have this silly convention
of using empty-string rather than boolean true, annoying restrictions on
keys (leading to things that should be hashes being arrays of key-value
object instead), '*' used as a key all over the place, and so on.
So, changes here:
* ApiResult is no longer an ApiBase or a ContextSource.
* Wherever sensible, ApiResult provides a static method working on an
arrayref and a non-static method working on internal data.
* Metadata is now always added to ApiResult's internal data structure.
Formatters are responsible for stripping it if necessary. "raw mode"
is deprecated.
* New metadata to replace the '*' key, solve the array() => '[]' vs '{}'
question, and so on.
* New class for formatting warnings and errors using i18n messages, and
support for multiple errors and a more machine-readable format for
warnings. For the moment, though, the actual output will not be changing
yet (see T47843 for future plans).
* New formatversion parameter for format=json and format=php, to select
between BC mode and the modern output.
* In BC mode, booleans will be converted to empty-string presence style;
modules currently returning booleans will need to use
ApiResult::META_BC_BOOLS to preserve their current output.
Actual changes to the API modules' output (e.g. actually returning
booleans for the new formatversion) beyond the use of
ApiResult::setContentValue() are left for a future change.
Bug: T76728
Bug: T57371
Bug: T33629
Change-Id: I7b37295e8862b188d1f3b0cd07f66ac34629678f
2014-12-03 22:14:22 +00:00
|
|
|
ApiResult::setIndexedTagName( $a['revisions'], 'rev' );
|
2014-09-29 17:47:08 +00:00
|
|
|
ApiQueryBase::addTitleInfo( $a, $title );
|
2016-02-17 09:09:32 +00:00
|
|
|
$fit = $result->addValue( [ 'query', $this->getModuleName() ], $index, $a );
|
2014-09-29 17:47:08 +00:00
|
|
|
} else {
|
|
|
|
|
$index = $pageMap[$row->ar_namespace][$row->ar_title];
|
|
|
|
|
$fit = $result->addValue(
|
2016-02-17 09:09:32 +00:00
|
|
|
[ 'query', $this->getModuleName(), $index, 'revisions' ],
|
2014-09-29 17:47:08 +00:00
|
|
|
null, $rev );
|
|
|
|
|
}
|
|
|
|
|
if ( !$fit ) {
|
|
|
|
|
if ( $mode == 'all' ) {
|
|
|
|
|
$this->setContinueEnumParameter( 'continue',
|
|
|
|
|
"$row->ar_namespace|$row->ar_title|$row->ar_timestamp|$row->ar_id"
|
|
|
|
|
);
|
|
|
|
|
} else {
|
|
|
|
|
$this->setContinueEnumParameter( 'continue', "$row->ar_timestamp|$row->ar_id" );
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( $resultPageSet !== null ) {
|
|
|
|
|
if ( $params['generatetitles'] ) {
|
|
|
|
|
$resultPageSet->populateFromTitles( $generated );
|
|
|
|
|
} else {
|
|
|
|
|
$resultPageSet->populateFromRevisionIDs( $generated );
|
|
|
|
|
}
|
|
|
|
|
} else {
|
2016-02-17 09:09:32 +00:00
|
|
|
$result->addIndexedTagName( [ 'query', $this->getModuleName() ], 'page' );
|
2014-09-29 17:47:08 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function getAllowedParams() {
|
2016-02-17 09:09:32 +00:00
|
|
|
$ret = parent::getAllowedParams() + [
|
|
|
|
|
'user' => [
|
2014-09-29 17:47:08 +00:00
|
|
|
ApiBase::PARAM_TYPE => 'user'
|
2016-02-17 09:09:32 +00:00
|
|
|
],
|
|
|
|
|
'namespace' => [
|
2014-09-29 17:47:08 +00:00
|
|
|
ApiBase::PARAM_ISMULTI => true,
|
|
|
|
|
ApiBase::PARAM_TYPE => 'namespace',
|
2016-02-17 09:09:32 +00:00
|
|
|
],
|
|
|
|
|
'start' => [
|
2014-09-29 17:47:08 +00:00
|
|
|
ApiBase::PARAM_TYPE => 'timestamp',
|
2016-02-17 09:09:32 +00:00
|
|
|
ApiBase::PARAM_HELP_MSG_INFO => [ [ 'useronly' ] ],
|
|
|
|
|
],
|
|
|
|
|
'end' => [
|
2014-09-29 17:47:08 +00:00
|
|
|
ApiBase::PARAM_TYPE => 'timestamp',
|
2016-02-17 09:09:32 +00:00
|
|
|
ApiBase::PARAM_HELP_MSG_INFO => [ [ 'useronly' ] ],
|
|
|
|
|
],
|
|
|
|
|
'dir' => [
|
|
|
|
|
ApiBase::PARAM_TYPE => [
|
2014-09-29 17:47:08 +00:00
|
|
|
'newer',
|
|
|
|
|
'older'
|
2016-02-17 09:09:32 +00:00
|
|
|
],
|
2014-09-29 17:47:08 +00:00
|
|
|
ApiBase::PARAM_DFLT => 'older',
|
|
|
|
|
ApiBase::PARAM_HELP_MSG => 'api-help-param-direction',
|
2016-02-17 09:09:32 +00:00
|
|
|
],
|
|
|
|
|
'from' => [
|
|
|
|
|
ApiBase::PARAM_HELP_MSG_INFO => [ [ 'nonuseronly' ] ],
|
|
|
|
|
],
|
|
|
|
|
'to' => [
|
|
|
|
|
ApiBase::PARAM_HELP_MSG_INFO => [ [ 'nonuseronly' ] ],
|
|
|
|
|
],
|
|
|
|
|
'prefix' => [
|
|
|
|
|
ApiBase::PARAM_HELP_MSG_INFO => [ [ 'nonuseronly' ] ],
|
|
|
|
|
],
|
|
|
|
|
'excludeuser' => [
|
2014-09-29 17:47:08 +00:00
|
|
|
ApiBase::PARAM_TYPE => 'user',
|
2016-02-17 09:09:32 +00:00
|
|
|
ApiBase::PARAM_HELP_MSG_INFO => [ [ 'nonuseronly' ] ],
|
|
|
|
|
],
|
2014-09-29 17:47:08 +00:00
|
|
|
'tag' => null,
|
2016-02-17 09:09:32 +00:00
|
|
|
'continue' => [
|
2014-09-29 17:47:08 +00:00
|
|
|
ApiBase::PARAM_HELP_MSG => 'api-help-param-continue',
|
2016-02-17 09:09:32 +00:00
|
|
|
],
|
|
|
|
|
'generatetitles' => [
|
2014-09-29 17:47:08 +00:00
|
|
|
ApiBase::PARAM_DFLT => false
|
2016-02-17 09:09:32 +00:00
|
|
|
],
|
|
|
|
|
];
|
2014-09-29 17:47:08 +00:00
|
|
|
|
|
|
|
|
if ( $this->getConfig()->get( 'MiserMode' ) ) {
|
2016-02-17 09:09:32 +00:00
|
|
|
$ret['user'][ApiBase::PARAM_HELP_MSG_APPEND] = [
|
2014-09-29 17:47:08 +00:00
|
|
|
'apihelp-query+alldeletedrevisions-param-miser-user-namespace',
|
2016-02-17 09:09:32 +00:00
|
|
|
];
|
|
|
|
|
$ret['namespace'][ApiBase::PARAM_HELP_MSG_APPEND] = [
|
2014-09-29 17:47:08 +00:00
|
|
|
'apihelp-query+alldeletedrevisions-param-miser-user-namespace',
|
2016-02-17 09:09:32 +00:00
|
|
|
];
|
2014-09-29 17:47:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected function getExamplesMessages() {
|
2016-02-17 09:09:32 +00:00
|
|
|
return [
|
2014-09-29 17:47:08 +00:00
|
|
|
'action=query&list=alldeletedrevisions&adruser=Example&adrlimit=50'
|
|
|
|
|
=> 'apihelp-query+alldeletedrevisions-example-user',
|
2016-08-31 17:19:13 +00:00
|
|
|
'action=query&list=alldeletedrevisions&adrdir=newer&adrnamespace=0&adrlimit=50'
|
2014-09-29 17:47:08 +00:00
|
|
|
=> 'apihelp-query+alldeletedrevisions-example-ns-main',
|
2016-02-17 09:09:32 +00:00
|
|
|
];
|
2014-09-29 17:47:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function getHelpUrls() {
|
2017-04-04 22:52:57 +00:00
|
|
|
return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Alldeletedrevisions';
|
2014-09-29 17:47:08 +00:00
|
|
|
}
|
|
|
|
|
}
|