adding logging to webhook php
This commit is contained in:
parent
2dcf04d632
commit
d82be675c7
1 changed files with 12 additions and 0 deletions
|
@ -1,15 +1,27 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
function _syslog($msg) {
|
||||||
|
$trace = debug_backtrace();
|
||||||
|
$caller = $trace[1];
|
||||||
|
$parent = $caller['function'];
|
||||||
|
if (isset($caller['class']))
|
||||||
|
$parent = $caller['class'] . '::' . $parent;
|
||||||
|
|
||||||
|
return error_log( "{$parent}: {$msg}" );
|
||||||
|
}
|
||||||
|
|
||||||
$raw = file_get_contents("php://input");
|
$raw = file_get_contents("php://input");
|
||||||
try {
|
try {
|
||||||
$payload = json_decode($raw, TRUE);
|
$payload = json_decode($raw, TRUE);
|
||||||
} catch (Exception $e) {
|
} catch (Exception $e) {
|
||||||
header('HTTP/1.1 422 Unprocessable Entity');
|
header('HTTP/1.1 422 Unprocessable Entity');
|
||||||
|
_syslog('[webhook] json_decode failed on:' . $raw);
|
||||||
die('Unprocessable Entity');
|
die('Unprocessable Entity');
|
||||||
}
|
}
|
||||||
|
|
||||||
if(! isset($payload['secret']) || $payload['secret'] != '{{ callback_secret }}' ) {
|
if(! isset($payload['secret']) || $payload['secret'] != '{{ callback_secret }}' ) {
|
||||||
header('HTTP/1.1 400 Bad Request');
|
header('HTTP/1.1 400 Bad Request');
|
||||||
|
_syslog('[webhook] bad request:' . $raw);
|
||||||
die('Bad Request');
|
die('Bad Request');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue