radiobot/webhook/index.php

23 lines
547 B
PHP
Raw Permalink Normal View History

<?php
2020-06-17 17:45:52 +00:00
$debug = false;
$input = file_get_contents("php://input");
$tilderadio = json_decode($input, true);
2018-10-24 05:28:49 +00:00
2020-06-17 17:45:52 +00:00
if ($debug) {
$timestamp = date("c");
file_put_contents("$timestamp.json", $input);
print_r($tilderadio);
}
2018-10-24 05:28:49 +00:00
2018-10-25 22:29:55 +00:00
$msg = "";
2018-10-24 05:28:49 +00:00
2020-06-17 17:45:52 +00:00
if ($tilderadio["live"]["is_live"])
$msg .= "({$tilderadio["live"]["streamer_name"]}) ";
2018-10-24 05:28:49 +00:00
$msg .= "now playing: ";
2020-06-17 17:45:52 +00:00
$msg .= $tilderadio["now_playing"]["song"]["text"] . " ";
$msg .= "~~ {$tilderadio["listeners"]["current"]} listeners";
2018-10-24 05:28:49 +00:00
2020-06-17 17:45:52 +00:00
echo $msg;
2019-10-13 20:48:13 +00:00
file_put_contents(__DIR__."/../now_playing.txt", $msg);
2018-10-24 05:28:49 +00:00