1
0
www.mikescher.com/www/commands/server_gitwebhook.php

29 lines
870 B
PHP
Raw Normal View History

<?php
global $API_OPTIONS;
2019-12-29 00:02:38 +01:00
global $OPTIONS;
require_once (__DIR__ . '/../internals/base.php');
require_once (__DIR__ . '/../internals/database.php');
2019-12-29 00:02:38 +01:00
if (!isset($API_OPTIONS['target'])) httpDie(400, "Wrong parameters.");
$hook = $API_OPTIONS['target'];
2019-12-29 00:02:38 +01:00
$uri = $OPTIONS['uri'];
$cmd = "";
if ($hook == 'website_mikescher') $cmd = 'git pull';
else if ($hook == 'griddominance') $cmd = 'update-gdapi';
2019-12-29 00:02:38 +01:00
else httpDie(400, "Unknown webhook: $hook");
$std = shell_exec($cmd);
$content = "REQUEST: " . $uri . "\r\n\r\n" .
"IP: " . get_client_ip() . "\r\n\r\n" .
"TARGET: " . $hook . "\r\n\r\n" .
"OUTPUT: " . $std . "\r\n\r\n";
sendMail("Webhook '$hook' triggered", $content, 'virtualadmin@mikescher.de', 'webserver-info@mikescher.com');
2019-12-29 00:26:57 +01:00
echo "{ 'status': 'ok', 'message': 'Webhook '$hook' triggered' }";