Merge "RCFilters: Filter duplicates when filtering for multiple tags"
[lhc/web/wiklou.git] / includes / changetags / ChangeTags.php
1 <?php
2 /**
3 * Recent changes tagging.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
19 *
20 * @file
21 * @ingroup Change tagging
22 */
23
24 use MediaWiki\MediaWikiServices;
25 use Wikimedia\Rdbms\Database;
26
27 class ChangeTags {
28 /**
29 * Can't delete tags with more than this many uses. Similar in intent to
30 * the bigdelete user right
31 * @todo Use the job queue for tag deletion to avoid this restriction
32 */
33 const MAX_DELETE_USES = 5000;
34
35 /**
36 * @var string[]
37 */
38 private static $coreTags = [ 'mw-contentmodelchange' ];
39
40 /**
41 * Creates HTML for the given tags
42 *
43 * @param string $tags Comma-separated list of tags
44 * @param string $page A label for the type of action which is being displayed,
45 * for example: 'history', 'contributions' or 'newpages'
46 * @param IContextSource|null $context
47 * @note Even though it takes null as a valid argument, an IContextSource is preferred
48 * in a new code, as the null value is subject to change in the future
49 * @return array Array with two items: (html, classes)
50 * - html: String: HTML for displaying the tags (empty string when param $tags is empty)
51 * - classes: Array of strings: CSS classes used in the generated html, one class for each tag
52 */
53 public static function formatSummaryRow( $tags, $page, IContextSource $context = null ) {
54 if ( !$tags ) {
55 return [ '', [] ];
56 }
57 if ( !$context ) {
58 $context = RequestContext::getMain();
59 }
60
61 $classes = [];
62
63 $tags = explode( ',', $tags );
64 $displayTags = [];
65 foreach ( $tags as $tag ) {
66 if ( !$tag ) {
67 continue;
68 }
69 $description = self::tagDescription( $tag, $context );
70 if ( $description === false ) {
71 continue;
72 }
73 $displayTags[] = Xml::tags(
74 'span',
75 [ 'class' => 'mw-tag-marker ' .
76 Sanitizer::escapeClass( "mw-tag-marker-$tag" ) ],
77 $description
78 );
79 $classes[] = Sanitizer::escapeClass( "mw-tag-$tag" );
80 }
81
82 if ( !$displayTags ) {
83 return [ '', [] ];
84 }
85
86 $markers = $context->msg( 'tag-list-wrapper' )
87 ->numParams( count( $displayTags ) )
88 ->rawParams( $context->getLanguage()->commaList( $displayTags ) )
89 ->parse();
90 $markers = Xml::tags( 'span', [ 'class' => 'mw-tag-markers' ], $markers );
91
92 return [ $markers, $classes ];
93 }
94
95 /**
96 * Get a short description for a tag.
97 *
98 * Checks if message key "mediawiki:tag-$tag" exists. If it does not,
99 * returns the HTML-escaped tag name. Uses the message if the message
100 * exists, provided it is not disabled. If the message is disabled,
101 * we consider the tag hidden, and return false.
102 *
103 * @param string $tag Tag
104 * @param IContextSource $context
105 * @return string|bool Tag description or false if tag is to be hidden.
106 * @since 1.25 Returns false if tag is to be hidden.
107 */
108 public static function tagDescription( $tag, IContextSource $context ) {
109 $msg = $context->msg( "tag-$tag" );
110 if ( !$msg->exists() ) {
111 // No such message, so return the HTML-escaped tag name.
112 return htmlspecialchars( $tag );
113 }
114 if ( $msg->isDisabled() ) {
115 // The message exists but is disabled, hide the tag.
116 return false;
117 }
118
119 // Message exists and isn't disabled, use it.
120 return $msg->parse();
121 }
122
123 /**
124 * Get the message object for the tag's long description.
125 *
126 * Checks if message key "mediawiki:tag-$tag-description" exists. If it does not,
127 * or if message is disabled, returns false. Otherwise, returns the message object
128 * for the long description.
129 *
130 * @param string $tag Tag
131 * @param IContextSource $context
132 * @return Message|bool Message object of the tag long description or false if
133 * there is no description.
134 */
135 public static function tagLongDescriptionMessage( $tag, IContextSource $context ) {
136 $msg = $context->msg( "tag-$tag-description" );
137 if ( !$msg->exists() ) {
138 return false;
139 }
140 if ( $msg->isDisabled() ) {
141 // The message exists but is disabled, hide the description.
142 return false;
143 }
144
145 // Message exists and isn't disabled, use it.
146 return $msg;
147 }
148
149 /**
150 * Add tags to a change given its rc_id, rev_id and/or log_id
151 *
152 * @param string|string[] $tags Tags to add to the change
153 * @param int|null $rc_id The rc_id of the change to add the tags to
154 * @param int|null $rev_id The rev_id of the change to add the tags to
155 * @param int|null $log_id The log_id of the change to add the tags to
156 * @param string $params Params to put in the ct_params field of table 'change_tag'
157 * @param RecentChange|null $rc Recent change, in case the tagging accompanies the action
158 * (this should normally be the case)
159 *
160 * @throws MWException
161 * @return bool False if no changes are made, otherwise true
162 */
163 public static function addTags( $tags, $rc_id = null, $rev_id = null,
164 $log_id = null, $params = null, RecentChange $rc = null
165 ) {
166 $result = self::updateTags( $tags, null, $rc_id, $rev_id, $log_id, $params, $rc );
167 return (bool)$result[0];
168 }
169
170 /**
171 * Add and remove tags to/from a change given its rc_id, rev_id and/or log_id,
172 * without verifying that the tags exist or are valid. If a tag is present in
173 * both $tagsToAdd and $tagsToRemove, it will be removed.
174 *
175 * This function should only be used by extensions to manipulate tags they
176 * have registered using the ListDefinedTags hook. When dealing with user
177 * input, call updateTagsWithChecks() instead.
178 *
179 * @param string|array|null $tagsToAdd Tags to add to the change
180 * @param string|array|null $tagsToRemove Tags to remove from the change
181 * @param int|null &$rc_id The rc_id of the change to add the tags to.
182 * Pass a variable whose value is null if the rc_id is not relevant or unknown.
183 * @param int|null &$rev_id The rev_id of the change to add the tags to.
184 * Pass a variable whose value is null if the rev_id is not relevant or unknown.
185 * @param int|null &$log_id The log_id of the change to add the tags to.
186 * Pass a variable whose value is null if the log_id is not relevant or unknown.
187 * @param string $params Params to put in the ct_params field of table
188 * 'change_tag' when adding tags
189 * @param RecentChange|null $rc Recent change being tagged, in case the tagging accompanies
190 * the action
191 * @param User|null $user Tagging user, in case the tagging is subsequent to the tagged action
192 *
193 * @throws MWException When $rc_id, $rev_id and $log_id are all null
194 * @return array Index 0 is an array of tags actually added, index 1 is an
195 * array of tags actually removed, index 2 is an array of tags present on the
196 * revision or log entry before any changes were made
197 *
198 * @since 1.25
199 */
200 public static function updateTags( $tagsToAdd, $tagsToRemove, &$rc_id = null,
201 &$rev_id = null, &$log_id = null, $params = null, RecentChange $rc = null,
202 User $user = null
203 ) {
204 $tagsToAdd = array_filter( (array)$tagsToAdd ); // Make sure we're submitting all tags...
205 $tagsToRemove = array_filter( (array)$tagsToRemove );
206
207 if ( !$rc_id && !$rev_id && !$log_id ) {
208 throw new MWException( 'At least one of: RCID, revision ID, and log ID MUST be ' .
209 'specified when adding or removing a tag from a change!' );
210 }
211
212 $dbw = wfGetDB( DB_MASTER );
213
214 // Might as well look for rcids and so on.
215 if ( !$rc_id ) {
216 // Info might be out of date, somewhat fractionally, on replica DB.
217 // LogEntry/LogPage and WikiPage match rev/log/rc timestamps,
218 // so use that relation to avoid full table scans.
219 if ( $log_id ) {
220 $rc_id = $dbw->selectField(
221 [ 'logging', 'recentchanges' ],
222 'rc_id',
223 [
224 'log_id' => $log_id,
225 'rc_timestamp = log_timestamp',
226 'rc_logid = log_id'
227 ],
228 __METHOD__
229 );
230 } elseif ( $rev_id ) {
231 $rc_id = $dbw->selectField(
232 [ 'revision', 'recentchanges' ],
233 'rc_id',
234 [
235 'rev_id' => $rev_id,
236 'rc_timestamp = rev_timestamp',
237 'rc_this_oldid = rev_id'
238 ],
239 __METHOD__
240 );
241 }
242 } elseif ( !$log_id && !$rev_id ) {
243 // Info might be out of date, somewhat fractionally, on replica DB.
244 $log_id = $dbw->selectField(
245 'recentchanges',
246 'rc_logid',
247 [ 'rc_id' => $rc_id ],
248 __METHOD__
249 );
250 $rev_id = $dbw->selectField(
251 'recentchanges',
252 'rc_this_oldid',
253 [ 'rc_id' => $rc_id ],
254 __METHOD__
255 );
256 }
257
258 if ( $log_id && !$rev_id ) {
259 $rev_id = $dbw->selectField(
260 'log_search',
261 'ls_value',
262 [ 'ls_field' => 'associated_rev_id', 'ls_log_id' => $log_id ],
263 __METHOD__
264 );
265 } elseif ( !$log_id && $rev_id ) {
266 $log_id = $dbw->selectField(
267 'log_search',
268 'ls_log_id',
269 [ 'ls_field' => 'associated_rev_id', 'ls_value' => $rev_id ],
270 __METHOD__
271 );
272 }
273
274 // update the tag_summary row
275 $prevTags = [];
276 if ( !self::updateTagSummaryRow( $tagsToAdd, $tagsToRemove, $rc_id, $rev_id,
277 $log_id, $prevTags )
278 ) {
279 // nothing to do
280 return [ [], [], $prevTags ];
281 }
282
283 // insert a row into change_tag for each new tag
284 if ( count( $tagsToAdd ) ) {
285 $tagsRows = [];
286 foreach ( $tagsToAdd as $tag ) {
287 // Filter so we don't insert NULLs as zero accidentally.
288 // Keep in mind that $rc_id === null means "I don't care/know about the
289 // rc_id, just delete $tag on this revision/log entry". It doesn't
290 // mean "only delete tags on this revision/log WHERE rc_id IS NULL".
291 $tagsRows[] = array_filter(
292 [
293 'ct_tag' => $tag,
294 'ct_rc_id' => $rc_id,
295 'ct_log_id' => $log_id,
296 'ct_rev_id' => $rev_id,
297 'ct_params' => $params
298 ]
299 );
300 }
301
302 $dbw->insert( 'change_tag', $tagsRows, __METHOD__, [ 'IGNORE' ] );
303 }
304
305 // delete from change_tag
306 if ( count( $tagsToRemove ) ) {
307 foreach ( $tagsToRemove as $tag ) {
308 $conds = array_filter(
309 [
310 'ct_tag' => $tag,
311 'ct_rc_id' => $rc_id,
312 'ct_log_id' => $log_id,
313 'ct_rev_id' => $rev_id
314 ]
315 );
316 $dbw->delete( 'change_tag', $conds, __METHOD__ );
317 }
318 }
319
320 self::purgeTagUsageCache();
321
322 Hooks::run( 'ChangeTagsAfterUpdateTags', [ $tagsToAdd, $tagsToRemove, $prevTags,
323 $rc_id, $rev_id, $log_id, $params, $rc, $user ] );
324
325 return [ $tagsToAdd, $tagsToRemove, $prevTags ];
326 }
327
328 /**
329 * Adds or removes a given set of tags to/from the relevant row of the
330 * tag_summary table. Modifies the tagsToAdd and tagsToRemove arrays to
331 * reflect the tags that were actually added and/or removed.
332 *
333 * @param array &$tagsToAdd
334 * @param array &$tagsToRemove If a tag is present in both $tagsToAdd and
335 * $tagsToRemove, it will be removed
336 * @param int|null $rc_id Null if not known or not applicable
337 * @param int|null $rev_id Null if not known or not applicable
338 * @param int|null $log_id Null if not known or not applicable
339 * @param array &$prevTags Optionally outputs a list of the tags that were
340 * in the tag_summary row to begin with
341 * @return bool True if any modifications were made, otherwise false
342 * @since 1.25
343 */
344 protected static function updateTagSummaryRow( &$tagsToAdd, &$tagsToRemove,
345 $rc_id, $rev_id, $log_id, &$prevTags = []
346 ) {
347 $dbw = wfGetDB( DB_MASTER );
348
349 $tsConds = array_filter( [
350 'ts_rc_id' => $rc_id,
351 'ts_rev_id' => $rev_id,
352 'ts_log_id' => $log_id
353 ] );
354
355 // Can't both add and remove a tag at the same time...
356 $tagsToAdd = array_diff( $tagsToAdd, $tagsToRemove );
357
358 // Update the summary row.
359 // $prevTags can be out of date on replica DBs, especially when addTags is called consecutively,
360 // causing loss of tags added recently in tag_summary table.
361 $prevTags = $dbw->selectField( 'tag_summary', 'ts_tags', $tsConds, __METHOD__ );
362 $prevTags = $prevTags ? $prevTags : '';
363 $prevTags = array_filter( explode( ',', $prevTags ) );
364
365 // add tags
366 $tagsToAdd = array_values( array_diff( $tagsToAdd, $prevTags ) );
367 $newTags = array_unique( array_merge( $prevTags, $tagsToAdd ) );
368
369 // remove tags
370 $tagsToRemove = array_values( array_intersect( $tagsToRemove, $newTags ) );
371 $newTags = array_values( array_diff( $newTags, $tagsToRemove ) );
372
373 sort( $prevTags );
374 sort( $newTags );
375 if ( $prevTags == $newTags ) {
376 // No change.
377 return false;
378 }
379
380 if ( !$newTags ) {
381 // no tags left, so delete the row altogether
382 $dbw->delete( 'tag_summary', $tsConds, __METHOD__ );
383 } else {
384 $dbw->replace( 'tag_summary',
385 [ 'ts_rev_id', 'ts_rc_id', 'ts_log_id' ],
386 array_filter( array_merge( $tsConds, [ 'ts_tags' => implode( ',', $newTags ) ] ) ),
387 __METHOD__
388 );
389 }
390
391 return true;
392 }
393
394 /**
395 * Helper function to generate a fatal status with a 'not-allowed' type error.
396 *
397 * @param string $msgOne Message key to use in the case of one tag
398 * @param string $msgMulti Message key to use in the case of more than one tag
399 * @param array $tags Restricted tags (passed as $1 into the message, count of
400 * $tags passed as $2)
401 * @return Status
402 * @since 1.25
403 */
404 protected static function restrictedTagError( $msgOne, $msgMulti, $tags ) {
405 $lang = RequestContext::getMain()->getLanguage();
406 $count = count( $tags );
407 return Status::newFatal( ( $count > 1 ) ? $msgMulti : $msgOne,
408 $lang->commaList( $tags ), $count );
409 }
410
411 /**
412 * Is it OK to allow the user to apply all the specified tags at the same time
413 * as they edit/make the change?
414 *
415 * @param array $tags Tags that you are interested in applying
416 * @param User|null $user User whose permission you wish to check, or null if
417 * you don't care (e.g. maintenance scripts)
418 * @return Status
419 * @since 1.25
420 */
421 public static function canAddTagsAccompanyingChange( array $tags, User $user = null ) {
422 if ( !is_null( $user ) ) {
423 if ( !$user->isAllowed( 'applychangetags' ) ) {
424 return Status::newFatal( 'tags-apply-no-permission' );
425 } elseif ( $user->isBlocked() ) {
426 return Status::newFatal( 'tags-apply-blocked', $user->getName() );
427 }
428 }
429
430 // to be applied, a tag has to be explicitly defined
431 $allowedTags = self::listExplicitlyDefinedTags();
432 Hooks::run( 'ChangeTagsAllowedAdd', [ &$allowedTags, $tags, $user ] );
433 $disallowedTags = array_diff( $tags, $allowedTags );
434 if ( $disallowedTags ) {
435 return self::restrictedTagError( 'tags-apply-not-allowed-one',
436 'tags-apply-not-allowed-multi', $disallowedTags );
437 }
438
439 return Status::newGood();
440 }
441
442 /**
443 * Adds tags to a given change, checking whether it is allowed first, but
444 * without adding a log entry. Useful for cases where the tag is being added
445 * along with the action that generated the change (e.g. tagging an edit as
446 * it is being made).
447 *
448 * Extensions should not use this function, unless directly handling a user
449 * request to add a particular tag. Normally, extensions should call
450 * ChangeTags::updateTags() instead.
451 *
452 * @param array $tags Tags to apply
453 * @param int|null $rc_id The rc_id of the change to add the tags to
454 * @param int|null $rev_id The rev_id of the change to add the tags to
455 * @param int|null $log_id The log_id of the change to add the tags to
456 * @param string $params Params to put in the ct_params field of table
457 * 'change_tag' when adding tags
458 * @param User $user Who to give credit for the action
459 * @return Status
460 * @since 1.25
461 */
462 public static function addTagsAccompanyingChangeWithChecks(
463 array $tags, $rc_id, $rev_id, $log_id, $params, User $user
464 ) {
465 // are we allowed to do this?
466 $result = self::canAddTagsAccompanyingChange( $tags, $user );
467 if ( !$result->isOK() ) {
468 $result->value = null;
469 return $result;
470 }
471
472 // do it!
473 self::addTags( $tags, $rc_id, $rev_id, $log_id, $params );
474
475 return Status::newGood( true );
476 }
477
478 /**
479 * Is it OK to allow the user to adds and remove the given tags tags to/from a
480 * change?
481 *
482 * @param array $tagsToAdd Tags that you are interested in adding
483 * @param array $tagsToRemove Tags that you are interested in removing
484 * @param User|null $user User whose permission you wish to check, or null if
485 * you don't care (e.g. maintenance scripts)
486 * @return Status
487 * @since 1.25
488 */
489 public static function canUpdateTags( array $tagsToAdd, array $tagsToRemove,
490 User $user = null
491 ) {
492 if ( !is_null( $user ) ) {
493 if ( !$user->isAllowed( 'changetags' ) ) {
494 return Status::newFatal( 'tags-update-no-permission' );
495 } elseif ( $user->isBlocked() ) {
496 return Status::newFatal( 'tags-update-blocked', $user->getName() );
497 }
498 }
499
500 if ( $tagsToAdd ) {
501 // to be added, a tag has to be explicitly defined
502 // @todo Allow extensions to define tags that can be applied by users...
503 $explicitlyDefinedTags = self::listExplicitlyDefinedTags();
504 $diff = array_diff( $tagsToAdd, $explicitlyDefinedTags );
505 if ( $diff ) {
506 return self::restrictedTagError( 'tags-update-add-not-allowed-one',
507 'tags-update-add-not-allowed-multi', $diff );
508 }
509 }
510
511 if ( $tagsToRemove ) {
512 // to be removed, a tag must not be defined by an extension, or equivalently it
513 // has to be either explicitly defined or not defined at all
514 // (assuming no edge case of a tag both explicitly-defined and extension-defined)
515 $softwareDefinedTags = self::listSoftwareDefinedTags();
516 $intersect = array_intersect( $tagsToRemove, $softwareDefinedTags );
517 if ( $intersect ) {
518 return self::restrictedTagError( 'tags-update-remove-not-allowed-one',
519 'tags-update-remove-not-allowed-multi', $intersect );
520 }
521 }
522
523 return Status::newGood();
524 }
525
526 /**
527 * Adds and/or removes tags to/from a given change, checking whether it is
528 * allowed first, and adding a log entry afterwards.
529 *
530 * Includes a call to ChangeTag::canUpdateTags(), so your code doesn't need
531 * to do that. However, it doesn't check whether the *_id parameters are a
532 * valid combination. That is up to you to enforce. See ApiTag::execute() for
533 * an example.
534 *
535 * @param array|null $tagsToAdd If none, pass array() or null
536 * @param array|null $tagsToRemove If none, pass array() or null
537 * @param int|null $rc_id The rc_id of the change to add the tags to
538 * @param int|null $rev_id The rev_id of the change to add the tags to
539 * @param int|null $log_id The log_id of the change to add the tags to
540 * @param string $params Params to put in the ct_params field of table
541 * 'change_tag' when adding tags
542 * @param string $reason Comment for the log
543 * @param User $user Who to give credit for the action
544 * @return Status If successful, the value of this Status object will be an
545 * object (stdClass) with the following fields:
546 * - logId: the ID of the added log entry, or null if no log entry was added
547 * (i.e. no operation was performed)
548 * - addedTags: an array containing the tags that were actually added
549 * - removedTags: an array containing the tags that were actually removed
550 * @since 1.25
551 */
552 public static function updateTagsWithChecks( $tagsToAdd, $tagsToRemove,
553 $rc_id, $rev_id, $log_id, $params, $reason, User $user
554 ) {
555 if ( is_null( $tagsToAdd ) ) {
556 $tagsToAdd = [];
557 }
558 if ( is_null( $tagsToRemove ) ) {
559 $tagsToRemove = [];
560 }
561 if ( !$tagsToAdd && !$tagsToRemove ) {
562 // no-op, don't bother
563 return Status::newGood( (object)[
564 'logId' => null,
565 'addedTags' => [],
566 'removedTags' => [],
567 ] );
568 }
569
570 // are we allowed to do this?
571 $result = self::canUpdateTags( $tagsToAdd, $tagsToRemove, $user );
572 if ( !$result->isOK() ) {
573 $result->value = null;
574 return $result;
575 }
576
577 // basic rate limiting
578 if ( $user->pingLimiter( 'changetag' ) ) {
579 return Status::newFatal( 'actionthrottledtext' );
580 }
581
582 // do it!
583 list( $tagsAdded, $tagsRemoved, $initialTags ) = self::updateTags( $tagsToAdd,
584 $tagsToRemove, $rc_id, $rev_id, $log_id, $params, null, $user );
585 if ( !$tagsAdded && !$tagsRemoved ) {
586 // no-op, don't log it
587 return Status::newGood( (object)[
588 'logId' => null,
589 'addedTags' => [],
590 'removedTags' => [],
591 ] );
592 }
593
594 // log it
595 $logEntry = new ManualLogEntry( 'tag', 'update' );
596 $logEntry->setPerformer( $user );
597 $logEntry->setComment( $reason );
598
599 // find the appropriate target page
600 if ( $rev_id ) {
601 $rev = Revision::newFromId( $rev_id );
602 if ( $rev ) {
603 $logEntry->setTarget( $rev->getTitle() );
604 }
605 } elseif ( $log_id ) {
606 // This function is from revision deletion logic and has nothing to do with
607 // change tags, but it appears to be the only other place in core where we
608 // perform logged actions on log items.
609 $logEntry->setTarget( RevDelLogList::suggestTarget( null, [ $log_id ] ) );
610 }
611
612 if ( !$logEntry->getTarget() ) {
613 // target is required, so we have to set something
614 $logEntry->setTarget( SpecialPage::getTitleFor( 'Tags' ) );
615 }
616
617 $logParams = [
618 '4::revid' => $rev_id,
619 '5::logid' => $log_id,
620 '6:list:tagsAdded' => $tagsAdded,
621 '7:number:tagsAddedCount' => count( $tagsAdded ),
622 '8:list:tagsRemoved' => $tagsRemoved,
623 '9:number:tagsRemovedCount' => count( $tagsRemoved ),
624 'initialTags' => $initialTags,
625 ];
626 $logEntry->setParameters( $logParams );
627 $logEntry->setRelations( [ 'Tag' => array_merge( $tagsAdded, $tagsRemoved ) ] );
628
629 $dbw = wfGetDB( DB_MASTER );
630 $logId = $logEntry->insert( $dbw );
631 // Only send this to UDP, not RC, similar to patrol events
632 $logEntry->publish( $logId, 'udp' );
633
634 return Status::newGood( (object)[
635 'logId' => $logId,
636 'addedTags' => $tagsAdded,
637 'removedTags' => $tagsRemoved,
638 ] );
639 }
640
641 /**
642 * Applies all tags-related changes to a query.
643 * Handles selecting tags, and filtering.
644 * Needs $tables to be set up properly, so we can figure out which join conditions to use.
645 *
646 * WARNING: If $filter_tag contains more than one tag, this function will add DISTINCT,
647 * which may cause performance problems for your query unless you put the ID field of your
648 * table at the end of the ORDER BY, and set a GROUP BY equal to the ORDER BY. For example,
649 * if you had ORDER BY foo_timestamp DESC, you will now need GROUP BY foo_timestamp, foo_id
650 * ORDER BY foo_timestamp DESC, foo_id DESC.
651 *
652 * @param string|array $tables Table names, see Database::select
653 * @param string|array $fields Fields used in query, see Database::select
654 * @param string|array $conds Conditions used in query, see Database::select
655 * @param array $join_conds Join conditions, see Database::select
656 * @param array $options Options, see Database::select
657 * @param bool|string|array $filter_tag Tag(s) to select on
658 *
659 * @throws MWException When unable to determine appropriate JOIN condition for tagging
660 */
661 public static function modifyDisplayQuery( &$tables, &$fields, &$conds,
662 &$join_conds, &$options, $filter_tag = false ) {
663 global $wgRequest, $wgUseTagFilter;
664
665 if ( $filter_tag === false ) {
666 $filter_tag = $wgRequest->getVal( 'tagfilter' );
667 }
668
669 // Figure out which ID field to use
670 if ( in_array( 'recentchanges', $tables ) ) {
671 $join_cond = 'ct_rc_id=rc_id';
672 } elseif ( in_array( 'logging', $tables ) ) {
673 $join_cond = 'ct_log_id=log_id';
674 } elseif ( in_array( 'revision', $tables ) ) {
675 $join_cond = 'ct_rev_id=rev_id';
676 } elseif ( in_array( 'archive', $tables ) ) {
677 $join_cond = 'ct_rev_id=ar_rev_id';
678 } else {
679 throw new MWException( 'Unable to determine appropriate JOIN condition for tagging.' );
680 }
681
682 $fields['ts_tags'] = wfGetDB( DB_REPLICA )->buildGroupConcatField(
683 ',', 'change_tag', 'ct_tag', $join_cond
684 );
685
686 if ( $wgUseTagFilter && $filter_tag ) {
687 // Somebody wants to filter on a tag.
688 // Add an INNER JOIN on change_tag
689
690 $tables[] = 'change_tag';
691 $join_conds['change_tag'] = [ 'INNER JOIN', $join_cond ];
692 $conds['ct_tag'] = $filter_tag;
693 if (
694 is_array( $filter_tag ) && count( $filter_tag ) > 1 &&
695 !in_array( 'DISTINCT', $options )
696 ) {
697 $options[] = 'DISTINCT';
698 }
699 }
700 }
701
702 /**
703 * Build a text box to select a change tag
704 *
705 * @param string $selected Tag to select by default
706 * @param bool $ooui Use an OOUI TextInputWidget as selector instead of a non-OOUI input field
707 * You need to call OutputPage::enableOOUI() yourself.
708 * @param IContextSource|null $context
709 * @note Even though it takes null as a valid argument, an IContextSource is preferred
710 * in a new code, as the null value can change in the future
711 * @return array an array of (label, selector)
712 */
713 public static function buildTagFilterSelector(
714 $selected = '', $ooui = false, IContextSource $context = null
715 ) {
716 if ( !$context ) {
717 $context = RequestContext::getMain();
718 }
719
720 $config = $context->getConfig();
721 if ( !$config->get( 'UseTagFilter' ) || !count( self::listDefinedTags() ) ) {
722 return [];
723 }
724
725 $data = [
726 Html::rawElement(
727 'label',
728 [ 'for' => 'tagfilter' ],
729 $context->msg( 'tag-filter' )->parse()
730 )
731 ];
732
733 if ( $ooui ) {
734 $data[] = new OOUI\TextInputWidget( [
735 'id' => 'tagfilter',
736 'name' => 'tagfilter',
737 'value' => $selected,
738 'classes' => 'mw-tagfilter-input',
739 ] );
740 } else {
741 $data[] = Xml::input(
742 'tagfilter',
743 20,
744 $selected,
745 [ 'class' => 'mw-tagfilter-input mw-ui-input mw-ui-input-inline', 'id' => 'tagfilter' ]
746 );
747 }
748
749 return $data;
750 }
751
752 /**
753 * Defines a tag in the valid_tag table, without checking that the tag name
754 * is valid.
755 * Extensions should NOT use this function; they can use the ListDefinedTags
756 * hook instead.
757 *
758 * @param string $tag Tag to create
759 * @since 1.25
760 */
761 public static function defineTag( $tag ) {
762 $dbw = wfGetDB( DB_MASTER );
763 $dbw->replace( 'valid_tag',
764 [ 'vt_tag' ],
765 [ 'vt_tag' => $tag ],
766 __METHOD__ );
767
768 // clear the memcache of defined tags
769 self::purgeTagCacheAll();
770 }
771
772 /**
773 * Removes a tag from the valid_tag table. The tag may remain in use by
774 * extensions, and may still show up as 'defined' if an extension is setting
775 * it from the ListDefinedTags hook.
776 *
777 * @param string $tag Tag to remove
778 * @since 1.25
779 */
780 public static function undefineTag( $tag ) {
781 $dbw = wfGetDB( DB_MASTER );
782 $dbw->delete( 'valid_tag', [ 'vt_tag' => $tag ], __METHOD__ );
783
784 // clear the memcache of defined tags
785 self::purgeTagCacheAll();
786 }
787
788 /**
789 * Writes a tag action into the tag management log.
790 *
791 * @param string $action
792 * @param string $tag
793 * @param string $reason
794 * @param User $user Who to attribute the action to
795 * @param int $tagCount For deletion only, how many usages the tag had before
796 * it was deleted.
797 * @param array $logEntryTags Change tags to apply to the entry
798 * that will be created in the tag management log
799 * @return int ID of the inserted log entry
800 * @since 1.25
801 */
802 protected static function logTagManagementAction( $action, $tag, $reason,
803 User $user, $tagCount = null, array $logEntryTags = []
804 ) {
805 $dbw = wfGetDB( DB_MASTER );
806
807 $logEntry = new ManualLogEntry( 'managetags', $action );
808 $logEntry->setPerformer( $user );
809 // target page is not relevant, but it has to be set, so we just put in
810 // the title of Special:Tags
811 $logEntry->setTarget( Title::newFromText( 'Special:Tags' ) );
812 $logEntry->setComment( $reason );
813
814 $params = [ '4::tag' => $tag ];
815 if ( !is_null( $tagCount ) ) {
816 $params['5:number:count'] = $tagCount;
817 }
818 $logEntry->setParameters( $params );
819 $logEntry->setRelations( [ 'Tag' => $tag ] );
820 $logEntry->setTags( $logEntryTags );
821
822 $logId = $logEntry->insert( $dbw );
823 $logEntry->publish( $logId );
824 return $logId;
825 }
826
827 /**
828 * Is it OK to allow the user to activate this tag?
829 *
830 * @param string $tag Tag that you are interested in activating
831 * @param User|null $user User whose permission you wish to check, or null if
832 * you don't care (e.g. maintenance scripts)
833 * @return Status
834 * @since 1.25
835 */
836 public static function canActivateTag( $tag, User $user = null ) {
837 if ( !is_null( $user ) ) {
838 if ( !$user->isAllowed( 'managechangetags' ) ) {
839 return Status::newFatal( 'tags-manage-no-permission' );
840 } elseif ( $user->isBlocked() ) {
841 return Status::newFatal( 'tags-manage-blocked', $user->getName() );
842 }
843 }
844
845 // defined tags cannot be activated (a defined tag is either extension-
846 // defined, in which case the extension chooses whether or not to active it;
847 // or user-defined, in which case it is considered active)
848 $definedTags = self::listDefinedTags();
849 if ( in_array( $tag, $definedTags ) ) {
850 return Status::newFatal( 'tags-activate-not-allowed', $tag );
851 }
852
853 // non-existing tags cannot be activated
854 $tagUsage = self::tagUsageStatistics();
855 if ( !isset( $tagUsage[$tag] ) ) { // we already know the tag is undefined
856 return Status::newFatal( 'tags-activate-not-found', $tag );
857 }
858
859 return Status::newGood();
860 }
861
862 /**
863 * Activates a tag, checking whether it is allowed first, and adding a log
864 * entry afterwards.
865 *
866 * Includes a call to ChangeTag::canActivateTag(), so your code doesn't need
867 * to do that.
868 *
869 * @param string $tag
870 * @param string $reason
871 * @param User $user Who to give credit for the action
872 * @param bool $ignoreWarnings Can be used for API interaction, default false
873 * @param array $logEntryTags Change tags to apply to the entry
874 * that will be created in the tag management log
875 * @return Status If successful, the Status contains the ID of the added log
876 * entry as its value
877 * @since 1.25
878 */
879 public static function activateTagWithChecks( $tag, $reason, User $user,
880 $ignoreWarnings = false, array $logEntryTags = []
881 ) {
882 // are we allowed to do this?
883 $result = self::canActivateTag( $tag, $user );
884 if ( $ignoreWarnings ? !$result->isOK() : !$result->isGood() ) {
885 $result->value = null;
886 return $result;
887 }
888
889 // do it!
890 self::defineTag( $tag );
891
892 // log it
893 $logId = self::logTagManagementAction( 'activate', $tag, $reason, $user,
894 null, $logEntryTags );
895
896 return Status::newGood( $logId );
897 }
898
899 /**
900 * Is it OK to allow the user to deactivate this tag?
901 *
902 * @param string $tag Tag that you are interested in deactivating
903 * @param User|null $user User whose permission you wish to check, or null if
904 * you don't care (e.g. maintenance scripts)
905 * @return Status
906 * @since 1.25
907 */
908 public static function canDeactivateTag( $tag, User $user = null ) {
909 if ( !is_null( $user ) ) {
910 if ( !$user->isAllowed( 'managechangetags' ) ) {
911 return Status::newFatal( 'tags-manage-no-permission' );
912 } elseif ( $user->isBlocked() ) {
913 return Status::newFatal( 'tags-manage-blocked', $user->getName() );
914 }
915 }
916
917 // only explicitly-defined tags can be deactivated
918 $explicitlyDefinedTags = self::listExplicitlyDefinedTags();
919 if ( !in_array( $tag, $explicitlyDefinedTags ) ) {
920 return Status::newFatal( 'tags-deactivate-not-allowed', $tag );
921 }
922 return Status::newGood();
923 }
924
925 /**
926 * Deactivates a tag, checking whether it is allowed first, and adding a log
927 * entry afterwards.
928 *
929 * Includes a call to ChangeTag::canDeactivateTag(), so your code doesn't need
930 * to do that.
931 *
932 * @param string $tag
933 * @param string $reason
934 * @param User $user Who to give credit for the action
935 * @param bool $ignoreWarnings Can be used for API interaction, default false
936 * @param array $logEntryTags Change tags to apply to the entry
937 * that will be created in the tag management log
938 * @return Status If successful, the Status contains the ID of the added log
939 * entry as its value
940 * @since 1.25
941 */
942 public static function deactivateTagWithChecks( $tag, $reason, User $user,
943 $ignoreWarnings = false, array $logEntryTags = []
944 ) {
945 // are we allowed to do this?
946 $result = self::canDeactivateTag( $tag, $user );
947 if ( $ignoreWarnings ? !$result->isOK() : !$result->isGood() ) {
948 $result->value = null;
949 return $result;
950 }
951
952 // do it!
953 self::undefineTag( $tag );
954
955 // log it
956 $logId = self::logTagManagementAction( 'deactivate', $tag, $reason, $user,
957 null, $logEntryTags );
958
959 return Status::newGood( $logId );
960 }
961
962 /**
963 * Is the tag name valid?
964 *
965 * @param string $tag Tag that you are interested in creating
966 * @return Status
967 * @since 1.30
968 */
969 public static function isTagNameValid( $tag ) {
970 // no empty tags
971 if ( $tag === '' ) {
972 return Status::newFatal( 'tags-create-no-name' );
973 }
974
975 // tags cannot contain commas (used as a delimiter in tag_summary table),
976 // pipe (used as a delimiter between multiple tags in
977 // SpecialRecentchanges and friends), or slashes (would break tag description messages in
978 // MediaWiki namespace)
979 if ( strpos( $tag, ',' ) !== false || strpos( $tag, '|' ) !== false
980 || strpos( $tag, '/' ) !== false ) {
981 return Status::newFatal( 'tags-create-invalid-chars' );
982 }
983
984 // could the MediaWiki namespace description messages be created?
985 $title = Title::makeTitleSafe( NS_MEDIAWIKI, "Tag-$tag-description" );
986 if ( is_null( $title ) ) {
987 return Status::newFatal( 'tags-create-invalid-title-chars' );
988 }
989
990 return Status::newGood();
991 }
992
993 /**
994 * Is it OK to allow the user to create this tag?
995 *
996 * @param string $tag Tag that you are interested in creating
997 * @param User|null $user User whose permission you wish to check, or null if
998 * you don't care (e.g. maintenance scripts)
999 * @return Status
1000 * @since 1.25
1001 */
1002 public static function canCreateTag( $tag, User $user = null ) {
1003 if ( !is_null( $user ) ) {
1004 if ( !$user->isAllowed( 'managechangetags' ) ) {
1005 return Status::newFatal( 'tags-manage-no-permission' );
1006 } elseif ( $user->isBlocked() ) {
1007 return Status::newFatal( 'tags-manage-blocked', $user->getName() );
1008 }
1009 }
1010
1011 $status = self::isTagNameValid( $tag );
1012 if ( !$status->isGood() ) {
1013 return $status;
1014 }
1015
1016 // does the tag already exist?
1017 $tagUsage = self::tagUsageStatistics();
1018 if ( isset( $tagUsage[$tag] ) || in_array( $tag, self::listDefinedTags() ) ) {
1019 return Status::newFatal( 'tags-create-already-exists', $tag );
1020 }
1021
1022 // check with hooks
1023 $canCreateResult = Status::newGood();
1024 Hooks::run( 'ChangeTagCanCreate', [ $tag, $user, &$canCreateResult ] );
1025 return $canCreateResult;
1026 }
1027
1028 /**
1029 * Creates a tag by adding a row to the `valid_tag` table.
1030 *
1031 * Includes a call to ChangeTag::canDeleteTag(), so your code doesn't need to
1032 * do that.
1033 *
1034 * @param string $tag
1035 * @param string $reason
1036 * @param User $user Who to give credit for the action
1037 * @param bool $ignoreWarnings Can be used for API interaction, default false
1038 * @param array $logEntryTags Change tags to apply to the entry
1039 * that will be created in the tag management log
1040 * @return Status If successful, the Status contains the ID of the added log
1041 * entry as its value
1042 * @since 1.25
1043 */
1044 public static function createTagWithChecks( $tag, $reason, User $user,
1045 $ignoreWarnings = false, array $logEntryTags = []
1046 ) {
1047 // are we allowed to do this?
1048 $result = self::canCreateTag( $tag, $user );
1049 if ( $ignoreWarnings ? !$result->isOK() : !$result->isGood() ) {
1050 $result->value = null;
1051 return $result;
1052 }
1053
1054 // do it!
1055 self::defineTag( $tag );
1056
1057 // log it
1058 $logId = self::logTagManagementAction( 'create', $tag, $reason, $user,
1059 null, $logEntryTags );
1060
1061 return Status::newGood( $logId );
1062 }
1063
1064 /**
1065 * Permanently removes all traces of a tag from the DB. Good for removing
1066 * misspelt or temporary tags.
1067 *
1068 * This function should be directly called by maintenance scripts only, never
1069 * by user-facing code. See deleteTagWithChecks() for functionality that can
1070 * safely be exposed to users.
1071 *
1072 * @param string $tag Tag to remove
1073 * @return Status The returned status will be good unless a hook changed it
1074 * @since 1.25
1075 */
1076 public static function deleteTagEverywhere( $tag ) {
1077 $dbw = wfGetDB( DB_MASTER );
1078 $dbw->startAtomic( __METHOD__ );
1079
1080 // delete from valid_tag
1081 self::undefineTag( $tag );
1082
1083 // find out which revisions use this tag, so we can delete from tag_summary
1084 $result = $dbw->select( 'change_tag',
1085 [ 'ct_rc_id', 'ct_log_id', 'ct_rev_id', 'ct_tag' ],
1086 [ 'ct_tag' => $tag ],
1087 __METHOD__ );
1088 foreach ( $result as $row ) {
1089 // remove the tag from the relevant row of tag_summary
1090 $tagsToAdd = [];
1091 $tagsToRemove = [ $tag ];
1092 self::updateTagSummaryRow( $tagsToAdd, $tagsToRemove, $row->ct_rc_id,
1093 $row->ct_rev_id, $row->ct_log_id );
1094 }
1095
1096 // delete from change_tag
1097 $dbw->delete( 'change_tag', [ 'ct_tag' => $tag ], __METHOD__ );
1098
1099 $dbw->endAtomic( __METHOD__ );
1100
1101 // give extensions a chance
1102 $status = Status::newGood();
1103 Hooks::run( 'ChangeTagAfterDelete', [ $tag, &$status ] );
1104 // let's not allow error results, as the actual tag deletion succeeded
1105 if ( !$status->isOK() ) {
1106 wfDebug( 'ChangeTagAfterDelete error condition downgraded to warning' );
1107 $status->setOK( true );
1108 }
1109
1110 // clear the memcache of defined tags
1111 self::purgeTagCacheAll();
1112
1113 return $status;
1114 }
1115
1116 /**
1117 * Is it OK to allow the user to delete this tag?
1118 *
1119 * @param string $tag Tag that you are interested in deleting
1120 * @param User|null $user User whose permission you wish to check, or null if
1121 * you don't care (e.g. maintenance scripts)
1122 * @return Status
1123 * @since 1.25
1124 */
1125 public static function canDeleteTag( $tag, User $user = null ) {
1126 $tagUsage = self::tagUsageStatistics();
1127
1128 if ( !is_null( $user ) ) {
1129 if ( !$user->isAllowed( 'deletechangetags' ) ) {
1130 return Status::newFatal( 'tags-delete-no-permission' );
1131 } elseif ( $user->isBlocked() ) {
1132 return Status::newFatal( 'tags-manage-blocked', $user->getName() );
1133 }
1134 }
1135
1136 if ( !isset( $tagUsage[$tag] ) && !in_array( $tag, self::listDefinedTags() ) ) {
1137 return Status::newFatal( 'tags-delete-not-found', $tag );
1138 }
1139
1140 if ( isset( $tagUsage[$tag] ) && $tagUsage[$tag] > self::MAX_DELETE_USES ) {
1141 return Status::newFatal( 'tags-delete-too-many-uses', $tag, self::MAX_DELETE_USES );
1142 }
1143
1144 $softwareDefined = self::listSoftwareDefinedTags();
1145 if ( in_array( $tag, $softwareDefined ) ) {
1146 // extension-defined tags can't be deleted unless the extension
1147 // specifically allows it
1148 $status = Status::newFatal( 'tags-delete-not-allowed' );
1149 } else {
1150 // user-defined tags are deletable unless otherwise specified
1151 $status = Status::newGood();
1152 }
1153
1154 Hooks::run( 'ChangeTagCanDelete', [ $tag, $user, &$status ] );
1155 return $status;
1156 }
1157
1158 /**
1159 * Deletes a tag, checking whether it is allowed first, and adding a log entry
1160 * afterwards.
1161 *
1162 * Includes a call to ChangeTag::canDeleteTag(), so your code doesn't need to
1163 * do that.
1164 *
1165 * @param string $tag
1166 * @param string $reason
1167 * @param User $user Who to give credit for the action
1168 * @param bool $ignoreWarnings Can be used for API interaction, default false
1169 * @param array $logEntryTags Change tags to apply to the entry
1170 * that will be created in the tag management log
1171 * @return Status If successful, the Status contains the ID of the added log
1172 * entry as its value
1173 * @since 1.25
1174 */
1175 public static function deleteTagWithChecks( $tag, $reason, User $user,
1176 $ignoreWarnings = false, array $logEntryTags = []
1177 ) {
1178 // are we allowed to do this?
1179 $result = self::canDeleteTag( $tag, $user );
1180 if ( $ignoreWarnings ? !$result->isOK() : !$result->isGood() ) {
1181 $result->value = null;
1182 return $result;
1183 }
1184
1185 // store the tag usage statistics
1186 $tagUsage = self::tagUsageStatistics();
1187 $hitcount = isset( $tagUsage[$tag] ) ? $tagUsage[$tag] : 0;
1188
1189 // do it!
1190 $deleteResult = self::deleteTagEverywhere( $tag );
1191 if ( !$deleteResult->isOK() ) {
1192 return $deleteResult;
1193 }
1194
1195 // log it
1196 $logId = self::logTagManagementAction( 'delete', $tag, $reason, $user,
1197 $hitcount, $logEntryTags );
1198
1199 $deleteResult->value = $logId;
1200 return $deleteResult;
1201 }
1202
1203 /**
1204 * Lists those tags which core or extensions report as being "active".
1205 *
1206 * @return array
1207 * @since 1.25
1208 */
1209 public static function listSoftwareActivatedTags() {
1210 // core active tags
1211 $tags = self::$coreTags;
1212 if ( !Hooks::isRegistered( 'ChangeTagsListActive' ) ) {
1213 return $tags;
1214 }
1215 $cache = MediaWikiServices::getInstance()->getMainWANObjectCache();
1216 return $cache->getWithSetCallback(
1217 $cache->makeKey( 'active-tags' ),
1218 WANObjectCache::TTL_MINUTE * 5,
1219 function ( $oldValue, &$ttl, array &$setOpts ) use ( $tags ) {
1220 $setOpts += Database::getCacheSetOptions( wfGetDB( DB_REPLICA ) );
1221
1222 // Ask extensions which tags they consider active
1223 Hooks::run( 'ChangeTagsListActive', [ &$tags ] );
1224 return $tags;
1225 },
1226 [
1227 'checkKeys' => [ $cache->makeKey( 'active-tags' ) ],
1228 'lockTSE' => WANObjectCache::TTL_MINUTE * 5,
1229 'pcTTL' => WANObjectCache::TTL_PROC_LONG
1230 ]
1231 );
1232 }
1233
1234 /**
1235 * @see listSoftwareActivatedTags
1236 * @deprecated since 1.28 call listSoftwareActivatedTags directly
1237 * @return array
1238 */
1239 public static function listExtensionActivatedTags() {
1240 wfDeprecated( __METHOD__, '1.28' );
1241 return self::listSoftwareActivatedTags();
1242 }
1243
1244 /**
1245 * Basically lists defined tags which count even if they aren't applied to anything.
1246 * It returns a union of the results of listExplicitlyDefinedTags() and
1247 * listExtensionDefinedTags().
1248 *
1249 * @return string[] Array of strings: tags
1250 */
1251 public static function listDefinedTags() {
1252 $tags1 = self::listExplicitlyDefinedTags();
1253 $tags2 = self::listSoftwareDefinedTags();
1254 return array_values( array_unique( array_merge( $tags1, $tags2 ) ) );
1255 }
1256
1257 /**
1258 * Lists tags explicitly defined in the `valid_tag` table of the database.
1259 * Tags in table 'change_tag' which are not in table 'valid_tag' are not
1260 * included.
1261 *
1262 * Tries memcached first.
1263 *
1264 * @return string[] Array of strings: tags
1265 * @since 1.25
1266 */
1267 public static function listExplicitlyDefinedTags() {
1268 $fname = __METHOD__;
1269
1270 $cache = MediaWikiServices::getInstance()->getMainWANObjectCache();
1271 return $cache->getWithSetCallback(
1272 $cache->makeKey( 'valid-tags-db' ),
1273 WANObjectCache::TTL_MINUTE * 5,
1274 function ( $oldValue, &$ttl, array &$setOpts ) use ( $fname ) {
1275 $dbr = wfGetDB( DB_REPLICA );
1276
1277 $setOpts += Database::getCacheSetOptions( $dbr );
1278
1279 $tags = $dbr->selectFieldValues( 'valid_tag', 'vt_tag', [], $fname );
1280
1281 return array_filter( array_unique( $tags ) );
1282 },
1283 [
1284 'checkKeys' => [ $cache->makeKey( 'valid-tags-db' ) ],
1285 'lockTSE' => WANObjectCache::TTL_MINUTE * 5,
1286 'pcTTL' => WANObjectCache::TTL_PROC_LONG
1287 ]
1288 );
1289 }
1290
1291 /**
1292 * Lists tags defined by core or extensions using the ListDefinedTags hook.
1293 * Extensions need only define those tags they deem to be in active use.
1294 *
1295 * Tries memcached first.
1296 *
1297 * @return string[] Array of strings: tags
1298 * @since 1.25
1299 */
1300 public static function listSoftwareDefinedTags() {
1301 // core defined tags
1302 $tags = self::$coreTags;
1303 if ( !Hooks::isRegistered( 'ListDefinedTags' ) ) {
1304 return $tags;
1305 }
1306 $cache = MediaWikiServices::getInstance()->getMainWANObjectCache();
1307 return $cache->getWithSetCallback(
1308 $cache->makeKey( 'valid-tags-hook' ),
1309 WANObjectCache::TTL_MINUTE * 5,
1310 function ( $oldValue, &$ttl, array &$setOpts ) use ( $tags ) {
1311 $setOpts += Database::getCacheSetOptions( wfGetDB( DB_REPLICA ) );
1312
1313 Hooks::run( 'ListDefinedTags', [ &$tags ] );
1314 return array_filter( array_unique( $tags ) );
1315 },
1316 [
1317 'checkKeys' => [ $cache->makeKey( 'valid-tags-hook' ) ],
1318 'lockTSE' => WANObjectCache::TTL_MINUTE * 5,
1319 'pcTTL' => WANObjectCache::TTL_PROC_LONG
1320 ]
1321 );
1322 }
1323
1324 /**
1325 * Call listSoftwareDefinedTags directly
1326 *
1327 * @see listSoftwareDefinedTags
1328 * @deprecated since 1.28
1329 */
1330 public static function listExtensionDefinedTags() {
1331 wfDeprecated( __METHOD__, '1.28' );
1332 return self::listSoftwareDefinedTags();
1333 }
1334
1335 /**
1336 * Invalidates the short-term cache of defined tags used by the
1337 * list*DefinedTags functions, as well as the tag statistics cache.
1338 * @since 1.25
1339 */
1340 public static function purgeTagCacheAll() {
1341 $cache = MediaWikiServices::getInstance()->getMainWANObjectCache();
1342
1343 $cache->touchCheckKey( $cache->makeKey( 'active-tags' ) );
1344 $cache->touchCheckKey( $cache->makeKey( 'valid-tags-db' ) );
1345 $cache->touchCheckKey( $cache->makeKey( 'valid-tags-hook' ) );
1346
1347 self::purgeTagUsageCache();
1348 }
1349
1350 /**
1351 * Invalidates the tag statistics cache only.
1352 * @since 1.25
1353 */
1354 public static function purgeTagUsageCache() {
1355 $cache = MediaWikiServices::getInstance()->getMainWANObjectCache();
1356
1357 $cache->touchCheckKey( $cache->makeKey( 'change-tag-statistics' ) );
1358 }
1359
1360 /**
1361 * Returns a map of any tags used on the wiki to number of edits
1362 * tagged with them, ordered descending by the hitcount.
1363 * This does not include tags defined somewhere that have never been applied.
1364 *
1365 * Keeps a short-term cache in memory, so calling this multiple times in the
1366 * same request should be fine.
1367 *
1368 * @return array Array of string => int
1369 */
1370 public static function tagUsageStatistics() {
1371 $fname = __METHOD__;
1372 $cache = MediaWikiServices::getInstance()->getMainWANObjectCache();
1373 return $cache->getWithSetCallback(
1374 $cache->makeKey( 'change-tag-statistics' ),
1375 WANObjectCache::TTL_MINUTE * 5,
1376 function ( $oldValue, &$ttl, array &$setOpts ) use ( $fname ) {
1377 $dbr = wfGetDB( DB_REPLICA, 'vslow' );
1378
1379 $setOpts += Database::getCacheSetOptions( $dbr );
1380
1381 $res = $dbr->select(
1382 'change_tag',
1383 [ 'ct_tag', 'hitcount' => 'count(*)' ],
1384 [],
1385 $fname,
1386 [ 'GROUP BY' => 'ct_tag', 'ORDER BY' => 'hitcount DESC' ]
1387 );
1388
1389 $out = [];
1390 foreach ( $res as $row ) {
1391 $out[$row->ct_tag] = $row->hitcount;
1392 }
1393
1394 return $out;
1395 },
1396 [
1397 'checkKeys' => [ $cache->makeKey( 'change-tag-statistics' ) ],
1398 'lockTSE' => WANObjectCache::TTL_MINUTE * 5,
1399 'pcTTL' => WANObjectCache::TTL_PROC_LONG
1400 ]
1401 );
1402 }
1403
1404 /**
1405 * Indicate whether change tag editing UI is relevant
1406 *
1407 * Returns true if the user has the necessary right and there are any
1408 * editable tags defined.
1409 *
1410 * This intentionally doesn't check "any addable || any deletable", because
1411 * it seems like it would be more confusing than useful if the checkboxes
1412 * suddenly showed up because some abuse filter stopped defining a tag and
1413 * then suddenly disappeared when someone deleted all uses of that tag.
1414 *
1415 * @param User $user
1416 * @return bool
1417 */
1418 public static function showTagEditingUI( User $user ) {
1419 return $user->isAllowed( 'changetags' ) && (bool)self::listExplicitlyDefinedTags();
1420 }
1421 }