php-censor/PHPCI/Plugin/Irc.php

79 lines
2.1 KiB
PHP
Raw Normal View History

2013-10-08 18:19:44 +02:00
<?php
/**
* PHPCI - Continuous Integration for PHP
*
* @copyright Copyright 2014, Block 8 Limited.
* @license https://github.com/Block8/PHPCI/blob/master/LICENSE.md
* @link https://www.phptesting.org/
*/
2013-10-08 18:19:44 +02:00
namespace PHPCI\Plugin;
2013-10-10 02:01:06 +02:00
use PHPCI\Builder;
use PHPCI\Model\Build;
2013-10-08 18:19:44 +02:00
/**
* IRC Plugin - Sends a notification to an IRC channel
* @author Dan Cryer <dan@block8.co.uk>
* @package PHPCI
* @subpackage Plugins
*/
class Irc implements \PHPCI\Plugin
{
2014-05-02 15:48:40 +02:00
protected $phpci;
protected $build;
protected $message;
protected $server;
protected $port;
protected $room;
protected $nick;
2013-10-08 18:19:44 +02:00
2013-10-10 02:01:06 +02:00
public function __construct(Builder $phpci, Build $build, array $options = array())
2013-10-08 18:19:44 +02:00
{
$this->phpci = $phpci;
2014-05-02 15:48:40 +02:00
$this->build = $build;
2013-10-08 18:19:44 +02:00
$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'];
}
}
public function execute()
{
$msg = $this->phpci->interpolate($this->message);
if (empty($this->server) || empty($this->room) || empty($this->nick)) {
$this->phpci->logFailure('You must configure a server, room and nick.');
}
if (empty($this->port)) {
$this->port = 6667;
}
$sock = fsockopen($this->server, $this->port);
fputs($sock, 'USER ' . $this->nick . ' phptesting.org ' . $this->nick . ' :' . $this->nick . "\r\n");
fputs($sock, 'NICK ' . $this->nick . "\r\n");
fputs($sock, 'JOIN ' . $this->room . "\r\n");
2013-10-08 18:19:44 +02:00
fputs($sock, 'PRIVMSG ' . $this->room . ' :' . $msg . "\r\n");
2013-10-08 18:23:21 +02:00
2013-10-10 02:12:30 +02:00
while (fgets($sock)) {
2013-10-10 02:01:06 +02:00
// We don't need to do anything,
// but the IRC server doesn't appear to post the message
// unless we wait for responses.
2013-10-08 18:23:21 +02:00
}
2013-10-08 18:19:44 +02:00
fclose($sock);
return true;
}
}