Slight fix for r47781: remove useless if($index) conditional: $index is always set...
[lhc/web/wiklou.git] / includes / ChangeTags.php
1 <?php
2
3 if (!defined( 'MEDIAWIKI' ))
4 die;
5
6 class ChangeTags {
7 static function formatSummaryRow( $tags, $page ) {
8 if (!$tags)
9 return array('',array());
10
11 $classes = array();
12
13 $tags = explode( ',', $tags );
14 $displayTags = array();
15 foreach( $tags as $tag ) {
16 $displayTags[] = self::tagDescription( $tag );
17 $classes[] = "mw-tag-$tag";
18 }
19
20 return array( '(' . implode( ', ', $displayTags ) . ')', $classes );
21 }
22
23 static function tagDescription( $tag ) {
24 $msg = wfMsgExt( "tag-$tag", 'parseinline' );
25 if ( wfEmptyMsg( "tag-$tag", $msg ) ) {
26 return htmlspecialchars($tag);
27 }
28 return $msg;
29 }
30
31 ## Basic utility method to add tags to a particular change, given its rc_id, rev_id and/or log_id.
32 static function addTags( $tags, $rc_id=null, $rev_id=null, $log_id=null, $params = null ) {
33 if ( !is_array($tags) ) {
34 $tags = array( $tags );
35 }
36
37 $tags = array_filter( $tags ); // Make sure we're submitting all tags...
38
39 if (!$rc_id && !$rev_id && !$log_id) {
40 throw new MWException( "At least one of: RCID, revision ID, and log ID MUST be specified when adding a tag to a change!" );
41 }
42
43 $dbr = wfGetDB( DB_SLAVE );
44
45 // Might as well look for rcids and so on.
46 if (!$rc_id) {
47 $dbr = wfGetDB( DB_MASTER ); // Info might be out of date, somewhat fractionally, on slave.
48 if ($log_id) {
49 $rc_id = $dbr->selectField( 'recentchanges', 'rc_id', array( 'rc_logid' => $log_id ), __METHOD__ );
50 } elseif ($rev_id) {
51 $rc_id = $dbr->selectField( 'recentchanges', 'rc_id', array( 'rc_this_oldid' => $rev_id ), __METHOD__ );
52 }
53 } elseif (!$log_id && !$rev_id) {
54 $dbr = wfGetDB( DB_MASTER ); // Info might be out of date, somewhat fractionally, on slave.
55 $log_id = $dbr->selectField( 'recentchanges', 'rc_logid', array( 'rc_id' => $rc_id ), __METHOD__ );
56 $rev_id = $dbr->selectField( 'recentchanges', 'rc_this_oldid', array( 'rc_id' => $rc_id ), __METHOD__ );
57 }
58
59 $tsConds = array_filter( array( 'ts_rc_id' => $rc_id, 'ts_rev_id' => $rev_id, 'ts_log_id' => $log_id ) );
60
61 ## Update the summary row.
62 $prevTags = $dbr->selectField( 'tag_summary', 'ts_tags', $tsConds, __METHOD__ );
63 $prevTags = $prevTags ? $prevTags : '';
64 $prevTags = array_filter( explode( ',', $prevTags ) );
65 $newTags = array_unique( array_merge( $prevTags, $tags ) );
66 sort($prevTags);
67 sort($newTags);
68
69 if ( $prevTags == $newTags ) {
70 // No change.
71 return false;
72 }
73
74 $dbw = wfGetDB( DB_MASTER );
75 $dbw->replace( 'tag_summary', array( 'ts_rev_id', 'ts_rc_id', 'ts_log_id' ), array_filter( array_merge( $tsConds, array( 'ts_tags' => implode( ',', $newTags ) ) ) ), __METHOD__ );
76
77 // Insert the tags rows.
78 $tagsRows = array();
79 foreach( $tags as $tag ) { // Filter so we don't insert NULLs as zero accidentally.
80 $tagsRows[] = array_filter( array( 'ct_tag' => $tag, 'ct_rc_id' => $rc_id, 'ct_log_id' => $log_id, 'ct_rev_id' => $rev_id, 'ct_params' => $params ) );
81 }
82
83 $dbw->insert( 'change_tag', $tagsRows, __METHOD__, array('IGNORE') );
84
85 return true;
86 }
87
88 /**
89 * Applies all tags-related changes to a query.
90 * Handles selecting tags, and filtering.
91 * Needs $tables to be set up properly, so we can figure out which join conditions to use.
92 */
93 static function modifyDisplayQuery( &$tables, &$fields, &$conds, &$join_conds, $filter_tag = false ) {
94 global $wgRequest, $wgUseTagFilter;
95
96 if ($filter_tag === false) {
97 $filter_tag = $wgRequest->getVal( 'tagfilter' );
98 }
99
100 // Figure out which conditions can be done.
101 $join_field = '';
102 if ( in_array('recentchanges', $tables) ) {
103 $join_cond = 'rc_id';
104 } elseif( in_array('logging', $tables) ) {
105 $join_cond = 'log_id';
106 } elseif ( in_array('revision', $tables) ) {
107 $join_cond = 'rev_id';
108 } else {
109 throw new MWException( "Unable to determine appropriate JOIN condition for tagging." );
110 }
111
112 // JOIN on tag_summary
113 $tables[] = 'tag_summary';
114 $join_conds['tag_summary'] = array( 'LEFT JOIN', "ts_$join_cond=$join_cond" );
115 $fields[] = 'ts_tags';
116
117 if ($wgUseTagFilter && $filter_tag) {
118 // Somebody wants to filter on a tag.
119 // Add an INNER JOIN on change_tag
120
121 $tables[] = 'change_tag';
122 $join_conds['change_tag'] = array( 'INNER JOIN', "ct_$join_cond=$join_cond" );
123 $conds['ct_tag'] = $filter_tag;
124 }
125 }
126
127 /**
128 * If $fullForm is set to false, then it returns an array of (label, form).
129 * If $fullForm is true, it returns an entire form.
130 */
131 static function buildTagFilterSelector( $selected='', $fullForm = false /* used to put a full form around the selector */ ) {
132 global $wgUseTagFilter;
133
134 if ( !$wgUseTagFilter || !count( self::listDefinedTags() ) )
135 return $fullForm ? '' : array();
136
137 global $wgTitle;
138
139 $data = array( wfMsgExt( 'tag-filter', 'parseinline' ), Xml::input( 'tagfilter', 20, $selected ) );
140
141 if (!$fullForm) {
142 return $data;
143 }
144
145 $html = implode( '&nbsp;', $data );
146 $html .= "\n" . Xml::element( 'input', array( 'type' => 'submit', 'value' => wfMsg( 'tag-filter-submit' ) ) );
147 $html .= "\n" . Xml::hidden( 'title', $wgTitle-> getPrefixedText() );
148 $html = Xml::tags( 'form', array( 'action' => $wgTitle->getLocalURL(), 'method' => 'get' ), $html );
149
150 return $html;
151 }
152
153 /** Basically lists defined tags which count even if they aren't applied to anything */
154 static function listDefinedTags() {
155 // Caching...
156 global $wgMemc;
157 $key = wfMemcKey( 'valid-tags' );
158
159 if ($tags = $wgMemc->get( $key ))
160 return $tags;
161
162 $emptyTags = array();
163
164 // Some DB stuff
165 $dbr = wfGetDB( DB_SLAVE );
166 $res = $dbr->select( 'valid_tag', 'vt_tag', array(), __METHOD__ );
167 while( $row = $res->fetchObject() ) {
168 $emptyTags[] = $row->vt_tag;
169 }
170
171 wfRunHooks( 'ListDefinedTags', array(&$emptyTags) );
172
173 $emptyTags = array_filter( array_unique( $emptyTags ) );
174
175 // Short-term caching.
176 $wgMemc->set( $key, $emptyTags, 300 );
177 return $emptyTags;
178 }
179 }