edit: allow any non-hidden filename
[minimedit.git] / edit.php
old mode 100755 (executable)
new mode 100644 (file)
index 3774bfc..3b280ee
--- a/edit.php
+++ b/edit.php
@@ -1,12 +1,13 @@
 <?php
+ob_clean();
+
 function abort($status, $body) {
        header("HTTP/1.1 $status");
        print "$body\n";
        exit;
 }
 
-require 'auth.inc.php';
-if (!$Admin)
+if (!@$User['admin'])
        abort('401 unauthorised', "geen beheersrechten");
 
 if (!$_POST)
@@ -14,10 +15,10 @@ if (!$_POST)
 if (!isset($_SERVER['PATH_INFO']) or strlen($_SERVER['PATH_INFO']) <= 1)
        abort('409 input error', "geen bestand aangeleverd");
 
-$filename = preg_replace('/(?:\.php)?$/', '.php', ltrim($_SERVER['PATH_INFO'], '/'), 1);
-if (file_exists($filename) and !is_writable($filename))
+$filename = ltrim($Args, '/').'.html';
+if (preg_match('{^\.}', $filename))
        abort('403 input error', "ongeldige bestandsnaam: $filename");
-if (is_executable($filename))
+if (file_exists($filename) and !is_writable($filename))
        abort('403 input error', "onwijzigbaar bestand: $filename");
 
 if (!isset($_POST['body']))
@@ -33,11 +34,10 @@ if (!strlen($upload)) {
        exit;
 }
 
-$rootpath = str_repeat('../', substr_count($filename, '/'));
-$prepend = "<?php include '${rootpath}head.inc.php'; ?>\n\n";
-$append  = "\n";
+if (!file_exists(dirname($filename)) and !mkdir(dirname($filename)))
+       abort('500 save error', "fout bij aanmaken van map voor $filename");
 
-if (!file_put_contents($filename, $prepend . $upload . $append))
+if (!file_put_contents($filename, $upload))
        abort('500 save error', "fout bij schrijven van $filename");
 
 print "Bestand opgeslagen";