Fixed spacing in db/debug/diff/externalstore/objectcache folder
[mediawiki.git] / includes / specials / SpecialFilepath.php
blobd4b02855502eb014e941941675ec050362fa0bb2
1 <?php
2 /**
3 * Implements Special:Filepath
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
20 * @file
21 * @ingroup SpecialPage
24 /**
25 * A special page that redirects to the URL of a given file
27 * @ingroup SpecialPage
29 class SpecialFilepath extends SpecialPage {
30 function __construct() {
31 parent::__construct( 'Filepath' );
34 function execute( $par ) {
35 $this->setHeaders();
36 $this->outputHeader();
38 $request = $this->getRequest();
39 $file = $par ?: $request->getText( 'file' );
41 $title = Title::newFromText( $file, NS_FILE );
43 if ( !( $title instanceof Title ) || $title->getNamespace() != NS_FILE ) {
44 $this->showForm( $title );
45 } else {
46 $file = wfFindFile( $title );
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 );
54 // If a width is requested...
55 if ( $width != -1 ) {
56 $mto = $file->transform( array( 'width' => $width, 'height' => $height ) );
58 // ... and we can
59 if ( $mto && !$mto->isError() ) {
60 // ... change the URL to point to a thumbnail.
61 $url = $mto->getURL();
64 $this->getOutput()->redirect( $url );
65 } else {
66 $this->getOutput()->setStatusCode( 404 );
67 $this->showForm( $title );
72 /**
73 * @param Title $title Title requested, or null.
75 function showForm( $title ) {
76 global $wgScript;
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' )
99 protected function getGroupName() {
100 return 'media';