45 parent::__construct( $name );
49 $this->shownavigation =
false;
72 $fakeTitle =
$dbr->buildConcat( [
74 $dbr->addQuotes(
';' ),
76 $dbr->addQuotes(
'/' ),
78 $dbr->addQuotes(
';' ),
79 $dbr->buildStringCast(
'COUNT(*)' ),
80 $dbr->addQuotes(
';' ),
81 $dbr->buildStringCast(
'SUM( img_size )' )
84 'tables' => [
'image' ],
86 'title' => $fakeTitle,
108 return [
'img_media_type',
'count(*)',
'img_major_mime',
'img_minor_mime' ];
122 $prevMediaType =
null;
123 foreach (
$res as $row ) {
125 if ( count( $mediaStats ) < 4 ) {
129 if ( $prevMediaType !== $mediaType ) {
130 if ( $prevMediaType !==
null ) {
136 $this->totalPerType = 0;
138 $prevMediaType = $mediaType;
142 if ( $prevMediaType !==
null ) {
146 $this->
getOutput()->addWikiTextAsInterface(
147 $this->
msg(
'mediastatistics-allbytes' )
148 ->numParams( $this->totalSize )
149 ->sizeParams( $this->totalSize )
160 Html::closeElement(
'tbody' ) .
161 Html::closeElement(
'table' )
163 $this->
getOutput()->addWikiTextAsInterface(
164 $this->
msg(
'mediastatistics-bytespertype' )
165 ->numParams( $this->totalPerType )
166 ->sizeParams( $this->totalPerType )
167 ->numParams( $this->
makePercentPretty( $this->totalPerType / $this->totalBytes ) )
183 $row = Html::rawElement(
188 $row .= Html::rawElement(
193 $row .= Html::rawElement(
196 [
'data-sort-value' => $count ],
197 $this->
msg(
'mediastatistics-nfiles' )
198 ->numParams( $count )
203 $row .= Html::rawElement(
206 [
'data-sort-value' => $bytes ],
207 $this->
msg(
'mediastatistics-nbytes' )
208 ->numParams( $bytes )
209 ->sizeParams( $bytes )
214 $this->totalPerType += $bytes;
215 $this->
getOutput()->addHTML( Html::rawElement(
'tr', [], $row ) );
225 if ( $decimal == 0 ) {
228 if ( $decimal >= 100 ) {
231 $percent = sprintf(
"%." . max( 0, 2 - floor( log10( $decimal ) ) ) .
"f", $decimal );
233 return preg_replace(
'/\.?0*$/',
'', $percent );
243 $exts = MediaWiki\MediaWikiServices::getInstance()->getMimeAnalyzer()
244 ->getExtensionsFromMimeType(
$mime );
248 foreach ( $exts as &
$ext ) {
249 $ext = htmlspecialchars(
'.' .
$ext );
263 $out->addModuleStyles(
'jquery.tablesorter.styles' );
264 $out->addModules(
'jquery.tablesorter' );
269 'mw-mediastats-table',
270 'mw-mediastats-table-' . strtolower( $mediaType ),
276 Html::openElement(
'tbody' )
286 $headers = [
'mimetype',
'extensions',
'count',
'totalbytes' ];
288 foreach ( $headers as
$header ) {
289 $ths .= Html::rawElement(
295 $this->
msg(
'mediastatistics-table-' . $header )->parse()
298 return Html::rawElement(
'tr', [], $ths );
311 'mw-mediastats-mediatype',
312 'mw-mediastats-mediatype-' . strtolower( $mediaType )
321 $this->
msg(
'mediastatistics-header-' . strtolower( $mediaType ) )->text()
336 return explode(
';', $fakeTitle, 4 );
368 $this->totalCount = $this->totalBytes = 0;
369 foreach (
$res as $row ) {
371 $this->totalCount += $mediaStats[2] ?? 0;
372 $this->totalBytes += $mediaStats[3] ?? 0;
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
This is a class for doing query pages; since they're almost all the same, we factor out some of the f...
executeLBFromResultWrapper(IResultWrapper $res, $ns=null)
Creates a new LinkBatch object, adds all pages from the passed result wrapper (MUST include title and...
int $offset
The offset and limit in use, as passed to the query() function.
getOutput()
Get the OutputPage being used for this instance.
static getTitleFor( $name, $subpage=false, $fragment='')
Get a localised Title object for a specified special page name If you don't need a full Title object,...
msg( $key,... $params)
Wrapper around wfMessage that sets the current context.
getLanguage()
Shortcut to get user's language.
MediaWiki Linker LinkRenderer null $linkRenderer
if(!is_readable( $file)) $ext