43 $this->
run( $resultPageSet );
58 if ( !is_null(
$params[
'difftotext'] ) ) {
59 $this->difftotext =
$params[
'difftotext'];
60 $this->difftotextpst =
$params[
'difftotextpst'];
61 } elseif ( !is_null(
$params[
'diffto'] ) ) {
62 if (
$params[
'diffto'] ==
'cur' ) {
65 if ( ( !ctype_digit(
$params[
'diffto'] ) ||
$params[
'diffto'] < 0 )
69 $this->
dieWithError( [
'apierror-baddiffto', $p ],
'diffto' );
75 $difftoRev = Revision::newFromId(
$params[
'diffto'] );
79 if ( !$difftoRev->userCan( Revision::DELETED_TEXT, $this->getUser() ) ) {
80 $this->
addWarning( [
'apiwarn-difftohidden', $difftoRev->getId() ] );
84 $this->diffto =
$params[
'diffto'];
87 $prop = array_flip(
$params[
'prop'] );
89 $this->fld_ids = isset( $prop[
'ids'] );
90 $this->fld_flags = isset( $prop[
'flags'] );
91 $this->fld_timestamp = isset( $prop[
'timestamp'] );
92 $this->fld_comment = isset( $prop[
'comment'] );
93 $this->fld_parsedcomment = isset( $prop[
'parsedcomment'] );
94 $this->fld_size = isset( $prop[
'size'] );
95 $this->fld_sha1 = isset( $prop[
'sha1'] );
96 $this->fld_content = isset( $prop[
'content'] );
97 $this->fld_contentmodel = isset( $prop[
'contentmodel'] );
98 $this->fld_userid = isset( $prop[
'userid'] );
99 $this->fld_user = isset( $prop[
'user'] );
100 $this->fld_tags = isset( $prop[
'tags'] );
101 $this->fld_parsetree = isset( $prop[
'parsetree'] );
103 if ( $this->fld_parsetree ) {
107 $parentParam = $parent->encodeParamName( $parent->getModuleManager()->getModuleGroup( $name ) );
109 [
'apiwarn-deprecation-parameter',
"{$encParam}=parsetree" ],
110 "action=query&{$parentParam}={$name}&{$encParam}=parsetree"
114 if ( !empty(
$params[
'contentformat'] ) ) {
115 $this->contentFormat =
$params[
'contentformat'];
118 $this->limit =
$params[
'limit'];
120 $this->fetchContent = $this->fld_content || !is_null( $this->diffto )
124 if ( $this->fetchContent ) {
126 $this->expandTemplates =
$params[
'expandtemplates'];
127 $this->generateXML =
$params[
'generatexml'];
128 $this->parseContent =
$params[
'parse'];
129 if ( $this->parseContent ) {
131 if ( is_null( $this->limit ) ) {
135 if ( isset(
$params[
'section'] ) ) {
136 $this->section =
$params[
'section'];
138 $this->section =
false;
144 if ( $this->limit ==
'max' ) {
145 $this->limit = $this->
getMain()->canApiHighLimits() ? $botMax : $userMax;
146 if ( $this->setParsedLimit ) {
151 if ( is_null( $this->limit ) ) {
154 $this->
validateLimit(
'limit', $this->limit, 1, $userMax, $botMax );
170 if ( $this->fld_ids ) {
171 $vals[
'revid'] = intval( $revision->
getId() );
173 $vals[
'parentid'] = intval( $revision->
getParentId() );
177 if ( $this->fld_flags ) {
178 $vals[
'minor'] = $revision->
isMinor();
181 if ( $this->fld_user || $this->fld_userid ) {
182 if ( $revision->
isDeleted( Revision::DELETED_USER ) ) {
183 $vals[
'userhidden'] =
true;
186 if ( $revision->
userCan( Revision::DELETED_USER, $user ) ) {
187 if ( $this->fld_user ) {
188 $vals[
'user'] = $revision->
getUserText( Revision::RAW );
190 $userid = $revision->
getUser( Revision::RAW );
192 $vals[
'anon'] =
true;
195 if ( $this->fld_userid ) {
196 $vals[
'userid'] = $userid;
201 if ( $this->fld_timestamp ) {
205 if ( $this->fld_size ) {
206 if ( !is_null( $revision->
getSize() ) ) {
207 $vals[
'size'] = intval( $revision->
getSize() );
213 if ( $this->fld_sha1 ) {
214 if ( $revision->
isDeleted( Revision::DELETED_TEXT ) ) {
215 $vals[
'sha1hidden'] =
true;
218 if ( $revision->
userCan( Revision::DELETED_TEXT, $user ) ) {
219 if ( $revision->
getSha1() !=
'' ) {
220 $vals[
'sha1'] = Wikimedia\base_convert( $revision->
getSha1(), 36, 16, 40 );
227 if ( $this->fld_contentmodel ) {
231 if ( $this->fld_comment || $this->fld_parsedcomment ) {
232 if ( $revision->
isDeleted( Revision::DELETED_COMMENT ) ) {
233 $vals[
'commenthidden'] =
true;
236 if ( $revision->
userCan( Revision::DELETED_COMMENT, $user ) ) {
237 $comment = $revision->
getComment( Revision::RAW );
239 if ( $this->fld_comment ) {
240 $vals[
'comment'] = $comment;
243 if ( $this->fld_parsedcomment ) {
249 if ( $this->fld_tags ) {
250 if ( $row->ts_tags ) {
251 $tags = explode(
',', $row->ts_tags );
253 $vals[
'tags'] = $tags;
261 if ( $this->fetchContent ) {
266 if ( $content && $this->section !==
false ) {
267 $content = $content->getSection( $this->section,
false );
271 'apierror-nosuchsection-what',
273 $this->
msg(
'revid', $revision->
getId() )
279 if ( $revision->
isDeleted( Revision::DELETED_TEXT ) ) {
280 $vals[
'texthidden'] =
true;
282 } elseif ( !$content ) {
283 $vals[
'textmissing'] =
true;
286 if ( $this->fld_parsetree || ( $this->fld_content && $this->generateXML ) ) {
289 $t = $content->getNativeData(); # note: don
't set $text
291 $wgParser->startExternalParse(
293 ParserOptions::newFromContext( $this->getContext() ),
294 Parser::OT_PREPROCESS
296 $dom = $wgParser->preprocessToDom( $t );
297 if ( is_callable( [ $dom, 'saveXML
' ] ) ) {
298 $xml = $dom->saveXML();
300 $xml = $dom->__toString();
302 $vals['parsetree
'] = $xml;
304 $vals['badcontentformatforparsetree
'] = true;
307 'apierror-parsetree-notwikitext-title
',
308 wfEscapeWikiText( $title->getPrefixedText() ),
311 'parsetree-notwikitext
'
317 if ( $this->fld_content && $content ) {
320 if ( $this->expandTemplates && !$this->parseContent ) {
321 # XXX: implement template expansion for all content types in ContentHandler?
322 if ( $content->getModel() === CONTENT_MODEL_WIKITEXT ) {
323 $text = $content->getNativeData();
325 $text = $wgParser->preprocess(
328 ParserOptions::newFromContext( $this->getContext() )
332 'apierror-templateexpansion-notwikitext
',
333 wfEscapeWikiText( $title->getPrefixedText() ),
336 $vals['badcontentformat
'] = true;
340 if ( $this->parseContent ) {
341 $po = $content->getParserOutput(
344 ParserOptions::newFromContext( $this->getContext() )
346 $text = $po->getText();
349 if ( $text === null ) {
350 $format = $this->contentFormat ?: $content->getDefaultFormat();
351 $model = $content->getModel();
353 if ( !$content->isSupportedFormat( $format ) ) {
354 $name = wfEscapeWikiText( $title->getPrefixedText() );
355 $this->addWarning( [ 'apierror-badformat
', $this->contentFormat, $model, $name ] );
356 $vals['badcontentformat
'] = true;
359 $text = $content->serialize( $format );
360 // always include format and model.
361 // Format is needed to deserialize, model is needed to interpret.
362 $vals['contentformat
'] = $format;
363 $vals['contentmodel
'] = $model;
367 if ( $text !== false ) {
368 ApiResult::setContentValue( $vals, 'content
', $text );
372 if ( $content && ( !is_null( $this->diffto ) || !is_null( $this->difftotext ) ) ) {
373 static $n = 0; // Number of uncached diffs we've had
375 if ( $n < $this->
getConfig()->
get(
'APIMaxUncachedDiffs' ) ) {
381 if ( !is_null( $this->difftotext ) ) {
382 $model = $title->getContentModel();
384 if ( $this->contentFormat
385 && !ContentHandler::getForModelID( $model )->isSupportedFormat( $this->contentFormat )
388 $this->
addWarning( [
'apierror-badformat', $this->contentFormat, $model, $name ] );
389 $vals[
'diff'][
'badcontentformat'] =
true;
392 $difftocontent = ContentHandler::makeContent(
399 if ( $this->difftotextpst ) {
400 $popts = ParserOptions::newFromContext( $this->
getContext() );
401 $difftocontent = $difftocontent->preSaveTransform( $title, $user, $popts );
405 $engine->setContent( $content, $difftocontent );
409 $vals[
'diff'][
'from'] =
$engine->getOldid();
410 $vals[
'diff'][
'to'] =
$engine->getNewid();
413 $difftext =
$engine->getDiffBody();
415 if ( !
$engine->wasCacheHit() ) {
420 $vals[
'diff'][
'notcached'] =
true;
424 if ( $anyHidden && $revision->
isDeleted( Revision::DELETED_RESTRICTED ) ) {
425 $vals[
'suppressed'] =
true;
461 'ids' =>
'apihelp-query+revisions+base-paramvalue-prop-ids',
462 'flags' =>
'apihelp-query+revisions+base-paramvalue-prop-flags',
463 'timestamp' =>
'apihelp-query+revisions+base-paramvalue-prop-timestamp',
464 'user' =>
'apihelp-query+revisions+base-paramvalue-prop-user',
465 'userid' =>
'apihelp-query+revisions+base-paramvalue-prop-userid',
466 'size' =>
'apihelp-query+revisions+base-paramvalue-prop-size',
467 'sha1' =>
'apihelp-query+revisions+base-paramvalue-prop-sha1',
468 'contentmodel' =>
'apihelp-query+revisions+base-paramvalue-prop-contentmodel',
469 'comment' =>
'apihelp-query+revisions+base-paramvalue-prop-comment',
470 'parsedcomment' =>
'apihelp-query+revisions+base-paramvalue-prop-parsedcomment',
471 'content' =>
'apihelp-query+revisions+base-paramvalue-prop-content',
472 'tags' =>
'apihelp-query+revisions+base-paramvalue-prop-tags',
473 'parsetree' => [
'apihelp-query+revisions+base-paramvalue-prop-parsetree',
484 'expandtemplates' => [
486 ApiBase::PARAM_HELP_MSG =>
'apihelp-query+revisions+base-param-expandtemplates',
and give any other recipients of the Program a copy of this License along with the Program You may charge a fee for the physical act of transferring a and you may at your option offer warranty protection in exchange for a fee You may modify your copy or copies of the Program or any portion of thus forming a work based on the and copy and distribute such modifications or work under the terms of Section provided that you also meet all of these that in whole or in part contains or is derived from the Program or any part to be licensed as a whole at no charge to all third parties under the terms of this License c If the modified program normally reads commands interactively when run
wfTimestamp( $outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
wfEscapeWikiText( $text)
Escapes the given text so that it may be output using addWikiText() without any linking,...
getModulePrefix()
Get parameter prefix (usually two letters or an empty string).
const PARAM_MAX2
(integer) Max value allowed for the parameter for users with the apihighlimits right,...
const PARAM_DEPRECATED
(boolean) Is the parameter deprecated (will show a warning)?
const PARAM_MAX
(integer) Max value allowed for the parameter, for PARAM_TYPE 'integer' and 'limit'.
dieWithError( $msg, $code=null, $data=null, $httpCode=null)
Abort execution with an error.
getMain()
Get the main module.
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_PER_VALUE
((string|array|Message)[]) When PARAM_TYPE is an array, this is an array mapping those values to $msg...
addDeprecation( $msg, $feature, $data=[])
Add a deprecation warning for this module.
const PARAM_MIN
(integer) Lowest value allowed for the parameter, for PARAM_TYPE 'integer' and 'limit'.
const LIMIT_BIG1
Fast query, standard limit.
const LIMIT_SML2
Slow query, apihighlimits limit.
validateLimit( $paramName, &$value, $min, $max, $botMax=null, $enforceLimits=false)
Validate the value against the minimum and user/bot maximum limits.
getResult()
Get the result object.
const LIMIT_SML1
Slow query, standard limit.
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.
const LIMIT_BIG2
Fast query, apihighlimits limit.
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.
userCanSeeRevDel()
Check whether the current user has permission to view revision-deleted fields.
encodeParamName( $paramName)
Overrides ApiBase to prepend 'g' to every generator parameter.
A base class for functions common to producing a list of revisions.
executeGenerator( $resultPageSet)
Execute this module as a generator.
getCacheMode( $params)
Get the cache mode for the data generated by this module.
parseParameters( $params)
Parse the parameters into the various instance fields.
getAllowedParams()
Returns an array of allowed parameters (parameter name) => (default value) or (parameter name) => (ar...
execute()
Evaluates the parameters, performs the requested query, and sets up the result.
extractRevisionInfo(Revision $revision, $row)
Extract information from the Revision.
run(ApiPageSet $resultPageSet=null)
static setIndexedTagName(array &$arr, $tag)
Set the tag name for numeric-keyed values in XML format.
static setContentValue(array &$arr, $name, $value, $flags=0)
Add an output value to the array by name and mark as META_CONTENT.
msg( $key)
Get a Message object with context set Parameters are the same as wfMessage()
An IContextSource implementation which will inherit context from another source but allow individual ...
static formatComment( $comment, $title=null, $local=false, $wikiId=null)
This function is called by all recent changes variants, by the page history, and by the user contribu...
getUserText( $audience=self::FOR_PUBLIC, User $user=null)
Fetch revision's username if it's available to the specified audience.
getTitle()
Returns the title of the page associated with this entry.
getSize()
Returns the length of the text in this revision, or null if unknown.
getContentHandler()
Returns the content handler appropriate for this revision's content model.
getComment( $audience=self::FOR_PUBLIC, User $user=null)
Fetch revision comment if it's available to the specified audience.
getContentModel()
Returns the content model for the main slot of this revision.
getUser( $audience=self::FOR_PUBLIC, User $user=null)
Fetch revision's user id if it's available to the specified audience.
getContent( $audience=self::FOR_PUBLIC, User $user=null)
Fetch revision content if it's available to the specified audience.
getSha1()
Returns the base36 sha1 of the content in this revision, or null if unknown.
userCan( $field, User $user=null)
Determine if the current user is allowed to view a particular field of this revision,...
getParentId()
Get parent revision ID (the original previous page revision)
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction you ll probably need to make sure the header is varied on and they can depend only on the ResourceLoaderContext $context
the value to return A Title object or null for latest all implement SearchIndexField $engine
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output modifiable modifiable after all normalizations have been except for the $wgMaxImageArea check set to true or false to override the $wgMaxImageArea check result gives extension the possibility to transform it themselves $handler
const CONTENT_MODEL_WIKITEXT