2011-03-28 14:21:28 +00:00
|
|
|
<?
|
|
|
|
class IRC_DB extends DB_MYSQL {
|
|
|
|
function halt($Msg) {
|
|
|
|
global $Bot;
|
|
|
|
$Bot->send_to($Bot->get_channel(),'The database is currently unavailable try again later');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
abstract class IRC_BOT {
|
|
|
|
abstract protected function connect_events();
|
|
|
|
abstract protected function channel_events();
|
2012-10-11 08:00:15 +00:00
|
|
|
abstract protected function query_events();
|
2011-03-28 14:21:28 +00:00
|
|
|
abstract protected function listener_events();
|
|
|
|
|
|
|
|
protected $Debug = false;
|
|
|
|
protected $Socket = false;
|
|
|
|
protected $Data = false;
|
|
|
|
protected $Whois = false;
|
|
|
|
protected $Identified = array();
|
|
|
|
protected $Channels = array();
|
|
|
|
protected $Messages = array();
|
|
|
|
protected $LastChan = false;
|
|
|
|
protected $ListenSocket =false;
|
|
|
|
protected $Listened = false;
|
2012-10-05 08:00:20 +00:00
|
|
|
protected $Connecting = false;
|
|
|
|
protected $Bound = false; //Did we successfully bind to the socket?
|
2011-03-28 14:21:28 +00:00
|
|
|
protected $State = 1; //Drones live
|
|
|
|
public $Restart = 0; //Die by default
|
|
|
|
|
|
|
|
public function __construct() {
|
|
|
|
//ini_set('memory_limit', '12M');
|
|
|
|
restore_error_handler(); //Avoid PHP error logging
|
|
|
|
set_time_limit(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function connect() {
|
2012-10-05 08:00:20 +00:00
|
|
|
$this->connect_irc();
|
|
|
|
$this->connect_listener();
|
|
|
|
$this->post_connect();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function connect_irc($Reconnect = false) {
|
|
|
|
$this->Connecting = true;
|
2011-03-28 14:21:28 +00:00
|
|
|
//Open a socket to the IRC server
|
2012-10-05 08:00:20 +00:00
|
|
|
while (!$this->Socket = fsockopen('tls://'.BOT_SERVER, BOT_PORT_SSL)) {
|
|
|
|
sleep(15);
|
|
|
|
}
|
2011-03-28 14:21:28 +00:00
|
|
|
stream_set_blocking($this->Socket, 0);
|
2012-10-05 08:00:20 +00:00
|
|
|
$this->Connecting = false;
|
|
|
|
if ($Reconnect) {
|
|
|
|
$this->post_connect();
|
|
|
|
}
|
|
|
|
}
|
2011-03-28 14:21:28 +00:00
|
|
|
|
2012-10-05 08:00:20 +00:00
|
|
|
public function connect_listener() {
|
2011-03-28 14:21:28 +00:00
|
|
|
//create a socket to listen on
|
|
|
|
$this->ListenSocket = socket_create(AF_INET, SOCK_STREAM, SOL_TCP);
|
|
|
|
//socket_set_option($this->ListenSocket, SOL_TCP, SO_REUSEADDR, 1);
|
|
|
|
socket_set_option($this->ListenSocket, SOL_SOCKET, SO_REUSEADDR, 1);
|
2012-10-05 08:00:20 +00:00
|
|
|
$this->Bound = socket_bind($this->ListenSocket, SOCKET_LISTEN_ADDRESS, SOCKET_LISTEN_PORT);
|
2011-03-28 14:21:28 +00:00
|
|
|
socket_listen($this->ListenSocket);
|
|
|
|
socket_set_nonblock($this->ListenSocket);
|
2012-10-05 08:00:20 +00:00
|
|
|
}
|
2011-03-28 14:21:28 +00:00
|
|
|
|
2012-10-05 08:00:20 +00:00
|
|
|
public function post_connect() {
|
2011-03-28 14:21:28 +00:00
|
|
|
fwrite($this->Socket, "NICK ".BOT_NICK."Init\n");
|
|
|
|
fwrite($this->Socket, "USER ".BOT_NICK." * * :IRC Bot\n");
|
|
|
|
$this->listen();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function disconnect() {
|
|
|
|
socket_close($this->ListenSocket);
|
|
|
|
$this->State = 0; //Drones dead
|
|
|
|
}
|
|
|
|
|
|
|
|
public function get_channel() {
|
|
|
|
preg_match('/.+ PRIVMSG ([^:]+) :.+/', $this->Data, $Channel);
|
|
|
|
if(preg_match('/#.+/',$Channel[1])) {
|
|
|
|
return $Channel[1];
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function get_nick() {
|
|
|
|
preg_match('/:([^!:]+)!.+@[^\s]+ PRIVMSG [^:]+ :.+/', $this->Data, $Nick);
|
|
|
|
return $Nick[1];
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function get_message() {
|
|
|
|
preg_match('/:.+ PRIVMSG [^:]+ :(.+)/', $this->Data, $Msg);
|
|
|
|
return trim($Msg[1]);
|
|
|
|
}
|
|
|
|
|
2012-10-11 08:00:15 +00:00
|
|
|
protected function get_irc_host() {
|
2011-03-28 14:21:28 +00:00
|
|
|
preg_match('/:[^!:]+!.+@([^\s]+) PRIVMSG [^:]+ :.+/', $this->Data, $Host);
|
|
|
|
return trim($Host[1]);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function get_word($Select=1) {
|
|
|
|
preg_match('/:.+ PRIVMSG [^:]+ :(.+)/', $this->Data, $Word);
|
|
|
|
$Word = split(' ',$Word[1]);
|
|
|
|
return trim($Word[$Select]);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function get_action() {
|
|
|
|
preg_match('/:.+ PRIVMSG [^:]+ :!(\S+)/', $this->Data, $Action);
|
|
|
|
return strtoupper($Action[1]);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function send_raw($Text) {
|
2012-10-05 08:00:20 +00:00
|
|
|
if (!feof($this->Socket)) {
|
|
|
|
fwrite($this->Socket, $Text."\n");
|
|
|
|
} elseif (!$this->Connecting) {
|
|
|
|
$this->Connecting = true;
|
|
|
|
sleep(120);
|
|
|
|
$this->connect_irc(true);
|
|
|
|
}
|
2011-03-28 14:21:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function send_to($Channel, $Text) {
|
2012-10-05 08:00:20 +00:00
|
|
|
$this->send_raw("PRIVMSG $Channel :$Text");
|
2011-03-28 14:21:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function whois($Nick) {
|
|
|
|
$this->Whois = $Nick;
|
|
|
|
$this->send_raw("WHOIS $Nick");
|
|
|
|
}
|
2012-10-11 08:00:15 +00:00
|
|
|
|
2011-03-28 14:21:28 +00:00
|
|
|
/*
|
2012-10-11 08:00:15 +00:00
|
|
|
This function uses blacklisted_ip, which is no longer in RC2.
|
|
|
|
You can probably find it in old RC1 code kicking aronud if you need it.
|
2011-03-28 14:21:28 +00:00
|
|
|
protected function ip_check($IP,$Gline=false,$Channel=BOT_REPORT_CHAN) {
|
|
|
|
global $Cache, $DB;
|
|
|
|
if(blacklisted_ip($IP)) {
|
|
|
|
$this->send_to($Channel, 'TOR IP Detected: '.$IP);
|
|
|
|
if ($Gline) {
|
|
|
|
$this->send_raw('GLINE *@'.$IP.' 90d :DNSBL Proxy');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$IPBans = $Cache->get_value('ip_bans');
|
|
|
|
if(!is_array($IPBans)) {
|
|
|
|
$DB->query("SELECT FromIP, ToIP FROM ip_bans");
|
|
|
|
$IPBans = $DB->to_array();
|
|
|
|
$Cache->cache_value('ip_bans', $IPBans, 0);
|
|
|
|
}
|
|
|
|
foreach($IPBans as $IPBan) {
|
|
|
|
list($FromIP, $ToIP) = $IPBan;
|
|
|
|
$Long = ip2long($IP);
|
|
|
|
if($Long >= $FromIP && $Long <= $ToIP) {
|
|
|
|
$this->send_to($Channel, 'Site IP Ban Detected: '.$IP);
|
|
|
|
if ($Gline) {
|
|
|
|
$this->send_raw('GLINE *@'.$IP.' 90d :IP Ban');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}*/
|
|
|
|
|
|
|
|
protected function listen() {
|
|
|
|
global $Cache,$DB;
|
2012-03-31 08:00:23 +00:00
|
|
|
$Cache->InternalCache = false;
|
2011-03-28 14:21:28 +00:00
|
|
|
stream_set_timeout($this->Socket, 10000000000);
|
|
|
|
while($this->State == 1){
|
|
|
|
if($this->Data = fgets($this->Socket, 256)) {
|
|
|
|
//IP checks
|
|
|
|
//if(preg_match('/:\*\*\* (?:REMOTE)?CONNECT: Client connecting (?:.*) \[(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})\] \[(.+)\]/', $this->Data, $IP)) {
|
|
|
|
// $this->ip_check($IP[1],true);
|
|
|
|
//}
|
|
|
|
|
|
|
|
if($this->Debug === true) {
|
|
|
|
$this->send_to(BOT_DEBUG_CHAN, $this->Data);
|
|
|
|
}
|
|
|
|
|
|
|
|
if($this->Whois !== false) {
|
|
|
|
$Exp = explode(' ',$this->Data);
|
|
|
|
if($Exp[1] == '307') {
|
|
|
|
$this->Identified[$this->Whois] = 1;
|
|
|
|
$this->send_to($this->LastChan, "$this->Whois correctly identified as a real person!");
|
|
|
|
$this->Whois = false;
|
|
|
|
$this->LastChan = false;
|
|
|
|
} elseif($Exp[6] == '/WHOIS') {
|
|
|
|
$this->Whois = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(preg_match("/:([^!]+)![^\s]* QUIT.* /", $this->Data, $Nick)) {
|
|
|
|
if(isset($this->Identified[$Nick[1]])) {
|
|
|
|
unset($this->Identified[$Nick[1]]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(preg_match("/End of message of the day./", $this->Data)) {
|
|
|
|
$this->connect_events();
|
|
|
|
}
|
|
|
|
|
|
|
|
if(preg_match('/PING :(.+)/', $this->Data, $Ping)) {
|
|
|
|
$this->send_raw('PONG :'.$Ping[1]);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(preg_match('/.*PRIVMSG #.*/',$this->Data)) {
|
|
|
|
$this->channel_events();
|
|
|
|
}
|
|
|
|
|
|
|
|
if(preg_match("/.* PRIVMSG ".BOT_NICK." .*/",$this->Data)) {
|
|
|
|
$this->query_events();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if($this->Listened = @socket_accept($this->ListenSocket)) {
|
|
|
|
$this->listener_events();
|
|
|
|
}
|
2012-10-11 08:00:15 +00:00
|
|
|
|
2011-03-28 14:21:28 +00:00
|
|
|
$DB->LinkID = false;
|
|
|
|
$DB->Queries = array();
|
|
|
|
usleep(5000);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|