Merge "Make setUp and tearDown protected in tests"
[lhc/web/wiklou.git] / includes / specials / SpecialMIMEsearch.php
1 <?php
2 /**
3 * Implements Special:MIMESearch
4 *
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.
9 *
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.
14 *
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
19 *
20 * @file
21 * @ingroup SpecialPage
22 * @author Ævar Arnfjörð Bjarmason <avarab@gmail.com>
23 */
24
25 /**
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
29 */
30 class MIMEsearchPage extends QueryPage {
31 protected $major, $minor;
32
33 function __construct( $name = 'MIMEsearch' ) {
34 parent::__construct( $name );
35 }
36
37 function isExpensive() {
38 return false;
39 }
40
41 function isSyndicated() {
42 return false;
43 }
44
45 function isCacheable() {
46 return false;
47 }
48
49 function linkParameters() {
50 return array( 'mime' => "{$this->major}/{$this->minor}" );
51 }
52
53 public function getQueryInfo() {
54 $qi = array(
55 'tables' => array( 'image' ),
56 'fields' => array(
57 'namespace' => NS_FILE,
58 'title' => 'img_name',
59 // Still have a value field just in case,
60 // but it isn't actually used for sorting.
61 'value' => 'img_name',
62 'img_size',
63 'img_width',
64 'img_height',
65 'img_user_text',
66 'img_timestamp'
67 ),
68 'conds' => array(
69 'img_major_mime' => $this->major,
70 'img_minor_mime' => $this->minor,
71 // This is in order to trigger using
72 // the img_media_mime index in "range" mode.
73 'img_media_type' => array(
74 MEDIATYPE_BITMAP,
75 MEDIATYPE_DRAWING,
76 MEDIATYPE_AUDIO,
77 MEDIATYPE_VIDEO,
78 MEDIATYPE_MULTIMEDIA,
79 MEDIATYPE_UNKNOWN,
80 MEDIATYPE_OFFICE,
81 MEDIATYPE_TEXT,
82 MEDIATYPE_EXECUTABLE,
83 MEDIATYPE_ARCHIVE,
84 ),
85 ),
86 );
87 return $qi;
88 }
89
90 /**
91 * The index is on (img_media_type, img_major_mime, img_minor_mime)
92 * which unfortunately doesn't have img_name at the end for sorting.
93 * So tell db to sort it however it wishes (Its not super important
94 * that this report gives results in a logical order). As an aditional
95 * note, mysql seems to by default order things by img_name ASC, which
96 * is what we ideally want, so everything works out fine anyhow.
97 */
98 function getOrderFields() {
99 return array();
100 }
101
102 function execute( $par ) {
103 global $wgScript;
104
105 $mime = $par ? $par : $this->getRequest()->getText( 'mime' );
106
107 $this->setHeaders();
108 $this->outputHeader();
109 $this->getOutput()->addHTML(
110 Xml::openElement(
111 'form',
112 array( 'id' => 'specialmimesearch', 'method' => 'get', 'action' => $wgScript )
113 ) .
114 Xml::openElement( 'fieldset' ) .
115 Html::hidden( 'title', $this->getTitle()->getPrefixedText() ) .
116 Xml::element( 'legend', null, $this->msg( 'mimesearch' )->text() ) .
117 Xml::inputLabel( $this->msg( 'mimetype' )->text(), 'mime', 'mime', 20, $mime ) .
118 ' ' .
119 Xml::submitButton( $this->msg( 'ilsubmit' )->text() ) .
120 Xml::closeElement( 'fieldset' ) .
121 Xml::closeElement( 'form' )
122 );
123
124 list( $this->major, $this->minor ) = File::splitMime( $mime );
125
126 if ( $this->major == '' || $this->minor == '' || $this->minor == 'unknown' ||
127 !self::isValidType( $this->major )
128 ) {
129 return;
130 }
131
132 parent::execute( $par );
133 }
134
135 /**
136 * @param Skin $skin
137 * @param object $result Result row
138 * @return string
139 */
140 function formatResult( $skin, $result ) {
141 global $wgContLang;
142
143 $nt = Title::makeTitle( $result->namespace, $result->title );
144 $text = $wgContLang->convert( $nt->getText() );
145 $plink = Linker::link(
146 Title::newFromText( $nt->getPrefixedText() ),
147 htmlspecialchars( $text )
148 );
149
150 $download = Linker::makeMediaLinkObj( $nt, $this->msg( 'download' )->escaped() );
151 $download = $this->msg( 'parentheses' )->rawParams( $download )->escaped();
152 $lang = $this->getLanguage();
153 $bytes = htmlspecialchars( $lang->formatSize( $result->img_size ) );
154 $dimensions = $this->msg( 'widthheight' )->numParams( $result->img_width,
155 $result->img_height )->escaped();
156 $user = Linker::link(
157 Title::makeTitle( NS_USER, $result->img_user_text ),
158 htmlspecialchars( $result->img_user_text )
159 );
160
161 $time = $lang->userTimeAndDate( $result->img_timestamp, $this->getUser() );
162 $time = htmlspecialchars( $time );
163
164 return "$download $plink . . $dimensions . . $bytes . . $user . . $time";
165 }
166
167 /**
168 * @param $type string
169 * @return bool
170 */
171 protected static function isValidType( $type ) {
172 // From maintenance/tables.sql => img_major_mime
173 $types = array(
174 'unknown',
175 'application',
176 'audio',
177 'image',
178 'text',
179 'video',
180 'message',
181 'model',
182 'multipart'
183 );
184
185 return in_array( $type, $types );
186 }
187
188 protected function getGroupName() {
189 return 'media';
190 }
191 }