22
22
$ fh = fopen (__DIR__ . '/deploy.lock ' , 'w ' );
23
23
fclose ($ fh );
24
24
25
- // Remove lock file
26
- function removeLockFile () {
25
+ // Command to execute at the end of the script
26
+ function endScript () {
27
+ // Remove lock file
27
28
unlink (__DIR__ . '/deploy.lock ' );
28
29
}
29
30
30
31
// Check if there is a configuration file
31
32
if (file_exists (__DIR__ . '/deploy-config.php ' )) {
32
33
require_once __DIR__ . '/deploy-config.php ' ;
33
34
} else {
34
- removeLockFile ();
35
35
die ('File deploy-config.php does not exist ' );
36
+ endScript ();
36
37
}
37
38
38
39
// Check configuration errors
@@ -52,16 +53,16 @@ function removeLockFile() {
52
53
53
54
if (!isset ($ _GET ['t ' ]) || $ _GET ['t ' ] !== ACCESS_TOKEN || ENABLED !== true ) {
54
55
header ($ _SERVER ['SERVER_PROTOCOL ' ] . ' 403 Forbidden ' , true , 403 );
55
- removeLockFile ();
56
56
echo "<html> \n<body> \n<h2>Access Denied</h2> \n</body> \n</html> \n" ;
57
57
echo "<!-- \n~~~~~~~~~~~~~ Prevent browser friendly error page ~~~~~~~~~~~~~~ \n" . str_repeat (str_repeat ("~ " , 64 ) . "\n" , 8 ) . "--> \n" ;
58
+ endScript ();
58
59
die ();
59
60
}
60
61
if (count ($ err ) || ACCESS_TOKEN === '' || REMOTE_REPOSITORY === '' || BRANCH === '' || GIT_DIR === '' || TARGET_DIR === '' ) {
61
62
header ($ _SERVER ['SERVER_PROTOCOL ' ] . ' 403 Forbidden ' , true , 403 );
62
- removeLockFile ();
63
63
echo "<html> \n<body> \n<h2>Configuration Error</h2> \n<pre> \n" . implode ("\n" , $ err ) . "\n</pre> \n</body> \n</html> \n" ;
64
64
echo "<!-- \n~~~~~~~~~~~~~ Prevent browser friendly error page ~~~~~~~~~~~~~~ \n" . str_repeat (str_repeat ("~ " , 64 ) . "\n" , 8 ) . "--> \n" ;
65
+ endScript ();
65
66
die ();
66
67
}
67
68
?>
@@ -101,7 +102,7 @@ function removeLockFile() {
101
102
$ branch = $ payload ->pullrequest ->destination ->branch ->name ;
102
103
} else {
103
104
echo "\nOnly push and merged pull request events are processed \n\nDone. \n</pre></body></html> " ;
104
- removeLockFile ();
105
+ endScript ();
105
106
exit ;
106
107
}
107
108
} else if (isset ($ headers ['X-GitHub-Event ' ])) {
@@ -119,7 +120,7 @@ function removeLockFile() {
119
120
$ branch = $ payload ->pull_request ->head ->ref ;
120
121
} else {
121
122
echo "\nOnly push and merged pull request events are processed \n\nDone. \n</pre></body></html> " ;
122
- removeLockFile ();
123
+ endScript ();
123
124
exit ;
124
125
}
125
126
}
@@ -129,7 +130,7 @@ function removeLockFile() {
129
130
// Only main branch is allowed for webhook deployments
130
131
if ($ branch != unserialize (BRANCH )[0 ]) {
131
132
echo "\nBranch $ branch not allowed, stopping execution. \n</pre></body></html> " ;
132
- removeLockFile ();
133
+ endScript ();
133
134
exit ;
134
135
}
135
136
@@ -140,7 +141,7 @@ function removeLockFile() {
140
141
// Check if branch is allowed
141
142
if (!in_array ($ branch , unserialize (BRANCH ))) {
142
143
echo "\nBranch $ branch not allowed, stopping execution. \n</pre></body></html> " ;
143
- removeLockFile ();
144
+ endScript ();
144
145
exit ;
145
146
}
146
147
} else {
@@ -158,7 +159,7 @@ function removeLockFile() {
158
159
$ path = trim (shell_exec ('which ' .$ command ));
159
160
if ($ path == '' ) {
160
161
header ($ _SERVER ['SERVER_PROTOCOL ' ] . ' 500 Internal Server Error ' , true , 500 );
161
- removeLockFile ();
162
+ endScript ();
162
163
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 ));
163
164
} else {
164
165
$ version = explode ("\n" , shell_exec ($ command .' --version ' ));
@@ -201,7 +202,7 @@ function cmd($command, $print = true) {
201
202
CHECK THE DATA IN YOUR TARGET DIR!</span>
202
203
'
203
204
);
204
- removeLockFile ();
205
+ endScript ();
205
206
exit ;
206
207
}
207
208
@@ -350,12 +351,12 @@ function cmd($command, $print = true) {
350
351
, $ checkout
351
352
, TARGET_DIR . 'VERSION '
352
353
));
353
-
354
- // Remove lock file
355
- removeLockFile ();
356
354
?>
357
355
358
356
Done in <?php echo $ time += microtime (true ); ?> sec
359
357
</pre>
360
358
</body>
361
359
</html>
360
+ <?php
361
+ endScript ();
362
+ exit ;
0 commit comments