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 'tables' => array( 'image' ),
56 'fields' => array( 'namespace' => NS_FILE
,
57 'title' => 'img_name',
58 'value' => 'img_major_mime',
64 'conds' => array( 'img_major_mime' => $this->major
,
65 'img_minor_mime' => $this->minor
)
69 function execute( $par ) {
72 $mime = $par ?
$par : $this->getRequest()->getText( 'mime' );
75 $this->outputHeader();
76 $this->getOutput()->addHTML(
77 Xml
::openElement( 'form', array( 'id' => 'specialmimesearch', 'method' => 'get', 'action' => $wgScript ) ) .
78 Xml
::openElement( 'fieldset' ) .
79 Html
::hidden( 'title', $this->getTitle()->getPrefixedText() ) .
80 Xml
::element( 'legend', null, $this->msg( 'mimesearch' )->text() ) .
81 Xml
::inputLabel( $this->msg( 'mimetype' )->text(), 'mime', 'mime', 20, $mime ) . ' ' .
82 Xml
::submitButton( $this->msg( 'ilsubmit' )->text() ) .
83 Xml
::closeElement( 'fieldset' ) .
84 Xml
::closeElement( 'form' )
87 list( $this->major
, $this->minor
) = File
::splitMime( $mime );
88 if ( $this->major
== '' ||
$this->minor
== '' ||
$this->minor
== 'unknown' ||
89 !self
::isValidType( $this->major
) ) {
92 parent
::execute( $par );
97 * @param object $result Result row
100 function formatResult( $skin, $result ) {
103 $nt = Title
::makeTitle( $result->namespace, $result->title
);
104 $text = $wgContLang->convert( $nt->getText() );
105 $plink = Linker
::link(
106 Title
::newFromText( $nt->getPrefixedText() ),
107 htmlspecialchars( $text )
110 $download = Linker
::makeMediaLinkObj( $nt, $this->msg( 'download' )->escaped() );
111 $download = $this->msg( 'parentheses' )->rawParams( $download )->escaped();
112 $lang = $this->getLanguage();
113 $bytes = htmlspecialchars( $lang->formatSize( $result->img_size
) );
114 $dimensions = $this->msg( 'widthheight' )->numParams( $result->img_width
,
115 $result->img_height
)->escaped();
116 $user = Linker
::link( Title
::makeTitle( NS_USER
, $result->img_user_text
), htmlspecialchars( $result->img_user_text
) );
117 $time = htmlspecialchars( $lang->userTimeAndDate( $result->img_timestamp
, $this->getUser() ) );
119 return "$download $plink . . $dimensions . . $bytes . . $user . . $time";
123 * @param $type string
126 protected static function isValidType( $type ) {
127 // From maintenance/tables.sql => img_major_mime
139 return in_array( $type, $types );
142 protected function getGroupName() {