3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 * http://www.gnu.org/copyleft/gpl.html
23 * This class performs some operations related to tracking categories, such as creating
24 * a list of all such categories.
27 class TrackingCategories
{
32 * Tracking categories that exist in core
36 private static $coreTrackingCategories = [
39 'duplicate-args-category',
40 'expensive-parserfunction-category',
41 'post-expand-template-argument-category',
42 'post-expand-template-inclusion-category',
43 'hidden-category-category',
44 'broken-file-category',
45 'node-count-exceeded-category',
46 'expansion-depth-exceeded-category',
47 'restricted-displaytitle-ignored',
48 'deprecated-self-close-category',
49 'template-loop-category',
53 * @param Config $config
55 public function __construct( Config
$config ) {
56 $this->config
= $config;
60 * Read the global and extract title objects from the corresponding messages
61 * @return array Array( 'msg' => Title, 'cats' => Title[] )
63 public function getTrackingCategories() {
64 $categories = array_merge(
65 self
::$coreTrackingCategories,
66 ExtensionRegistry
::getInstance()->getAttribute( 'TrackingCategories' ),
67 $this->config
->get( 'TrackingCategories' ) // deprecated
70 // Only show magic link tracking categories if they are enabled
71 $enableMagicLinks = $this->config
->get( 'EnableMagicLinks' );
72 if ( $enableMagicLinks['ISBN'] ) {
73 $categories[] = 'magiclink-tracking-isbn';
75 if ( $enableMagicLinks['RFC'] ) {
76 $categories[] = 'magiclink-tracking-rfc';
78 if ( $enableMagicLinks['PMID'] ) {
79 $categories[] = 'magiclink-tracking-pmid';
82 $trackingCategories = [];
83 foreach ( $categories as $catMsg ) {
85 * Check if the tracking category varies by namespace
86 * Otherwise only pages in the current namespace will be displayed
87 * If it does vary, show pages considering all namespaces
89 $msgObj = wfMessage( $catMsg )->inContentLanguage();
91 $catMsgTitle = Title
::makeTitleSafe( NS_MEDIAWIKI
, $catMsg );
92 if ( !$catMsgTitle ) {
96 // Match things like {{NAMESPACE}} and {{NAMESPACENUMBER}}.
97 // False positives are ok, this is just an efficiency shortcut
98 if ( strpos( $msgObj->plain(), '{{' ) !== false ) {
99 $ns = MWNamespace
::getValidNamespaces();
100 foreach ( $ns as $namesp ) {
101 $tempTitle = Title
::makeTitleSafe( $namesp, $catMsg );
105 $catName = $msgObj->title( $tempTitle )->text();
106 # Allow tracking categories to be disabled by setting them to "-"
107 if ( $catName !== '-' ) {
108 $catTitle = Title
::makeTitleSafe( NS_CATEGORY
, $catName );
110 $allCats[] = $catTitle;
115 $catName = $msgObj->text();
116 # Allow tracking categories to be disabled by setting them to "-"
117 if ( $catName !== '-' ) {
118 $catTitle = Title
::makeTitleSafe( NS_CATEGORY
, $catName );
120 $allCats[] = $catTitle;
124 $trackingCategories[$catMsg] = [
126 'msg' => $catMsgTitle,
130 return $trackingCategories;