* (bug 5805) message nbytes can now use {{plural:}}
[lhc/web/wiklou.git] / includes / SpecialMIMEsearch.php
1 <?php
2 /**
3 * A special page to search for files by MIME type as defined in the
4 * img_major_mime and img_minor_mime fields in the image table
5 *
6 * @package MediaWiki
7 * @subpackage SpecialPage
8 *
9 * @author Ævar Arnfjörð Bjarmason <avarab@gmail.com>
10 * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 2.0 or later
11 */
12
13 /* */
14 require_once 'QueryPage.php';
15
16 /**
17 * @package MediaWiki
18 * @subpackage SpecialPage
19 */
20 class MIMEsearchPage extends QueryPage {
21 var $major, $minor;
22
23 function MIMEsearchPage( $major, $minor ) {
24 $this->major = $major;
25 $this->minor = $minor;
26 }
27
28 function getName() { return 'MIMEsearch'; }
29
30 /**
31 * Due to this page relying upon extra fields being passed in the SELECT it
32 * will fail if it's set as expensive and misermode is on
33 */
34 function isExpensive() { return true; }
35 function isSyndicated() { return false; }
36
37 function linkParameters() {
38 $arr = array( $this->major, $this->minor );
39 $mime = implode( '/', $arr );
40 return array( 'mime' => $mime );
41 }
42
43 function getSQL() {
44 $dbr =& wfGetDB( DB_SLAVE );
45 $image = $dbr->tableName( 'image' );
46 $major = $dbr->addQuotes( $this->major );
47 $minor = $dbr->addQuotes( $this->minor );
48
49 return
50 "SELECT 'MIMEsearch' AS type,
51 " . NS_IMAGE . " AS namespace,
52 img_name AS title,
53 img_major_mime AS value,
54
55 img_size,
56 img_width,
57 img_height,
58 img_user_text,
59 img_timestamp
60 FROM $image
61 WHERE img_major_mime = $major AND img_minor_mime = $minor
62 ";
63 }
64
65 function formatResult( $skin, $result ) {
66 global $wgContLang, $wgLang;
67
68 $nt = Title::makeTitle( $result->namespace, $result->title );
69 $text = $wgContLang->convert( $nt->getText() );
70 $plink = $skin->makeLink( $nt->getPrefixedText(), $text );
71
72 $download = $skin->makeMediaLink( $nt->getText(), 'fuck me!', wfMsgHtml( 'download' ) );
73 $bytes = wfMsgExt( 'nbytes', array( 'parsemag', 'escape'),
74 $wgLang->formatNum( $result->img_size ) );
75 $dimensions = wfMsg( 'widthheight', $result->img_width, $result->img_height );
76 $user = $skin->makeLinkObj( Title::makeTitle( NS_USER, $result->img_user_text ), $result->img_user_text );
77 $time = $wgLang->timeanddate( $result->img_timestamp );
78
79 return "($download) $plink . . $dimensions . . $bytes . . $user . . $time";
80 }
81 }
82
83 /**
84 * constructor
85 */
86 function wfSpecialMIMEsearch( $par = null ) {
87 global $wgRequest, $wgTitle, $wgOut;
88
89 $mime = isset( $par ) ? $par : $wgRequest->getText( 'mime' );
90
91 $wgOut->addHTML(
92 wfElement( 'form',
93 array(
94 'id' => 'specialmimesearch',
95 'method' => 'get',
96 'action' => $wgTitle->escapeLocalUrl()
97 ),
98 null
99 ) .
100 wfOpenElement( 'label' ) .
101 wfMsgHtml( 'mimetype' ) .
102 wfElement( 'input', array(
103 'type' => 'text',
104 'size' => 20,
105 'name' => 'mime',
106 'value' => $mime
107 ),
108 ''
109 ) .
110 ' ' .
111 wfElement( 'input', array(
112 'type' => 'submit',
113 'value' => wfMsg( 'ilsubmit' )
114 ),
115 ''
116 ) .
117 wfCloseElement( 'label' ) .
118 wfCloseElement( 'form' )
119 );
120
121 list( $major, $minor ) = wfSpecialMIMEsearchParse( $mime );
122 if ( $major == '' or $minor == '' or !wfSpecialMIMEsearchValidType( $major ) )
123 return;
124 $wpp = new MIMEsearchPage( $major, $minor );
125
126 list( $limit, $offset ) = wfCheckLimits();
127 $wpp->doQuery( $offset, $limit );
128 }
129
130 function wfSpecialMIMEsearchParse( $str ) {
131 wfSuppressWarnings();
132 list( $major, $minor ) = explode( '/', $str, 2 );
133 wfRestoreWarnings();
134
135 return array(
136 ltrim( $major, ' ' ),
137 rtrim( $minor, ' ' )
138 );
139 }
140
141 function wfSpecialMIMEsearchValidType( $type ) {
142 // From maintenance/tables.sql => img_major_mime
143 $types = array(
144 'unknown',
145 'application',
146 'audio',
147 'image',
148 'text',
149 'video',
150 'message',
151 'model',
152 'multipart'
153 );
154
155 return in_array( $type, $types );
156 }
157 ?>