X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=include%2FBarrel.php;h=a1ba57438913e4f535075da97cef156a2cb7e750;hb=HEAD;hp=21dd5c2ac3ef726e6d33a1a152d3ba2cddf397ca;hpb=aa2b3c612a87840b35e26fa1cb36896dbeebc313;p=diogenes.git diff --git a/include/Barrel.php b/include/Barrel.php index 21dd5c2..a1ba574 100644 --- a/include/Barrel.php +++ b/include/Barrel.php @@ -87,7 +87,7 @@ class Diogenes_Barrel $this->flags = new flagset($flags); $this->options = new Diogenes_Barrel_Options($this->alias); - $this->spool = new DiogenesSpool($this,$this->alias); + $this->spool = new Diogenes_VCS_Spool($this,$this->alias); $this->readTree(); } @@ -273,7 +273,74 @@ class Diogenes_Barrel return $this->flags->hasFlag($flag); } + + /** Create a page with the given path, and return its PID. + * + * @param $path + * @param $caller + */ + function makePath($path, &$caller) + { + $pathbits = split("/", $path); + $curpath = ''; + $curpid = $this->getPID($curpath);; + foreach ($pathbits as $pathbit) + { + $newpath = ($curpath ? "$curpath/" : "") . $pathbit; + $newpid = $this->getPID($newpath); + if (!$newpid) + { + $tpage = new Diogenes_Barrel_Page($this, array('parent' => $curpid, 'location' => $pathbit)); + $tpage->toDb(0, $caller); + $newpid = $this->getPID($newpath); + } + $curpath = $newpath; + $curpid = $newpid; + } + return $curpid; + } + + + /** Recursively delete a given path. + * + * @param $path + * @param $caller + */ + function rmPath($path, &$caller) + { + global $globals; + + if (!$path) { + $caller->info("rmPath: will not delete from root!"); + return false; + } + $curpid = $this->getPID($path); + if (!$curpid) { + $caller->info("rmPath: could not find '$path'"); + return false; + } + + // lookup children + $res = $globals->db->query("select PID from {$this->table_page} where parent=$curpid"); + $children = array(); + while (list($child) = mysql_fetch_row($res)) + array_push($children, $child); + mysql_free_result($res); + + // recurse into children + foreach ($children as $child) + { + $childpath = $this->getLocation($child); + if ($childpath) { + if (!$this->rmPath($childpath, $caller)) + return false; + } + } + // delete this page + return Diogenes_Barrel_Page::delete($this, $curpid, $caller); + } + /** Compile the directory tree */ function compileTree()