mirror of
https://github.com/sbrl/Pepperminty-Wiki.git
synced 2024-11-05 10:53:01 +00:00
129 lines
3.9 KiB
PHP
129 lines
3.9 KiB
PHP
|
<?php
|
||
|
register_module([
|
||
|
"name" => "Page editor",
|
||
|
"version" => "0.4",
|
||
|
"author" => "Starbeamrainbowlabs",
|
||
|
"description" => "Allows you to edit pages by adding the edit and save actions. You should probably include this one.",
|
||
|
"id" => "page-edit",
|
||
|
|
||
|
"code" => function() {
|
||
|
|
||
|
/*
|
||
|
*
|
||
|
* ___ __ ___ _____
|
||
|
* / __|/ _` \ \ / / _ \
|
||
|
* \__ \ (_| |\ V / __/
|
||
|
* |___/\__,_| \_/ \___|
|
||
|
* %save%
|
||
|
*/
|
||
|
add_action("edit", function() {
|
||
|
global $pageindex, $settings, $page, $isloggedin;
|
||
|
|
||
|
$filename = "$page.md";
|
||
|
$creatingpage = !isset($pageindex->$page);
|
||
|
if((isset($_GET["newpage"]) and $_GET["newpage"] == "true") or $creatingpage)
|
||
|
{
|
||
|
$title = "Creating $page";
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
$title = "Editing $page";
|
||
|
}
|
||
|
|
||
|
$pagetext = "";
|
||
|
if(isset($pageindex->$page))
|
||
|
{
|
||
|
$pagetext = file_get_contents($filename);
|
||
|
}
|
||
|
|
||
|
if((!$isloggedin and !$settings->anonedits) or !$settings->editing)
|
||
|
{
|
||
|
if(!$creatingpage)
|
||
|
{
|
||
|
//the page already exists - let the user view the page source
|
||
|
exit(renderpage("Viewing source for $page", "<textarea readonly>$pagetext</textarea>"));
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
http_response_code(404);
|
||
|
exit(renderpage("404 - $page", "<p>The page <code>$page</code> does not exist, but you do not have permission to create it.</p><p>If you haven't already, perhaps you should try <a href='index.php?action=login'>logging in</a>.</p>"));
|
||
|
}
|
||
|
}
|
||
|
|
||
|
$content = "<h1>$title</h1>";
|
||
|
if(!$isloggedin and $settings->anonedits)
|
||
|
{
|
||
|
$content .= "<p><strong>Warning: You are not logged in! Your IP address <em>may</em> be recorded.</strong></p>";
|
||
|
}
|
||
|
$content .= "<form method='post' action='index.php?action=save&page=" . rawurlencode($page) . "&action=save'>
|
||
|
<textarea name='content'>$pagetext</textarea>
|
||
|
<input type='submit' value='Save Page' />
|
||
|
</form>";
|
||
|
exit(renderpage("$title - $settings->sitename", $content));
|
||
|
});
|
||
|
|
||
|
|
||
|
/*
|
||
|
* _ _ _
|
||
|
* ___ __| (_) |_
|
||
|
* / _ \/ _` | | __|
|
||
|
* | __/ (_| | | |_
|
||
|
* \___|\__,_|_|\__|
|
||
|
* %edit%
|
||
|
*/
|
||
|
add_action("save", function() {
|
||
|
global $pageindex, $settings, $page, $isloggedin, $user;
|
||
|
if(!$settings->editing)
|
||
|
{
|
||
|
header("location: index.php?page=$page");
|
||
|
exit(renderpage("Error saving edit", "<p>Editing is currently disabled on this wiki.</p>"));
|
||
|
}
|
||
|
if(!$isloggedin and !$settings->anonedits)
|
||
|
{
|
||
|
http_response_code(403);
|
||
|
header("refresh: 5; url=index.php?page=$page");
|
||
|
exit("You are not logged in, so you are not allowed to save pages on $settings->sitename. Redirecting in 5 seconds....");
|
||
|
}
|
||
|
if(!isset($_POST["content"]))
|
||
|
{
|
||
|
http_response_code(400);
|
||
|
header("refresh: 5; url=index.php?page=$page");
|
||
|
exit("Bad request: No content specified.");
|
||
|
}
|
||
|
if(file_put_contents("$page.md", htmlentities($_POST["content"]), ENT_QUOTES) !== false)
|
||
|
{
|
||
|
//update the page index
|
||
|
if(!isset($pageindex->$page))
|
||
|
{
|
||
|
$pageindex->$page = new stdClass();
|
||
|
$pageindex->$page->filename = "$page.md";
|
||
|
}
|
||
|
$pageindex->$page->size = strlen($_POST["content"]);
|
||
|
$pageindex->$page->lastmodified = time();
|
||
|
if($isloggedin)
|
||
|
$pageindex->$page->lasteditor = utf8_encode($user);
|
||
|
else
|
||
|
$pageindex->$page->lasteditor = utf8_encode("anonymous");
|
||
|
|
||
|
file_put_contents("./pageindex.json", json_encode($pageindex, JSON_PRETTY_PRINT));
|
||
|
|
||
|
if(isset($_GET["newpage"]))
|
||
|
http_response_code(201);
|
||
|
else
|
||
|
http_response_code(200);
|
||
|
|
||
|
header("location: index.php?page=$page");
|
||
|
exit();
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
http_response_code(507);
|
||
|
exit(renderpage("Error saving page - $settings->sitename", "<p>$settings->sitename failed to write your changes to the disk. Your changes have not been saved, but you might be able to recover your edit by pressing the back button in your browser.</p>
|
||
|
<p>Please tell the administrator of this wiki (" . $settings->admindetails["name"] . ") about this problem.</p>"));
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
]);
|
||
|
|
||
|
?>
|