34 parent::__construct(
$query, $moduleName,
'adr' );
52 if (
$params[
'namespace'] === [] ) {
53 if ( $resultPageSet ===
null ) {
63 if ( !is_null(
$params[
'user'] ) ) {
67 if ( $mode ==
'user' ) {
68 foreach ( [
'from',
'to',
'prefix',
'excludeuser' ] as $param ) {
69 if ( !is_null(
$params[$param] ) ) {
72 [
'apierror-invalidparammix-cannotusewith', $p.$param,
"{$p}user" ],
78 foreach ( [
'start',
'end' ] as $param ) {
79 if ( !is_null(
$params[$param] ) ) {
82 [
'apierror-invalidparammix-mustusewith', $p.$param,
"{$p}user" ],
94 $optimizeGenerateTitles =
false;
95 if ( $mode ===
'all' &&
$params[
'generatetitles'] && $resultPageSet !==
null ) {
96 if ( $dir ===
'newer' ) {
97 $optimizeGenerateTitles =
true;
100 $this->
addWarning( [
'apiwarn-alldeletedrevisions-performance', $p ],
'performance' );
104 if ( $resultPageSet ===
null ) {
106 $arQuery = Revision::getArchiveQueryInfo();
110 $this->
addFields( [
'ar_title',
'ar_namespace' ] );
114 $this->
addFields( [
'ar_title',
'ar_namespace' ] );
115 if ( $optimizeGenerateTitles ) {
118 $this->
addFields( [
'ar_timestamp',
'ar_rev_id',
'ar_id' ] );
122 if ( $this->fld_tags ) {
125 [
'tag_summary' => [
'LEFT JOIN', [
'ar_rev_id=ts_rev_id' ] ] ]
130 if ( !is_null(
$params[
'tag'] ) ) {
133 [
'change_tag' => [
'INNER JOIN', [
'ar_rev_id=ct_rev_id' ] ] ]
138 if ( $this->fetchContent ) {
141 [
'text' => [
'LEFT JOIN', [
'ar_text_id=old_id' ] ] ]
143 $this->
addFields( [
'old_text',
'old_flags' ] );
151 if ( $mode ==
'all' ) {
152 if (
$params[
'namespace'] !==
null ) {
164 $isDirNewer = ( $dir ===
'newer' );
165 $after = ( $isDirNewer ?
'>=' :
'<=' );
166 $before = ( $isDirNewer ?
'<=' :
'>=' );
170 if (
$params[
'from'] !==
null ) {
171 $w[] =
'ar_title' . $after .
174 if (
$params[
'to'] !==
null ) {
175 $w[] =
'ar_title' . $before .
181 if ( count(
$where ) == 1 ) {
186 foreach (
$where as $w => $ns ) {
187 $where2[] = $db->makeList( [ $w,
'ar_namespace' => $ns ],
LIST_AND );
193 if ( isset(
$params[
'prefix'] ) ) {
196 $w =
'ar_title' . $db->buildLike(
201 if ( count(
$where ) == 1 ) {
206 foreach (
$where as $w => $ns ) {
207 $where2[] = $db->makeList( [ $w,
'ar_namespace' => $ns ],
LIST_AND );
213 if ( $this->
getConfig()->
get(
'MiserMode' ) ) {
214 $miser_ns =
$params[
'namespace'];
221 if ( !is_null(
$params[
'user'] ) ) {
223 $actorQuery = ActorMigration::newMigration()
225 $this->
addTables( $actorQuery[
'tables'] );
227 $this->
addWhere( $actorQuery[
'conds'] );
228 } elseif ( !is_null(
$params[
'excludeuser'] ) ) {
230 $actorQuery = ActorMigration::newMigration()
232 $this->
addTables( $actorQuery[
'tables'] );
234 $this->
addWhere(
'NOT(' . $actorQuery[
'conds'] .
')' );
237 if ( !is_null(
$params[
'user'] ) || !is_null(
$params[
'excludeuser'] ) ) {
241 if ( !$user->isAllowed(
'deletedhistory' ) ) {
242 $bitmask = Revision::DELETED_USER;
243 } elseif ( !$user->isAllowedAny(
'suppressrevision',
'viewsuppressed' ) ) {
244 $bitmask = Revision::DELETED_USER | Revision::DELETED_RESTRICTED;
249 $this->
addWhere( $db->bitAnd(
'ar_deleted', $bitmask ) .
" != $bitmask" );
253 if ( !is_null(
$params[
'continue'] ) ) {
254 $cont = explode(
'|',
$params[
'continue'] );
255 $op = ( $dir ==
'newer' ?
'>' :
'<' );
256 if ( $optimizeGenerateTitles ) {
258 $ns = intval( $cont[0] );
260 $title = $db->addQuotes( $cont[1] );
261 $this->
addWhere(
"ar_namespace $op $ns OR " .
262 "(ar_namespace = $ns AND ar_title $op= $title)" );
263 } elseif ( $mode ==
'all' ) {
265 $ns = intval( $cont[0] );
267 $title = $db->addQuotes( $cont[1] );
268 $ts = $db->addQuotes( $db->timestamp( $cont[2] ) );
269 $ar_id = (int)$cont[3];
271 $this->
addWhere(
"ar_namespace $op $ns OR " .
272 "(ar_namespace = $ns AND " .
273 "(ar_title $op $title OR " .
274 "(ar_title = $title AND " .
275 "(ar_timestamp $op $ts OR " .
276 "(ar_timestamp = $ts AND " .
277 "ar_id $op= $ar_id)))))" );
280 $ts = $db->addQuotes( $db->timestamp( $cont[0] ) );
281 $ar_id = (int)$cont[1];
283 $this->
addWhere(
"ar_timestamp $op $ts OR " .
284 "(ar_timestamp = $ts AND " .
285 "ar_id $op= $ar_id)" );
289 $this->
addOption(
'LIMIT', $this->limit + 1 );
291 $sort = ( $dir ==
'newer' ?
'' :
' DESC' );
293 if ( $optimizeGenerateTitles ) {
295 if (
$params[
'namespace'] ===
null || count( array_unique(
$params[
'namespace'] ) ) > 1 ) {
296 $orderby[] =
"ar_namespace $sort";
298 $orderby[] =
"ar_title $sort";
299 } elseif ( $mode ==
'all' ) {
301 if (
$params[
'namespace'] ===
null || count( array_unique(
$params[
'namespace'] ) ) > 1 ) {
302 $orderby[] =
"ar_namespace $sort";
304 $orderby[] =
"ar_title $sort";
305 $orderby[] =
"ar_timestamp $sort";
306 $orderby[] =
"ar_id $sort";
310 $orderby[] =
"ar_timestamp $sort";
311 $orderby[] =
"ar_id $sort";
313 $this->
addOption(
'ORDER BY', $orderby );
320 foreach (
$res as $row ) {
321 if ( ++$count > $this->limit ) {
323 if ( $optimizeGenerateTitles ) {
325 } elseif ( $mode ==
'all' ) {
327 "$row->ar_namespace|$row->ar_title|$row->ar_timestamp|$row->ar_id"
336 if ( $miser_ns !==
null && !in_array( $row->ar_namespace, $miser_ns ) ) {
340 if ( $resultPageSet !==
null ) {
341 if (
$params[
'generatetitles'] ) {
342 $key =
"{$row->ar_namespace}:{$row->ar_title}";
343 if ( !isset( $generated[$key] ) ) {
344 $generated[$key] = Title::makeTitle( $row->ar_namespace, $row->ar_title );
347 $generated[] = $row->ar_rev_id;
350 $revision = Revision::newFromArchiveRow( $row );
353 if ( !isset( $pageMap[$row->ar_namespace][$row->ar_title] ) ) {
354 $index = $nextIndex++;
355 $pageMap[$row->ar_namespace][$row->ar_title] = $index;
356 $title = $revision->getTitle();
358 'pageid' => $title->getArticleID(),
359 'revisions' => [
$rev ],
363 $fit = $result->addValue( [
'query', $this->
getModuleName() ], $index, $a );
365 $index = $pageMap[$row->ar_namespace][$row->ar_title];
366 $fit = $result->addValue(
371 if ( $mode ==
'all' ) {
373 "$row->ar_namespace|$row->ar_title|$row->ar_timestamp|$row->ar_id"
383 if ( $resultPageSet !==
null ) {
384 if (
$params[
'generatetitles'] ) {
385 $resultPageSet->populateFromTitles( $generated );
387 $resultPageSet->populateFromRevisionIDs( $generated );
390 $result->addIndexedTagName( [
'query', $this->
getModuleName() ],
'page' );
395 $ret = parent::getAllowedParams() + [
436 'generatetitles' => [
441 if ( $this->
getConfig()->
get(
'MiserMode' ) ) {
443 'apihelp-query+alldeletedrevisions-param-miser-user-namespace',
446 'apihelp-query+alldeletedrevisions-param-miser-user-namespace',
455 'action=query&list=alldeletedrevisions&adruser=Example&adrlimit=50'
456 =>
'apihelp-query+alldeletedrevisions-example-user',
457 'action=query&list=alldeletedrevisions&adrdir=newer&adrnamespace=0&adrlimit=50'
458 =>
'apihelp-query+alldeletedrevisions-example-ns-main',
463 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Alldeletedrevisions';
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 ...
extractRequestParams( $parseLimit=true)
Using getAllowedParams(), this function makes an array of the values provided by the user,...
getResult()
Get the result object.
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(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
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at etc Handles the details of getting and saving to the user table of the and dealing with sessions and cookies OutputPage Encapsulates the entire HTML page that will be sent in response to any server request It is used by calling its functions to add in any and then calling but I prefer the flexibility This should also do the output encoding The system allocates a global one in $wgOut Title Represents the title of an and does all the work of translating among various forms such as plain database key
namespace and then decline to actually register it & $namespaces
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