start modularisation

This commit is contained in:
Valentin
2024-05-02 23:54:06 +02:00
parent 9607769086
commit 41378a31c6
17 changed files with 512 additions and 17 deletions

View File

@@ -1,5 +1,5 @@
<?php
# https://docs.gitea.com/usage/webhooks
// https://docs.gitea.com/usage/webhooks
// check for POST request
if ($_SERVER['REQUEST_METHOD'] != 'POST') {
@@ -33,7 +33,38 @@ if (json_last_error() !== JSON_ERROR_NONE) {
}
// success, do something
$repo_name = $decoded['repository']['name'];
echo "launching hook script ";
echo shell_exec('bash ../webhook/webhook.sh ' . $repo_name . ' >> ../webhook/webhook.log 2>&1');
?>
$current_date = date('d-m-y_H-i-s', time());
$log_directory = '../webhook/logs';
// create the log folder if needed
if (!file_exists($log_directory)) {
mkdir($log_directory, 0777, true);
}
// clean the log folder if needed
if (count(scandir($log_directory)) > 10) {
$files = scandir($log_directory);
$log_files = array_diff($files, array('.', '..'));
usort($files, function($a, $b) use ($log_directory) {
return filemtime("$log_directory/$a") - filemtime("$log_directory/$b");
});
for ($i = 0; $i < 5; $i++) {
unlink("$log_directory/{$files[$i]}");
}
}
if (isset($decoded['repository'])) {
// git hook
echo shell_exec('bash ../webhook/webhook.sh ' . 'git' . ' >> ' . $log_directory . '/webhook_' . $current_date . '.log 2>&1');
} else {
// directus hook
$debounce_delay = 1 * 60;
file_put_contents("debounce_hook", time());
sleep($debounce_delay);
if (time() >= intval(file_get_contents('debounce_hook')) + $debounce_delay) {
echo shell_exec('bash ../webhook/webhook.sh ' . 'directus' . ' >> ' . $log_directory . '/webhook_' . $current_date . '.log 2>&1');
}
}
?>