Project

ircsupport

0.0
No commit activity in last 3 years
No release in over 3 years
IRCSupport provides tools for dealing with the IRC protocol.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 2.11.4
>= 0
>= 0
>= 0.7.5
 Project Readme

IRCSupport

Gem Version Build Status Code Climate Coverage Status

IRCSupport provides everything you need to work with the IRC protocol and its widely-used extensions. It is meant to be a building block for higher-level libraries that use IRC (clients or servers). There are a bunch of IRC client/bot libraries for Ruby out there, and they all implement their own stuff for dealing with the IRC protocol. Why not keep it in one place?

Features

  • Complete: Includes support for all protocol standards used by modern IRC clients and servers, including:
  • RFC1459
  • RFC2812 & RFC2813
  • CTCP
  • DCC (CHAT, SEND, ACCEPT, RESUME)
  • RPL_ISUPPORT (draft-brocklesby-irc-isupport-03)
  • mIRC/ECMA-48/RGB color and formatting codes
  • IRCv3 standards
  • Tested: A heavy emphasis is placed on testing the code. It generally has 100% test coverage.
  • Flexible: The tools provided by IRCSupport are flexible and modular, and should encourage reuse.

Usage

Here are some examples of using IRCSupport:

require 'ircsupport'

line = ':foo!bar@baz.com PRIVMSG #the_room :Greetings, everyone!'
irc_parser = IRCSupport::Parser.new
msg = irc_parser.parse(line)

msg.channel
# => '#the_room'

msg.sender
# => 'foo!bar@baz'

msg.is_action?
# => false

msg.type
# => :message

IRCSupport::Validations.valid_nick_name?("Foo{}Bar[]")
# => true

IRCSupport::Validations.valid_nick_name?("123FooBar")
# => false

IRCSupport::Numerics.numeric_to_name('005')
# => 'RPL_ISUPPORT'

# any module can also be mixed into your class
include IRCSupport::Numerics
numeric_to_name('001')
# => 'RPL_WELCOME'

See the API documentation for more details.

Components

This class is a complete parser for the IRC protocol. It can provide you with rich objects which encapsulate all the information of a message in handy methods.

A module that provides functions that conversion between various IRC casemappings.

A module that provides functions to encode or decode IRC messages.

A module that provides functions for detecting, stripping, and constructing strings with IRC color and formatting codes.

A module that provides functions to deal with IRC masks.

A module that provides functions to work with mode strings.

A module that provides functions to look up the names of IRC numerics and vice versa.

A module that provides functions to validate various IRC strings.

Contributing

  • Fork this repository on github
  • Make your changes and send me a pull request
  • If I like them I'll merge them
  • If I've accepted a patch, feel free to ask for commit access

Kudos

Those go to the authors of the IRC::Utils Perl module, on which much of this library's functionality is based. Same for the authors of cinch, from which a few functions were borrowed.

License

Copyright (c) 2012 Hinrik Örn Sigurðsson. Distributed under the MIT License. See LICENSE.txt for further details.