X-Git-Url: https://git.cweiske.de/phorkie.git/blobdiff_plain/88909f2355e6e53eec67a990c877cb64653cded4..5c314428027bea7f3743d24968bd294e65b662ca:/www/index.php diff --git a/www/index.php b/www/index.php index db3fd7b..d33604d 100644 --- a/www/index.php +++ b/www/index.php @@ -12,37 +12,9 @@ namespace Phorkie; */ require_once 'www-header.php'; -if (isset($_POST['files'])) { - //save - $rs = new Repositories(); - $repo = $rs->createNew(); - $vc = $repo->getVc(); - $vc->initRepository(); - foreach (glob($repo->repoDir . '/.git/hooks/*') as $hookfile) { - unlink($hookfile); - } - $repo->setDescription($_POST['description']); - - foreach ($_POST['files'] as $num => $arFile) { - if ($arFile['name'] != '') { - //FIXME: fix file name from .. - $fname = $arFile['name']; - } else { - $fname = 'phork' . $num . '.' . $arFile['type']; - } - $fpath = $repo->repoDir . $fname; - file_put_contents($fpath, $arFile['content']); - //fixme: let the class do that when it is able to - $command = $vc->getCommand('add') - ->addArgument($fname) - ->execute(); - } - $command = $vc->getCommand('commit') - ->setOption('message', 'initial paste') - ->setOption('author', 'Anonymous ') - ->execute(); - //redirect to phork - redirect($repo->getLink('display')); +$repopo = new Repository_Post(); +if ($repopo->process($_POST)) { + redirect($repopo->repo->getLink('display')); } $phork = array(