radiobot/webhook.php

18 lines
348 B
PHP
Raw Normal View History

2018-12-01 03:42:25 +00:00
<?php
$json = json_decode(file_get_contents('php://input'));
$resp = array();
if ($json->live->is_live) {
$resp["dj"] = $json->live->streamer_name;
} else {
$resp["dj"] = NULL;
}
$resp["song"] = $json->now_playing->song->text;
$resp["listeners"] = $json->listeners->current;
file_put_contents("now_playing.json", json_encode($resp));