Skip to content

Commit a015f31

Browse files
Rename function removeLockFile to endScript
1 parent d9aaac3 commit a015f31

File tree

1 file changed

+15
-14
lines changed

1 file changed

+15
-14
lines changed

deploy.php

+15-14
Original file line numberDiff line numberDiff line change
@@ -22,17 +22,18 @@
2222
$fh = fopen(__DIR__ . '/deploy.lock', 'w');
2323
fclose($fh);
2424

25-
// Remove lock file
26-
function removeLockFile() {
25+
// Command to execute at the end of the script
26+
function endScript() {
27+
// Remove lock file
2728
unlink(__DIR__ . '/deploy.lock');
2829
}
2930

3031
// Check if there is a configuration file
3132
if (file_exists(__DIR__ . '/deploy-config.php')) {
3233
require_once __DIR__ . '/deploy-config.php';
3334
} else {
34-
removeLockFile();
3535
die('File deploy-config.php does not exist');
36+
endScript();
3637
}
3738

3839
// Check configuration errors
@@ -52,16 +53,16 @@ function removeLockFile() {
5253

5354
if (!isset($_GET['t']) || $_GET['t'] !== ACCESS_TOKEN || ENABLED !== true) {
5455
header($_SERVER['SERVER_PROTOCOL'] . ' 403 Forbidden', true, 403);
55-
removeLockFile();
5656
echo "<html>\n<body>\n<h2>Access Denied</h2>\n</body>\n</html>\n";
5757
echo "<!--\n~~~~~~~~~~~~~ Prevent browser friendly error page ~~~~~~~~~~~~~~\n" . str_repeat(str_repeat("~", 64) . "\n", 8) . "-->\n";
58+
endScript();
5859
die();
5960
}
6061
if (count($err) || ACCESS_TOKEN === '' || REMOTE_REPOSITORY === '' || BRANCH === '' || GIT_DIR === '' || TARGET_DIR === '') {
6162
header($_SERVER['SERVER_PROTOCOL'] . ' 403 Forbidden', true, 403);
62-
removeLockFile();
6363
echo "<html>\n<body>\n<h2>Configuration Error</h2>\n<pre>\n" . implode("\n", $err) . "\n</pre>\n</body>\n</html>\n";
6464
echo "<!--\n~~~~~~~~~~~~~ Prevent browser friendly error page ~~~~~~~~~~~~~~\n" . str_repeat(str_repeat("~", 64) . "\n", 8) . "-->\n";
65+
endScript();
6566
die();
6667
}
6768
?>
@@ -101,7 +102,7 @@ function removeLockFile() {
101102
$branch = $payload->pullrequest->destination->branch->name;
102103
} else {
103104
echo "\nOnly push and merged pull request events are processed\n\nDone.\n</pre></body></html>";
104-
removeLockFile();
105+
endScript();
105106
exit;
106107
}
107108
} else if(isset($headers['X-GitHub-Event'])) {
@@ -119,7 +120,7 @@ function removeLockFile() {
119120
$branch = $payload->pull_request->head->ref;
120121
} else {
121122
echo "\nOnly push and merged pull request events are processed\n\nDone.\n</pre></body></html>";
122-
removeLockFile();
123+
endScript();
123124
exit;
124125
}
125126
}
@@ -129,7 +130,7 @@ function removeLockFile() {
129130
// Only main branch is allowed for webhook deployments
130131
if($branch != unserialize(BRANCH)[0]) {
131132
echo "\nBranch $branch not allowed, stopping execution.\n</pre></body></html>";
132-
removeLockFile();
133+
endScript();
133134
exit;
134135
}
135136

@@ -140,7 +141,7 @@ function removeLockFile() {
140141
// Check if branch is allowed
141142
if(!in_array($branch, unserialize(BRANCH))) {
142143
echo "\nBranch $branch not allowed, stopping execution.\n</pre></body></html>";
143-
removeLockFile();
144+
endScript();
144145
exit;
145146
}
146147
} else {
@@ -158,7 +159,7 @@ function removeLockFile() {
158159
$path = trim(shell_exec('which '.$command));
159160
if ($path == '') {
160161
header($_SERVER['SERVER_PROTOCOL'] . ' 500 Internal Server Error', true, 500);
161-
removeLockFile();
162+
endScript();
162163
die(sprintf('<div class="error"><b>%s</b> not available. It needs to be installed on the server for this script to work.</div>', $command));
163164
} else {
164165
$version = explode("\n", shell_exec($command.' --version'));
@@ -201,7 +202,7 @@ function cmd($command, $print = true) {
201202
CHECK THE DATA IN YOUR TARGET DIR!</span>
202203
'
203204
);
204-
removeLockFile();
205+
endScript();
205206
exit;
206207
}
207208

@@ -350,12 +351,12 @@ function cmd($command, $print = true) {
350351
, $checkout
351352
, TARGET_DIR . 'VERSION'
352353
));
353-
354-
// Remove lock file
355-
removeLockFile();
356354
?>
357355

358356
Done in <?php echo $time += microtime(true); ?>sec
359357
</pre>
360358
</body>
361359
</html>
360+
<?php
361+
endScript();
362+
exit;

0 commit comments

Comments
 (0)