2009-11-29 20:23:15 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"./irc/_obj/irc";
|
|
|
|
"fmt";
|
|
|
|
"os";
|
2009-12-17 17:22:31 +00:00
|
|
|
"bufio";
|
|
|
|
"strings";
|
2009-11-29 20:23:15 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
2009-12-17 17:22:31 +00:00
|
|
|
// create new IRC connection
|
2009-11-29 20:23:15 +00:00
|
|
|
c := irc.New("GoTest", "gotest", "GoBot");
|
|
|
|
c.AddHandler("connected",
|
2009-12-17 17:22:31 +00:00
|
|
|
func(conn *irc.Conn, line *irc.Line) {
|
2009-11-29 20:23:15 +00:00
|
|
|
conn.Join("#");
|
|
|
|
}
|
|
|
|
);
|
2009-12-17 17:22:31 +00:00
|
|
|
|
|
|
|
// connect to server
|
2009-11-29 20:23:15 +00:00
|
|
|
if err := c.Connect("irc.pl0rt.org", ""); err != nil {
|
2009-12-17 17:22:31 +00:00
|
|
|
fmt.Printf("Connection error: %s\n", err);
|
2009-11-29 20:23:15 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-12-17 17:22:31 +00:00
|
|
|
// set up a goroutine to read commands from stdin
|
|
|
|
in := make(chan string, 4);
|
|
|
|
reallyquit := false;
|
|
|
|
go func() {
|
|
|
|
con := bufio.NewReader(os.Stdin);
|
|
|
|
for {
|
|
|
|
s, err := con.ReadString('\n');
|
|
|
|
if err != nil {
|
|
|
|
// wha?, maybe ctrl-D...
|
|
|
|
close(in);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// no point in sending empty lines down the channel
|
|
|
|
if len(s) > 2 {
|
|
|
|
in <- s[0:len(s)-1]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}();
|
|
|
|
|
|
|
|
// set up a goroutine to do parsey things with the stuff from stdin
|
|
|
|
go func() {
|
|
|
|
for {
|
|
|
|
if closed(in) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
cmd := <-in;
|
|
|
|
if cmd[0] == ':' {
|
|
|
|
switch idx := strings.Index(cmd, " "); {
|
|
|
|
case idx == -1:
|
|
|
|
continue;
|
|
|
|
case cmd[1] == 'q':
|
|
|
|
reallyquit = true;
|
|
|
|
c.Quit(cmd[idx+1:len(cmd)]);
|
|
|
|
case cmd[1] == 'j':
|
|
|
|
c.Join(cmd[idx+1:len(cmd)]);
|
|
|
|
case cmd[1] == 'p':
|
|
|
|
c.Part(cmd[idx+1:len(cmd)]);
|
|
|
|
case cmd[1] == 'd':
|
|
|
|
fmt.Printf(c.String());
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
c.Raw(cmd)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}();
|
|
|
|
|
|
|
|
// stall here waiting for asplode on error channel
|
|
|
|
for {
|
|
|
|
if closed(c.Err) {
|
|
|
|
// c.Err being closed indicates we've been disconnected from the
|
|
|
|
// server for some reason (e.g. quit, kill or ping timeout)
|
|
|
|
// if we don't really want to quit, reconnect!
|
|
|
|
if !reallyquit {
|
|
|
|
fmt.Println("Reconnecting...");
|
|
|
|
if err := c.Connect("irc.pl0rt.org", ""); err != nil {
|
|
|
|
fmt.Printf("Connection error: %s\n", err);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if err := <-c.Err; err != nil {
|
|
|
|
fmt.Printf("goirc error: %s\n", err);
|
|
|
|
}
|
2009-11-29 20:23:15 +00:00
|
|
|
}
|
|
|
|
}
|