Libraries to help with IRC development in Go. Mirror/fork of https://github.com/ergochat/irc-go https://github.com/ergochat/irc-go
irc
Go to file
2010-03-12 21:55:56 +01:00
example Rewritten to use callbacks, bit easier to use. 2010-01-06 19:32:35 +01:00
irc_callback.go Better parameter order for ReplaceCallback 2010-03-12 21:55:56 +01:00
irc_struct.go Rewritten to use callbacks, bit easier to use. 2010-01-06 19:32:35 +01:00
irc.go strings.Bytes(str) -> []byte(str) 2010-03-01 17:09:03 +01:00
LICENSE LICENSE, Same as go itself. 2009-11-18 16:03:14 +01:00
Makefile Rewritten to use callbacks, bit easier to use. 2010-01-06 19:32:35 +01:00
README.markdown Fix git url and markdown 2010-01-10 22:27:34 +01:00

Description

Event based irc client library.

Features

  • Event based. Register Callbacks for the events you need to handle.
  • Handles basic irc demands for you
    • Standard CTCP
    • Reconnections on errors
    • Detect stoned servers

Install

$ git clone git://github.com/thoj/Go-IRC-Client-Library.git
$ cd Go-IRC-Client-Library
$ make 
$ make install

Example

See example/test.go

Events for callbacks

  • 001 Welcome
  • PING
  • CTCP Unknown CTCP
  • CTCP_VERSION Version request (Handled internaly)
  • CTCP_USERINFO
  • CTCP_CLIENTINFO
  • CTCP_TIME
  • CTCP_PING
  • PRIVMSG
  • MODE
  • JOIN

+Many more

AddCallback Example

ircobj.AddCallback("PRIVMSG", func(event *irc.IRCEvent) {
	//e.Message contains the message
	//e.Nick Contains the sender
	//e.Arguments[0] Contains the channel
});

Commands

ircobj.Sendraw("<string>") //sends string to server. Adds \r\n
ircobj.Join("#channel [password]") 
ircobj.Privmsg("#channel", "msg")
ircobj.Privmsg("nickname", "msg")
ircobj.Notice("nickname or #channel", "msg")