ergo/irc/server.go

347 lines
6.6 KiB
Go
Raw Normal View History

2012-04-07 20:44:59 +02:00
package irc
import (
"crypto/rand"
"encoding/binary"
"fmt"
2012-04-07 20:44:59 +02:00
"log"
"net"
2012-04-18 07:21:41 +02:00
"time"
2012-04-07 20:44:59 +02:00
)
type ChannelNameMap map[string]*Channel
2014-02-05 04:28:24 +01:00
type ClientNameMap map[string]*Client
2012-04-07 20:44:59 +02:00
type Server struct {
2014-02-05 04:28:24 +01:00
channels ChannelNameMap
commands chan<- Command
2012-12-13 08:27:17 +01:00
ctime time.Time
2014-02-05 04:28:24 +01:00
hostname string
2012-12-13 08:27:17 +01:00
name string
2014-02-08 22:18:11 +01:00
password string
2014-02-05 04:28:24 +01:00
clients ClientNameMap
}
2012-04-18 07:11:35 +02:00
func NewServer(name string) *Server {
2013-06-03 01:53:06 +02:00
commands := make(chan Command)
2012-12-09 21:51:50 +01:00
server := &Server{
ctime: time.Now(),
name: name,
commands: commands,
2014-02-05 04:28:24 +01:00
clients: make(ClientNameMap),
channels: make(ChannelNameMap),
}
go server.receiveCommands(commands)
2013-06-03 07:07:50 +02:00
return server
}
func (server *Server) receiveCommands(commands <-chan Command) {
for command := range commands {
if DEBUG_SERVER {
2013-05-26 22:28:22 +02:00
log.Printf("%s → %s : %s", command.Client(), server, command)
}
command.Client().atime = time.Now()
command.HandleServer(server)
}
}
2012-04-07 20:44:59 +02:00
func (s *Server) Listen(addr string) {
listener, err := net.Listen("tcp", addr)
if err != nil {
2012-04-08 08:32:08 +02:00
log.Fatal("Server.Listen: ", err)
2012-04-07 20:44:59 +02:00
}
s.hostname = LookupHostname(listener.Addr())
log.Print("Server.Listen: listening on ", addr)
2012-04-07 20:44:59 +02:00
for {
conn, err := listener.Accept()
if err != nil {
log.Print("Server.Accept: ", err)
2012-04-07 20:44:59 +02:00
continue
}
2014-02-08 22:18:11 +01:00
if DEBUG_SERVER {
log.Print("Server.Accept: ", conn.RemoteAddr())
2014-02-08 22:18:11 +01:00
}
NewClient(s, conn)
}
}
func (s *Server) GetOrMakeChannel(name string) *Channel {
channel := s.channels[name]
if channel == nil {
channel = NewChannel(s, name)
s.channels[name] = channel
}
return channel
}
func (s *Server) GenerateGuestNick() string {
bytes := make([]byte, 8)
for {
_, err := rand.Read(bytes)
if err != nil {
panic(err)
}
randInt, n := binary.Uvarint(bytes)
if n <= 0 {
continue // TODO handle error
}
nick := fmt.Sprintf("guest%d", randInt)
if s.clients[nick] == nil {
return nick
}
}
2012-04-07 20:44:59 +02:00
}
// server functionality
func (s *Server) tryRegister(c *Client) {
2014-02-08 22:18:11 +01:00
if !c.registered && c.HasNick() && c.HasUsername() && c.serverPass {
c.registered = true
2013-05-12 20:20:55 +02:00
replies := []Reply{
RplWelcome(s, c),
2013-06-03 07:07:50 +02:00
RplYourHost(s),
2013-05-12 20:20:55 +02:00
RplCreated(s),
RplMyInfo(s),
}
for _, reply := range replies {
2013-05-09 20:05:10 +02:00
c.Replies() <- reply
}
}
}
2013-05-12 20:20:55 +02:00
func (s *Server) Id() string {
2013-05-11 22:55:01 +02:00
return s.name
}
func (s *Server) String() string {
return s.name
}
func (s *Server) Nick() string {
return s.Id()
}
func (s *Server) DeleteChannel(channel *Channel) {
delete(s.channels, channel.name)
}
//
// commands
//
func (m *UnknownCommand) HandleServer(s *Server) {
2013-05-09 20:05:10 +02:00
m.Client().Replies() <- ErrUnknownCommand(s, m.command)
}
func (m *PingCommand) HandleServer(s *Server) {
m.Client().Replies() <- RplPong(s, m.Client())
}
func (m *PongCommand) HandleServer(s *Server) {
// no-op
}
func (m *PassCommand) HandleServer(s *Server) {
2014-02-08 22:18:11 +01:00
if s.password != m.password {
2013-05-09 20:05:10 +02:00
m.Client().Replies() <- ErrPasswdMismatch(s)
2014-02-08 22:18:11 +01:00
// TODO disconnect
return
2012-04-09 16:57:55 +02:00
}
m.Client().serverPass = true
// no reply?
}
func (m *NickCommand) HandleServer(s *Server) {
c := m.Client()
2014-02-05 04:28:24 +01:00
if s.clients[m.nickname] != nil {
c.replies <- ErrNickNameInUse(s, m.nickname)
return
}
2012-12-09 21:51:50 +01:00
2014-02-05 04:28:24 +01:00
reply := RplNick(c, m.nickname)
2014-02-09 02:43:59 +01:00
c.replies <- reply
for iclient := range c.InterestedClients() {
2014-02-05 04:28:24 +01:00
iclient.replies <- reply
2013-05-12 20:20:55 +02:00
}
delete(s.clients, c.nick)
2014-02-05 04:28:24 +01:00
s.clients[m.nickname] = c
c.nick = m.nickname
s.tryRegister(c)
}
func (m *UserMsgCommand) HandleServer(s *Server) {
c := m.Client()
2014-02-05 04:28:24 +01:00
if c.registered {
c.replies <- ErrAlreadyRegistered(s)
return
}
c.username, c.realname = m.user, m.realname
2012-12-09 21:51:50 +01:00
s.tryRegister(c)
}
func (m *QuitCommand) HandleServer(s *Server) {
c := m.Client()
delete(s.clients, c.nick)
for channel := range c.channels {
delete(channel.members, c)
}
c.replies <- RplError(s, c)
c.Destroy()
2014-02-05 04:28:24 +01:00
reply := RplQuit(c, m.message)
for client := range c.InterestedClients() {
2014-02-05 04:28:24 +01:00
client.replies <- reply
}
}
func (m *JoinCommand) HandleServer(s *Server) {
c := m.Client()
if m.zero {
cmd := &PartCommand{
BaseCommand: BaseCommand{c},
}
2014-02-05 04:28:24 +01:00
for channel := range c.channels {
channel.commands <- cmd
}
return
}
for name := range m.channels {
2014-02-05 04:28:24 +01:00
s.GetOrMakeChannel(name).commands <- m
}
}
func (m *PartCommand) HandleServer(s *Server) {
for _, chname := range m.channels {
channel := s.channels[chname]
if channel == nil {
2014-02-05 04:28:24 +01:00
m.Client().replies <- ErrNoSuchChannel(s, channel.name)
continue
}
2014-02-05 04:28:24 +01:00
channel.commands <- m
}
}
func (m *TopicCommand) HandleServer(s *Server) {
channel := s.channels[m.channel]
if channel == nil {
2014-02-05 04:28:24 +01:00
m.Client().replies <- ErrNoSuchChannel(s, m.channel)
return
}
2014-02-05 04:28:24 +01:00
channel.commands <- m
}
func (m *PrivMsgCommand) HandleServer(s *Server) {
if m.TargetIsChannel() {
channel := s.channels[m.target]
if channel == nil {
2014-02-05 04:28:24 +01:00
m.Client().replies <- ErrNoSuchChannel(s, m.target)
return
}
2013-06-03 07:07:50 +02:00
channel.commands <- m
return
}
2014-02-05 04:28:24 +01:00
target := s.clients[m.target]
if target == nil {
2014-02-05 04:28:24 +01:00
m.Client().replies <- ErrNoSuchNick(s, m.target)
return
}
2014-02-08 22:18:11 +01:00
target.replies <- RplPrivMsg(m.Client(), target, m.message)
2012-04-07 20:44:59 +02:00
}
2012-12-13 08:27:17 +01:00
func (m *ModeCommand) HandleServer(s *Server) {
client := m.Client()
if client.Nick() == m.nickname {
for _, change := range m.changes {
if change.mode == Invisible {
2014-02-09 07:42:14 +01:00
switch change.op {
case Add:
client.invisible = true
case Remove:
client.invisible = false
}
}
}
client.replies <- RplUModeIs(s, client)
return
}
client.replies <- ErrUsersDontMatch(client)
2012-12-13 08:27:17 +01:00
}
2014-02-09 02:43:59 +01:00
func (m *WhoisCommand) HandleServer(server *Server) {
client := m.Client()
// TODO implement target query
if m.target != "" {
client.replies <- ErrNoSuchServer(server, m.target)
return
}
for _, mask := range m.masks {
// TODO implement wildcard matching
mclient := server.clients[mask]
if mclient != nil {
client.replies <- RplWhoisUser(server, mclient)
}
}
client.replies <- RplEndOfWhois(server)
}
2014-02-09 03:14:39 +01:00
func (msg *ChannelModeCommand) HandleServer(server *Server) {
client := msg.Client()
channel := server.channels[msg.channel]
if channel == nil {
client.replies <- ErrNoSuchChannel(server, msg.channel)
return
}
channel.commands <- msg
2014-02-09 03:14:39 +01:00
}
2014-02-09 03:49:52 +01:00
func whoChannel(client *Client, server *Server, channel *Channel) {
for member := range channel.members {
client.replies <- RplWhoReply(server, channel, member)
}
}
func (msg *WhoCommand) HandleServer(server *Server) {
client := msg.Client()
// TODO implement wildcard matching
2014-02-09 07:42:14 +01:00
mask := string(msg.mask)
if mask == "" {
2014-02-09 03:49:52 +01:00
for _, channel := range server.channels {
whoChannel(client, server, channel)
}
2014-02-09 07:42:14 +01:00
} else if IsChannel(mask) {
channel := server.channels[mask]
2014-02-09 03:49:52 +01:00
if channel != nil {
whoChannel(client, server, channel)
}
} else {
2014-02-09 07:42:14 +01:00
mclient := server.clients[mask]
2014-02-09 03:49:52 +01:00
if mclient != nil {
client.replies <- RplWhoReply(server, mclient.channels.First(), mclient)
}
}
2014-02-09 07:42:14 +01:00
client.replies <- RplEndOfWho(server, mask)
2014-02-09 03:49:52 +01:00
}