MediaWiki REL1_30
SpecialGadgetUsage.php
Go to the documentation of this file.
1<?php
32 function __construct( $name = 'GadgetUsage' ) {
33 parent::__construct( $name );
34 $this->limit = 1000; // Show all gadgets
35 $this->shownavigation = false;
36 $this->activeUsers = $this->getConfig()->get( 'SpecialGadgetUsageActiveUsers' );
37 }
38
45
46 public function isExpensive() {
47 return true;
48 }
49
69 public function getQueryInfo() {
71 if ( !$this->activeUsers ) {
72 return [
73 'tables' => [ 'user_properties' ],
74 'fields' => [
75 'title' => 'up_property',
76 'value' => 'SUM( up_value )',
77 'namespace' => NS_GADGET
78 ],
79 'conds' => [
80 'up_property' . $dbr->buildLike( 'gadget-', $dbr->anyString() )
81 ],
82 'options' => [
83 'GROUP BY' => [ 'up_property' ]
84 ]
85 ];
86 } else {
87 return [
88 'tables' => [ 'user_properties', 'user', 'querycachetwo' ],
89 'fields' => [
90 'title' => 'up_property',
91 'value' => 'SUM( up_value )',
92 // Need to pick fields existing in the querycache table so that the results are cachable
93 'namespace' => 'COUNT( qcc_title )'
94 ],
95 'conds' => [
96 'up_property' . $dbr->buildLike( 'gadget-', $dbr->anyString() )
97 ],
98 'options' => [
99 'GROUP BY' => [ 'up_property' ]
100 ],
101 'join_conds' => [
102 'user' => [
103 'LEFT JOIN', [
104 'up_user = user_id'
105 ]
106 ],
107 'querycachetwo' => [
108 'LEFT JOIN', [
109 'user_name = qcc_title',
110 'qcc_type = "activeusers"',
111 'up_value = 1'
112 ]
113 ]
114 ]
115 ];
116 }
117 }
118
119 public function getOrderFields() {
120 return [ 'value' ];
121 }
122
127 protected function outputTableStart() {
128 $html = Html::openElement( 'table', [ 'class' => [ 'sortable', 'wikitable' ] ] );
129 $html .= Html::openElement( 'tr', [] );
130 $headers = [ 'gadgetusage-gadget', 'gadgetusage-usercount' ];
131 if ( $this->activeUsers ) {
132 $headers[] = 'gadgetusage-activeusers';
133 }
134 foreach ( $headers as $h ) {
135 if ( $h == 'gadgetusage-gadget' ) {
136 $html .= Html::element( 'th', [], $this->msg( $h )->text() );
137 } else {
138 $html .= Html::element( 'th', [ 'data-sort-type' => 'number' ],
139 $this->msg( $h )->text() );
140 }
141 }
142 $html .= Html::closeElement( 'tr' );
143 $this->getOutput()->addHTML( $html );
144 }
145
151 public function formatResult( $skin, $result ) {
152 $gadgetTitle = substr( $result->title, 7 );
153 $gadgetUserCount = $this->getLanguage()->formatNum( $result->value );
154 if ( $gadgetTitle ) {
155 $html = Html::openElement( 'tr', [] );
156 $html .= Html::element( 'td', [], $gadgetTitle );
157 $html .= Html::element( 'td', [], $gadgetUserCount );
158 if ( $this->activeUsers == true ) {
159 $activeUserCount = $this->getLanguage()->formatNum( $result->namespace );
160 $html .= Html::element( 'td', [], $activeUserCount );
161 }
162 $html .= Html::closeElement( 'tr' );
163 return $html;
164 }
165 return false;
166 }
167
174 protected function getDefaultGadgets( $gadgetRepo, $gadgetIds ) {
175 $gadgetsList = [];
176 foreach ( $gadgetIds as $g ) {
177 $gadget = $gadgetRepo->getGadget( $g );
178 if ( $gadget->isOnByDefault() ) {
179 $gadgetsList[] = $gadget->getName();
180 }
181 }
182 asort( $gadgetsList, SORT_STRING | SORT_FLAG_CASE );
183 return $gadgetsList;
184 }
185
197 protected function outputResults( $out, $skin, $dbr, $res, $num, $offset ) {
198 $gadgetRepo = GadgetRepo::singleton();
199 $gadgetIds = $gadgetRepo->getGadgetIds();
200 $defaultGadgets = $this->getDefaultGadgets( $gadgetRepo, $gadgetIds );
201 if ( $this->activeUsers ) {
202 $out->addHtml(
203 $this->msg( 'gadgetusage-intro' )
204 ->numParams( $this->getConfig()->get( 'ActiveUserDays' ) )->parseAsBlock()
205 );
206 } else {
207 $out->addHtml(
208 $this->msg( 'gadgetusage-intro-noactive' )->parseAsBlock()
209 );
210 }
211 if ( $num > 0 ) {
212 $this->outputTableStart();
213 // Append default gadgets to the table with 'default' in the total and active user fields
214 foreach ( $defaultGadgets as $default ) {
215 $html = Html::openElement( 'tr', [] );
216 $html .= Html::element( 'td', [], $default );
217 $html .= Html::element( 'td', [], $this->msg( 'gadgetusage-default' )->text() );
218 if ( $this->activeUsers ) {
219 $html .= Html::element( 'td', [], $this->msg( 'gadgetusage-default' )->text() );
220 }
221 $html .= Html::closeElement( 'tr' );
222 $out->addHTML( $html );
223 }
224 foreach ( $res as $row ) {
225 // Remove the 'gadget-' part of the result string and compare if it's present
226 // in $defaultGadgets, if not we format it and add it to the output
227 if ( !in_array( substr( $row->title, 7 ), $defaultGadgets ) ) {
228 // Only pick gadgets which are in the list $gadgetIds to make sure they exist
229 if ( in_array( substr( $row->title, 7 ), $gadgetIds ) ) {
230 $line = $this->formatResult( $skin, $row );
231 if ( $line ) {
232 $out->addHTML( $line );
233 }
234 }
235 }
236 }
237 // Close table element
238 $out->addHtml( Html::closeElement( 'table' ) );
239 } else {
240 $out->addHtml(
241 $this->msg( 'gadgetusage-noresults' )->parseAsBlock()
242 );
243 }
244 }
245
246 protected function getGroupName() {
247 return 'wiki';
248 }
249}
const DB_SLAVE
Definition Defines.php:37
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
$line
Definition cdb.php:58
static singleton()
Get the configured default GadgetRepo.
This is a class for doing query pages; since they're almost all the same, we factor out some of the f...
Definition QueryPage.php:34
int $offset
The offset and limit in use, as passed to the query() function.
Definition QueryPage.php:39
Special:GadgetUsage - Lists all the gadgets on the wiki along with number of users.
getGroupName()
Under which header this special page is listed in Special:SpecialPages See messages 'specialpages-gro...
$activeUsers
Flag for holding the value of config variable SpecialGadgetUsageActiveUsers.
getQueryInfo()
Define the database query that is used to generate the stats table.
formatResult( $skin, $result)
getDefaultGadgets( $gadgetRepo, $gadgetIds)
Get a list of default gadgets.
outputTableStart()
Output the start of the table Including opening.
__construct( $name='GadgetUsage')
isExpensive()
Is this query expensive (for some definition of expensive)? Then we don't let it run in miser mode.
getOrderFields()
Subclasses return an array of fields to order by here.
outputResults( $out, $skin, $dbr, $res, $num, $offset)
Format and output report results using the given information plus OutputPage.
getOutput()
Get the OutputPage being used for this instance.
msg( $key)
Wrapper around wfMessage that sets the current context.
getConfig()
Shortcut to get main config object.
getLanguage()
Shortcut to get user's language.
if(! $regexes) $dbr
Definition cleanup.php:94
$res
Definition database.txt:21
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at etc Handles the details of getting and saving to the user table of the and dealing with sessions and cookies OutputPage Encapsulates the entire HTML page that will be sent in response to any server request It is used by calling its functions to add text
Definition design.txt:18
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 $out
Definition hooks.txt:862
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 just before the function returns a value If you return an< a > element with HTML attributes $attribs and contents $html will be returned If you return $ret will be returned and may include noclasses & $html
Definition hooks.txt:1983