php warnings
[Pman.MTrack] / Merger.php
index 9031a85..3a7c864 100644 (file)
@@ -35,7 +35,7 @@ class Pman_MTrack_Merger extends Pman {
     }
     
     
-    function get($pi)
+    function get($pi, $opts= array())
     {
         
         $this->pi = 'default/roojs1'; // fixme..
@@ -57,12 +57,20 @@ class Pman_MTrack_Merger extends Pman {
         if (isset($_REQUEST['_changedFiles'])) {
             $this->changedFiles($_REQUEST['_changedFiles']);
         }
+        if (isset($_REQUEST['_preview'])) {
+            $this->preview($_REQUEST['_preview']);
+        }
+        if (isset($_REQUEST['_merge'])) {
+            $this->merge($_REQUEST['_merge']);
+        }
         $this->jerr("invalid url");
         exit;
         
     }
     
-    
+    function post($pi) {
+        return $this->get($pi);
+    }
     
     function tree()
     {
@@ -138,7 +146,7 @@ class Pman_MTrack_Merger extends Pman {
         // need to do a git diff.. and just get a list of files..
         
         $rev = preg_replace('/[^a-z0-9]+/', '',$rev);
-        $this->repo->impl()->debug = 1;
+        //$this->repo->impl()->debug = 1;
         $fh = $this->repo->impl()->git('diff', '--numstat' ,  "{$this->release}..{$rev}", '--', "");
         // returns ADDED \t REMOVED \t NAME (might include rename/etc. info)
         $rows = array();
@@ -156,9 +164,114 @@ class Pman_MTrack_Merger extends Pman {
         }
         fclose($fh);
         $this->jdata($rows);
+         
+
+    }
+    
+    
+
+    function preview($rev)
+    {
+        // list the files that have changed..
+        // in theory you could click a number of them and only merge those changes..
+        // need to do a git diff.. and just get a list of files..
+        
+        $rev = preg_replace('/[^a-z0-9]+/', '',$rev);
+        //$this->repo->impl()->debug = 1;
+        $files = '';
+        if (!empty($_POST['files'])) {
+            $files = json_decode($_POST['files']);
+        }
         
         
-     
+        $fh = $this->repo->impl()->git('diff', "-w", "{$this->release}..{$rev}", '--', $files);
+        echo "<PRE> Commit: " . $rev ."</PRE>";
+        echo '<PRE>' . htmlspecialchars(stream_get_contents($fh)) . '</PRE>';
+        fclose($fh);
+        exit;
+         
 
     }
+    
+    
+    function merge($rev)
+    {
+        
+        $mi = $this->repo->history("/", 1, "rev", $rev);
+       // echo '<PRE>';print_R($mi);exit;
+        
+
+        
+        
+        $wd = $this->repo->getWorkingCopy();
+        $wd->git('checkout', '-b', $this->release, 'remotes/origin/'. $this->release);
+        
+        
+        
+        $patchfile = $this->tempName('txt');
+        
+        $files = '';
+        if (!empty($_POST['files'])) {
+            
+           
+            // if we select all the files, we should do a merge, rather than a commit..
+            $files = $_POST['files'] == '_all_' ? '_all_' : json_decode($_POST['files']);
+        }
+        
+        
+        if (is_array($files)) { 
+            
+            $fh = $this->repo->impl()->git('diff',   "{$this->release}..{$rev}", '--', $files);
+            $of = fopen($patchfile, 'w');
+            stream_copy_to_stream($fh, $of);
+            fclose($of); fclose($fh);
+            //var_dump($patch);
+            $patch = System::which('patch');
+            chdir($wd->dir);
+            $cmd = "$patch -p1 < " . $patchfile;
+            `$cmd`;  //eg . patch -p1 < /var/lib/php5/MTrackTMPgZFeAN.txt
+        } else { 
+            $wd->git('merge', '--squash' , $rev);
+        }
+          
+        //echo $cmd;
+        
+        $commit = (object) array(
+            'when' =>  $mi[0]->ctime,
+            'reason' => $_REQUEST['message'],
+            'name'  => $this->authUser->name,
+            'email' => $this->authUser->email,
+        );
+        
+        $res = $wd->commit($commit);
+        if (!is_array($files)) {
+            // we do an actually merge commit seperatly from the merge diff, so that
+            // our logs show a nice history in each of those commits.
+            // not sure if this is a good idea or not..
+            $wd->git('merge', '-m', "Merge Commit with working branch (no code changed)" , $rev);
+        }
+        
+        
+        $res .= $wd->push();
+        $this->jok($res);
+        
+       // $wd->checkout($this->release);
+        // generate the patch
+        // apply the patch
+        // commit with message..
+        // push
+        
+        
+        
+        
+        
+        
+        
+        
+        
+    }
+    
+    
+    
+    
 }