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
21 * @ingroup SpecialPage
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 ) {
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 );
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...
56 $mto = $file->transform( array( 'width' => $width, 'height' => $height ) );
59 if ( $mto && !$mto->isError() ) {
60 // ... change the URL to point to a thumbnail.
61 $url = $mto->getURL();
64 $this->getOutput()->redirect( $url );
66 $this->getOutput()->setStatusCode( 404 );
67 $this->showForm( $title );
73 * @param Title $title Title requested, or null.
75 function showForm( $title ) {
78 $this->getOutput()->addHTML(
81 array( 'method' => 'get', 'action' => $wgScript, 'id' => 'specialfilepath' )
83 Html
::openElement( 'fieldset' ) .
84 Html
::element( 'legend', null, $this->msg( 'filepath' )->text() ) .
85 Html
::hidden( 'title', $this->getTitle()->getPrefixedText() ) .
87 $this->msg( 'filepath-page' )->text(),
91 is_object( $title ) ?
$title->getText() : ''
93 Xml
::submitButton( $this->msg( 'filepath-submit' )->text() ) . "\n" .
94 Html
::closeElement( 'fieldset' ) .
95 Html
::closeElement( 'form' )
99 protected function getGroupName() {