pastebin - collaborative debugging tool
kpaste.net RSS


PHP IRC Bot
Posted by Anonymous on Tue 24th May 2011 21:47
raw | new post

  1. <?php
  2. /*
  3. Tested config:
  4.  
  5. server = 10.0.0.1
  6. port = 6667
  7. nick = test
  8. name = Test
  9. channel = #test
  10. */
  11.  
  12.   //timeout
  13.   set_time_limit(0);
  14.  
  15.   //read
  16.   $config = array();
  17.   $lines = file("config.txt");
  18.   foreach($lines as $line) {
  19.     $setting = explode("=", $line);
  20.     // Removes space
  21.     $label = trim($setting[0]);
  22.     $value = trim($setting[1]);
  23.     $config[$label] = $value;
  24.     echo "$label = $value\n";
  25.   }
  26.  
  27.  
  28. class IRC {
  29.  
  30.         //This is going to hold our TCP/IP connection
  31.         var $socket;
  32.  
  33.         //This is going to hold all of the messages both server and client
  34.         var $ex = array();
  35.  
  36.         /*
  37.  
  38.          Construct item, opens the server connection, logs the bot in
  39.          @param array
  40.  
  41.         */
  42.  
  43.         function __construct($config)
  44.  
  45.         {
  46.                 $this->socket = fsockopen($config['server'], $config['port']);
  47.                 $this->login($config);
  48.                 $this->main($config);
  49.         }
  50.  
  51.  
  52.  
  53.         /*
  54.  
  55.          Logs the bot in on the server
  56.          @param array
  57.  
  58.         */
  59.  
  60.         function login($config)
  61.         {
  62.                 $this->send_data('USER', $config['nick'].' wildphp.com '.$config['nick'].' :'.$config['name']);
  63.                 $this->send_data('NICK', $config['nick']);
  64.                 $this->join_channel($config['channel']);
  65.         }
  66.  
  67.  
  68.  
  69.         /*
  70.  
  71.          This is the workhorse function, grabs the data from the server and displays on the browser
  72.  
  73.         */
  74.  
  75.         function main($config)
  76.         {
  77.                 $data = fgets($this->socket);
  78.  
  79.                 echo $data;
  80.  
  81.                 flush();
  82.  
  83.                 $this->ex = explode(' ', trim($data));
  84.  
  85.  
  86.                 if($this->ex[0] == 'PING')
  87.                 {
  88.                         $this->send_data('PONG', $this->ex[1]); //Plays ping-pong with the server to stay connected.
  89.                 }
  90.  
  91.  
  92.                 $this->main($config);
  93.         }
  94.  
  95.  
  96.  
  97.         function send_data($cmd, $msg = null) //displays stuff to the broswer and sends data to the server.
  98.         {
  99.                 if($msg == null)
  100.                 {
  101.                         fputs($this->socket, $cmd."\r\n");
  102.                         echo "-> $cmd\n";
  103.                 } else {
  104.  
  105.                         fputs($this->socket, $cmd.' '.$msg."\r\n");
  106.                         echo "-> $cmd $msg\n";
  107.                 }
  108.  
  109.         }
  110.  
  111.  
  112.  
  113.         function join_channel($channel) //Joins a channel, used in the join function.
  114.         {
  115.  
  116.                 if(is_array($channel))
  117.                 {
  118.                         foreach($channel as $chan)
  119.                         {
  120.                                 $this->send_data('JOIN', $chan);
  121.                         }
  122.  
  123.                 } else {
  124.                         $this->send_data('JOIN', $channel);
  125.                 }
  126.         }
  127. }
  128.  
  129. //Start the bot
  130. $bot = new IRC($config);
  131. ?>

Submit a correction or amendment below (click here to make a fresh posting)
After submitting an amendment, you'll be able to view the differences between the old and new posts easily.

Syntax highlighting:

To highlight particular lines, prefix each line with {%HIGHLIGHT}




All content is user-submitted.
The administrators of this site (kpaste.net) are not responsible for their content.
Abuse reports should be emailed to us at