Single file editing
[phorkie.git] / www / edit.php
index 226b774e056f5040c6306a1e11aa942662b69341..e95ca3f5ed2dbf5441f79300dc5bfacdd8853308 100644 (file)
@@ -3,23 +3,28 @@ namespace phorkie;
 /**
  * Edit paste contents
  */
+$reqWritePermissions = true;
 require_once 'www-header.php';
-if ($GLOBALS['phorkie']['auth']['secure'] > 0) {
-    require_once 'secure.php';
-}
 
 $repo = new Repository();
 $repo->loadFromRequest();
 
 $repopo = new Repository_Post($repo);
-if ($repopo->process($_POST)) {
-    redirect($repo->getLink('display'));
+if ($repopo->process($_POST, $_SESSION)) {
+    redirect($repo->getLink('display', null, true));
+}
+
+$file = null;
+if (isset($_GET['file'])) {
+    $file = $repo->getFileByName($_GET['file']);
 }
 
 render(
     'edit',
     array(
         'repo' => $repo,
+        'singlefile' => $file,
+        'dh'   => new \Date_HumanDiff(),
         'htmlhelper' => new HtmlHelper(),
     )
 );