From 5d76ec85a500321127ac879ffaa0aabd686bb7bf Mon Sep 17 00:00:00 2001 From: Christian Weiske Date: Tue, 17 Apr 2012 19:53:13 +0200 Subject: raw download for older revisions --- src/phorkie/Repository.php | 33 +++++++++++++++++++-------------- 1 file changed, 19 insertions(+), 14 deletions(-) (limited to 'src/phorkie/Repository.php') diff --git a/src/phorkie/Repository.php b/src/phorkie/Repository.php index 6c71b47..c854cf1 100644 --- a/src/phorkie/Repository.php +++ b/src/phorkie/Repository.php @@ -118,6 +118,16 @@ class Repository * @return File[] Array of files */ public function getFiles() + { + $files = $this->getFilePaths(); + $arFiles = array(); + foreach ($files as $name) { + $arFiles[] = new File($name, $this); + } + return $arFiles; + } + + protected function getFilePaths() { if ($this->hash === null) { $hash = 'HEAD'; @@ -129,28 +139,23 @@ class Repository ->setOption('name-only') ->addArgument($hash) ->execute(); - $files = explode("\n", trim($output)); - $arFiles = array(); - foreach ($files as $name) { - $arFiles[] = new File($name, $this); - } - return $arFiles; + return explode("\n", trim($output)); } public function getFileByName($name, $bHasToExist = true) { - $base = basename($name); - if ($base != $name) { - throw new Exception('No directories supported for now'); - } + $name = Tools::sanitizeFilename($name); if ($name == '') { throw new Exception_Input('Empty file name given'); } - $fullpath = $this->workDir . '/' . $base; - if ($bHasToExist && !is_readable($fullpath)) { - throw new Exception_Input('File does not exist'); + + if ($bHasToExist) { + $files = $this->getFilePaths(); + if (array_search($name, $files) === false) { + throw new Exception_Input('File does not exist'); + } } - return new File($base, $this); + return new File($name, $this); } public function hasFile($name) -- cgit v1.2.3