38 parent::__construct(
$query, $moduleName,
'drv' );
49 $pageMap = $pageSet->getGoodAndMissingTitlesByNamespace();
50 $pageCount = count( $pageSet->getGoodAndMissingTitles() );
51 $revCount = $pageSet->getRevisionCount();
52 if ( $revCount === 0 && $pageCount === 0 ) {
56 if ( $revCount !== 0 && count( $pageSet->getDeletedRevisionIDs() ) === 0 ) {
64 $revisionStore = MediaWikiServices::getInstance()->getRevisionStore();
68 if ( $resultPageSet ===
null ) {
70 $arQuery = $revisionStore->getArchiveQueryInfo();
74 $this->
addFields( [
'ar_title',
'ar_namespace' ] );
78 $this->
addFields( [
'ar_title',
'ar_namespace',
'ar_timestamp',
'ar_rev_id',
'ar_id' ] );
81 if ( $this->fld_tags ) {
84 [
'tag_summary' => [
'LEFT JOIN', [
'ar_rev_id=ts_rev_id' ] ] ]
89 if ( !is_null(
$params[
'tag'] ) ) {
92 [
'change_tag' => [
'INNER JOIN', [
'ar_rev_id=ct_rev_id' ] ] ]
95 $changeTagDefStore = MediaWikiServices::getInstance()->getChangeTagDefStore();
107 if ( $this->fetchContent ) {
110 [
'text' => [
'LEFT JOIN', [
'ar_text_id=old_id' ] ] ]
112 $this->
addFields( [
'old_text',
'old_flags' ] );
120 if ( $revCount !== 0 ) {
122 'ar_rev_id' => array_keys( $pageSet->getDeletedRevisionIDs() )
126 $lb =
new LinkBatch( $pageSet->getGoodAndMissingTitles() );
127 $where = $lb->constructSet(
'ar', $db );
131 if ( !is_null(
$params[
'user'] ) ) {
133 $actorQuery = ActorMigration::newMigration()
135 $this->
addTables( $actorQuery[
'tables'] );
137 $this->
addWhere( $actorQuery[
'conds'] );
138 } elseif ( !is_null(
$params[
'excludeuser'] ) ) {
140 $actorQuery = ActorMigration::newMigration()
142 $this->
addTables( $actorQuery[
'tables'] );
144 $this->
addWhere(
'NOT(' . $actorQuery[
'conds'] .
')' );
147 if ( !is_null(
$params[
'user'] ) || !is_null(
$params[
'excludeuser'] ) ) {
151 if ( !$user->isAllowed(
'deletedhistory' ) ) {
152 $bitmask = RevisionRecord::DELETED_USER;
153 } elseif ( !$user->isAllowedAny(
'suppressrevision',
'viewsuppressed' ) ) {
154 $bitmask = RevisionRecord::DELETED_USER | RevisionRecord::DELETED_RESTRICTED;
159 $this->
addWhere( $db->bitAnd(
'ar_deleted', $bitmask ) .
" != $bitmask" );
163 if ( !is_null(
$params[
'continue'] ) ) {
164 $cont = explode(
'|',
$params[
'continue'] );
165 $op = ( $dir ==
'newer' ?
'>' :
'<' );
166 if ( $revCount !== 0 ) {
168 $rev = intval( $cont[0] );
170 $ar_id = (int)$cont[1];
172 $this->
addWhere(
"ar_rev_id $op $rev OR " .
173 "(ar_rev_id = $rev AND " .
174 "ar_id $op= $ar_id)" );
177 $ns = intval( $cont[0] );
179 $title = $db->addQuotes( $cont[1] );
180 $ts = $db->addQuotes( $db->timestamp( $cont[2] ) );
181 $ar_id = (int)$cont[3];
183 $this->
addWhere(
"ar_namespace $op $ns OR " .
184 "(ar_namespace = $ns AND " .
185 "(ar_title $op $title OR " .
186 "(ar_title = $title AND " .
187 "(ar_timestamp $op $ts OR " .
188 "(ar_timestamp = $ts AND " .
189 "ar_id $op= $ar_id)))))" );
193 $this->
addOption(
'LIMIT', $this->limit + 1 );
195 if ( $revCount !== 0 ) {
201 if ( count( $pageMap ) > 1 ) {
204 $oneTitle =
key( reset( $pageMap ) );
205 foreach ( $pageMap as $pages ) {
206 if ( count( $pages ) > 1 ||
key( $pages ) !== $oneTitle ) {
219 foreach (
$res as $row ) {
220 if ( ++$count > $this->limit ) {
224 ?
"$row->ar_rev_id|$row->ar_id"
225 :
"$row->ar_namespace|$row->ar_title|$row->ar_timestamp|$row->ar_id"
230 if ( $resultPageSet !==
null ) {
231 $generated[] = $row->ar_rev_id;
233 if ( !isset( $pageMap[$row->ar_namespace][$row->ar_title] ) ) {
235 $title = Title::makeTitle( $row->ar_namespace, $row->ar_title );
236 $converted = $pageSet->getConvertedTitles();
237 if ( $title && isset( $converted[$title->getPrefixedText()] ) ) {
238 $title = Title::newFromText( $converted[$title->getPrefixedText()] );
239 if ( $title && isset( $pageMap[$title->getNamespace()][$title->getDBkey()] ) ) {
240 $pageMap[$row->ar_namespace][$row->ar_title] =
241 $pageMap[$title->getNamespace()][$title->getDBkey()];
245 if ( !isset( $pageMap[$row->ar_namespace][$row->ar_title] ) ) {
248 "Found row in archive (ar_id={$row->ar_id}) that didn't get processed by ApiPageSet"
253 $pageMap[$row->ar_namespace][$row->ar_title],
254 $this->extractRevisionInfo( $revisionStore->newRevisionFromArchiveRow( $row ), $row ),
260 ?
"$row->ar_rev_id|$row->ar_id"
261 :
"$row->ar_namespace|$row->ar_title|$row->ar_timestamp|$row->ar_id"
268 if ( $resultPageSet !==
null ) {
269 $resultPageSet->populateFromRevisionIDs( $generated );
274 return parent::getAllowedParams() + [
304 'action=query&prop=deletedrevisions&titles=Main%20Page|Talk:Main%20Page&' .
305 'drvslots=*&drvprop=user|comment|content'
306 =>
'apihelp-query+deletedrevisions-example-titles',
307 'action=query&prop=deletedrevisions&revids=123456'
308 =>
'apihelp-query+deletedrevisions-example-revids',
313 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Deletedrevisions';
int $wgChangeTagsSchemaMigrationStage
change_tag table schema migration stage.
checkUserRightsAny( $rights, $user=null)
Helper function for permission-denied errors.
getParameter( $paramName, $parseLimit=true)
Get a value for the given parameter.
dieContinueUsageIf( $condition)
Die with the 'badcontinue' error.
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_DFLT
(null|boolean|integer|string) Default value of the parameter.
extractRequestParams( $options=[])
Using getAllowedParams(), this function makes an array of the values provided by the user,...
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.
This class contains a list of pages that the client has requested.
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.
Query module to enumerate deleted revisions for pages.
__construct(ApiQuery $query, $moduleName)
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.
run(ApiPageSet $resultPageSet=null)
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.
This is the main query class.
Class representing a list of titles The execute() method checks them all for existence and adds them ...
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
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 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
const MIGRATION_WRITE_BOTH