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,
- to clear the folder (root in my case) where script located EXCLUDING this script and .htaccess
- Then download zip
- unzip into $dest
- Copy $dest's contents into root
- 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");
?>
DirectoryIteratorand it's recursive pendant. Provide aFilterIteratorto exclude your files. – hakre Oct 7 '12 at 9:08Symfony\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