* @package PHPCI * @subpackage Plugins */ class Irc implements PluginInterface { protected $phpci; protected $build; protected $message; protected $server; protected $port; protected $room; protected $nick; /** * Standard Constructor * * $options['directory'] Output Directory. Default: %BUILDPATH% * $options['filename'] Phar Filename. Default: build.phar * $options['regexp'] Regular Expression Filename Capture. Default: /\.php$/ * $options['stub'] Stub Content. No Default Value * * @param Builder $phpci * @param Build $build * @param array $options */ public function __construct(Builder $phpci, Build $build, array $options = array()) { $this->phpci = $phpci; $this->build = $build; $this->message = $options['message']; $buildSettings = $phpci->getConfig('build_settings'); if (isset($buildSettings['irc'])) { $irc = $buildSettings['irc']; $this->server = $irc['server']; $this->port = $irc['port']; $this->room = $irc['room']; $this->nick = $irc['nick']; } } /** * {@inheritDocs} */ public function execute() { $msg = $this->phpci->interpolate($this->message); if (empty($this->server) || empty($this->room) || empty($this->nick)) { $this->phpci->logFailure(Lang::get('irc_settings')); } if (empty($this->port)) { $this->port = 6667; } $sock = fsockopen($this->server, $this->port); stream_set_timeout($sock, 1); $connectCommands = array( 'USER ' . $this->nick . ' 0 * :' . $this->nick, 'NICK ' . $this->nick, ); $this->executeIrcCommands($sock, $connectCommands); $this->executeIrcCommand($sock, 'JOIN ' . $this->room); $this->executeIrcCommand($sock, 'PRIVMSG ' . $this->room . ' :' . $msg); fclose($sock); return true; } /** * Execute a list of IRC commands. * * @param resource $socket * @param array $commands * * @return bool */ private function executeIrcCommands($socket, array $commands) { foreach ($commands as $command) { fputs($socket, $command . "\n"); } $pingBack = false; // almost all servers expect pingback! while ($response = fgets($socket)) { $matches = array(); if (preg_match('/^PING \\:([A-Z0-9]+)/', $response, $matches)) { $pingBack = $matches[1]; } } if ($pingBack) { $command = 'PONG :' . $pingBack . "\n"; fputs($socket, $command); } } /** * Execute a single IRC command. * * @param resource $socket * @param string $command * * @return bool */ private function executeIrcCommand($socket, $command) { return $this->executeIrcCommands($socket, array($command)); } }