3
0
mirror of https://github.com/ergochat/ergo.git synced 2024-11-10 22:19:31 +01:00
ergo/src/irc/client.go

113 lines
1.9 KiB
Go
Raw Normal View History

2012-04-07 20:44:59 +02:00
package irc
import (
2012-04-18 07:11:35 +02:00
"fmt"
"log"
2012-04-07 20:44:59 +02:00
"net"
2012-12-12 08:12:35 +01:00
"time"
2012-04-07 20:44:59 +02:00
)
type Client struct {
conn net.Conn
replies chan<- Reply
2012-04-08 08:32:08 +02:00
username string
realname string
2012-12-10 05:24:53 +01:00
hostname string
2012-04-08 08:32:08 +02:00
nick string
2012-12-10 05:24:53 +01:00
serverPass bool
registered bool
away bool
server *Server
2012-12-12 08:12:35 +01:00
atime time.Time
user *User
2012-04-07 20:44:59 +02:00
}
type ClientSet map[*Client]bool
2012-12-09 21:51:50 +01:00
func NewClient(server *Server, conn net.Conn) *Client {
2012-12-13 08:27:17 +01:00
read := StringReadChan(conn)
write := StringWriteChan(conn)
replies := make(chan Reply)
2012-12-13 08:27:17 +01:00
2012-12-09 21:51:50 +01:00
client := &Client{
conn: conn,
hostname: LookupHostname(conn.RemoteAddr()),
server: server,
replies: replies,
2012-12-09 21:51:50 +01:00
}
2012-12-13 08:27:17 +01:00
// Connect the conn to the server.
go client.readConn(read)
// Connect the reply channel to the conn.
go client.writeConn(write, replies)
2012-12-13 08:27:17 +01:00
2012-04-08 08:32:08 +02:00
return client
2012-04-07 20:44:59 +02:00
}
2012-12-13 08:27:17 +01:00
func (c *Client) readConn(recv <-chan string) {
for str := range recv {
log.Printf("%s > %s", c.Id(), str)
m, err := ParseCommand(str)
2012-12-09 21:51:50 +01:00
if err != nil {
// TODO handle error
2012-12-13 08:27:17 +01:00
continue
2012-04-08 08:32:08 +02:00
}
2012-12-13 08:27:17 +01:00
m.SetClient(c)
c.server.commands <- m
2012-12-13 08:27:17 +01:00
}
}
func (c *Client) writeConn(write chan<- string, replies <-chan Reply) {
for reply := range replies {
2012-12-13 08:27:17 +01:00
replyStr := reply.String(c)
log.Printf("%s < %s", c.Id(), replyStr)
write <- replyStr
2012-04-08 08:32:08 +02:00
}
2012-04-07 20:44:59 +02:00
}
2012-04-09 16:57:55 +02:00
func (c *Client) Nick() string {
if c.user != nil {
return c.user.nick
}
2012-04-09 16:57:55 +02:00
if c.nick != "" {
return c.nick
}
return "*"
2012-04-09 16:57:55 +02:00
}
2012-04-18 05:24:26 +02:00
func (c *Client) UModeString() string {
return ""
2012-04-18 05:24:26 +02:00
}
2012-04-18 06:13:12 +02:00
func (c *Client) HasNick() bool {
return c.nick != ""
}
func (c *Client) HasUser() bool {
return c.username != ""
}
func (c *Client) Username() string {
if c.HasUser() {
return c.username
}
return "*"
}
func (c *Client) UserHost() string {
return fmt.Sprintf("%s!%s@%s", c.Nick(), c.Username(), c.hostname)
2012-04-18 06:13:12 +02:00
}
2012-04-18 07:11:35 +02:00
func (c *Client) Id() string {
return c.UserHost()
2012-04-18 07:11:35 +02:00
}
func (c *Client) PublicId() string {
return fmt.Sprintf("%s!%s@%s", c.Nick(), c.Nick(), c.server.Id())
}