(bug 17602) fix Monobook action tabs not quite touching the page body
[lhc/web/wiklou.git] / includes / specials / SpecialFilepath.php
1 <?php
2 /**
3 * Implements Special:Filepath
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 */
23
24 /**
25 * A special page that redirects to the URL of a given file
26 *
27 * @ingroup SpecialPage
28 */
29 class SpecialFilepath extends SpecialPage {
30 function __construct() {
31 parent::__construct( 'Filepath' );
32 }
33
34 function execute( $par ) {
35 $this->setHeaders();
36 $this->outputHeader();
37
38 $request = $this->getRequest();
39 $file = $par ?: $request->getText( 'file' );
40
41 $title = Title::newFromText( $file, NS_FILE );
42
43 if ( !( $title instanceof Title ) || $title->getNamespace() != NS_FILE ) {
44 $this->showForm( $title );
45 } else {
46 $file = wfFindFile( $title );
47
48 if ( $file && $file->exists() ) {
49 // Default behavior: Use the direct link to the file.
50 $url = $file->getURL();
51 $width = $request->getInt( 'width', -1 );
52 $height = $request->getInt( 'height', -1 );
53
54 // If a width is requested...
55 if ( $width != -1 ) {
56 $mto = $file->transform( array( 'width' => $width, 'height' => $height ) );
57
58 // ... and we can
59 if ( $mto && !$mto->isError() ) {
60 // ... change the URL to point to a thumbnail.
61 $url = $mto->getURL();
62 }
63 }
64 $this->getOutput()->redirect( $url );
65 } else {
66 $this->getOutput()->setStatusCode( 404 );
67 $this->showForm( $title );
68 }
69 }
70 }
71
72 /**
73 * @param Title $title Title requested, or null.
74 */
75 function showForm( $title ) {
76 global $wgScript;
77
78 $this->getOutput()->addHTML(
79 Html::openElement(
80 'form',
81 array( 'method' => 'get', 'action' => $wgScript, 'id' => 'specialfilepath' )
82 ) .
83 Html::openElement( 'fieldset' ) .
84 Html::element( 'legend', null, $this->msg( 'filepath' )->text() ) .
85 Html::hidden( 'title', $this->getTitle()->getPrefixedText() ) .
86 Xml::inputLabel(
87 $this->msg( 'filepath-page' )->text(),
88 'file',
89 'file',
90 25,
91 is_object( $title ) ? $title->getText() : ''
92 ) . ' ' .
93 Xml::submitButton( $this->msg( 'filepath-submit' )->text() ) . "\n" .
94 Html::closeElement( 'fieldset' ) .
95 Html::closeElement( 'form' )
96 );
97 }
98
99 protected function getGroupName() {
100 return 'media';
101 }
102 }