All Projects → hoaproject → Irc

hoaproject / Irc

Licence: other
The Hoa\Irc library.

Programming Languages

PHP
23972 projects - #3 most used programming language

Projects that are alternatives of or similar to Irc

twitch-chatlog
Fetch the chatlog to a twitch VOD from your command line.
Stars: ✭ 78 (+225%)
Mutual labels:  irc
Lith
WeeChat relay client
Stars: ✭ 32 (+33.33%)
Mutual labels:  irc
SupyPlugins
A collection of plugins for the Limnoria IRC bot.
Stars: ✭ 31 (+29.17%)
Mutual labels:  irc
lita-irc
An IRC adapter for Lita.
Stars: ✭ 19 (-20.83%)
Mutual labels:  irc
godot-twicil
Godot TwiCIL – Godot Twitch Chat Interaction Layer
Stars: ✭ 57 (+137.5%)
Mutual labels:  irc
alertmanager-irc-relay
Send Prometheus Alerts to IRC using Webhooks
Stars: ✭ 44 (+83.33%)
Mutual labels:  irc
limnoria-plugins
Limnoria plugins I wrote or forked.
Stars: ✭ 35 (+45.83%)
Mutual labels:  irc
chat-bridge
同步不同聊天平台的訊息
Stars: ✭ 16 (-33.33%)
Mutual labels:  irc
Fastcgi
The Hoa\Fastcgi library.
Stars: ✭ 58 (+141.67%)
Mutual labels:  hoa
IceChat
IceChat IRC Client
Stars: ✭ 68 (+183.33%)
Mutual labels:  irc
irc-go
Libraries to help with IRC development in Go.
Stars: ✭ 22 (-8.33%)
Mutual labels:  irc
bancho.js
Interface with Bancho over IRC, made easy and reliable.
Stars: ✭ 47 (+95.83%)
Mutual labels:  irc
GitHub-WebHook
🐱 Validates and processes GitHub's webhooks
Stars: ✭ 25 (+4.17%)
Mutual labels:  irc
Dns
The Hoa\Dns library.
Stars: ✭ 22 (-8.33%)
Mutual labels:  hoa
mesh-botnet
🐍 Proof-of-concept python IRC botnet for orchestrating macOS computers (harmless due to SIP & Gatekeeper)
Stars: ✭ 73 (+204.17%)
Mutual labels:  irc
yesbot
IRC Bot Written in Prolog
Stars: ✭ 19 (-20.83%)
Mutual labels:  irc
Worker
The Hoa\Worker library.
Stars: ✭ 25 (+4.17%)
Mutual labels:  hoa
pyHIDS
A HIDS (host-based intrusion detection system) for verifying the integrity of a system.
Stars: ✭ 31 (+29.17%)
Mutual labels:  irc
peerchan
Fully decentralized p2p IRC for your terminal
Stars: ✭ 15 (-37.5%)
Mutual labels:  irc
fast irc.cr
A fast IRC parsing library for crystal.
Stars: ✭ 18 (-25%)
Mutual labels:  irc

Hoa


Build status Code coverage Packagist License

Hoa is a modular, extensible and structured set of PHP libraries.
Moreover, Hoa aims at being a bridge between industrial and research worlds.

Hoa\Irc

Help on IRC Help on Gitter Documentation Board

This library allows to write an IRC client, and interact through listeners and simple methods.

Learn more.

Installation

With Composer, to include this library into your dependencies, you need to require hoa/irc:

$ composer require hoa/irc '~0.0'

For more installation procedures, please read the Source page.

Testing

Before running the test suites, the development dependencies must be installed:

$ composer install

Then, to run all the test suites:

$ vendor/bin/hoa test:run

For more information, please read the contributor guide.

Quick usage

We propose a quick overview of a simple client that joins a channel and interacts to mentions. Next, we will enhance this client with a WebSocket server to receive external messages.

Interact to mentions

The Hoa\Irc\Client proposes the following listeners: open, join, message, private-message, mention, other-message, ping, kick, invite and error.

In order to connect to an IRC server, we have to use a socket client, such as:

$uri    = 'irc://chat.freenode.net';
$client = new Hoa\Irc\Client(new Hoa\Socket\Client($uri));

Then, we attach our listeners. When the connexion will be opened, we will join a channel, for example #hoaproject with the Gordon username:

$client->on('open', function (Hoa\Event\Bucket $bucket) {
    $bucket->getSource()->join('Gordon', '#hoaproject');

    return;
});

Next, when someone will mention Gordon, we will answer What?:

$client->on('mention', function (Hoa\Event\Bucket $bucket) {
    $data    = $bucket->getData();
    $message = $data['message']; // do something with that.

    $bucket->getSource()->say(
        $data['from']['nick'] . ': What?'
    );

    return;
});

Finally, to run the client:

$client->run();

Include a WebSocket server

We can add a WebSocket server to receive external messages we will forward to the IRC client. Thus, the beginning of our program will look like:

$ircUri = 'irc://chat.freenode.net';
$wsUri  = 'ws://127.0.0.1:8889';

$group  = new Hoa\Socket\Connection\Group();
$client = new Hoa\Irc\Client(new Hoa\Socket\Client($ircUri));
$server = new Hoa\Websocket\Server(new Hoa\Socket\Server($wsUri));

$group[] = $server;
$group[] = $client;

Then, we will forward all messages received by the WebSocket server to the IRC client:

$server->on('message', function (Hoa\Event\Bucket $bucket) use ($client) {
    $data = $bucket->getData();
    $client->say($data['message']);

    return;
});

Finally, to run both the IRC client and WebSocket server:

$group->run();

To send a message to the WebSocket server, we can use a WebSocket client in CLI:

$ echo 'foobar' | hoa websocket:client -s 127.0.0.1:8889

Documentation

The hack book of Hoa\Irc contains detailed information about how to use this library and how it works.

To generate the documentation locally, execute the following commands:

$ composer require --dev hoa/devtools
$ vendor/bin/hoa devtools:documentation --open

More documentation can be found on the project's website: hoa-project.net.

Getting help

There are mainly two ways to get help:

Contribution

Do you want to contribute? Thanks! A detailed contributor guide explains everything you need to know.

License

Hoa is under the New BSD License (BSD-3-Clause). Please, see LICENSE for details.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].