2012-11-05 22:46:47 +00:00
|
|
|
// Copyright 2009 Thomas Jager <mail@jager.no> All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package irc
|
|
|
|
|
|
|
|
import (
|
2012-11-05 23:38:20 +00:00
|
|
|
"crypto/tls"
|
2012-11-05 22:46:47 +00:00
|
|
|
"log"
|
|
|
|
"net"
|
2012-02-25 08:52:19 +00:00
|
|
|
"time"
|
2012-11-05 22:46:47 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type Connection struct {
|
2013-09-26 03:37:11 +00:00
|
|
|
Debug bool
|
2012-11-05 23:38:20 +00:00
|
|
|
Error chan error
|
|
|
|
Password string
|
2012-11-07 20:55:33 +00:00
|
|
|
UseTLS bool
|
|
|
|
TLSConfig *tls.Config
|
2014-02-09 10:20:58 +00:00
|
|
|
Version string
|
|
|
|
Timeout time.Duration
|
|
|
|
PingFreq time.Duration
|
|
|
|
KeepAlive time.Duration
|
2012-03-22 03:57:35 +00:00
|
|
|
|
2013-03-13 11:54:00 +00:00
|
|
|
socket net.Conn
|
2014-02-09 10:20:58 +00:00
|
|
|
netsock net.Conn
|
2013-03-13 11:54:00 +00:00
|
|
|
pread, pwrite chan string
|
2013-04-01 13:02:37 +00:00
|
|
|
readerExit, writerExit, pingerExit chan bool
|
2014-02-09 12:02:05 +00:00
|
|
|
endping, endread, endwrite chan bool
|
2012-03-22 04:08:21 +00:00
|
|
|
|
2012-11-05 23:38:20 +00:00
|
|
|
nick string //The nickname we want.
|
2012-03-22 03:57:35 +00:00
|
|
|
nickcurrent string //The nickname we currently have.
|
2012-11-05 23:38:20 +00:00
|
|
|
user string
|
|
|
|
registered bool
|
|
|
|
server string
|
2012-11-05 23:39:31 +00:00
|
|
|
events map[string][]func(*Event)
|
2012-11-05 22:46:47 +00:00
|
|
|
|
2013-04-01 13:02:37 +00:00
|
|
|
lastMessage time.Time
|
2012-11-05 22:46:47 +00:00
|
|
|
|
|
|
|
VerboseCallbackHandler bool
|
2014-02-09 13:42:14 +00:00
|
|
|
Log *log.Logger
|
2012-11-05 22:46:47 +00:00
|
|
|
|
2013-04-01 13:02:37 +00:00
|
|
|
stopped bool
|
2012-11-05 22:46:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type Event struct {
|
2012-11-05 23:38:20 +00:00
|
|
|
Code string
|
|
|
|
Raw string
|
|
|
|
Nick string //<nick>
|
|
|
|
Host string //<nick>!<usr>@<host>
|
|
|
|
Source string //<host>
|
|
|
|
User string //<usr>
|
2012-11-05 22:46:47 +00:00
|
|
|
Arguments []string
|
|
|
|
}
|
2014-02-11 17:22:13 +00:00
|
|
|
|
|
|
|
// Convenience func to get the last arg, now that the Message field is gone
|
|
|
|
func (e *Event) Message() string {
|
|
|
|
if len(e.Arguments) == 0 {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
return e.Arguments[len(e.Arguments)-1]
|
|
|
|
}
|