1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
<?php
/**
* @file
* @ingroup SpecialPage
*/
function wfSpecialFilepath( $par ) {
global $wgRequest, $wgOut;
$file = isset( $par ) ? $par : $wgRequest->getText( 'file' );
$title = Title::makeTitleSafe( NS_FILE, $file );
if ( ! $title instanceof Title || $title->getNamespace() != NS_FILE ) {
$cform = new FilepathForm( $title );
$cform->execute();
} else {
$file = wfFindFile( $title );
if ( $file && $file->exists() ) {
$wgOut->redirect( $file->getURL() );
} else {
$wgOut->setStatusCode( 404 );
$cform = new FilepathForm( $title );
$cform->execute();
}
}
}
/**
* @ingroup SpecialPage
*/
class FilepathForm {
var $mTitle;
function FilepathForm( &$title ) {
$this->mTitle =& $title;
}
function execute() {
global $wgOut, $wgTitle, $wgScript;
$wgOut->addHTML(
Xml::openElement( 'form', array( 'method' => 'get', 'action' => $wgScript, 'id' => 'specialfilepath' ) ) .
Xml::openElement( 'fieldset' ) .
Xml::element( 'legend', null, wfMsg( 'filepath' ) ) .
Xml::hidden( 'title', $wgTitle->getPrefixedText() ) .
Xml::inputLabel( wfMsg( 'filepath-page' ), 'file', 'file', 25, is_object( $this->mTitle ) ? $this->mTitle->getText() : '' ) . ' ' .
Xml::submitButton( wfMsg( 'filepath-submit' ) ) . "\n" .
Xml::closeElement( 'fieldset' ) .
Xml::closeElement( 'form' )
);
}
}
|