Fix for old-style search URLs to force the page to behave as search
[lhc/web/wiklou.git] / index.php
1 <?php
2
3 # Main wiki script; see design.doc
4 #
5 $wgRequestTime = microtime();
6
7 unset( $IP );
8 ini_set( "allow_url_fopen", 0 ); # For security...
9 if(!file_exists("LocalSettings.php")) {
10 die( "You'll have to <a href='config/index.php'>set the wiki up</a> first!" );
11 }
12 include_once( "./LocalSettings.php" );
13
14 if( $wgSitename == "MediaWiki" ) {
15 die( "You must set the site name in \$wgSitename before installation.\n\n" );
16 }
17
18 # PATH_SEPARATOR avaialble only from 4.3.0
19 $sep = (DIRECTORY_SEPARATOR == "\\") ? ";" : ":";
20 ini_set( "include_path", $IP . $sep . ini_get( "include_path" ) );
21
22 include_once( "Setup.php" );
23
24 wfProfileIn( "main-misc-setup" );
25 OutputPage::setEncodings(); # Not really used yet
26
27 # Query string fields
28 $action = $wgRequest->getVal( "action", "view" );
29
30 if( isset( $_SERVER['PATH_INFO'] ) && $wgUsePathInfo ) {
31 $title = substr( $_SERVER['PATH_INFO'], 1 );
32 } else {
33 $title = $wgRequest->getVal( "title" );
34 }
35
36 # Placeholders in case of DB error
37 $wgTitle = Title::newFromText( wfMsg( "badtitle" ) );
38 $wgArticle = new Article($wgTitle);
39
40 $action = strtolower( trim( $action ) );
41 if ( "" == $action ) { $action = "view"; }
42 if ($wgRequest->getVal( "printable" ) == "yes") {
43 $wgOut->setPrintable();
44 }
45
46 if ( "" == $title && "delete" != $action ) {
47 $wgTitle = Title::newFromText( wfMsg( "mainpage" ) );
48 } elseif ( $curid = $wgRequest->getInt( 'curid' ) ) {
49 # URLs like this are generated by RC, because rc_title isn't always accurate
50 $wgTitle = Title::newFromID( $curid );
51 } else {
52 $wgTitle = Title::newFromURL( $title );
53 }
54 wfProfileOut( "main-misc-setup" );
55
56 # If the user is not logged in, the Namespace:title of the article must be in the Read array in
57 # order for the user to see it.
58 if ( !$wgUser->getID() && is_array( $wgWhitelistRead ) && $wgTitle) {
59 if ( !in_array( $wgLang->getNsText( $wgTitle->getNamespace() ) . ":" . $wgTitle->getDBkey(), $wgWhitelistRead ) ) {
60 $wgOut->loginToUse();
61 $wgOut->output();
62 exit;
63 }
64 }
65
66 if ( $search = $wgRequest->getText( 'search' ) ) {
67 $wgTitle = Title::makeTitle( NS_SPECIAL, "Search" );
68 if( $wgRequest->getVal( 'fulltext' ) ) {
69 wfSearch( $search );
70 } else {
71 wfGo( $search );
72 }
73 } else if( !$wgTitle or $wgTitle->getInterwiki() != "" or $wgTitle->getDBkey() == "" ) {
74 $wgTitle = Title::newFromText( wfMsg( "badtitle" ) );
75 $wgOut->errorpage( "badtitle", "badtitletext" );
76 } else if ( ( $action == "view" ) && $wgTitle->getPrefixedDBKey() != $title ) {
77 /* redirect to canonical url, make it a 301 to allow caching */
78 $wgOut->redirect( $wgTitle->getFullURL(), '301');
79 } else if ( Namespace::getSpecial() == $wgTitle->getNamespace() ) {
80 wfSpecialPage();
81 } else {
82 if ( Namespace::getMedia() == $wgTitle->getNamespace() ) {
83 $wgTitle = Title::makeTitle( Namespace::getImage(), $wgTitle->getDBkey() );
84 }
85
86 switch( $wgTitle->getNamespace() ) {
87 case NS_IMAGE:
88 include_once( "ImagePage.php" );
89 $wgArticle = new ImagePage( $wgTitle );
90 break;
91 default:
92 $wgArticle = new Article( $wgTitle );
93 }
94
95 wfQuery("BEGIN", DB_WRITE);
96 switch( $action ) {
97 case "view":
98 $wgOut->setSquidMaxage( $wgSquidMaxage );
99 $wgArticle->view();
100 break;
101 case "watch":
102 case "unwatch":
103 case "delete":
104 case "revert":
105 case "rollback":
106 case "protect":
107 case "unprotect":
108 $wgArticle->$action();
109 break;
110 case "print":
111 $wgArticle->view();
112 break;
113 case "dublincore":
114 if( !$wgEnableDublinCoreRdf ) {
115 wfHttpError( 403, "Forbidden", wfMsg( "nodublincore" ) );
116 } else {
117 include_once( "Metadata.php" );
118 wfDublinCoreRdf( $wgArticle );
119 }
120 break;
121 case "creativecommons":
122 if( !$wgEnableCreativeCommonsRdf ) {
123 wfHttpError( 403, "Forbidden", wfMsg("nocreativecommons") );
124 } else {
125 include_once( "Metadata.php" );
126 wfCreativeCommonsRdf( $wgArticle );
127 }
128 break;
129 case "edit":
130 case "submit":
131 if( !$wgCommandLineMode && !$wgRequest->checkSessionCookie() ) {
132 User::SetupSession();
133 }
134 include_once( "EditPage.php" );
135 $editor = new EditPage( $wgArticle );
136 $editor->$action();
137 break;
138 case "history":
139 if ($_SERVER["REQUEST_URI"] == $wgTitle->getInternalURL('action=history')) {
140 $wgOut->setSquidMaxage( $wgSquidMaxage );
141 }
142 include_once( "PageHistory.php" );
143 $history = new PageHistory( $wgArticle );
144 $history->history();
145 break;
146 case "purge":
147 wfPurgeSquidServers(array($wgTitle->getInternalURL()));
148 $wgOut->setSquidMaxage( $wgSquidMaxage );
149 $wgArticle->view();
150 break;
151 default:
152 $wgOut->errorpage( "nosuchaction", "nosuchactiontext" );
153 }
154 wfQuery("COMMIT", DB_WRITE);
155 }
156
157 $wgOut->output();
158
159 foreach ( $wgDeferredUpdateList as $up ) { $up->doUpdate(); }
160 logProfilingData();
161 wfDebug( "Request ended normally\n" );
162 ?>