Go to the documentation of this file.
47 $this->
run( $resultPageSet );
54 abstract protected function run(
ApiPageSet $resultPageSet =
null );
62 if ( !is_null(
$params[
'difftotext'] ) ) {
63 $this->difftotext =
$params[
'difftotext'];
64 $this->difftotextpst =
$params[
'difftotextpst'];
65 } elseif ( !is_null(
$params[
'diffto'] ) ) {
66 if (
$params[
'diffto'] ==
'cur' ) {
69 if ( ( !ctype_digit(
$params[
'diffto'] ) ||
$params[
'diffto'] < 0 )
73 $this->
dieWithError( [
'apierror-baddiffto', $p ],
'diffto' );
84 $this->
addWarning( [
'apiwarn-difftohidden', $difftoRev->getId() ] );
88 $this->diffto =
$params[
'diffto'];
91 $prop = array_flip(
$params[
'prop'] );
93 $this->fld_ids = isset( $prop[
'ids'] );
94 $this->fld_flags = isset( $prop[
'flags'] );
95 $this->fld_timestamp = isset( $prop[
'timestamp'] );
96 $this->fld_comment = isset( $prop[
'comment'] );
97 $this->fld_parsedcomment = isset( $prop[
'parsedcomment'] );
98 $this->fld_size = isset( $prop[
'size'] );
99 $this->fld_sha1 = isset( $prop[
'sha1'] );
100 $this->fld_content = isset( $prop[
'content'] );
101 $this->fld_contentmodel = isset( $prop[
'contentmodel'] );
102 $this->fld_userid = isset( $prop[
'userid'] );
103 $this->fld_user = isset( $prop[
'user'] );
104 $this->fld_tags = isset( $prop[
'tags'] );
105 $this->fld_parsetree = isset( $prop[
'parsetree'] );
107 if ( $this->fld_parsetree ) {
111 $parentParam = $parent->encodeParamName( $parent->getModuleManager()->getModuleGroup(
$name ) );
113 [
'apiwarn-deprecation-parameter',
"{$encParam}=parsetree" ],
114 "action=query&{$parentParam}={$name}&{$encParam}=parsetree"
118 if ( !empty(
$params[
'contentformat'] ) ) {
119 $this->contentFormat =
$params[
'contentformat'];
122 $this->limit =
$params[
'limit'];
124 $this->fetchContent = $this->fld_content || !is_null( $this->diffto )
128 if ( $this->fetchContent ) {
130 $this->expandTemplates =
$params[
'expandtemplates'];
131 $this->generateXML =
$params[
'generatexml'];
132 $this->parseContent =
$params[
'parse'];
133 if ( $this->parseContent ) {
135 if ( is_null( $this->limit ) ) {
139 if ( isset(
$params[
'section'] ) ) {
140 $this->section =
$params[
'section'];
142 $this->section =
false;
148 if ( $this->limit ==
'max' ) {
149 $this->limit = $this->
getMain()->canApiHighLimits() ? $botMax : $userMax;
150 if ( $this->setParsedLimit ) {
155 if ( is_null( $this->limit ) ) {
158 $this->
validateLimit(
'limit', $this->limit, 1, $userMax, $botMax );
174 if ( $this->fld_ids ) {
175 $vals[
'revid'] = intval( $revision->
getId() );
177 $vals[
'parentid'] = intval( $revision->
getParentId() );
181 if ( $this->fld_flags ) {
182 $vals[
'minor'] = $revision->
isMinor();
185 if ( $this->fld_user || $this->fld_userid ) {
187 $vals[
'userhidden'] =
true;
191 if ( $this->fld_user ) {
196 $vals[
'anon'] =
true;
199 if ( $this->fld_userid ) {
200 $vals[
'userid'] = $userid;
205 if ( $this->fld_timestamp ) {
209 if ( $this->fld_size ) {
210 if ( !is_null( $revision->
getSize() ) ) {
211 $vals[
'size'] = intval( $revision->
getSize() );
217 if ( $this->fld_sha1 ) {
219 $vals[
'sha1hidden'] =
true;
223 if ( $revision->
getSha1() !=
'' ) {
224 $vals[
'sha1'] = Wikimedia\base_convert( $revision->
getSha1(), 36, 16, 40 );
231 if ( $this->fld_contentmodel ) {
235 if ( $this->fld_comment || $this->fld_parsedcomment ) {
237 $vals[
'commenthidden'] =
true;
243 if ( $this->fld_comment ) {
244 $vals[
'comment'] = $comment;
247 if ( $this->fld_parsedcomment ) {
253 if ( $this->fld_tags ) {
254 if ( $row->ts_tags ) {
255 $tags = explode(
',', $row->ts_tags );
257 $vals[
'tags'] = $tags;
265 if ( $this->fetchContent ) {
270 if ( $content && $this->section !==
false ) {
271 $content = $content->getSection( $this->section,
false );
275 'apierror-nosuchsection-what',
277 $this->
msg(
'revid', $revision->
getId() )
284 $vals[
'texthidden'] =
true;
286 } elseif ( !$content ) {
287 $vals[
'textmissing'] =
true;
290 if ( $this->fld_parsetree || ( $this->fld_content && $this->generateXML ) ) {
293 $t = $content->getNativeData(); # note: don
't set $text
295 $wgParser->startExternalParse(
297 ParserOptions::newFromContext( $this->getContext() ),
298 Parser::OT_PREPROCESS
300 $dom = $wgParser->preprocessToDom( $t );
301 if ( is_callable( [ $dom, 'saveXML
' ] ) ) {
302 $xml = $dom->saveXML();
304 $xml = $dom->__toString();
306 $vals['parsetree
'] = $xml;
308 $vals['badcontentformatforparsetree
'] = true;
311 'apierror-parsetree-notwikitext-
title',
312 wfEscapeWikiText( $title->getPrefixedText() ),
315 'parsetree-notwikitext
'
321 if ( $this->fld_content && $content ) {
324 if ( $this->expandTemplates && !$this->parseContent ) {
325 # XXX: implement template expansion for all content types in ContentHandler?
326 if ( $content->getModel() === CONTENT_MODEL_WIKITEXT ) {
327 $text = $content->getNativeData();
329 $text = $wgParser->preprocess(
332 ParserOptions::newFromContext( $this->getContext() )
336 'apierror-templateexpansion-notwikitext
',
337 wfEscapeWikiText( $title->getPrefixedText() ),
340 $vals['badcontentformat
'] = true;
344 if ( $this->parseContent ) {
345 $po = $content->getParserOutput(
348 ParserOptions::newFromContext( $this->getContext() )
350 $text = $po->getText();
353 if ( $text === null ) {
354 $format = $this->contentFormat ?: $content->getDefaultFormat();
355 $model = $content->getModel();
357 if ( !$content->isSupportedFormat( $format ) ) {
358 $name = wfEscapeWikiText( $title->getPrefixedText() );
359 $this->addWarning( [ 'apierror-badformat
', $this->contentFormat, $model, $name ] );
360 $vals['badcontentformat
'] = true;
363 $text = $content->serialize( $format );
364 // always include format and model.
365 // Format is needed to deserialize, model is needed to interpret.
366 $vals['contentformat
'] = $format;
367 $vals['contentmodel
'] = $model;
371 if ( $text !== false ) {
372 ApiResult::setContentValue( $vals, 'content', $text );
376 if ( $content && ( !is_null( $this->diffto ) || !is_null( $this->difftotext ) ) ) {
377 static $n = 0; // Number of uncached diffs we've had
379 if ( $n < $this->
getConfig()->
get(
'APIMaxUncachedDiffs' ) ) {
385 if ( !is_null( $this->difftotext ) ) {
386 $model =
$title->getContentModel();
388 if ( $this->contentFormat
392 $this->
addWarning( [
'apierror-badformat', $this->contentFormat, $model,
$name ] );
393 $vals[
'diff'][
'badcontentformat'] =
true;
403 if ( $this->difftotextpst ) {
405 $difftocontent = $difftocontent->preSaveTransform(
$title,
$user, $popts );
409 $engine->setContent( $content, $difftocontent );
413 $vals[
'diff'][
'from'] =
$engine->getOldid();
414 $vals[
'diff'][
'to'] =
$engine->getNewid();
417 $difftext =
$engine->getDiffBody();
419 if ( !
$engine->wasCacheHit() ) {
424 $vals[
'diff'][
'notcached'] =
true;
429 $vals[
'suppressed'] =
true;
465 'ids' =>
'apihelp-query+revisions+base-paramvalue-prop-ids',
466 'flags' =>
'apihelp-query+revisions+base-paramvalue-prop-flags',
467 'timestamp' =>
'apihelp-query+revisions+base-paramvalue-prop-timestamp',
468 'user' =>
'apihelp-query+revisions+base-paramvalue-prop-user',
469 'userid' =>
'apihelp-query+revisions+base-paramvalue-prop-userid',
470 'size' =>
'apihelp-query+revisions+base-paramvalue-prop-size',
471 'sha1' =>
'apihelp-query+revisions+base-paramvalue-prop-sha1',
472 'contentmodel' =>
'apihelp-query+revisions+base-paramvalue-prop-contentmodel',
473 'comment' =>
'apihelp-query+revisions+base-paramvalue-prop-comment',
474 'parsedcomment' =>
'apihelp-query+revisions+base-paramvalue-prop-parsedcomment',
475 'content' =>
'apihelp-query+revisions+base-paramvalue-prop-content',
476 'tags' =>
'apihelp-query+revisions+base-paramvalue-prop-tags',
477 'parsetree' => [
'apihelp-query+revisions+base-paramvalue-prop-parsetree',
488 'expandtemplates' => [
490 ApiBase::PARAM_HELP_MSG =>
'apihelp-query+revisions+base-param-expandtemplates',
parseParameters( $params)
Parse the parameters into the various instance fields.
getConfig()
Get the Config object.
static getForModelID( $modelId)
Returns the ContentHandler singleton for the given model ID.
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a account $user
getContext()
Get the base IContextSource object.
getUserText( $audience=self::FOR_PUBLIC, User $user=null)
Fetch revision's username if it's available to the specified audience.
static getAllContentFormats()
addWarning( $msg, $code=null, $data=null)
Add a warning for this module.
encodeParamName( $paramName)
Overrides ApiBase to prepend 'g' to every generator parameter.
static newFromId( $id, $flags=0)
Load a page revision from a given revision ID number.
per default it will return the text for text based content
getUser( $audience=self::FOR_PUBLIC, User $user=null)
Fetch revision's user id if it's available to the specified audience.
getSize()
Returns the length of the text in this revision, or null if unknown.
dieWithError( $msg, $code=null, $data=null, $httpCode=null)
Abort execution with an error.
const PARAM_HELP_MSG
(string|array|Message) Specify an alternative i18n documentation message for this parameter.
msg( $key)
Get a Message object with context set Parameters are the same as wfMessage()
getContent( $audience=self::FOR_PUBLIC, User $user=null)
Fetch revision content if it's available to the specified audience.
wfTimestamp( $outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
const PARAM_TYPE
(string|string[]) Either an array of allowed value strings, or a string type as described below.
getResult()
Get the result object.
getParentId()
Get parent revision ID (the original previous page revision)
getContentHandler()
Returns the content handler appropriate for this revision's content model.
Allows to change the fields on the form that will be generated $name
const CONTENT_MODEL_WIKITEXT
getSha1()
Returns the base36 sha1 of the text in this revision, or null if unknown.
getUser()
Get the User object.
getContentModel()
Returns the content model for this revision.
This class contains a list of pages that the client has requested.
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
static setContentValue(array &$arr, $name, $value, $flags=0)
Add an output value to the array by name and mark as META_CONTENT.
to move a page</td >< td > &*You are moving the page across *A non empty talk page already exists under the new or *You uncheck the box below In those you will have to move or merge the page manually if desired</td >< td > be sure to &You are responsible for making sure that links continue to point where they are supposed to go Note that the page will &a page at the new title
A base class for functions common to producing a list of revisions.
const PARAM_DEPRECATED
(boolean) Is the parameter deprecated (will show a warning)?
const PARAM_MIN
(integer) Lowest value allowed for the parameter, for PARAM_TYPE 'integer' and 'limit'.
An IContextSource implementation which will inherit context from another source but allow individual ...
namespace and then decline to actually register it file or subcat img or subcat $title
const LIMIT_BIG1
Fast query, standard limit.
getAllowedParams()
Returns an array of allowed parameters (parameter name) => (default value) or (parameter name) => (ar...
const PARAM_MAX
(integer) Max value allowed for the parameter, for PARAM_TYPE 'integer' and 'limit'.
the value to return A Title object or null for latest all implement SearchIndexField $engine
when a variable name is used in a it is silently declared as a new masking the global
execute()
Evaluates the parameters, performs the requested query, and sets up the result.
static makeContent( $text, Title $title=null, $modelId=null, $format=null)
Convenience function for creating a Content object from a given textual representation.
getModulePrefix()
Get parameter prefix (usually two letters or an empty string).
getTitle()
Returns the title of the page associated with this entry or null.
extractRevisionInfo(Revision $revision, $row)
Extract information from the Revision.
static setIndexedTagName(array &$arr, $tag)
Set the tag name for numeric-keyed values in XML format.
static newFromContext(IContextSource $context)
Get a ParserOptions object from a IContextSource object.
addDeprecation( $msg, $feature, $data=[])
Add a deprecation warning for this module.
const LIMIT_SML2
Slow query, apihighlimits limit.
wfEscapeWikiText( $text)
Escapes the given text so that it may be output using addWikiText() without any linking,...
getCacheMode( $params)
Get the cache mode for the data generated by this module.
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
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...
const LIMIT_BIG2
Fast query, apihighlimits limit.
validateLimit( $paramName, &$value, $min, $max, $botMax=null, $enforceLimits=false)
Validate the value against the minimum and user/bot maximum limits.
const PARAM_DFLT
(null|boolean|integer|string) Default value of the parameter.
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.
getComment( $audience=self::FOR_PUBLIC, User $user=null)
Fetch revision comment if it's available to the specified audience.
const PARAM_MAX2
(integer) Max value allowed for the parameter for users with the apihighlimits right,...
getMain()
Get the main module.
executeGenerator( $resultPageSet)
Execute this module as a generator.
run(ApiPageSet $resultPageSet=null)
const PARAM_HELP_MSG_PER_VALUE
((string|array|Message)[]) When PARAM_TYPE is an array, this is an array mapping those values to $msg...
userCanSeeRevDel()
Check whether the current user has permission to view revision-deleted fields.
userCan( $field, User $user=null)
Determine if the current user is allowed to view a particular field of this revision,...
const LIMIT_SML1
Slow query, standard limit.