about summary refs log blame commit diff stats
path: root/main.go
blob: a2a25ff8e9bff9176e11845b9c08ae90bafbd5db (plain) (tree)
1
2
3
4
5
6
7
8
9



             


                 
 
                                   

 
             









                                         
                                       
                                                    



                                                                             
















                                                                                                  
                                                                                                                                  

                              




                                            



                                                                                                           
         







                                                  
 
package main

import (
	"log"
	"os"
	"strings"
	"time"

	"github.com/lrstanley/girc"
)

func main() {
	client := girc.New(girc.Config{
		Server: "irc.tilde.chat",
		Port:   6697,
		Nick:   "goofbot",
		User:   "goofbot",
		Name:   "Goofus McBotus",
		Out:    os.Stdout,
		SSL:    true,
	})

	//TODO: handle PING/PONG events
	//i'm shooting in the dark with this handler
	//client.Handlers.Add(girc.PING, func(i girc.PING, c *girc.Client)) {
	//    c.Cmd.Pong(i)
	//}

	client.Handlers.Add(girc.CONNECTED, func(c *girc.Client, e girc.Event) {
		c.Cmd.Join("#goofbot")
	})

	client.Handlers.Add(girc.PRIVMSG, func(c *girc.Client, e girc.Event) {
		if strings.HasPrefix(e.Last(), "!hello") {
			c.Cmd.ReplyTo(e, "henlo good fren!!")
			return
		}

		if strings.HasPrefix(e.Last(), "die, devil bird!") && e.Source.Name == "ahriman" {
			c.Cmd.Reply(e, "SQUAWWWWWK!!")
			time.Sleep(100 * time.Millisecond)
			c.Close()
			return
		}
		if strings.HasPrefix(e.Last(), "!botlist") {
			c.Cmd.Reply(e, "Creator: ~a h r i m a n~ :: I'm the assistance bot for tilde.institute. Commands: !hello")
			return
		}
		//TODO:
		// currently connected users
		// uptime
		// load
		//
	})

	if err := client.Connect(); err != nil {
		log.Fatalf("an error occurred while attempting to connect to %s: %s", client.Server(), err)
	}
	//TODO: figure out sigint handling
	//	ctrlc := make(chan os.Signal, 1)
	//	signal.Notify(ctrlc, os.Interrupt)
	//	go func() {
	//		<-ctrlc
	//		client.Close()
	//		os.Exit(1)
	//	}()
}