2021-01-30 20:36:38 +00:00
|
|
|
<?php
|
2021-01-31 07:58:24 +00:00
|
|
|
/************************************************************
|
|
|
|
* @file examples/webhook/index.php
|
|
|
|
* @description example webhook implementation for apache
|
2021-01-31 17:08:18 +00:00
|
|
|
* write to fifo/file if writeable, else pipe to command
|
|
|
|
*
|
|
|
|
* first line of BASHBOT_HOME is used as bot home (optional)
|
|
|
|
* must start with /, not contain /. and min 20 characters long
|
2021-01-31 07:58:24 +00:00
|
|
|
*
|
|
|
|
* @author KayM (gnadelwartz), kay@rrr.de
|
|
|
|
* @license http://www.wtfpl.net/txt/copying/ WTFPLv2
|
|
|
|
* @since 30.01.2021 20:24
|
|
|
|
*
|
2021-01-31 20:18:40 +00:00
|
|
|
#### $$VERSION$$ v1.40-dev-21-g5b0b121
|
2021-01-31 07:58:24 +00:00
|
|
|
***********************************************************/
|
2021-01-30 20:36:38 +00:00
|
|
|
|
2021-01-31 07:58:24 +00:00
|
|
|
// bashbot home dir
|
2021-01-31 17:08:18 +00:00
|
|
|
$CONFIG_HOME='BASHBOT_HOME';
|
2021-01-31 07:58:24 +00:00
|
|
|
$BASHBOT_HOME='/usr/local/telegram-bot-bash';
|
2021-01-31 17:08:18 +00:00
|
|
|
// read from config file
|
|
|
|
if (file_exists($CONFIG_HOME)) {
|
|
|
|
$tmp = trim(fgets(fopen($CONFIG_HOME, 'r')));
|
|
|
|
// start with '/', not '/.', min 20 chars
|
|
|
|
if (substr($tmp,0,1) == '/' && strlen($tmp) >= 20 && strpos($tmp, '/.') === false) {
|
|
|
|
$BASHBOT_HOME=$tmp;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// script endpoint
|
2021-01-31 07:58:24 +00:00
|
|
|
$cmd=$BASHBOT_HOME.'/bin/process_update.sh';
|
2021-01-31 17:08:18 +00:00
|
|
|
// fifo endpoint
|
|
|
|
$fifo=$BASHBOT_HOME.'/data-bot-bash/webhook-fifo';
|
2021-01-31 07:58:24 +00:00
|
|
|
|
2021-01-31 09:00:15 +00:00
|
|
|
// prepeare read, e.g. run from CLI
|
2021-01-31 07:58:24 +00:00
|
|
|
$data='';
|
|
|
|
$input="php://input";
|
2021-01-31 09:00:15 +00:00
|
|
|
$json_file="json.txt";
|
|
|
|
if (php_sapi_name() == "cli") {
|
|
|
|
if(is_readable($json_file)) {
|
|
|
|
$input=$json_file;
|
|
|
|
} else {
|
|
|
|
$input="php://stdin";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// read request data
|
2021-01-31 07:58:24 +00:00
|
|
|
if($json = file_get_contents($input)) {
|
|
|
|
$data = $json;
|
2021-01-30 20:36:38 +00:00
|
|
|
} else {
|
2021-01-31 07:58:24 +00:00
|
|
|
$data = implode(" ",$_POST);
|
2021-01-31 20:18:40 +00:00
|
|
|
if ($data == '') { $data = implode(" ",$_GET); }
|
2021-01-31 07:58:24 +00:00
|
|
|
}
|
2021-01-31 20:18:40 +00:00
|
|
|
// uncomment to save last received JSON
|
|
|
|
// file_put_contents($json_file, $data);
|
2021-01-31 07:58:24 +00:00
|
|
|
|
2021-01-31 17:08:18 +00:00
|
|
|
// prepare for writing
|
2021-01-31 07:58:24 +00:00
|
|
|
if ($data == '') {
|
|
|
|
error_response(400, "No data received");
|
|
|
|
}
|
|
|
|
if (! chdir($BASHBOT_HOME)) {
|
|
|
|
error_response(403, "No route to bot home");
|
|
|
|
}
|
2021-01-30 20:36:38 +00:00
|
|
|
|
2021-01-31 17:08:18 +00:00
|
|
|
// fifo or command?
|
|
|
|
if (! is_writeable($fifo)) {
|
|
|
|
// pipe to command
|
|
|
|
if (! file_exists($cmd)) {
|
|
|
|
error_response(502, "Webhook endpoint not found");
|
|
|
|
}
|
|
|
|
if (! $handle = popen( $cmd.' debug', 'w' )) {
|
|
|
|
error_response(503, "Can't open webhook command endpoint");
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// write to fifo
|
|
|
|
if (! $handle = fopen( $fifo, 'a' )) {
|
|
|
|
error_response(503, "Can't open webhook file endpoint");
|
|
|
|
}
|
|
|
|
flock($handle, LOCK_EX);
|
2021-01-31 07:58:24 +00:00
|
|
|
}
|
2021-01-31 17:08:18 +00:00
|
|
|
if (fwrite( $handle, str_replace(array("\n", "\r"), '',$data). PHP_EOL) === false) {
|
2021-01-31 07:58:24 +00:00
|
|
|
error_response(504, "Write to webhook failed");
|
|
|
|
}
|
2021-01-31 17:08:18 +00:00
|
|
|
flock($handle, LOCK_UN);
|
2021-01-31 07:58:24 +00:00
|
|
|
pclose($handle);
|
2021-01-31 17:08:18 +00:00
|
|
|
/**/
|
2021-01-31 07:58:24 +00:00
|
|
|
|
|
|
|
function error_response($code, $msg) {
|
|
|
|
$api = substr(php_sapi_name(), 0, 3);
|
|
|
|
if ($api == 'cgi' || $api == 'fpm') {
|
|
|
|
header('Status: '.$code.' '.$msg);
|
|
|
|
} else {
|
|
|
|
$protocol = isset($_SERVER['SERVER_PROTOCOL']) ? $_SERVER['SERVER_PROTOCOL'] : 'HTTP/1.0';
|
|
|
|
header($protocol.' '.$code.' '.$msg);
|
|
|
|
}
|
2021-01-31 17:08:18 +00:00
|
|
|
exit('Error '.$code.': '.$msg. PHP_EOL);
|
2021-01-31 07:58:24 +00:00
|
|
|
}
|
2021-01-30 20:36:38 +00:00
|
|
|
?>
|