-
Notifications
You must be signed in to change notification settings - Fork 1
/
deploy.php
287 lines (220 loc) · 6.89 KB
/
deploy.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
<?php
// get configuration
require_once 'deploy.conf';
if(!isset($reponame) || empty($reponame)) die('no reponame found in conf'); // assume branch is master
// set script timeout
$timeLimit = 5000;
// Init
$mode = 0; // auto install
$response = "";
$force = isset($_GET['force']);
$repo = $reponame;
$branch = 'master';
if(!isset($owner) || empty($owner)) $owner = $username; // assume user is owner
if(!empty($branchname)) $branch = $branchname; // assume branch is master
$node = $branch;
/**
* Fetch tags or branches from github and do manual choice install.
* @todo: this is not yet implemented
*/
if($mode == 1) // manual deploy
{
function callback ($url, $chunk){
global $response;
$response .= $chunk;
return strlen($chunk);
};
$ch = curl_init("https://github.com/$owner/$repo/tags/");
// curl_setopt($ch, CURLOPT_USERPWD, "$username:$password");
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_HTTPHEADER, array('User-Agent:Mozilla/5.0'));
curl_setopt($ch, CURLOPT_WRITEFUNCTION, 'callback');
curl_exec($ch);
curl_close($ch);
$changesets = json_decode($response, true);
}
//////////////////////////////////////////////////////
// BEGIN
//////////////////////////////////////////////////////
set_time_limit($timeLimit);
echo "<h1>Deploying repo <b>$owner / $repo / $branch</b> to <b>$dest</b></h1>";
$url = "https://github.com/$owner/$repo/archive/$branch.zip";
$outfile = "tip.zip";
fetchZip($url,$outfile);
if( !verifyZip($outfile)) die("Nothing found at url");
if( checkExist() ) die('Project is already up to date');
$wiperes = rmdirRecursively($dest);
trace('Wipe deploy', $wiperes);
$unzipres = unZip('tip.zip',$dest);
if($unzipres) {
$unzipstatus = "Extracted to $dest".DIRECTORY_SEPARATOR;
} else {
$unzipstatus = "Extract to $dest".DIRECTORY_SEPARATOR." FAILED";
}
trace("Extracting archive", $unzipstatus, !$unzipres );
$copyres = copy_recursively("$reponame-$node", $dest);
trace("Copy $dest$reponame-$node to $dest",$copyres);
$wiperepores = rmdirRecursively("$reponame-$node",true);
trace("Remove $dest$reponame-$node contents",$wiperepores);
rmdir("$reponame-$node");
// Delete the repo zip file
echo "Remove temp zip</br>";
unlink("tip.zip");
//////////////////////////////////////////////////////
// Functions
//////////////////////////////////////////////////////
/**
* output tracing
*/
function trace($title,$contents = '',$open = false){
echo "<details". ($open ? ' open':'') ."><summary>$title</summary>$contents</details>";
}
function traceSuccess($title,$success){
echo "$title: <B>" . ($success ? 'SUCCESS' : 'ERROR') . "</b></br>";
}
/**
* fetchZip
* Fetches a zip file saves to outfile
*
* @param string $url
* @param string $file
*/
function fetchZip($url,$file){
GLOBAL $username,$password;
// download the repo zip file
$ch = curl_init($url);
if(!$ch) die('cURL not found');
$fp = fopen($file, 'w');
if(!$fp) die('Cannot open file for writing: ' . $file);
if(!empty($password)) curl_setopt($ch, CURLOPT_USERPWD, "$username:$password");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); // follow redirects
curl_setopt($ch, CURLOPT_FILE, $fp);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); // disable ssl cert verification
$data = curl_exec($ch);
if($data === false){ die('Curl error: ' . curl_error($ch)); }
curl_close($ch);
fclose($fp);
}
/**
* @return false if zip is invalid
*/
function verifyZip($file){
$tipsize = filesize($file);
// verify zip saved
if($tipsize < 50)
{
return false;
}
return true;
}
/**
* checks that node is not already installed, handle forcing
* @todo not saving any hashes at the moment simply node name
*/
function checkExist(){
GLOBAL $force,$node;
if(!$force && file_exists('lastcommit.hash')){
$lastcommit = file_get_contents('lastcommit.hash');
if($lastcommit == $node) return true;
}
file_put_contents('lastcommit.hash', $node);
}
/**
* unZip
* unzip file to dest folder
*
* @param string $file filepath to zip
* @param string $dest dest path
* @return ziparchive open return
*/
function unZip($file,$dest){
// unzip
$zip = new ZipArchive;
$res = $zip->open($file);
if ($res !== TRUE) {
return $res;
}
$res = $zip->extractTo("$dest".DIRECTORY_SEPARATOR);
$zip->close();
return $res;
}
/**
* function to delete all files in a directory recursively
* @param string $dir directory to delete
* @param bool $noExclude skip exclusions
*/
function rmdirRecursively($dir,$noExclude=false) {
global $exc;
$trace = '';
// $noExclude |= ( preg_match('/\w{0,}-\w{0,}-[0-9|a|b|c|d|e|f]{12}/',$dir) > 0);
# var_dump($noExclude);
$trace.= "Erase dir: " . $dir ."<Br/>";
$it = new RecursiveIteratorIterator(
new RecursiveDirectoryIterator($dir),
RecursiveIteratorIterator::CHILD_FIRST
);
// FilesystemIterator::SKIP_DOTS ./ 5.3+
$excludeDirsNames = isset($exc["folders"]) ? $exc["folders"] : array();
$excludeFileNames = isset($exc["files"]) ? $exc["files"] : array();
foreach ($it as $entry) {
if ($entry->isDir()) {
// php 5.2 support for skipdot
if($entry->getFilename() == '.' or $entry->getFilename() == '..'){
continue;
}
if ($noExclude || !in_array(getRootName($entry->getPathname()), $excludeDirsNames)) {
$trace.= rmdirRecursively($entry->getPathname());
rmdir($entry->getPathname()); // remove dir after its empty
}
else{
$trace.= "Erase dir: " . $entry->getPathname() . " <mark><b>SKIPPED</b></mark><br/>";
}
} elseif ( $noExclude || ( !in_array($entry->getFilename(), $excludeFileNames) && !in_array(getRootName($entry->getPathname()), $excludeDirsNames)) ) {
$trace.= "--Erase file: " . $entry->getPathname() ."<br/>";
unlink($entry->getPathname());
}
else{
$trace.= "--Erase file: " . $entry->getPathname() . " <mark><b>SKIPPED</b></mark><br/>";
}
}
return $trace;
}
function getRootName($path){
$path = str_replace('.'.DIRECTORY_SEPARATOR,'',$path);
$parts = explode(DIRECTORY_SEPARATOR,$path);
return $parts[0];
}
/**
* function to copy all files in a directory to another recursively
* @param string $src path
* @param string $dest destination path
*/
function copy_recursively($src, $dest) {
global $exc;
$trace = '';
$trace .= "Copy Recursive: $src $dest<br/>";
$excludeDirsNames = isset($exc["folders"]) ? $exc["folders"] : array();
$excludeFileNames =isset($exc["files"]) ? $exc["files"] : array();
if (is_dir(''.$src)){
@mkdir($dest);
$files = scandir($src);
foreach ($files as $file){
if (!in_array(getRootName($dest), $excludeDirsNames)){
if ($file != "." && $file != ".."){
$trace.= copy_recursively("$src/$file", "$dest/$file");
}
}
}
}
else if (file_exists($src)){
$filename = pathinfo($src, PATHINFO_FILENAME);
//$filename = $filename[count( $filename)-2];
if (!in_array( $filename, $excludeFileNames)){
copy($src, $dest);
}
}
return $trace;
}
if($mode != 1) echo 'Done';
?>