MediaWiki  1.29.1
ApiTag.php
Go to the documentation of this file.
1 <?php
2 
26 class ApiTag extends ApiBase {
27 
28  public function execute() {
29  $params = $this->extractRequestParams();
30  $user = $this->getUser();
31 
32  // make sure the user is allowed
33  $this->checkUserRightsAny( 'changetags' );
34 
35  if ( $user->isBlocked() ) {
36  $this->dieBlocked( $user->getBlock() );
37  }
38 
39  // Check if user can add tags
40  if ( count( $params['tags'] ) ) {
42  if ( !$ableToTag->isOk() ) {
43  $this->dieStatus( $ableToTag );
44  }
45  }
46 
47  // validate and process each revid, rcid and logid
48  $this->requireAtLeastOneParameter( $params, 'revid', 'rcid', 'logid' );
49  $ret = [];
50  if ( $params['revid'] ) {
51  foreach ( $params['revid'] as $id ) {
52  $ret[] = $this->processIndividual( 'revid', $params, $id );
53  }
54  }
55  if ( $params['rcid'] ) {
56  foreach ( $params['rcid'] as $id ) {
57  $ret[] = $this->processIndividual( 'rcid', $params, $id );
58  }
59  }
60  if ( $params['logid'] ) {
61  foreach ( $params['logid'] as $id ) {
62  $ret[] = $this->processIndividual( 'logid', $params, $id );
63  }
64  }
65 
67  $this->getResult()->addValue( null, $this->getModuleName(), $ret );
68  }
69 
70  protected static function validateLogId( $logid ) {
71  $dbr = wfGetDB( DB_REPLICA );
72  $result = $dbr->selectField( 'logging', 'log_id', [ 'log_id' => $logid ],
73  __METHOD__ );
74  return (bool)$result;
75  }
76 
77  protected function processIndividual( $type, $params, $id ) {
78  $idResult = [ $type => $id ];
79 
80  // validate the ID
81  $valid = false;
82  switch ( $type ) {
83  case 'rcid':
84  $valid = RecentChange::newFromId( $id );
85  break;
86  case 'revid':
87  $valid = Revision::newFromId( $id );
88  break;
89  case 'logid':
90  $valid = self::validateLogId( $id );
91  break;
92  }
93 
94  if ( !$valid ) {
95  $idResult['status'] = 'error';
96  // Messages: apierror-nosuchrcid apierror-nosuchrevid apierror-nosuchlogid
97  $idResult += $this->getErrorFormatter()->formatMessage( [ "apierror-nosuch$type", $id ] );
98  return $idResult;
99  }
100 
102  $params['remove'],
103  ( $type === 'rcid' ? $id : null ),
104  ( $type === 'revid' ? $id : null ),
105  ( $type === 'logid' ? $id : null ),
106  null,
107  $params['reason'],
108  $this->getUser() );
109 
110  if ( !$status->isOK() ) {
111  if ( $status->hasMessage( 'actionthrottledtext' ) ) {
112  $idResult['status'] = 'skipped';
113  } else {
114  $idResult['status'] = 'failure';
115  $idResult['errors'] = $this->getErrorFormatter()->arrayFromStatus( $status, 'error' );
116  }
117  } else {
118  $idResult['status'] = 'success';
119  if ( is_null( $status->value->logId ) ) {
120  $idResult['noop'] = true;
121  } else {
122  $idResult['actionlogid'] = $status->value->logId;
123  $idResult['added'] = $status->value->addedTags;
124  ApiResult::setIndexedTagName( $idResult['added'], 't' );
125  $idResult['removed'] = $status->value->removedTags;
126  ApiResult::setIndexedTagName( $idResult['removed'], 't' );
127 
128  if ( $params['tags'] ) {
129  ChangeTags::addTags( $params['tags'], null, null, $status->value->logId );
130  }
131  }
132  }
133  return $idResult;
134  }
135 
136  public function mustBePosted() {
137  return true;
138  }
139 
140  public function isWriteMode() {
141  return true;
142  }
143 
144  public function getAllowedParams() {
145  return [
146  'rcid' => [
147  ApiBase::PARAM_TYPE => 'integer',
148  ApiBase::PARAM_ISMULTI => true,
149  ],
150  'revid' => [
151  ApiBase::PARAM_TYPE => 'integer',
152  ApiBase::PARAM_ISMULTI => true,
153  ],
154  'logid' => [
155  ApiBase::PARAM_TYPE => 'integer',
156  ApiBase::PARAM_ISMULTI => true,
157  ],
158  'add' => [
159  ApiBase::PARAM_TYPE => 'tags',
160  ApiBase::PARAM_ISMULTI => true,
161  ],
162  'remove' => [
163  ApiBase::PARAM_TYPE => 'string',
164  ApiBase::PARAM_ISMULTI => true,
165  ],
166  'reason' => [
167  ApiBase::PARAM_DFLT => '',
168  ],
169  'tags' => [
170  ApiBase::PARAM_TYPE => 'tags',
171  ApiBase::PARAM_ISMULTI => true,
172  ],
173  ];
174  }
175 
176  public function needsToken() {
177  return 'csrf';
178  }
179 
180  protected function getExamplesMessages() {
181  return [
182  'action=tag&revid=123&add=vandalism&token=123ABC'
183  => 'apihelp-tag-example-rev',
184  'action=tag&logid=123&remove=spam&reason=Wrongly+applied&token=123ABC'
185  => 'apihelp-tag-example-log',
186  ];
187  }
188 
189  public function getHelpUrls() {
190  return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Tag';
191  }
192 }
ApiTag
Definition: ApiTag.php:26
Revision\newFromId
static newFromId( $id, $flags=0)
Load a page revision from a given revision ID number.
Definition: Revision.php:116
ApiTag\validateLogId
static validateLogId( $logid)
Definition: ApiTag.php:70
captcha-old.count
count
Definition: captcha-old.py:225
$result
The index of the header message $result[1]=The index of the body text message $result[2 through n]=Parameters passed to body text message. Please note the header message cannot receive/use parameters. 'ImportHandleLogItemXMLTag':When parsing a XML tag in a log item. Return false to stop further processing of the tag $reader:XMLReader object $logInfo:Array of information 'ImportHandlePageXMLTag':When parsing a XML tag in a page. Return false to stop further processing of the tag $reader:XMLReader object & $pageInfo:Array of information 'ImportHandleRevisionXMLTag':When parsing a XML tag in a page revision. Return false to stop further processing of the tag $reader:XMLReader object $pageInfo:Array of page information $revisionInfo:Array of revision information 'ImportHandleToplevelXMLTag':When parsing a top level XML tag. Return false to stop further processing of the tag $reader:XMLReader object 'ImportHandleUploadXMLTag':When parsing a XML tag in a file upload. Return false to stop further processing of the tag $reader:XMLReader object $revisionInfo:Array of information 'ImportLogInterwikiLink':Hook to change the interwiki link used in log entries and edit summaries for transwiki imports. & $fullInterwikiPrefix:Interwiki prefix, may contain colons. & $pageTitle:String that contains page title. 'ImportSources':Called when reading from the $wgImportSources configuration variable. Can be used to lazy-load the import sources list. & $importSources:The value of $wgImportSources. Modify as necessary. See the comment in DefaultSettings.php for the detail of how to structure this array. 'InfoAction':When building information to display on the action=info page. $context:IContextSource object & $pageInfo:Array of information 'InitializeArticleMaybeRedirect':MediaWiki check to see if title is a redirect. & $title:Title object for the current page & $request:WebRequest & $ignoreRedirect:boolean to skip redirect check & $target:Title/string of redirect target & $article:Article object 'InternalParseBeforeLinks':during Parser 's internalParse method before links but after nowiki/noinclude/includeonly/onlyinclude and other processings. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InternalParseBeforeSanitize':during Parser 's internalParse method just before the parser removes unwanted/dangerous HTML tags and after nowiki/noinclude/includeonly/onlyinclude and other processings. Ideal for syntax-extensions after template/parser function execution which respect nowiki and HTML-comments. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InterwikiLoadPrefix':When resolving if a given prefix is an interwiki or not. Return true without providing an interwiki to continue interwiki search. $prefix:interwiki prefix we are looking for. & $iwData:output array describing the interwiki with keys iw_url, iw_local, iw_trans and optionally iw_api and iw_wikiid. 'InvalidateEmailComplete':Called after a user 's email has been invalidated successfully. $user:user(object) whose email is being invalidated 'IRCLineURL':When constructing the URL to use in an IRC notification. Callee may modify $url and $query, URL will be constructed as $url . $query & $url:URL to index.php & $query:Query string $rc:RecentChange object that triggered url generation 'IsFileCacheable':Override the result of Article::isFileCacheable()(if true) & $article:article(object) being checked 'IsTrustedProxy':Override the result of IP::isTrustedProxy() & $ip:IP being check & $result:Change this value to override the result of IP::isTrustedProxy() 'IsUploadAllowedFromUrl':Override the result of UploadFromUrl::isAllowedUrl() $url:URL used to upload from & $allowed:Boolean indicating if uploading is allowed for given URL 'isValidEmailAddr':Override the result of Sanitizer::validateEmail(), for instance to return false if the domain name doesn 't match your organization. $addr:The e-mail address entered by the user & $result:Set this and return false to override the internal checks 'isValidPassword':Override the result of User::isValidPassword() $password:The password entered by the user & $result:Set this and return false to override the internal checks $user:User the password is being validated for 'Language::getMessagesFileName':$code:The language code or the language we 're looking for a messages file for & $file:The messages file path, you can override this to change the location. 'LanguageGetMagic':DEPRECATED! Use $magicWords in a file listed in $wgExtensionMessagesFiles instead. Use this to define synonyms of magic words depending of the language & $magicExtensions:associative array of magic words synonyms $lang:language code(string) 'LanguageGetNamespaces':Provide custom ordering for namespaces or remove namespaces. Do not use this hook to add namespaces. Use CanonicalNamespaces for that. & $namespaces:Array of namespaces indexed by their numbers 'LanguageGetSpecialPageAliases':DEPRECATED! Use $specialPageAliases in a file listed in $wgExtensionMessagesFiles instead. Use to define aliases of special pages names depending of the language & $specialPageAliases:associative array of magic words synonyms $lang:language code(string) 'LanguageGetTranslatedLanguageNames':Provide translated language names. & $names:array of language code=> language name $code:language of the preferred translations 'LanguageLinks':Manipulate a page 's language links. This is called in various places to allow extensions to define the effective language links for a page. $title:The page 's Title. & $links:Array with elements of the form "language:title" in the order that they will be output. & $linkFlags:Associative array mapping prefixed links to arrays of flags. Currently unused, but planned to provide support for marking individual language links in the UI, e.g. for featured articles. 'LanguageSelector':Hook to change the language selector available on a page. $out:The output page. $cssClassName:CSS class name of the language selector. 'LinkBegin':DEPRECATED! Use HtmlPageLinkRendererBegin instead. Used when generating internal and interwiki links in Linker::link(), before processing starts. Return false to skip default processing and return $ret. See documentation for Linker::link() for details on the expected meanings of parameters. $skin:the Skin object $target:the Title that the link is pointing to & $html:the contents that the< a > tag should have(raw HTML) $result
Definition: hooks.txt:1954
ApiBase\PARAM_TYPE
const PARAM_TYPE
(string|string[]) Either an array of allowed value strings, or a string type as described below.
Definition: ApiBase.php:91
ApiBase\getResult
getResult()
Get the result object.
Definition: ApiBase.php:610
$status
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist Do not use this to implement individual filters if they are compatible with the ChangesListFilter and ChangesListFilterGroup structure use sub classes of those in conjunction with the ChangesListSpecialPageStructuredFilters hook This hook can be used to implement filters that do not implement that or custom behavior that is not an individual filter e g Watchlist and Watchlist you will want to construct new ChangesListBooleanFilter or ChangesListStringOptionsFilter objects When constructing you specify which group they belong to You can reuse existing or create your you must register them with $special registerFilterGroup removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set $status
Definition: hooks.txt:1049
ApiTag\isWriteMode
isWriteMode()
Indicates whether this module requires write mode.
Definition: ApiTag.php:140
$user
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
Definition: hooks.txt:246
ApiBase\checkUserRightsAny
checkUserRightsAny( $rights, $user=null)
Helper function for permission-denied errors.
Definition: ApiBase.php:1890
$params
$params
Definition: styleTest.css.php:40
$type
do that in ParserLimitReportFormat instead use this to modify the parameters of the image and a DIV can begin in one section and end in another Make sure your code can handle that case gracefully See the EditSectionClearerLink extension for an example zero but section is usually empty its values are the globals values before the output is cached my talk my contributions etc etc otherwise the built in rate limiting checks are if enabled allows for interception of redirect as a string mapping parameter names to values & $type
Definition: hooks.txt:2536
ContextSource\getUser
getUser()
Get the User object.
Definition: ContextSource.php:133
ApiTag\execute
execute()
Evaluates the parameters, performs the requested query, and sets up the result.
Definition: ApiTag.php:28
php
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
Definition: injection.txt:35
ApiBase
This abstract class implements many basic API functions, and is the base of all API classes.
Definition: ApiBase.php:41
ApiBase\dieBlocked
dieBlocked(Block $block)
Throw an ApiUsageException, which will (if uncaught) call the main module's error handler and die wit...
Definition: ApiBase.php:1836
wfGetDB
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
Definition: GlobalFunctions.php:3060
ApiTag\processIndividual
processIndividual( $type, $params, $id)
Definition: ApiTag.php:77
ApiTag\getAllowedParams
getAllowedParams()
Returns an array of allowed parameters (parameter name) => (default value) or (parameter name) => (ar...
Definition: ApiTag.php:144
ApiTag\needsToken
needsToken()
Returns the token type this module requires in order to execute.
Definition: ApiTag.php:176
DB_REPLICA
const DB_REPLICA
Definition: defines.php:25
RecentChange\newFromId
static newFromId( $rcid)
Obtain the recent change with a given rc_id value.
Definition: RecentChange.php:172
ApiBase\extractRequestParams
extractRequestParams( $parseLimit=true)
Using getAllowedParams(), this function makes an array of the values provided by the user,...
Definition: ApiBase.php:718
ApiResult\setIndexedTagName
static setIndexedTagName(array &$arr, $tag)
Set the tag name for numeric-keyed values in XML format.
Definition: ApiResult.php:616
$ret
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
Definition: hooks.txt:1956
ApiTag\getExamplesMessages
getExamplesMessages()
Returns usage examples for this module.
Definition: ApiTag.php:180
ChangeTags\canAddTagsAccompanyingChange
static canAddTagsAccompanyingChange(array $tags, User $user=null)
Is it OK to allow the user to apply all the specified tags at the same time as they edit/make the cha...
Definition: ChangeTags.php:395
ApiBase\requireAtLeastOneParameter
requireAtLeastOneParameter( $params, $required)
Die if none of a certain set of parameters is set and not false.
Definition: ApiBase.php:820
ApiTag\mustBePosted
mustBePosted()
Indicates whether this module must be called with a POST request.
Definition: ApiTag.php:136
$dbr
if(! $regexes) $dbr
Definition: cleanup.php:94
ApiBase\PARAM_DFLT
const PARAM_DFLT
(null|boolean|integer|string) Default value of the parameter.
Definition: ApiBase.php:52
as
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
Definition: distributors.txt:9
ApiBase\dieStatus
dieStatus(StatusValue $status)
Throw an ApiUsageException based on the Status object.
Definition: ApiBase.php:1861
ApiBase\getModuleName
getModuleName()
Get the name of the module being executed by this instance.
Definition: ApiBase.php:490
ApiBase\PARAM_ISMULTI
const PARAM_ISMULTI
(boolean) Accept multiple pipe-separated values for this parameter (e.g.
Definition: ApiBase.php:55
ApiBase\getErrorFormatter
getErrorFormatter()
Get the error formatter.
Definition: ApiBase.php:624
ApiTag\getHelpUrls
getHelpUrls()
Return links to more detailed help pages about the module.
Definition: ApiTag.php:189
ChangeTags\updateTagsWithChecks
static updateTagsWithChecks( $tagsToAdd, $tagsToRemove, $rc_id, $rev_id, $log_id, $params, $reason, User $user)
Adds and/or removes tags to/from a given change, checking whether it is allowed first,...
Definition: ChangeTags.php:529
ChangeTags\addTags
static addTags( $tags, $rc_id=null, $rev_id=null, $log_id=null, $params=null, RecentChange $rc=null)
Add tags to a change given its rc_id, rev_id and/or log_id.
Definition: ChangeTags.php:136