X-Git-Url: http://git.pk910.de/?p=GITManagedWebpage.git;a=blobdiff_plain;f=GITManagedWebpage.class.php;h=0522cc8ea39ac14b08691be4753000d503ef912a;hp=481bf143ecafcfea7fe91ae9ec2bc06cece07a0e;hb=544c09a8193efa6a76865150797bec1bd4fba1c1;hpb=7710afc9831e3521bdbe6cc190336e6fc2084a87 diff --git a/GITManagedWebpage.class.php b/GITManagedWebpage.class.php index 481bf14..0522cc8 100644 --- a/GITManagedWebpage.class.php +++ b/GITManagedWebpage.class.php @@ -90,7 +90,7 @@ class GITManagedWebpage { } else $argstr .= " ".escapeshellarg($arg); } - $gitcmd = 'git '.escapeshellarg('--git-dir='.$this->workdir.'repository/.git').' '.escapeshellarg('--work-tree='.$this->workdir.'repository/.git').$argstr; + $gitcmd = 'git '.escapeshellarg('--git-dir='.$this->workdir.'repository/.git').' '.escapeshellarg('--work-tree='.$this->workdir.'repository').$argstr; $output = shell_exec($gitcmd); return $output; } @@ -103,6 +103,16 @@ class GITManagedWebpage { $this->config_changed = true; } + private function checkConfigIntegrity() { + foreach($this->config as $key => $value) { + if(substr($key, 0, strlen('branch_')) == 'branch_') { + if(!file_exists($this->workdir.$key)) { + unset($this->config['key']); + } + } + } + } + /* private function getConfig($name) * get an option from the configuration */ @@ -113,6 +123,7 @@ class GITManagedWebpage { if(file_exists($this->workdir."config.txt")) { $config_txt = @file_get_contents($this->workdir."config.txt"); $this->config = unserialize($config_txt); + $this->checkConfigIntegrity(); } else { $this->config = array(); return null; @@ -218,7 +229,7 @@ class GITManagedWebpage { if($branch == $default_branch) $dir = $this->localdir; else - $dir = $this->workdir.'branch_'.$branch.'/'; + $dir = $this->workdir.'branch_'.str_replace(array('/'), array('_'), $branch).'/'; if(file_exists($dir)) return $dir; else if($create) { @@ -228,7 +239,7 @@ class GITManagedWebpage { return false; } - private function updateBranch($branch, $path) { + private function updateBranch($branch, $path, $force = false) { if(substr($path, -1) != '/') $path .= '/'; $current_branch = str_replace(array("\r", "\n"), array("", ""), $this->gitcmd("rev-parse", "--abbrev-ref", "HEAD")); @@ -241,7 +252,7 @@ class GITManagedWebpage { $deleted_files = array(); if(($current_version = $this->getConfig('version_'.$branch))) { - if($current_version == $newest_version) + if($current_version == $newest_version && !$force) return; else { $override_all = true; @@ -290,17 +301,19 @@ class GITManagedWebpage { if($this->loopedcall) return; - if(!$this->branchExists($branch)) - return false; + if(!$this->branchExists($branch)) { + if(!$this->branchExists('origin/'.$branch)) + return false; + } $this->setActiveBranch($branch, $remember); if(!$this->localBranchPath($branch)) { $dir = $this->localBranchPath($branch, true); - $this->updateBranch($branch, $dir); + $this->updateBranch($branch, $dir, true); } } - public function execute($file = null) { + public function getExecFile($file = null) { if($this->loopedcall) return; define("GITMANAGED_EXECUTED", true); @@ -315,10 +328,12 @@ class GITManagedWebpage { if($active_branch != $default_branch) { if(!($dir = $this->localBranchPath($branch))) { $dir = $this->localBranchPath($active_branch, true); - $this->updateBranch($active_branch, $dir); + $this->updateBranch($active_branch, $dir, true); } - include_once($dir.$file); - die(); + chdir($dir); + return $dir.$file; + } else { + return $file; } }