-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpageRender.php
executable file
·71 lines (68 loc) · 3.4 KB
/
pageRender.php
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<?php
/*
This file is part of weeklyd3's wiki software.
weeklyd3's wiki software is free software: you can redistribute
it and/or modify it under the terms of the GNU General Public
License as published by the Free Software Foundation, either
version 3 of the License, or (at your option) any later version.
weeklyd3's wiki software is distributed in the hope that it will
be useful, but WITHOUT ANY WARRANTY; without even the implied
warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU General Public License for more details.
You should have received a copy of the GNU General Public
License along with weeklyd3's wiki software. If not, see
<https://www.gnu.org/licenses/>.
*/
global $previouslyDeleted;
global $originalPageName;
global $useTemplates;
function cleanFilename($stuff) {
$illegal = array(" ","?","/","\\","*","|","<",">",'"');
$legal = array("-","_","_","_","_","_","_","_","_");
$cleaned = str_replace($illegal,$legal,$stuff);
return $cleaned;
}
function renderPage(string $namespace, string $title) {
global $title;
global $previouslyDeleted;
global $originalPageName;
switch ($namespace) {
case 'Special':
$specialPageFileName = cleanFilename(substr($title, 8));
if (!special_page_exists($specialPageFileName)) $specialPageFileName = 'invalid';
$pageName = $title;
$pageNamespace = $namespace;
require_once __DIR__ . "/pages.php";
global $specialPages;
require_once $specialPages[$specialPageFileName];
break;
case "File":
// Note the intentional absence of the break statement. This is required to
// render the description page below the file.
$filename = cleanFilename(substr($title, 5));
if (!file_exists(__DIR__ . "/files/live/$filename")) {
?><div class="error">There seems to be no file with that name. If you would like to <a href="index.php?title=Special:upload">upload it</a>, go ahead.</div><?php
} else {
?><div id="filedesc">
A local file exists.
<div id="stats"><?php echo htmlspecialchars($filename); ?> (<?php echo filesize(__DIR__ . "/files/live/$filename"); ?> bytes), <a href="index.php?title=Special:rawfile&filename=<?php echo htmlspecialchars(urlencode($filename)); ?>">download</a></div>
<div>Use this file on-wiki: <code>![alt/caption text](<?php echo htmlspecialchars($filename); ?>)</code></div>
<div><em>(The local file description page follows.)</em></div>
</div>
<hr /><?php
}
default:
global $originalPageName;
require_once __DIR__ . '/markdown/parsedown/parsedown.php';
$Parsedown = new Parsedown;
$pageIndex = json_decode(file_get_contents("pages/page2ID.json"));
if (!isset($pageIndex->$title)) {
if ($previouslyDeleted) displayDeleteLog("This page does not exist, but was previously deleted:");
echo $Parsedown->text(str_replace(array('$1', '$2'), array(htmlspecialchars($title), htmlspecialchars(urlencode($title))), file_get_contents('nosuchpage.txt')));
} else {
$id = $pageIndex->$title;
echo $Parsedown->text(file_get_contents("pages/data/$id/page.md"));
}
break;
}
}