From 0840170750971d209685ffe3514c9bdfb2a0acaa Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Fri, 8 May 2015 20:03:15 +0100 Subject: [PATCH] the new build system is done! Next up: testing. --- build.bat | 2 +- build.php | 65 +- download.php | 2 +- index.php | 1925 +++++++++++++++++++++++++++----------------------- 4 files changed, 1093 insertions(+), 901 deletions(-) mode change 100755 => 100644 index.php diff --git a/build.bat b/build.bat index e092e4c..ae13ab5 100644 --- a/build.bat +++ b/build.bat @@ -1,2 +1,2 @@ del index.php -php build.old.php +php build.php diff --git a/build.php b/build.php index f0b1bf1..ca8054a 100644 --- a/build.php +++ b/build.php @@ -1,3 +1,66 @@ id; +} + +if(isset($_GET["modules"])) +{ + $module_list = explode(",", $_GET["modules"]); +} + +if(php_sapi_name() != "cli") +{ + header("content-type: text/php"); +} + +$core = file_get_contents("core.php"); +$settings = file_get_contents("settings.fragment.php"); +$settings = str_replace([ "" ], "", $settings); +$core = str_replace("{settings}", $settings, $core); + +$result = $core; + +foreach($module_list as $module_id) +{ + if($module_id == "") continue; + + $module_filepath = "modules/" . preg_replace("[^a-zA-Z0-9\-]", "", $module_id) . ".php"; + + //echo("id: $module_id | filepath: $module_filepath\n"); + + if(!file_exists($module_filepath)) + { + http_response_code(400); + exit("Failed to load module with name: $module_filepath"); + } + + $modulecode = file_get_contents($module_filepath); + $modulecode = str_replace([ "" ], "", $modulecode); + $result = str_replace( + "// %next_module% //", + "$modulecode\n// %next_module% //", + $result); +} + +if(php_sapi_name() == "cli") +{ + if(file_exists("index.php")) + { + echo("index.php already exists, exiting"); + exit(1); + } + else + { + file_put_contents("index.php", $result); + } +} +else +{ + exit($result); +} + ?> diff --git a/download.php b/download.php index cddc00f..acc8b70 100644 --- a/download.php +++ b/download.php @@ -79,7 +79,7 @@ checkboxes = document.querySelectorAll("input[type=checkbox]"); for(var i = 0; i < checkboxes.length; i++) { - url += encodeURIComponent(checkboxes[i].id); + url += encodeURIComponent(checkboxes[i].id) + ","; } location.href = url; } diff --git a/index.php b/index.php old mode 100755 new mode 100644 index fe003bb..ab75997 --- a/index.php +++ b/index.php @@ -1,6 +1,6 @@ -anonedits = false; // the name of the page that will act as the home page for the wiki. This page will be served if the user didn't specify a page. $settings->defaultpage = "Main Page"; +// the default action. This action will be performed if no other action is specified. +$settings->defaultaction = "view"; + // usernames and passwords - passwords should be hashed with sha256 $settings->users = [ "admin" => "5e884898da28047151d0e56f8dc6292773603d0d6aabbdd62a11ef721d1542d8", //password @@ -125,898 +128,1024 @@ Actions: page - page name delete=yes - actually do the deletion (otherwise we display a prompt) */ - - -/////////////////////////////////////////////////////////////////////////////////////////////// -/////////////// Do not edit below this line unless you know what you are doing! /////////////// -/////////////////////////////////////////////////////////////////////////////////////////////// -$version = "0.4"; -session_start(); -///////// Login System ///////// -//clear expired sessions -if(isset($_SESSION["$settings->sessionprefix-expiretime"]) and - $_SESSION["$settings->sessionprefix-expiretime"] < time()) -{ - //clear the session variables - $_SESSION = []; - session_destroy(); -} - -if(!isset($_SESSION[$settings->sessionprefix . "-user"]) and - !isset($_SESSION[$settings->sessionprefix . "-pass"])) -{ - //the user is not logged in - $isloggedin = false; -} -else -{ - $user = $_SESSION[$settings->sessionprefix . "-user"]; - $pass = $_SESSION[$settings->sessionprefix . "-pass"]; - if($settings->users[$user] == $pass) - { - //the user is logged in - $isloggedin = true; - } - else - { - //the user's login details are invalid (what is going on here?) - //unset the session variables, treat them as an anonymous user, and get out of here - $isloggedin = false; - unset($user); - unset($pass); - //clear the session data - $_SESSION = []; //delete al lthe variables - session_destroy(); //destroy the session - } -} -//check to see if the currently logged in user is an admin -$isadmin = false; -if($isloggedin) -{ - foreach($settings->admins as $admin_username) - { - if($admin_username == $user) - { - $isadmin = true; - break; - } - } -} -/////// Login System End /////// - -/////////////////////////////////////////////////////////////////////////////////////////// -//////////////////////////// Security and Consistency Measures //////////////////////////// -/////////////////////////////////////////////////////////////////////////////////////////// -if(!file_exists("./pageindex.json")) -{ - $existingpages = glob("*.md"); - $pageindex = new stdClass(); - foreach($existingpages as $pagefilename) - { - $newentry = new stdClass(); - $newentry->filename = utf8_encode($pagefilename); - $newentry->size = filesize($pagefilename); - $newentry->lastmodified = filemtime($pagefilename); - $newentry->lasteditor = utf8_encode("unknown"); - $pagekey = utf8_encode(substr($pagefilename, 0, -3)); - $pageindex->$pagekey = $newentry; - } - file_put_contents("./pageindex.json", json_encode($pageindex, JSON_PRETTY_PRINT)); - unset($existingpages); -} -else -{ - $pageindex = json_decode(file_get_contents("./pageindex.json")); -} -/* - * @summary makes a path safe - * - * @details paths may only contain alphanumeric characters, spaces, underscores, and dashes - */ -function makepathsafe($string) { return preg_replace("/[^0-9a-zA-Z\_\-\ ]/i", "", $string); } - -/* - * @summary Hides an email address from bots by adding random html entities. - * - * @returns The mangled email address. - */ -function hide_email($str) -{ - $hidden_email = ""; - for($i = 0; $i < strlen($str); $i++) - { - if($str[$i] == "@") - { - $hidden_email .= "&#" . ord("@") . ";"; - continue; - } - if(rand(0, 1) == 0) - $hidden_email .= $str[$i]; - else - $hidden_email .= "&#" . ord($str[$i]) . ";"; - } - - return $hidden_email; -} - -//Work around an Opera + Syntastic bug where there is no margin at the left hand side if there isn't a query string when accessing a .php file -if(!isset($_GET["action"]) and !isset($_GET["page"])) -{ - http_response_code(302); - header("location: index.php?action=view&page=$defaultpage"); - exit(); -} - -//make sure that the action is set -if(!isset($_GET["action"])) - $_GET["action"] = "view"; - -if(!isset($_GET["page"]) or strlen($_GET["page"]) === 0) - $_GET["page"] = $settings->defaultpage; - -//redirect the user to the safe version of the path if they entered an unsafe character -if(makepathsafe($_GET["page"]) !== $_GET["page"]) -{ - http_response_code(301); - header("location: index.php?action=" . rawurlencode($_GET["action"]) . "&page=" . makepathsafe($_GET["page"])); - header("x-requested-page: " . $_GET["page"]); - header("x-actual-page: " . makepathsafe($_GET["page"])); - exit(); -} -$page = $_GET["page"]; - -/////////////////////////////////////////////////////////////////////////////////////////// -/////////////////////////////////////////////////////////////////////////////////////////// - -//////////////////////////////////////////////////////////////////////////////////////////// -////////////////////////////////////// HTML fragments ////////////////////////////////////// -//////////////////////////////////////////////////////////////////////////////////////////// -function renderpage($title, $content, $minimal = false) -{ - global $settings, $page, $user, $isloggedin, $isadmin, $start_time, $pageindex; - - $html = " - - - $title - - "; - if(preg_match("/^[^\/]*\/\/|^\//", $settings->css)) - { - $html .= "\n\t\t\n"; - } - else - { - $html .= "\n\t\t\n"; - } - $html .= "\n"; - - ////////// - - if($minimal) - { - $html .= "$content -
-

From $settings->sitename, which is managed by " . $settings->admindetails["name"] . ".

-

Timed at " . date("l jS \of F Y \a\\t h:ia T") . ".

-

Powered by Pepperminty Wiki

"; - } - else - { - $html .= " -

$settings->sitename

- $content -
- - \n"; - - foreach($pageindex as $pagename => $pagedetails) - { - $html .= "\t\t"; - } - - ////////// - $gentime = microtime(true) - $start_time; - $html .= "\n\t -"; - - return $html; -} - -//////////////////////////////////////////////////////////////////////////////////////////// -//////////////////////////////////////////////////////////////////////////////////////////// -///////////////////////////////////////// Slimdown ///////////////////////////////////////// -////////////////////////////////////////////////////////////////////////////// %slimdown% // -//////////////////////////////////////////////////////////////////////////////////////////// -/** - * Slimdown - A very basic regex-based Markdown parser. Supports the - * following elements (and can be extended via Slimdown::add_rule()): - * - * - Headers - * - Links - * - Bold - * - Emphasis - * - Deletions - * - Quotes - * - Inline code - * - Blockquotes - * - Ordered/unordered lists - * - Horizontal rules - * - * Author: Johnny Broadway - * Website: https://gist.github.com/jbroadway/2836900 - * License: MIT - */ - -/** - * Modified by Starbeamrainbowlabs (starbeamrainbowlabs) - * - * Changed bold to use single asterisks - * Changed italics to use single underscores - * Added one to add the heading levels (no

tags allowed) - * Added wiki style internal link parsing - * Added wiki style internal link parsing with display text - */ -class Slimdown { - public static $rules = array ( - '/\r\n/' => "\n", // new line normalisation - '/(#+)(.*)/' => 'self::header', // headers - '/(\*)(.*?)\1/' => '\2', // bold - '/(_)(.*?)\1/' => '\2', // emphasis - '/\[\[([a-zA-Z0-9\_\- ]+)\|([a-zA-Z0-9\_\- ]+)\]\]/' => '\2', //internal links with display text - '/\[\[([a-zA-Z0-9\_\- ]+)\]\]/' => '\1', //internal links - '/\[([^\[]+)\]\(([^\)]+)\)/' => '\1', // links - '/\~\~(.*?)\~\~/' => '\1', // del - '/\:\"(.*?)\"\:/' => '\1', // quote - '/`(.*?)`/' => '\1', // inline code - '/\n\s*(\*|-)(.*)/' => 'self::ul_list', // ul lists - '/\n[0-9]+\.(.*)/' => 'self::ol_list', // ol lists - '/\n(>|\>)(.*)/' => 'self::blockquote', // blockquotes - '/\n-{3,}/' => "\n
", // horizontal rule - '/\n([^\n]+)\n\n/' => 'self::para', // add paragraphs - '/<\/ul>\s?
    /' => '', // fix extra ul - '/<\/ol>\s?
      /' => '', // fix extra ol - '/<\/blockquote>
      /' => "\n" // fix extra blockquote - ); - private static function para ($regs) { - $line = $regs[1]; - $trimmed = trim ($line); - if (preg_match ('/^<\/?(ul|ol|li|h|p|bl)/', $trimmed)) { - return "\n" . $line . "\n"; - } - return sprintf ("\n

      %s

      \n", $trimmed); - } - private static function ul_list ($regs) { - $item = $regs[2]; - return sprintf ("\n
        \n\t
      • %s
      • \n
      ", trim($item)); - } - private static function ol_list ($regs) { - $item = $regs[1]; - return sprintf ("\n
        \n\t
      1. %s
      2. \n
      ", trim($item)); - } - private static function blockquote ($regs) { - $item = $regs[2]; - return sprintf ("\n
      %s
      ", trim($item)); - } - private static function header ($regs) { - list ($tmp, $chars, $header) = $regs; - $level = strlen ($chars); - return sprintf ('%s', $level + 1, trim($header), $level + 1); - } - - /** - * Add a rule. - */ - public static function add_rule ($regex, $replacement) { - self::$rules[$regex] = $replacement; - } - - /** - * Render some Markdown into HTML. - */ - public static function render ($text) { - foreach (self::$rules as $regex => $replacement) { - if (is_callable ( $replacement)) { - $text = preg_replace_callback ($regex, $replacement, $text); - } else { - $text = preg_replace ($regex, $replacement, $text); - } - } - return trim ($text); - } -} -//////////////////////////////////////////////////////////////////////////////////////////// -//////////////////////////////////////////////////////////////////////////////////////////// - -/////////////////////////////////////////// -//////////////// Functions //////////////// -/////////////////////////////////////////// -//from http://php.net/manual/en/function.filesize.php#106569 -//edited by Starbeamrainbowlabs -function human_filesize($bytes, $decimals = 2) -{ - $sz = ["B", "KB", "MB", "GB", "TB", "PB", "EB", "YB", "ZB"]; - $factor = floor((strlen($bytes) - 1) / 3); - return sprintf("%.{$decimals}f", $bytes / pow(1024, $factor)) . @$sz[$factor]; -} -//from http://snippets.pro/snippet/137-php-convert-the-timestamp-to-human-readable-format/ -function human_time_since($time) -{ - $timediff = time() - $time; - $tokens = array ( - 31536000 => 'year', - 2592000 => 'month', - 604800 => 'week', - 86400 => 'day', - 3600 => 'hour', - 60 => 'minute', - 1 => 'second' - ); - foreach ($tokens as $unit => $text) { - if ($timediff < $unit) continue; - $numberOfUnits = floor($timediff / $unit); - return $numberOfUnits.' '.$text.(($numberOfUnits>1)?'s':'').' ago'; - } -} -/////////////////////////////////////////// - -switch($_GET["action"]) -{ - /* - * _ _ _ - * ___ __| (_) |_ - * / _ \/ _` | | __| - * | __/ (_| | | |_ - * \___|\__,_|_|\__| - * %edit% - */ - case "edit": - $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", "")); - } - else - { - http_response_code(404); - exit(renderpage("404 - $page", "

      The page $page does not exist, but you do not have permission to create it.

      If you haven't already, perhaps you should try logging in.

      ")); - } - } - - $content = "

      $title

      "; - if(!$isloggedin and $settings->anonedits) - { - $content .= "

      Warning: You are not logged in! Your IP address may be recorded.

      "; - } - $content .= "
      - - -
      "; - exit(renderpage("$title - $settings->sitename", $content)); - break; - - /* - * - * ___ __ ___ _____ - * / __|/ _` \ \ / / _ \ - * \__ \ (_| |\ V / __/ - * |___/\__,_| \_/ \___| - * %save% - */ - case "save": - if(!$settings->editing) - { - header("location: index.php?page=$page"); - exit(renderpage("Error saving edit", "

      Editing is currently disabled on this wiki.

      ")); - } - 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", "

      $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.

      -

      Please tell the administrator of this wiki (" . $settings->admindetails["name"] . ") about this problem.

      ")); - } - break; - - /* - * _ _ _ - * | (_)___| |_ - * | | / __| __| - * | | \__ \ |_ - * |_|_|___/\__| - * %list% - */ - case "list": - $title = "All Pages"; - $content = "

      $title on $settings->sitename

      - - - - - - - \n"; - foreach($pageindex as $pagename => $pagedetails) - { - $content .= "\t\t - - - - - - \n"; - } - $content .= "
      Page NameSizeLast EditorLast Edit Time
      $pagename" . human_filesize($pagedetails->size) . "$pagedetails->lasteditor" . human_time_since($pagedetails->lastmodified) . " (" . date("l jS \of F Y \a\\t h:ia T", $pagedetails->lastmodified) . ")
      "; - exit(renderpage("$title - $settings->sitename", $content)); - break; - - /* - * _ _ _ - * __| | ___| | ___| |_ ___ - * / _` |/ _ \ |/ _ \ __/ _ \ - * | (_| | __/ | __/ || __/ - * \__,_|\___|_|\___|\__\___| - * %delete% - */ - case "delete": - if(!$settings->editing) - { - exit(renderpage("Deleting $page - error", "

      You tried to delete $page, but editing is disabled on this wiki.

      -

      If you wish to delete this page, please re-enable editing on this wiki first.

      -

      Go back to $page.

      -

      Nothing has been changed.

      ")); - } - if(!$isadmin) - { - exit(renderpage("Deleting $page - error", "

      You tried to delete $page, but you are not an admin so you don't have permission to do that.

      -

      You should try logging in as an admin.

      ")); - } - if(!isset($_GET["delete"]) or $_GET["delete"] !== "yes") - { - exit(renderpage("Deleting $page", "

      You are about to delete $page. You can't undo this!

      -

      Click here to delete $page.

      -

      Click here to go back.")); - } - unset($pageindex->$page); //delete the page from the page index - file_put_contents("./pageindex.json", json_encode($pageindex, JSON_PRETTY_PRINT)); //save the new page index - unlink("./$page.md"); //delete the page from the disk - - exit(renderpage("Deleting $page - $settings->sitename", "

      $page has been deleted. Go back to the main page.

      ")); - break; - - /* - * __ __ - * | \/ | _____ _____ - * | |\/| |/ _ \ \ / / _ \ - * | | | | (_) \ V / __/ - * |_| |_|\___/ \_/ \___| - * %move% - */ - case "move": - if(!$settings->editing) - { - exit(renderpage("Moving $page - error", "

      You tried to move $page, but editing is disabled on this wiki.

      -

      If you wish to move this page, please re-enable editing on this wiki first.

      -

      Go back to $page.

      -

      Nothing has been changed.

      ")); - } - if(!$isadmin) - { - exit(renderpage("Moving $page - Error", "

      You tried to move $page, but you do not have permission to do that.

      -

      You should try logging in as an admin.

      ")); - } - - if(!isset($_GET["new_name"]) or strlen($_GET["new_name"]) == 0) - exit(renderpage("Moving $page", "

      Moving $page

      -
      - - - -
      - - -
      - -
      ")); - - $new_name = makepathsafe($_GET["new_name"]); - - if(!isset($pageindex->$page)) - exit(renderpage("Moving $page - Error", "

      You tried to move $page to $new_name, but the page with the name $page does not exist in the first place.

      -

      Nothing has been changed.

      ")); - - if($page == $new_name) - exit(renderpage("Moving $page - Error", "

      You tried to move $page, but the new name you gave is the same as it's current name.

      -

      It is possible that you tried to use some characters in the new name that are not allowed and were removed.

      -

      Page names may only contain alphanumeric characters, dashes, and underscores.

      ")); - - //move the page in the page index - $pageindex->$new_name = new stdClass(); - foreach($pageindex->$page as $key => $value) - { - $pageindex->$new_name->$key = $value; - } - unset($pageindex->$page); - file_put_contents("./pageindex.json", json_encode($pageindex, JSON_PRETTY_PRINT)); - - //move the page on the disk - rename("$page.md", "$new_name.md"); - - exit(renderpage("Moving $page", "

      $page has been moved to $new_name successfully.

      ")); - break; - - /* - * _ _ - * | |__ ___| |_ __ - * | '_ \ / _ \ | '_ \ - * | | | | __/ | |_) | - * |_| |_|\___|_| .__/ - * %help% |_| - */ - case "help": - $title = "Help - $settings->sitename"; - $content = "

      $settings->sitename Help

      -

      Welcome to $settings->sitename!

      -

      $settings->sitename is powered by Pepperminty wiki, a complete wiki in a box you can drop into your server.

      -

      Navigating

      -

      All the navigation links can be found in the top right corner, along with a box in which you can type a page name and hit enter to be taken to that page (if your site administrator has enabled it).

      -

      In order to edit pages on $settings->sitename, you probably need to be logged in. If you do not already have an account you will need to ask $settings->sitename's administrator for an account since there is not registration form. Note that the $settings->sitename's administrator may have changed these settings to allow anonymous edits.

      -

      Editing

      -

      $settings->sitename's editor uses a modified version of slimdown, a flavour of markdown that is implementated using regular expressions. See the credits page for more information and links to the original source for this. A quick reference can be found below:

      - - - - - - - - - - - - - - One - - Two - - Three -
      Type ThisTo get this
      _italics_italics
      *bold*bold
      # Heading

      Heading

      ## Sub Heading

      Sub Heading

      [[Internal Link]]Internal Link
      [[Display Text|Internal Link]]Display Text
      [Display text](//google.com/)Display Text
      ~~Strikethrough~~Strikethough
      > Blockquote
      > Some text
      Blockquote
      Some text
      - --- -
      • One
      • Two
      • Three
      -

      Administrator Actions

      -

      By default, the delete and move actions are shown on the nav bar. These can be used by administrators to delete or move pages.

      -

      The other thing admininistrators can do is update the wiki (provided they know the site's secret). This page can be found here: Update $settings->sitename.

      -

      $settings->sitename is currently running on Pepperminty Wiki $version

      "; - exit(renderpage($title, $content)); - break; - - /* - * _ _ - * | | ___ __ _(_)_ __ - * | |/ _ \ / _` | | '_ \ - * | | (_) | (_| | | | | | - * |_|\___/ \__, |_|_| |_| - * |___/ %login% - */ - case "login": - $title = "Login to $settings->sitename"; - $content = "

      Login to $settings->sitename

      \n"; - if(isset($_GET["failed"])) - $content .= "\t\t

      Login failed.

      \n"; - $content .= "\t\t
      - -
      - - - -
      "; - exit(renderpage($title, $content)); - break; - - /* - * _ _ _ _ - * ___| |__ ___ ___| | _| | ___ __ _(_)_ __ - * / __| '_ \ / _ \/ __| |/ / |/ _ \ / _` | | '_ \ - * | (__| | | | __/ (__| <| | (_) | (_| | | | | | - * \___|_| |_|\___|\___|_|\_\_|\___/ \__, |_|_| |_| - * %checklogin% |___/ - */ - case "checklogin": - //actually do the login - if(isset($_POST["user"]) and isset($_POST["pass"])) - { - //the user wants to log in - $user = $_POST["user"]; - $pass = $_POST["pass"]; - if($settings->users[$user] == hash("sha256", $pass)) - { - $isloggedin = true; - $expiretime = time() + 60*60*24*30; //30 days from now - $_SESSION["$settings->sessionprefix-user"] = $user; - $_SESSION["$settings->sessionprefix-pass"] = hash("sha256", $pass); - $_SESSION["$settings->sessionprefix-expiretime"] = $expiretime; - //redirect to wherever the user was going - http_response_code(302); - if(isset($_POST["goto"])) - header("location: " . $_POST["returnto"]); - else - header("location: index.php"); - exit(); - } - else - { - http_response_code(302); - header("location: index.php?action=login&failed=yes"); - exit(); - } - } - else - { - http_response_code(302); - header("location: index.php?action=login&failed=yes&badrequest=yes"); - exit(); - } - break; - - /* - * _ _ - * | | ___ __ _ ___ _ _| |_ - * | |/ _ \ / _` |/ _ \| | | | __| - * | | (_) | (_| | (_) | |_| | |_ - * |_|\___/ \__, |\___/ \__,_|\__| - * |___/ %logout% - */ - case "logout": - $isloggedin = false; - unset($user); - unset($pass); - //clear the session variables - $_SESSION = []; - session_destroy(); - - exit(renderpage("Logout Successful", "

      Logout Successful

      -

      Logout Successful. You can login again here.

      ")); - break; - - /* - * _ _ _ - * ___ _ __ ___ __| (_) |_ ___ - * / __| '__/ _ \/ _` | | __/ __| - * | (__| | | __/ (_| | | |_\__ \ - * \___|_| \___|\__,_|_|\__|___/ - * %credits% - */ - case "credits": - $title = "Credits - $settings->sitename"; - $content = "

      $settings->sitename credits

      -

      $settings->sitename is powered by Pepperminty Wiki - an entire wiki packed inside a single file, which was built by Starbeamrainbowlabs, and can be found on github.

      -

      A slightly modified version of slimdown is used to parse text source into HTML. Slimdown is by Johnny Broadway, which can be found on github.

      -

      The default favicon is from Open Clipart by bluefrog23, and can be found here.

      -

      Administrators can update $settings->sitename here: Update $settings->sitename.

      -

      $settings->sitename is currently running on Pepperminty Wiki $version

      "; - exit(renderpage($title, $content)); - break; - - /* - * _ _ - * _ _ _ __ __| |__ _| |_ ___ - * | || | '_ \/ _` / _` | _/ -_) - * \_,_| .__/\__,_\__,_|\__\___| - * |_| %update% - */ - case "update": - if(!$settings->isadmin) - { - http_response_code(401); - exit(renderpage("Update - Error", "

      You must be an administrator to do that.

      ")); - } - - if(!isset($_GET["do"]) or $_GET["do"] !== "true") - { - exit(renderpage("Update $settings->sitename", "

      This page allows you to update $settings->sitename.

      -

      Currently, $settings->sitename is using $settings->version of Pepperminty Wiki.

      -

      This script will automatically download and install the latest version of Pepperminty Wiki from the url of your choice (see settings), regardless of whether an update is actually needed (version checking isn't implemented yet).

      -

      To update $settings->sitename, fill out the form below and click click the update button.

      -
      - - - - - -
      ")); - } - - if(!isset($_GET["secret"]) or $_GET["secret"] !== $settings->sitesecret) - { - exit(renderpage("Update $settings->sitename - Error", "

      You forgot to enter $settings->sitename's secret code or entered it incorrectly. $settings->sitename's secret can be found in the settings portion of index.php.

      ")); - } - - $settings_separator = "/////////////// Do not edit below this line unless you know what you are doing! ///////////////"; - - $log = "Beginning update...\n"; - - $log .= "I am " . __FILE__ . ".\n"; - $oldcode = file_get_contents(__FILE__); - $log .= "Fetching new code..."; - $newcode = file_get_contents($updateurl); - $log .= "done.\n"; - - $log .= "Rewriting " . __FILE__ . "..."; - $settings = substr($oldcode, 0, strpos($oldcode, $settings_separator)); - $code = substr($newcode, strpos($newcode, $settings_separator)); - $result = $settings . $code; - $log .= "done.\n"; - - $log .= "Saving..."; - file_put_contents(__FILE__, $result); - $log .= "done.\n"; - - $log .= "Update complete. I am now running on the latest version of Pepperminty Wiki."; - $log .= "The version number that I have updated to can be found on the credits or help ages."; - - exit(renderpage("Update - Success", "
      • " . implode("
      • ", explode("\n", $log)) . "
      ")); - - break; - - /* - * _ _ - * | |__ __ _ ___| |__ - * | '_ \ / _` / __| '_ \ - * | | | | (_| \__ \ | | | - * |_| |_|\__,_|___/_| |_| - * %hash% - */ - case "hash": - if(!isset($_GET["string"])) - { - http_response_code(400); - exit(renderpage("Bad request", "

      The GET parameter string must be specified.

      -

      It is strongly recommended that you utilise this page via a private or incognito window in order to prevent your password from appearing in your browser history.

      ")); - } - else - { - exit(renderpage("Hashed string", "

      " . $_GET["string"] . "" . hash("sha256", $_GET["string"] . "

      "))); - } - break; - - /* - * _ - * __ _(_) _____ __ - * \ \ / / |/ _ \ \ /\ / / - * \ V /| | __/\ V V / - * \_/ |_|\___| \_/\_/ - * %view% - */ - case "view": - default: - //check to make sure that the page exists - if(!isset($pageindex->$page)) - { - // todo make this intelligent so we only redirect if the user is acutally able to create the page - if($settings->editing) - { - //editing is enabled, redirect to the editing page - http_response_code(307); //temporary redirect - header("location: index.php?action=edit&newpage=yes&page=" . rawurlencode($page)); - exit(); - } - else - { - //editing is disabled, show an error message - http_response_code(404); - exit(renderpage("$page - 404 - $settings->sitename", "

      $page does not exist.

      Since editing is currently disabled on this wiki, you may not create this page. If you feel that this page should exist, try contacting this wiki's Administrator.

      ")); - } - } - $title = "$page - $settings->sitename"; - $content = "

      $page

      "; - - $slimdown_start = microtime(true); - - $content .= Slimdown::render(file_get_contents("$page.md")); - - $content .= "\n\t\n"; - - if(isset($_GET["printable"]) and $_GET["printable"] === "yes") - $minimal = true; - else - $minimal = false; - exit(renderpage($title, $content, $minimal)); - break; -} -?> + + + +/////////////////////////////////////////////////////////////////////////////////////////////// +/////////////// Do not edit below this line unless you know what you are doing! /////////////// +/////////////////////////////////////////////////////////////////////////////////////////////// +$version = "0.4"; +session_start(); +///////// Login System ///////// +//clear expired sessions +if(isset($_SESSION["$settings->sessionprefix-expiretime"]) and + $_SESSION["$settings->sessionprefix-expiretime"] < time()) +{ + //clear the session variables + $_SESSION = []; + session_destroy(); +} + +if(!isset($_SESSION[$settings->sessionprefix . "-user"]) and + !isset($_SESSION[$settings->sessionprefix . "-pass"])) +{ + //the user is not logged in + $isloggedin = false; +} +else +{ + $user = $_SESSION[$settings->sessionprefix . "-user"]; + $pass = $_SESSION[$settings->sessionprefix . "-pass"]; + if($settings->users[$user] == $pass) + { + //the user is logged in + $isloggedin = true; + } + else + { + //the user's login details are invalid (what is going on here?) + //unset the session variables, treat them as an anonymous user, and get out of here + $isloggedin = false; + unset($user); + unset($pass); + //clear the session data + $_SESSION = []; //delete al lthe variables + session_destroy(); //destroy the session + } +} +//check to see if the currently logged in user is an admin +$isadmin = false; +if($isloggedin) +{ + foreach($settings->admins as $admin_username) + { + if($admin_username == $user) + { + $isadmin = true; + break; + } + } +} +/////// Login System End /////// + +/////////////////////////////////////////////////////////////////////////////////////////// +//////////////////////////// Security and Consistency Measures //////////////////////////// +/////////////////////////////////////////////////////////////////////////////////////////// +if(!file_exists("./pageindex.json")) +{ + $existingpages = glob("*.md"); + $pageindex = new stdClass(); + foreach($existingpages as $pagefilename) + { + $newentry = new stdClass(); + $newentry->filename = utf8_encode($pagefilename); + $newentry->size = filesize($pagefilename); + $newentry->lastmodified = filemtime($pagefilename); + $newentry->lasteditor = utf8_encode("unknown"); + $pagekey = utf8_encode(substr($pagefilename, 0, -3)); + $pageindex->$pagekey = $newentry; + } + file_put_contents("./pageindex.json", json_encode($pageindex, JSON_PRETTY_PRINT)); + unset($existingpages); +} +else +{ + $pageindex = json_decode(file_get_contents("./pageindex.json")); +} +/* + * @summary makes a path safe + * + * @details paths may only contain alphanumeric characters, spaces, underscores, and dashes + */ +function makepathsafe($string) { return preg_replace("/[^0-9a-zA-Z\_\-\ ]/i", "", $string); } + +/* + * @summary Hides an email address from bots by adding random html entities. + * + * @returns The mangled email address. + */ +function hide_email($str) +{ + $hidden_email = ""; + for($i = 0; $i < strlen($str); $i++) + { + if($str[$i] == "@") + { + $hidden_email .= "&#" . ord("@") . ";"; + continue; + } + if(rand(0, 1) == 0) + $hidden_email .= $str[$i]; + else + $hidden_email .= "&#" . ord($str[$i]) . ";"; + } + + return $hidden_email; +} + +//Work around an Opera + Syntastic bug where there is no margin at the left hand side if there isn't a query string when accessing a .php file +if(!isset($_GET["action"]) and !isset($_GET["page"])) +{ + http_response_code(302); + header("location: index.php?action=$settings->defaultaction&page=$defaultpage"); + exit(); +} + +//make sure that the action is set +if(!isset($_GET["action"])) + $_GET["action"] = "view"; + +if(!isset($_GET["page"]) or strlen($_GET["page"]) === 0) + $_GET["page"] = $settings->defaultpage; + +//redirect the user to the safe version of the path if they entered an unsafe character +if(makepathsafe($_GET["page"]) !== $_GET["page"]) +{ + http_response_code(301); + header("location: index.php?action=" . rawurlencode($_GET["action"]) . "&page=" . makepathsafe($_GET["page"])); + header("x-requested-page: " . $_GET["page"]); + header("x-actual-page: " . makepathsafe($_GET["page"])); + exit(); +} +$page = $_GET["page"]; + +/////////////////////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////////////////////////// + +//////////////////////////////////////////////////////////////////////////////////////////// +////////////////////////////////////// HTML fragments ////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////////////////////// +function renderpage($title, $content, $minimal = false) +{ + global $settings, $page, $user, $isloggedin, $isadmin, $start_time, $pageindex; + + $html = " + + + $title + + "; + if(preg_match("/^[^\/]*\/\/|^\//", $settings->css)) + { + $html .= "\n\t\t\n"; + } + else + { + $html .= "\n\t\t\n"; + } + $html .= "\n"; + + ////////// + + if($minimal) + { + $html .= "$content +
      +

      From $settings->sitename, which is managed by " . $settings->admindetails["name"] . ".

      +

      Timed at " . date("l jS \of F Y \a\\t h:ia T") . ".

      +

      Powered by Pepperminty Wiki

      "; + } + else + { + $html .= " +

      $settings->sitename

      + $content +
      + + \n"; + + foreach($pageindex as $pagename => $pagedetails) + { + $html .= "\t\t"; + } + + ////////// + $gentime = microtime(true) - $start_time; + $html .= "\n\t +"; + + return $html; +} + +//////////////////////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////// Slimdown ///////////////////////////////////////// +////////////////////////////////////////////////////////////////////////////// %slimdown% // +//////////////////////////////////////////////////////////////////////////////////////////// +/** + * Slimdown - A very basic regex-based Markdown parser. Supports the + * following elements (and can be extended via Slimdown::add_rule()): + * + * - Headers + * - Links + * - Bold + * - Emphasis + * - Deletions + * - Quotes + * - Inline code + * - Blockquotes + * - Ordered/unordered lists + * - Horizontal rules + * + * Author: Johnny Broadway + * Website: https://gist.github.com/jbroadway/2836900 + * License: MIT + */ + +/** + * Modified by Starbeamrainbowlabs (starbeamrainbowlabs) + * + * Changed bold to use single asterisks + * Changed italics to use single underscores + * Added one to add the heading levels (no

      tags allowed) + * Added wiki style internal link parsing + * Added wiki style internal link parsing with display text + */ +class Slimdown { + public static $rules = array ( + '/\r\n/' => "\n", // new line normalisation + '/(#+)(.*)/' => 'self::header', // headers + '/(\*)(.*?)\1/' => '\2', // bold + '/(_)(.*?)\1/' => '\2', // emphasis + '/\[\[([a-zA-Z0-9\_\- ]+)\|([a-zA-Z0-9\_\- ]+)\]\]/' => '\2', //internal links with display text + '/\[\[([a-zA-Z0-9\_\- ]+)\]\]/' => '\1', //internal links + '/\[([^\[]+)\]\(([^\)]+)\)/' => '\1', // links + '/\~\~(.*?)\~\~/' => '\1', // del + '/\:\"(.*?)\"\:/' => '\1', // quote + '/`(.*?)`/' => '\1', // inline code + '/\n\s*(\*|-)(.*)/' => 'self::ul_list', // ul lists + '/\n[0-9]+\.(.*)/' => 'self::ol_list', // ol lists + '/\n(>|\>)(.*)/' => 'self::blockquote', // blockquotes + '/\n-{3,}/' => "\n
      ", // horizontal rule + '/\n([^\n]+)\n\n/' => 'self::para', // add paragraphs + '/<\/ul>\s?
        /' => '', // fix extra ul + '/<\/ol>\s?
          /' => '', // fix extra ol + '/<\/blockquote>
          /' => "\n" // fix extra blockquote + ); + private static function para ($regs) { + $line = $regs[1]; + $trimmed = trim ($line); + if (preg_match ('/^<\/?(ul|ol|li|h|p|bl)/', $trimmed)) { + return "\n" . $line . "\n"; + } + return sprintf ("\n

          %s

          \n", $trimmed); + } + private static function ul_list ($regs) { + $item = $regs[2]; + return sprintf ("\n
            \n\t
          • %s
          • \n
          ", trim($item)); + } + private static function ol_list ($regs) { + $item = $regs[1]; + return sprintf ("\n
            \n\t
          1. %s
          2. \n
          ", trim($item)); + } + private static function blockquote ($regs) { + $item = $regs[2]; + return sprintf ("\n
          %s
          ", trim($item)); + } + private static function header ($regs) { + list ($tmp, $chars, $header) = $regs; + $level = strlen ($chars); + return sprintf ('%s', $level + 1, trim($header), $level + 1); + } + + /** + * Add a rule. + */ + public static function add_rule ($regex, $replacement) { + self::$rules[$regex] = $replacement; + } + + /** + * Render some Markdown into HTML. + */ + public static function render ($text) { + foreach (self::$rules as $regex => $replacement) { + if (is_callable ( $replacement)) { + $text = preg_replace_callback ($regex, $replacement, $text); + } else { + $text = preg_replace ($regex, $replacement, $text); + } + } + return trim ($text); + } +} +//////////////////////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////////////////////// + +/////////////////////////////////////////// +//////////////// Functions //////////////// +/////////////////////////////////////////// +//from http://php.net/manual/en/function.filesize.php#106569 +//edited by Starbeamrainbowlabs +function human_filesize($bytes, $decimals = 2) +{ + $sz = ["B", "KB", "MB", "GB", "TB", "PB", "EB", "YB", "ZB"]; + $factor = floor((strlen($bytes) - 1) / 3); + return sprintf("%.{$decimals}f", $bytes / pow(1024, $factor)) . @$sz[$factor]; +} +//from http://snippets.pro/snippet/137-php-convert-the-timestamp-to-human-readable-format/ +function human_time_since($time) +{ + $timediff = time() - $time; + $tokens = array ( + 31536000 => 'year', + 2592000 => 'month', + 604800 => 'week', + 86400 => 'day', + 3600 => 'hour', + 60 => 'minute', + 1 => 'second' + ); + foreach ($tokens as $unit => $text) { + if ($timediff < $unit) continue; + $numberOfUnits = floor($timediff / $unit); + return $numberOfUnits.' '.$text.(($numberOfUnits>1)?'s':'').' ago'; + } +} +/////////////////////////////////////////// + +////////////////////////// +/// Module functions /// +////////////////////////// +// These functions are // +// used by modules to // +// register themselves // +// or new pages. // +////////////////////////// +$modules = []; // list that contains all the loaded modules +// function to register a module +function register_module($moduledata) +{ + $modules[] = $moduledata; +} + +// function to register an action handler +$actions = new stdClass(); +function add_action($action_name, $func) +{ + $actions->$action_name = $func; +} + +////////////////////////////////////////////////////////////////// + + + +register_module([ + "name" => "Password hashing action", + "version" => "0.4", + "author" => "Starbeamrainbowlabs", + "description" => "Adds a utility action (that anyone can use) called hash that hashes a given string. Useful when changing a user's password.", + "id" => "action-hash", + "code" => function() { + add_action("hash", function() { + if(!isset($_GET["string"])) + { + http_response_code(422); + exit(renderpage("Missing parameter", "

          The GET parameter string must be specified.

          +

          It is strongly recommended that you utilise this page via a private or incognito window in order to prevent your password from appearing in your browser history.

          ")); + } + else + { + exit(renderpage("Hashed string", "

          " . $_GET["string"] . "" . hash("sha256", $_GET["string"] . "

          "))); + } + }); + } +]); + + + + +register_module([ + "name" => "Credits", + "version" => "0.4", + "author" => "Starbeamrainbowlabs", + "description" => "Adds the credits page. You *must* have this module :D", + "id" => "page-credits", + "code" => function() { + add_action("credits", function() { + global $settings, $version; + + $title = "Credits - $settings->sitename"; + $content = "

          $settings->sitename credits

          +

          $settings->sitename is powered by Pepperminty Wiki - an entire wiki packed inside a single file, which was built by Starbeamrainbowlabs, and can be found on github (contributors will ablso be listed here in the future).

          +

          A slightly modified version of slimdown is used to parse text source into HTML. Slimdown is by Johnny Broadway, which can be found on github.

          +

          The default favicon is from Open Clipart by bluefrog23, and can be found here.

          +

          Administrators can update $settings->sitename here: Update $settings->sitename.

          +

          $settings->sitename is currently running on Pepperminty Wiki $version

          "; + exit(renderpage($title, $content)); + }); + } +]); + + + + +register_module([ + "name" => "Page deleter", + "version" => "0.4", + "author" => "Starbeamrainbowlabs", + "description" => "Adds an action to allow administrators to delete pages.", + "id" => "page-delete", + "code" => function() { + add_action("delete", function() { + global $pageindex, $settings, $page, $isadmin; + if(!$settings->editing) + { + exit(renderpage("Deleting $page - error", "

          You tried to delete $page, but editing is disabled on this wiki.

          +

          If you wish to delete this page, please re-enable editing on this wiki first.

          +

          Go back to $page.

          +

          Nothing has been changed.

          ")); + } + if(!$isadmin) + { + exit(renderpage("Deleting $page - error", "

          You tried to delete $page, but you are not an admin so you don't have permission to do that.

          +

          You should try logging in as an admin.

          ")); + } + if(!isset($_GET["delete"]) or $_GET["delete"] !== "yes") + { + exit(renderpage("Deleting $page", "

          You are about to delete $page. You can't undo this!

          +

          Click here to delete $page.

          +

          Click here to go back.")); + } + unset($pageindex->$page); //delete the page from the page index + file_put_contents("./pageindex.json", json_encode($pageindex, JSON_PRETTY_PRINT)); //save the new page index + unlink("./$page.md"); //delete the page from the disk + + exit(renderpage("Deleting $page - $settings->sitename", "

          $page has been deleted. Go back to the main page.

          ")); + }); + } +]); + + + + +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", "")); + } + else + { + http_response_code(404); + exit(renderpage("404 - $page", "

          The page $page does not exist, but you do not have permission to create it.

          If you haven't already, perhaps you should try logging in.

          ")); + } + } + + $content = "

          $title

          "; + if(!$isloggedin and $settings->anonedits) + { + $content .= "

          Warning: You are not logged in! Your IP address may be recorded.

          "; + } + $content .= "
          + + +
          "; + 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", "

          Editing is currently disabled on this wiki.

          ")); + } + 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", "

          $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.

          +

          Please tell the administrator of this wiki (" . $settings->admindetails["name"] . ") about this problem.

          ")); + } + }); + } +]); + + + + +register_module([ + "name" => "Help page", + "version" => "0.4", + "author" => "Starbeamrainbowlabs", + "description" => "Adds the help action. You really want this one.", + "id" => "page-help", + "code" => function() { + add_action("help", function() { + global $settings, $version; + + $title = "Help - $settings->sitename"; + $content = "

          $settings->sitename Help

          +

          Welcome to $settings->sitename!

          +

          $settings->sitename is powered by Pepperminty wiki, a complete wiki in a box you can drop into your server.

          +

          Navigating

          +

          All the navigation links can be found in the top right corner, along with a box in which you can type a page name and hit enter to be taken to that page (if your site administrator has enabled it).

          +

          In order to edit pages on $settings->sitename, you probably need to be logged in. If you do not already have an account you will need to ask $settings->sitename's administrator for an account since there is not registration form. Note that the $settings->sitename's administrator may have changed these settings to allow anonymous edits.

          +

          Editing

          +

          $settings->sitename's editor uses a modified version of slimdown, a flavour of markdown that is implementated using regular expressions. See the credits page for more information and links to the original source for this. A quick reference can be found below:

          + + + + + + + + + + + + + - One + - Two + - Three +
          Type ThisTo get this
          _italics_italics
          *bold*bold
          # Heading

          Heading

          ## Sub Heading

          Sub Heading

          [[Internal Link]]Internal Link
          [[Display Text|Internal Link]]Display Text
          [Display text](//google.com/)Display Text
          ~~Strikethrough~~Strikethough
          > Blockquote
          > Some text
          Blockquote
          Some text
          + --- +
          • One
          • Two
          • Three
          +

          Administrator Actions

          +

          By default, the delete and move actions are shown on the nav bar. These can be used by administrators to delete or move pages.

          +

          The other thing admininistrators can do is update the wiki (provided they know the site's secret). This page can be found here: Update $settings->sitename.

          +

          $settings->sitename is currently running on Pepperminty Wiki $version

          "; + exit(renderpage($title, $content)); + }); + } +]); + + + + +register_module([ + "name" => "Page list", + "version" => "0.4", + "author" => "Starbeamrainbowlabs", + "description" => "Adds a page that lists all the pages in the index long with their metadata.", + "id" => "page-list", + "code" => function() { + add_action("list", function() { + global $pageindex, $settings; + $title = "All Pages"; + $content = "

          $title on $settings->sitename

          + + + + + + + \n"; + foreach($pageindex as $pagename => $pagedetails) + { + $content .= "\t\t + + + + + + \n"; + } + $content .= "
          Page NameSizeLast EditorLast Edit Time
          $pagename" . human_filesize($pagedetails->size) . "$pagedetails->lasteditor" . human_time_since($pagedetails->lastmodified) . " (" . date("l jS \of F Y \a\\t h:ia T", $pagedetails->lastmodified) . ")
          "; + exit(renderpage("$title - $settings->sitename", $content)); + }); + } +]); + + + + +register_module([ + "name" => "Login", + "version" => "0.4", + "author" => "Starbeamrainbowlabs", + "description" => "Adds a pair of actions (login and checklogin) that allow users to login. You need this one if you want your users to be able to login.", + "id" => "page-login", + "code" => function() { + /* + * _ _ + * | | ___ __ _(_)_ __ + * | |/ _ \ / _` | | '_ \ + * | | (_) | (_| | | | | | + * |_|\___/ \__, |_|_| |_| + * |___/ %login% + */ + add_action("login", function() { + global $settings; + $title = "Login to $settings->sitename"; + $content = "

          Login to $settings->sitename

          \n"; + if(isset($_GET["failed"])) + $content .= "\t\t

          Login failed.

          \n"; + $content .= "\t\t
          + +
          + + + +
          "; + exit(renderpage($title, $content)); + }); + + /* + * _ _ _ _ + * ___| |__ ___ ___| | _| | ___ __ _(_)_ __ + * / __| '_ \ / _ \/ __| |/ / |/ _ \ / _` | | '_ \ + * | (__| | | | __/ (__| <| | (_) | (_| | | | | | + * \___|_| |_|\___|\___|_|\_\_|\___/ \__, |_|_| |_| + * %checklogin% |___/ + */ + add_action("checklogin", function() { + global $settings; + + //actually do the login + if(isset($_POST["user"]) and isset($_POST["pass"])) + { + //the user wants to log in + $user = $_POST["user"]; + $pass = $_POST["pass"]; + if($settings->users[$user] == hash("sha256", $pass)) + { + $isloggedin = true; + $expiretime = time() + 60*60*24*30; //30 days from now + $_SESSION["$settings->sessionprefix-user"] = $user; + $_SESSION["$settings->sessionprefix-pass"] = hash("sha256", $pass); + $_SESSION["$settings->sessionprefix-expiretime"] = $expiretime; + //redirect to wherever the user was going + http_response_code(302); + if(isset($_POST["goto"])) + header("location: " . $_POST["returnto"]); + else + header("location: index.php"); + exit(); + } + else + { + http_response_code(302); + header("location: index.php?action=login&failed=yes"); + exit(); + } + } + else + { + http_response_code(302); + header("location: index.php?action=login&failed=yes&badrequest=yes"); + exit(); + } + }); + } +]); + + + +register_module([ + "name" => "Logout", + "version" => "0.4", + "author" => "Starbeamrainbowlabs", + "description" => "Adds an action to let users user out. For security reasons it is wise to add this module since logging in automatically opens a session that is valid for 30 days.", + "id" => "page-logout", + "code" => function() { + add_action("logout", function() { + global $user, $pass, $isloggedin; + $isloggedin = false; + unset($user); + unset($pass); + //clear the session variables + $_SESSION = []; + session_destroy(); + + exit(renderpage("Logout Successful", "

          Logout Successful

          +

          Logout Successful. You can login again here.

          ")); + }); + } +]); + + + + +register_module([ + "name" => "Page mover", + "version" => "0.4", + "author" => "Starbeamrainbowlabs", + "description" => "Adds an action to allow administrators to move pages.", + "id" => "page-move", + "code" => function() { + add_action("move", function() { + global $pageindex, $settings, $page, $isadmin; + if(!$settings->editing) + { + exit(renderpage("Moving $page - error", "

          You tried to move $page, but editing is disabled on this wiki.

          +

          If you wish to move this page, please re-enable editing on this wiki first.

          +

          Go back to $page.

          +

          Nothing has been changed.

          ")); + } + if(!$isadmin) + { + exit(renderpage("Moving $page - Error", "

          You tried to move $page, but you do not have permission to do that.

          +

          You should try logging in as an admin.

          ")); + } + + if(!isset($_GET["new_name"]) or strlen($_GET["new_name"]) == 0) + exit(renderpage("Moving $page", "

          Moving $page

          +
          + + + +
          + + +
          + +
          ")); + + $new_name = makepathsafe($_GET["new_name"]); + + if(!isset($pageindex->$page)) + exit(renderpage("Moving $page - Error", "

          You tried to move $page to $new_name, but the page with the name $page does not exist in the first place.

          +

          Nothing has been changed.

          ")); + + if($page == $new_name) + exit(renderpage("Moving $page - Error", "

          You tried to move $page, but the new name you gave is the same as it's current name.

          +

          It is possible that you tried to use some characters in the new name that are not allowed and were removed.

          +

          Page names may only contain alphanumeric characters, dashes, and underscores.

          ")); + + //move the page in the page index + $pageindex->$new_name = new stdClass(); + foreach($pageindex->$page as $key => $value) + { + $pageindex->$new_name->$key = $value; + } + unset($pageindex->$page); + file_put_contents("./pageindex.json", json_encode($pageindex, JSON_PRETTY_PRINT)); + + //move the page on the disk + rename("$page.md", "$new_name.md"); + + exit(renderpage("Moving $page", "

          $page has been moved to $new_name successfully.

          ")); + }); + } +]); + + + +register_module([ + "name" => "Update", + "version" => "0.4", + "author" => "Starbeamrainbowlabs", + "description" => "Adds an update page that downloads the latest stable version of Pepperminty Wiki. This module is currently outdated as it doesn't save your module preferences.", + "id" => "page-update", + "code" => function() { + add_action("update", function() { + global $settings, $isadmin; + + if(!$isadmin) + { + http_response_code(401); + exit(renderpage("Update - Error", "

          You must be an administrator to do that.

          ")); + } + + if(!isset($_GET["do"]) or $_GET["do"] !== "true") + { + exit(renderpage("Update $settings->sitename", "

          This page allows you to update $settings->sitename.

          +

          Currently, $settings->sitename is using $settings->version of Pepperminty Wiki.

          +

          This script will automatically download and install the latest version of Pepperminty Wiki from the url of your choice (see settings), regardless of whether an update is actually needed (version checking isn't implemented yet).

          +

          To update $settings->sitename, fill out the form below and click click the update button.

          +
          + + + + + +
          ")); + } + + if(!isset($_GET["secret"]) or $_GET["secret"] !== $settings->sitesecret) + { + exit(renderpage("Update $settings->sitename - Error", "

          You forgot to enter $settings->sitename's secret code or entered it incorrectly. $settings->sitename's secret can be found in the settings portion of index.php.

          ")); + } + + $settings_separator = "/////////////// Do not edit below this line unless you know what you are doing! ///////////////"; + + $log = "Beginning update...\n"; + + $log .= "I am " . __FILE__ . ".\n"; + $oldcode = file_get_contents(__FILE__); + $log .= "Fetching new code..."; + $newcode = file_get_contents($settings->updateurl); + $log .= "done.\n"; + + $log .= "Rewriting " . __FILE__ . "..."; + $settings = substr($oldcode, 0, strpos($oldcode, $settings_separator)); + $code = substr($newcode, strpos($newcode, $settings_separator)); + $result = $settings . $code; + $log .= "done.\n"; + + $log .= "Saving..."; + file_put_contents(__FILE__, $result); + $log .= "done.\n"; + + $log .= "Update complete. I am now running on the latest version of Pepperminty Wiki."; + $log .= "The version number that I have updated to can be found on the credits or help ages."; + + exit(renderpage("Update - Success", "
          • " . implode("
          • ", explode("\n", $log)) . "
          ")); + }); + } +]); + + + +register_module([ + "name" => "Page viewer", + "version" => "0.4", + "author" => "Starbeamrainbowlabs", + "description" => "Allows you to view pages. You should include this one.", + "id" => "page-view", + "code" => function() { + add_action("view", function() { + global $pageindex, $settings, $page; + + //check to make sure that the page exists + if(!isset($pageindex->$page)) + { + // todo make this intelligent so we only redirect if the user is acutally able to create the page + if($settings->editing) + { + //editing is enabled, redirect to the editing page + http_response_code(307); //temporary redirect + header("location: index.php?action=edit&newpage=yes&page=" . rawurlencode($page)); + exit(); + } + else + { + //editing is disabled, show an error message + http_response_code(404); + exit(renderpage("$page - 404 - $settings->sitename", "

          $page does not exist.

          Since editing is currently disabled on this wiki, you may not create this page. If you feel that this page should exist, try contacting this wiki's Administrator.

          ")); + } + } + $title = "$page - $settings->sitename"; + $content = "

          $page

          "; + + $slimdown_start = microtime(true); + + $content .= Slimdown::render(file_get_contents("$page.md")); + + $content .= "\n\t\n"; + + if(isset($_GET["printable"]) and $_GET["printable"] === "yes") + $minimal = true; + else + $minimal = false; + exit(renderpage($title, $content, $minimal)); + }); + } +]); + + + +// %next_module% // + + +// execute each module's code +foreach($modules as $moduledata) +{ + $moduledata["code"](); +} +// make sure that the credits page exists +if(!isset($actions["credits"])) +{ + exit(renderpage("Error - $settings->$sitename", "

          No credits page detected. The credits page is a required module!

          ")) +} + +// Perform the appropriate action +if(isset($actions[strtolower($_GET["action"])])) +{ + $req_action = strtolower($_GET["action"]); + $req_action_data = $action_name->$req_action; + $req_action_data["code"](); +} +else +{ + exit(renderpage("Error - $settings->sitename", ",p>No action called " . strtolower($_GET["action"]) ." has been registered. Perhaps you are missing a module?

          ")); +} +?>