Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm working on public project - which replaces FTP deployment method fully with GIT for PHP based projects. You place 1 file - deploy php in you website's root directory. That's all. When you push something into Bitbucket git repo, this script fetches zip and replaces all website files with zip contents

What I want to do is,

  1. to clear the folder (root in my case) where script located EXCLUDING this script and .htaccess
  2. Then download zip
  3. unzip into $dest
  4. Copy $dest's contents into root
  5. Remove dest and all it's contents

In other words, it must replace whole root with new zip's contents excluding script itself and few other files (which listed in $exc array). That's all. The problem is, my function rmdir_recursively doesn't exlude files, removes all including script. What am I missing?

What other optimizations can you suggest for script?

Thx in advance.

<?php

// Set these dependant on your BB credentials    
$username = '';
$password = '';

// your Bitbucket repo name
$reponame = "";

// extract to
$dest = "./"; // leave ./ for relative destination


//Exclusion list
$exc = array("deploy.php", ".htaccess");

// Grab the data from BB's POST service and decode
$json = stripslashes($_POST['payload']);
$data = json_decode($json);

// set higher script timeout (for large repo's or slow servers)
set_time_limit(5000);

// Set some parameters to fetch the correct files
$uri = $data->repository->absolute_url;
$node = $data->commits[0]->node;
$files = $data->commits[0]->files;

//Clear Root 
rmdir_recursively(".");

// download the repo zip file
$fp = fopen("tip.zip", 'w');

$ch = curl_init("https://bitbucket.org/$username/$reponame/get/$node.zip");
curl_setopt($ch, CURLOPT_USERPWD, "$username:$password");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch, CURLOPT_FILE, $fp);

$data = curl_exec($ch);

curl_close($ch);
fclose($fp);

// unzip
$zip = new ZipArchive;
$res = $zip->open('tip.zip');
if ($res === TRUE) {
    $zip->extractTo('./');
    $zip->close();
} else {
    die('ZIP not supported on this server!');
}

// function to delete all files in a directory recursively
function rmdir_recursively($dir) {
    global $exc;
    if(in_array($dir,$exc)) return false;
    if (!is_dir($dir) || is_link($dir)) return unlink($dir); 
        foreach (scandir($dir) as $file) { 
            if ($file == '.' || $file == '..') continue; 
            if (!rmdir_recursively($dir . DIRECTORY_SEPARATOR . $file)) { 
                chmod($dir . DIRECTORY_SEPARATOR . $file, 0777); 
                if (!rmdir_recursively($dir . DIRECTORY_SEPARATOR . $file)) return false; 
            }; 
        } 
        return rmdir($dir); 
}

// function to recursively copy the files
function copy_recursively($src, $dest) {
    if (is_dir($src)) {
        if ($dest != "./")
            rmdir_recursively($dest);
        @mkdir($dest);
        $files = scandir($src);
        foreach ($files as $file)
            if ($file != "." && $file != "..")
                copy_recursively("$src/$file", "$dest/$file");
    }
    else if (file_exists($src))
        copy($src, $dest);
    rmdir_recursively($src);
}

// start copying the files from extracted repo and delete the old directory recursively
copy_recursively("$username-$reponame-$node", $dest);

// delete the repo zip file
unlink("tip.zip");
?>
share|improve this question
"What other optimizations can you suggest for script?" - Use file-system abstraction with DirectoryIterator and it's recursive pendant. Provide a FilterIterator to exclude your files. – hakre Oct 7 '12 at 9:08
@hakre can you please apply your suggestion on code? – heron Oct 7 '12 at 9:11
@hakre It's public project, I'm trying to make life easy for git and php lovers, that's why you're not helping only me but community – heron Oct 7 '12 at 9:12
Please use the search. I've given some examples already on site (as did others) and there should be off-site examples for those as well. – hakre Oct 7 '12 at 9:12
Also take a look into existing projects, e.g. there is Symfony\Component\Finder\Finder. Also as you already unpack into ´$dest` you could than use that directory to copy over your permanent files in there and then move the whole around to it's final destination (or change the symlink). – hakre Oct 7 '12 at 9:23
show 2 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.