I need some help with an IRC Bot PHP script. I am making it pull data from my icecast2 stream to display the current song in a certain lobby. I want to make it parse data from my page to collect song tiles and to check if it has changed, every 10 seconds. The command to initiate the function is !song.. It works great but I have to run the command manually whenever I want to see the song title. You can see the two code snippets below:
This is the timer function which is being called in Radio script further down:
public function checkTimer($sServer)
{
global $Bot;
$Me = $Bot[$this->sIndex];
if(!array_key_exists($sServer,$this->aTimers)) { $this->aTimers[$sServer] = array(); }
if (count($this->aTimers[$sServer]) > 0)
{
foreach($this->aTimers[$sServer] as $key => $tmr)
{
if (time( ) >= $tmr['Time'])
{
eval($tmr['Action']);
$times = (isset($this->aTimers[$sServer][$key]['Times'])) ? $this->aTimers[$sServer][$key]['Times']: 0;
if ($times != '-1')
{
$times--;
if($times > 0)
{
$this->aTimers[$sServer][$key]['Time'] = time( ) + $this->aTimers[$sServer][$key]['Repeat'];
$this->aTimers[$sServer][$key]['Times'] = $times;
}
else
{
unset($this->aTimers[$sServer][$key]);
}
}
else
{
$this->aTimers[$sServer][$key]['Time'] = time()+$this->aTimers[$sServer][$key]['Repeat'];
}
}
}
}
}
public function addTimer($sServer, $sName, $sTimes, $sRepeat, $sAction)
{
global $Bot;
$Me = $Bot[$this->sIndex];
$this->aTimers[$sServer][$sName] = array();
$this->aTimers[$sServer][$sName]['Time'] = time() + $sRepeat;
$this->aTimers[$sServer][$sName]['Times'] = $sTimes;
$this->aTimers[$sServer][$sName]['Repeat'] = $sRepeat;
$this->aTimers[$sServer][$sName]['Action'] = $sAction;
Radio Script:
<?php
class Module_Radio
{
private $cSong;
function Start()
{
$this->addTimer('SEVENHQ', 'boomboom', -1, 10, 'song');
}
public function song()
{
$sData = file_get_contents($sURL);
$strHTML = file_get_contents('http://24.101.14.162:8000/status2.xsl?mount=/Orienradio.ogg');
$myArray = explode(",", $sData);
$sSong = $myArray[16];
$sHash = md5($aLatestSong[16]);
if($this->cSong != $sHash)
{
$sSong = $aLatestSong[16];
$this->Say("#radio", "4[Orien Radio] A new song is being played: 12{$sSong}");
$this->cSong = $md5;
}
}
}
?>
The only error that I am aware of is the below:
PHP Parse error: syntax error, unexpected end of file in /home/user/phpbot/botname/System/Bot.php(450) : eval()'d code on line
PHP Parse error: syntax error, unexpected end of file in /home/acc/script.php(450) : eval()'d code on line