3 * Implements Special:MIMESearch
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.
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.
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
21 * @ingroup SpecialPage
22 * @author Ævar Arnfjörð Bjarmason <avarab@gmail.com>
26 * Searches the database for files of the requested MIME type, comparing this with the
27 * 'img_major_mime' and 'img_minor_mime' fields in the image table.
28 * @ingroup SpecialPage
30 class MIMEsearchPage
extends QueryPage
{
31 protected $major, $minor;
33 function __construct( $name = 'MIMEsearch' ) {
34 parent
::__construct( $name );
37 function isExpensive() {
41 function isSyndicated() {
45 function isCacheable() {
49 function linkParameters() {
50 return array( 'mime' => "{$this->major}/{$this->minor}" );
53 public function getQueryInfo() {
55 if ( $this->minor
!== '*' ) {
56 // Allow wildcard searching
57 $minorType['img_minor_mime'] = $this->minor
;
60 'tables' => array( 'image' ),
62 'namespace' => NS_FILE
,
63 'title' => 'img_name',
64 // Still have a value field just in case,
65 // but it isn't actually used for sorting.
66 'value' => 'img_name',
74 'img_major_mime' => $this->major
,
75 // This is in order to trigger using
76 // the img_media_mime index in "range" mode.
77 'img_media_type' => array(
96 * The index is on (img_media_type, img_major_mime, img_minor_mime)
97 * which unfortunately doesn't have img_name at the end for sorting.
98 * So tell db to sort it however it wishes (Its not super important
99 * that this report gives results in a logical order). As an aditional
100 * note, mysql seems to by default order things by img_name ASC, which
101 * is what we ideally want, so everything works out fine anyhow.
104 function getOrderFields() {
108 function execute( $par ) {
109 $mime = $par ?
$par : $this->getRequest()->getText( 'mime' );
110 $mime = trim( $mime );
113 $this->outputHeader();
114 $this->getOutput()->addHTML(
117 array( 'id' => 'specialmimesearch', 'method' => 'get', 'action' => wfScript() )
119 Xml
::openElement( 'fieldset' ) .
120 Html
::hidden( 'title', $this->getPageTitle()->getPrefixedText() ) .
121 Xml
::element( 'legend', null, $this->msg( 'mimesearch' )->text() ) .
122 Xml
::inputLabel( $this->msg( 'mimetype' )->text(), 'mime', 'mime', 20, $mime ) .
124 Xml
::submitButton( $this->msg( 'ilsubmit' )->text() ) .
125 Xml
::closeElement( 'fieldset' ) .
126 Xml
::closeElement( 'form' )
129 list( $this->major
, $this->minor
) = File
::splitMime( $mime );
131 if ( $this->major
== '' ||
$this->minor
== '' ||
$this->minor
== 'unknown' ||
132 !self
::isValidType( $this->major
)
137 parent
::execute( $par );
142 * @param object $result Result row
145 function formatResult( $skin, $result ) {
148 $nt = Title
::makeTitle( $result->namespace, $result->title
);
149 $text = $wgContLang->convert( $nt->getText() );
150 $plink = Linker
::link(
151 Title
::newFromText( $nt->getPrefixedText() ),
152 htmlspecialchars( $text )
155 $download = Linker
::makeMediaLinkObj( $nt, $this->msg( 'download' )->escaped() );
156 $download = $this->msg( 'parentheses' )->rawParams( $download )->escaped();
157 $lang = $this->getLanguage();
158 $bytes = htmlspecialchars( $lang->formatSize( $result->img_size
) );
159 $dimensions = $this->msg( 'widthheight' )->numParams( $result->img_width
,
160 $result->img_height
)->escaped();
161 $user = Linker
::link(
162 Title
::makeTitle( NS_USER
, $result->img_user_text
),
163 htmlspecialchars( $result->img_user_text
)
166 $time = $lang->userTimeAndDate( $result->img_timestamp
, $this->getUser() );
167 $time = htmlspecialchars( $time );
169 return "$download $plink . . $dimensions . . $bytes . . $user . . $time";
173 * @param string $type
176 protected static function isValidType( $type ) {
177 // From maintenance/tables.sql => img_major_mime
191 return in_array( $type, $types );
194 protected function getGroupName() {