2015-06-05 22:34:13 +00:00
|
|
|
package irc
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bufio"
|
|
|
|
"crypto/tls"
|
|
|
|
"fmt"
|
|
|
|
"net"
|
|
|
|
"strings"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
func (c *Client) Connect(address string) {
|
2016-01-13 17:53:54 +00:00
|
|
|
c.ConnectionChanged <- false
|
|
|
|
|
2015-06-05 22:34:13 +00:00
|
|
|
if idx := strings.Index(address, ":"); idx < 0 {
|
|
|
|
c.Host = address
|
|
|
|
|
|
|
|
if c.TLS {
|
|
|
|
address += ":6697"
|
|
|
|
} else {
|
|
|
|
address += ":6667"
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
c.Host = address[:idx]
|
|
|
|
}
|
|
|
|
c.Server = address
|
|
|
|
c.dialer = &net.Dialer{Timeout: 10 * time.Second}
|
|
|
|
|
|
|
|
go c.run()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Client) Write(data string) {
|
|
|
|
c.out <- data + "\r\n"
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Client) Writef(format string, a ...interface{}) {
|
|
|
|
c.out <- fmt.Sprintf(format+"\r\n", a...)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Client) write(data string) {
|
|
|
|
c.conn.Write([]byte(data + "\r\n"))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Client) writef(format string, a ...interface{}) {
|
|
|
|
fmt.Fprintf(c.conn, format+"\r\n", a...)
|
|
|
|
}
|
|
|
|
|
2016-01-15 07:26:06 +00:00
|
|
|
func (c *Client) run() {
|
|
|
|
c.tryConnect()
|
2015-06-11 02:57:52 +00:00
|
|
|
|
2016-01-15 07:26:06 +00:00
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-c.quit:
|
|
|
|
if c.Connected() {
|
|
|
|
c.disconnect()
|
|
|
|
}
|
2016-01-11 20:04:57 +00:00
|
|
|
|
2016-01-15 07:26:06 +00:00
|
|
|
c.sendRecv.Wait()
|
|
|
|
close(c.Messages)
|
|
|
|
return
|
2016-01-11 20:04:57 +00:00
|
|
|
|
2016-01-15 07:26:06 +00:00
|
|
|
case <-c.reconnect:
|
|
|
|
c.disconnect()
|
2015-06-05 22:34:13 +00:00
|
|
|
|
2016-01-15 07:26:06 +00:00
|
|
|
c.sendRecv.Wait()
|
|
|
|
c.reconnect = make(chan struct{})
|
|
|
|
c.once.Reset()
|
2015-06-05 22:34:13 +00:00
|
|
|
|
2016-01-15 07:26:06 +00:00
|
|
|
c.tryConnect()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-06-05 22:34:13 +00:00
|
|
|
|
2016-01-15 07:26:06 +00:00
|
|
|
func (c *Client) disconnect() {
|
|
|
|
c.ConnectionChanged <- false
|
|
|
|
c.lock.Lock()
|
|
|
|
c.connected = false
|
|
|
|
c.lock.Unlock()
|
2015-06-05 22:34:13 +00:00
|
|
|
|
2016-01-15 07:26:06 +00:00
|
|
|
c.once.Do(c.ready.Done)
|
|
|
|
c.conn.Close()
|
2015-06-05 22:34:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Client) tryConnect() {
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-c.quit:
|
|
|
|
return
|
2016-01-12 23:12:51 +00:00
|
|
|
|
2015-06-05 22:34:13 +00:00
|
|
|
default:
|
|
|
|
}
|
|
|
|
|
|
|
|
err := c.connect()
|
|
|
|
if err == nil {
|
2016-01-13 00:00:57 +00:00
|
|
|
c.backoff.Reset()
|
2016-02-03 20:12:32 +00:00
|
|
|
|
|
|
|
c.flushChannels()
|
2015-06-05 22:34:13 +00:00
|
|
|
return
|
|
|
|
}
|
2016-01-12 23:12:51 +00:00
|
|
|
|
2016-01-13 00:00:57 +00:00
|
|
|
time.Sleep(c.backoff.Duration())
|
2015-06-05 22:34:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-15 07:26:06 +00:00
|
|
|
func (c *Client) connect() error {
|
|
|
|
c.lock.Lock()
|
|
|
|
defer c.lock.Unlock()
|
2015-06-05 22:34:13 +00:00
|
|
|
|
2016-01-15 07:26:06 +00:00
|
|
|
if c.TLS {
|
|
|
|
conn, err := tls.DialWithDialer(c.dialer, "tcp", c.Server, c.TLSConfig)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2016-01-12 23:12:51 +00:00
|
|
|
|
2016-01-15 07:26:06 +00:00
|
|
|
c.conn = conn
|
|
|
|
} else {
|
|
|
|
conn, err := c.dialer.Dial("tcp", c.Server)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
2015-06-05 22:34:13 +00:00
|
|
|
}
|
2016-01-15 07:26:06 +00:00
|
|
|
|
|
|
|
c.conn = conn
|
2015-06-05 22:34:13 +00:00
|
|
|
}
|
2016-01-15 07:26:06 +00:00
|
|
|
|
|
|
|
c.connected = true
|
|
|
|
c.ConnectionChanged <- true
|
|
|
|
c.reader = bufio.NewReader(c.conn)
|
|
|
|
|
|
|
|
c.register()
|
|
|
|
|
|
|
|
c.ready.Add(1)
|
|
|
|
c.sendRecv.Add(2)
|
|
|
|
go c.send()
|
|
|
|
go c.recv()
|
|
|
|
|
|
|
|
return nil
|
2015-06-05 22:34:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Client) send() {
|
2016-01-12 23:12:51 +00:00
|
|
|
defer c.sendRecv.Done()
|
|
|
|
|
2015-06-05 22:34:13 +00:00
|
|
|
c.ready.Wait()
|
2016-01-12 23:12:51 +00:00
|
|
|
|
2015-06-05 22:34:13 +00:00
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-c.quit:
|
|
|
|
return
|
|
|
|
|
|
|
|
case <-c.reconnect:
|
|
|
|
return
|
|
|
|
|
|
|
|
case msg := <-c.out:
|
|
|
|
_, err := c.conn.Write([]byte(msg))
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Client) recv() {
|
2016-01-12 23:12:51 +00:00
|
|
|
defer c.sendRecv.Done()
|
|
|
|
|
2015-06-05 22:34:13 +00:00
|
|
|
for {
|
|
|
|
line, err := c.reader.ReadString('\n')
|
|
|
|
if err != nil {
|
2015-06-11 00:04:51 +00:00
|
|
|
select {
|
|
|
|
case <-c.quit:
|
|
|
|
return
|
2016-01-12 23:12:51 +00:00
|
|
|
|
2015-06-11 00:04:51 +00:00
|
|
|
default:
|
|
|
|
close(c.reconnect)
|
|
|
|
return
|
|
|
|
}
|
2015-06-05 22:34:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
msg := parseMessage(line)
|
2016-01-24 21:02:37 +00:00
|
|
|
c.Messages <- msg
|
2015-06-05 22:34:13 +00:00
|
|
|
|
|
|
|
switch msg.Command {
|
|
|
|
case Ping:
|
2016-12-12 06:19:22 +00:00
|
|
|
go c.write("PONG :" + msg.Params[len(msg.Params)-1])
|
2015-06-05 22:34:13 +00:00
|
|
|
|
2016-02-03 20:12:32 +00:00
|
|
|
case Join:
|
|
|
|
if msg.Nick == c.GetNick() {
|
|
|
|
c.addChannel(msg.Params[0])
|
|
|
|
}
|
|
|
|
|
2015-06-05 22:34:13 +00:00
|
|
|
case ReplyWelcome:
|
|
|
|
c.once.Do(c.ready.Done)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|