2012-04-07 20:44:59 +02:00
|
|
|
package irc
|
|
|
|
|
|
|
|
import (
|
2014-02-12 01:35:32 +01:00
|
|
|
"bufio"
|
2014-02-09 02:10:04 +01:00
|
|
|
"crypto/rand"
|
2014-02-10 04:41:00 +01:00
|
|
|
"crypto/tls"
|
2014-02-09 02:10:04 +01:00
|
|
|
"encoding/binary"
|
|
|
|
"fmt"
|
2012-04-07 20:44:59 +02:00
|
|
|
"log"
|
|
|
|
"net"
|
2014-02-12 01:35:32 +01:00
|
|
|
"os"
|
2014-02-18 03:10:52 +01:00
|
|
|
"strings"
|
2012-04-18 07:21:41 +02:00
|
|
|
"time"
|
2012-04-07 20:44:59 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
type Server struct {
|
2014-02-09 19:07:40 +01:00
|
|
|
channels ChannelNameMap
|
2014-02-17 02:23:47 +01:00
|
|
|
clients ClientNameMap
|
2014-02-14 05:08:16 +01:00
|
|
|
commands chan Command
|
2014-02-09 19:07:40 +01:00
|
|
|
ctime time.Time
|
2014-02-20 22:03:33 +01:00
|
|
|
hostnames chan *HostnameLookup
|
2014-02-18 20:22:56 +01:00
|
|
|
idle chan *Client
|
2014-02-12 01:35:32 +01:00
|
|
|
motdFile string
|
2014-02-09 19:07:40 +01:00
|
|
|
name string
|
2014-02-20 22:03:33 +01:00
|
|
|
newConns chan net.Conn
|
2014-02-09 19:07:40 +01:00
|
|
|
operators map[string]string
|
|
|
|
password string
|
2012-04-18 03:16:57 +02:00
|
|
|
}
|
|
|
|
|
2014-02-09 16:53:42 +01:00
|
|
|
func NewServer(config *Config) *Server {
|
2012-12-09 21:51:50 +01:00
|
|
|
server := &Server{
|
2014-02-09 19:07:40 +01:00
|
|
|
channels: make(ChannelNameMap),
|
|
|
|
clients: make(ClientNameMap),
|
2014-02-20 22:03:33 +01:00
|
|
|
commands: make(chan Command, 16),
|
2014-02-09 19:07:40 +01:00
|
|
|
ctime: time.Now(),
|
2014-02-20 22:03:33 +01:00
|
|
|
hostnames: make(chan *HostnameLookup, 16),
|
|
|
|
idle: make(chan *Client, 16),
|
2014-02-12 01:35:32 +01:00
|
|
|
motdFile: config.MOTD,
|
2014-02-09 19:07:40 +01:00
|
|
|
name: config.Name,
|
2014-02-20 22:03:33 +01:00
|
|
|
newConns: make(chan net.Conn, 16),
|
2014-02-09 19:07:40 +01:00
|
|
|
operators: make(map[string]string),
|
|
|
|
password: config.Password,
|
2012-12-15 23:34:20 +01:00
|
|
|
}
|
2014-02-09 19:07:40 +01:00
|
|
|
|
|
|
|
for _, opConf := range config.Operators {
|
|
|
|
server.operators[opConf.Name] = opConf.Password
|
|
|
|
}
|
|
|
|
|
2014-02-10 04:41:00 +01:00
|
|
|
for _, listenerConf := range config.Listeners {
|
|
|
|
go server.listen(listenerConf)
|
|
|
|
}
|
|
|
|
|
2013-06-03 07:07:50 +02:00
|
|
|
return server
|
|
|
|
}
|
|
|
|
|
2014-02-17 07:38:43 +01:00
|
|
|
func (server *Server) ReceiveCommands() {
|
|
|
|
for {
|
|
|
|
select {
|
2014-02-20 22:03:33 +01:00
|
|
|
case conn := <-server.newConns:
|
|
|
|
NewClient(server, conn)
|
|
|
|
|
|
|
|
case lookup := <-server.hostnames:
|
|
|
|
if DEBUG_SERVER {
|
|
|
|
log.Printf("%s setting hostname of %s to %s",
|
|
|
|
server, lookup.client, lookup.hostname)
|
|
|
|
}
|
|
|
|
lookup.client.hostname = lookup.hostname
|
2014-02-15 03:28:36 +01:00
|
|
|
|
2014-02-18 20:22:56 +01:00
|
|
|
case client := <-server.idle:
|
|
|
|
client.Idle()
|
|
|
|
|
2014-02-18 02:58:22 +01:00
|
|
|
case cmd := <-server.commands:
|
|
|
|
client := cmd.Client()
|
2014-02-17 07:38:43 +01:00
|
|
|
if DEBUG_SERVER {
|
2014-02-18 02:58:22 +01:00
|
|
|
log.Printf("%s → %s %s", client, server, cmd)
|
2014-02-15 03:28:36 +01:00
|
|
|
}
|
2014-02-17 07:38:43 +01:00
|
|
|
|
|
|
|
switch client.phase {
|
|
|
|
case Authorization:
|
2014-02-18 02:58:22 +01:00
|
|
|
authCmd, ok := cmd.(AuthServerCommand)
|
2014-02-17 07:38:43 +01:00
|
|
|
if !ok {
|
2014-02-18 22:25:21 +01:00
|
|
|
client.Quit("unexpected command")
|
2014-02-17 07:38:43 +01:00
|
|
|
continue
|
|
|
|
}
|
2014-02-18 02:58:22 +01:00
|
|
|
authCmd.HandleAuthServer(server)
|
2014-02-17 07:38:43 +01:00
|
|
|
|
|
|
|
case Registration:
|
2014-02-18 02:58:22 +01:00
|
|
|
regCmd, ok := cmd.(RegServerCommand)
|
2014-02-17 07:38:43 +01:00
|
|
|
if !ok {
|
2014-02-18 22:25:21 +01:00
|
|
|
client.Quit("unexpected command")
|
2014-02-17 07:38:43 +01:00
|
|
|
continue
|
|
|
|
}
|
2014-02-18 02:58:22 +01:00
|
|
|
regCmd.HandleRegServer(server)
|
2014-02-17 07:38:43 +01:00
|
|
|
|
|
|
|
default:
|
2014-02-18 02:58:22 +01:00
|
|
|
srvCmd, ok := cmd.(ServerCommand)
|
2014-02-17 07:38:43 +01:00
|
|
|
if !ok {
|
2014-02-20 07:20:34 +01:00
|
|
|
client.ErrUnknownCommand(cmd.Code())
|
2014-02-17 07:38:43 +01:00
|
|
|
continue
|
|
|
|
}
|
2014-02-18 22:25:21 +01:00
|
|
|
switch srvCmd.(type) {
|
|
|
|
case *PingCommand, *PongCommand:
|
|
|
|
client.Touch()
|
|
|
|
case *QuitCommand:
|
|
|
|
// no-op
|
|
|
|
default:
|
|
|
|
client.Active()
|
|
|
|
client.Touch()
|
|
|
|
}
|
2014-02-18 02:58:22 +01:00
|
|
|
srvCmd.HandleServer(server)
|
2014-02-15 03:28:36 +01:00
|
|
|
}
|
|
|
|
}
|
2014-02-14 03:39:33 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-15 03:28:36 +01:00
|
|
|
func (server *Server) InitPhase() Phase {
|
2014-02-14 03:39:33 +01:00
|
|
|
if server.password == "" {
|
2014-02-15 03:28:36 +01:00
|
|
|
return Registration
|
2012-12-15 23:34:20 +01:00
|
|
|
}
|
2014-02-15 03:28:36 +01:00
|
|
|
return Authorization
|
2012-12-15 23:34:20 +01:00
|
|
|
}
|
|
|
|
|
2014-02-10 04:41:00 +01:00
|
|
|
func newListener(config ListenerConfig) (net.Listener, error) {
|
|
|
|
if config.IsTLS() {
|
|
|
|
certificate, err := tls.LoadX509KeyPair(config.Certificate, config.Key)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return tls.Listen("tcp", config.Address, &tls.Config{
|
|
|
|
Certificates: []tls.Certificate{certificate},
|
|
|
|
PreferServerCipherSuites: true,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
return net.Listen("tcp", config.Address)
|
|
|
|
}
|
|
|
|
|
2014-02-20 04:30:49 +01:00
|
|
|
//
|
|
|
|
// listen goroutine
|
|
|
|
//
|
|
|
|
|
2014-02-10 04:41:00 +01:00
|
|
|
func (s *Server) listen(config ListenerConfig) {
|
|
|
|
listener, err := newListener(config)
|
2012-04-07 20:44:59 +02:00
|
|
|
if err != nil {
|
2014-02-18 19:22:40 +01:00
|
|
|
log.Fatal(s, "listen error: ", err)
|
2012-04-07 20:44:59 +02:00
|
|
|
}
|
|
|
|
|
2014-02-18 19:22:40 +01:00
|
|
|
if DEBUG_SERVER {
|
|
|
|
log.Printf("%s listening on %s", s, config.Address)
|
|
|
|
}
|
2012-12-09 07:54:58 +01:00
|
|
|
|
2012-04-07 20:44:59 +02:00
|
|
|
for {
|
|
|
|
conn, err := listener.Accept()
|
|
|
|
if err != nil {
|
2014-02-18 19:22:40 +01:00
|
|
|
if DEBUG_SERVER {
|
|
|
|
log.Printf("%s accept error: %s", s, err)
|
|
|
|
}
|
2012-04-07 20:44:59 +02:00
|
|
|
continue
|
|
|
|
}
|
2014-02-08 22:18:11 +01:00
|
|
|
if DEBUG_SERVER {
|
2014-02-18 19:22:40 +01:00
|
|
|
log.Printf("%s accept: %s", s, conn.RemoteAddr())
|
2014-02-08 22:18:11 +01:00
|
|
|
}
|
2014-02-17 07:30:01 +01:00
|
|
|
|
2014-02-20 22:03:33 +01:00
|
|
|
s.newConns <- conn
|
2012-12-09 07:54:58 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Server) GetOrMakeChannel(name string) *Channel {
|
2014-02-15 06:57:08 +01:00
|
|
|
channel, ok := s.channels[name]
|
2012-12-09 07:54:58 +01:00
|
|
|
|
2014-02-15 06:57:08 +01:00
|
|
|
if !ok {
|
2012-12-09 07:54:58 +01:00
|
|
|
channel = NewChannel(s, name)
|
2014-02-17 02:23:47 +01:00
|
|
|
s.channels[name] = channel
|
2012-12-09 07:54:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return channel
|
|
|
|
}
|
|
|
|
|
2014-02-09 02:10:04 +01:00
|
|
|
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-12-09 07:54:58 +01:00
|
|
|
}
|
|
|
|
}
|
2012-04-07 20:44:59 +02:00
|
|
|
}
|
|
|
|
|
2014-02-15 03:28:36 +01:00
|
|
|
//
|
2012-12-09 07:54:58 +01:00
|
|
|
// server functionality
|
2014-02-15 03:28:36 +01:00
|
|
|
//
|
2012-12-09 07:54:58 +01:00
|
|
|
|
2012-12-15 23:34:20 +01:00
|
|
|
func (s *Server) tryRegister(c *Client) {
|
2014-02-15 03:28:36 +01:00
|
|
|
if c.HasNick() && c.HasUsername() {
|
2014-02-18 22:25:21 +01:00
|
|
|
c.Register()
|
2014-02-20 07:20:34 +01:00
|
|
|
c.RplWelcome()
|
|
|
|
c.RplYourHost()
|
|
|
|
c.RplCreated()
|
|
|
|
c.RplMyInfo()
|
2014-02-12 00:44:58 +01:00
|
|
|
s.MOTD(c)
|
2012-12-15 23:34:20 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-12 00:33:02 +01:00
|
|
|
func (server *Server) MOTD(client *Client) {
|
2014-02-12 01:35:32 +01:00
|
|
|
if server.motdFile == "" {
|
2014-02-20 07:20:34 +01:00
|
|
|
client.ErrNoMOTD()
|
2014-02-12 01:35:32 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
file, err := os.Open(server.motdFile)
|
|
|
|
if err != nil {
|
2014-02-20 07:20:34 +01:00
|
|
|
client.ErrNoMOTD()
|
2014-02-12 01:35:32 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
defer file.Close()
|
|
|
|
|
2014-02-20 07:20:34 +01:00
|
|
|
client.RplMOTDStart()
|
2014-02-12 01:35:32 +01:00
|
|
|
reader := bufio.NewReader(file)
|
|
|
|
for {
|
|
|
|
line, err := reader.ReadString('\n')
|
|
|
|
if err != nil {
|
|
|
|
break
|
|
|
|
}
|
2014-02-18 03:10:52 +01:00
|
|
|
line = strings.TrimRight(line, "\r\n")
|
2014-02-12 01:35:32 +01:00
|
|
|
|
|
|
|
if len(line) > 80 {
|
|
|
|
for len(line) > 80 {
|
2014-02-20 07:20:34 +01:00
|
|
|
client.RplMOTD(line[0:80])
|
2014-02-12 01:35:32 +01:00
|
|
|
line = line[80:]
|
|
|
|
}
|
|
|
|
if len(line) > 0 {
|
2014-02-20 07:20:34 +01:00
|
|
|
client.RplMOTD(line)
|
2014-02-12 01:35:32 +01:00
|
|
|
}
|
|
|
|
} else {
|
2014-02-20 07:20:34 +01:00
|
|
|
client.RplMOTD(line)
|
2014-02-12 01:35:32 +01:00
|
|
|
}
|
|
|
|
}
|
2014-02-20 07:20:34 +01:00
|
|
|
client.RplMOTDEnd()
|
2014-02-12 00:33:02 +01:00
|
|
|
}
|
|
|
|
|
2013-05-12 20:20:55 +02:00
|
|
|
func (s *Server) Id() string {
|
2013-05-11 22:55:01 +02:00
|
|
|
return s.name
|
|
|
|
}
|
|
|
|
|
2013-05-12 03:28:18 +02:00
|
|
|
func (s *Server) String() string {
|
2014-02-09 02:10:04 +01:00
|
|
|
return s.name
|
2012-12-15 23:34:20 +01:00
|
|
|
}
|
|
|
|
|
2013-05-12 03:28:18 +02:00
|
|
|
func (s *Server) Nick() string {
|
2014-02-09 02:10:04 +01:00
|
|
|
return s.Id()
|
2012-12-17 04:13:53 +01:00
|
|
|
}
|
|
|
|
|
2012-12-15 23:34:20 +01:00
|
|
|
//
|
2014-02-15 03:28:36 +01:00
|
|
|
// authorization commands
|
2012-12-15 23:34:20 +01:00
|
|
|
//
|
|
|
|
|
2014-02-15 03:28:36 +01:00
|
|
|
func (msg *ProxyCommand) HandleAuthServer(server *Server) {
|
2014-02-20 22:03:33 +01:00
|
|
|
go msg.Client().LookupHostname(msg.sourceIP)
|
2012-12-17 04:13:53 +01:00
|
|
|
}
|
|
|
|
|
2014-02-15 03:28:36 +01:00
|
|
|
func (msg *CapCommand) HandleAuthServer(server *Server) {
|
|
|
|
// TODO
|
2012-12-15 23:34:20 +01:00
|
|
|
}
|
|
|
|
|
2014-02-15 03:28:36 +01:00
|
|
|
func (m *PassCommand) HandleAuthServer(s *Server) {
|
|
|
|
client := m.Client()
|
|
|
|
|
|
|
|
if s.password != m.password {
|
2014-02-20 07:20:34 +01:00
|
|
|
client.ErrPasswdMismatch()
|
2014-02-18 18:45:10 +01:00
|
|
|
client.socket.Close()
|
2014-02-15 03:28:36 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
client.phase = Registration
|
2012-12-15 23:34:20 +01:00
|
|
|
}
|
|
|
|
|
2014-02-18 22:25:21 +01:00
|
|
|
func (msg *QuitCommand) HandleAuthServer(server *Server) {
|
|
|
|
msg.Client().Quit(msg.message)
|
|
|
|
}
|
|
|
|
|
2014-02-15 03:28:36 +01:00
|
|
|
//
|
|
|
|
// registration commands
|
|
|
|
//
|
|
|
|
|
|
|
|
func (m *NickCommand) HandleRegServer(s *Server) {
|
2014-02-14 03:39:33 +01:00
|
|
|
client := m.Client()
|
|
|
|
|
2014-02-15 03:28:36 +01:00
|
|
|
if m.nickname == "" {
|
2014-02-20 07:20:34 +01:00
|
|
|
client.ErrNoNicknameGiven()
|
2014-02-14 03:39:33 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-02-18 02:58:22 +01:00
|
|
|
if s.clients.Get(m.nickname) != nil {
|
2014-02-20 07:20:34 +01:00
|
|
|
client.ErrNickNameInUse(m.nickname)
|
2012-12-09 07:54:58 +01:00
|
|
|
return
|
2012-04-09 16:57:55 +02:00
|
|
|
}
|
2012-12-09 07:54:58 +01:00
|
|
|
|
2014-02-18 02:58:22 +01:00
|
|
|
if !IsNickname(m.nickname) {
|
2014-02-20 07:20:34 +01:00
|
|
|
client.ErrErroneusNickname(m.nickname)
|
2014-02-18 02:58:22 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-02-19 00:36:58 +01:00
|
|
|
client.SetNickname(m.nickname)
|
2014-02-15 03:28:36 +01:00
|
|
|
s.tryRegister(client)
|
|
|
|
}
|
|
|
|
|
2014-02-18 07:10:48 +01:00
|
|
|
func (msg *RFC1459UserCommand) HandleRegServer(server *Server) {
|
|
|
|
msg.HandleRegServer2(server)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (msg *RFC2812UserCommand) HandleRegServer(server *Server) {
|
|
|
|
client := msg.Client()
|
|
|
|
flags := msg.Flags()
|
|
|
|
if len(flags) > 0 {
|
|
|
|
for _, mode := range msg.Flags() {
|
|
|
|
client.flags[mode] = true
|
|
|
|
}
|
2014-02-20 07:20:34 +01:00
|
|
|
client.RplUModeIs(client)
|
2014-02-18 07:10:48 +01:00
|
|
|
}
|
|
|
|
msg.HandleRegServer2(server)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (msg *UserCommand) HandleRegServer2(server *Server) {
|
2014-02-17 07:20:42 +01:00
|
|
|
client := msg.Client()
|
2014-02-18 07:10:48 +01:00
|
|
|
client.username, client.realname = msg.username, msg.realname
|
2014-02-17 07:20:42 +01:00
|
|
|
server.tryRegister(client)
|
2014-02-15 03:28:36 +01:00
|
|
|
}
|
|
|
|
|
2014-02-18 22:25:21 +01:00
|
|
|
func (msg *QuitCommand) HandleRegServer(server *Server) {
|
|
|
|
msg.Client().Quit(msg.message)
|
|
|
|
}
|
|
|
|
|
2014-02-15 03:28:36 +01:00
|
|
|
//
|
|
|
|
// normal commands
|
|
|
|
//
|
|
|
|
|
|
|
|
func (m *PassCommand) HandleServer(s *Server) {
|
2014-02-20 07:20:34 +01:00
|
|
|
m.Client().ErrAlreadyRegistered()
|
2014-02-15 03:28:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (m *PingCommand) HandleServer(s *Server) {
|
2014-02-20 07:20:34 +01:00
|
|
|
m.Client().replies <- RplPong(s, m.Client())
|
2014-02-15 03:28:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (m *PongCommand) HandleServer(s *Server) {
|
|
|
|
// no-op
|
2012-12-15 23:34:20 +01:00
|
|
|
}
|
|
|
|
|
2014-02-17 07:20:42 +01:00
|
|
|
func (msg *NickCommand) HandleServer(server *Server) {
|
|
|
|
client := msg.Client()
|
2014-02-05 04:28:24 +01:00
|
|
|
|
2014-02-17 07:20:42 +01:00
|
|
|
if msg.nickname == "" {
|
2014-02-20 07:20:34 +01:00
|
|
|
client.ErrNoNicknameGiven()
|
2014-02-13 19:57:00 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-02-18 02:58:22 +01:00
|
|
|
if server.clients.Get(msg.nickname) != nil {
|
2014-02-20 07:20:34 +01:00
|
|
|
client.ErrNickNameInUse(msg.nickname)
|
2012-12-15 23:34:20 +01:00
|
|
|
return
|
2012-12-09 07:54:58 +01:00
|
|
|
}
|
2012-12-09 21:51:50 +01:00
|
|
|
|
2014-02-17 07:20:42 +01:00
|
|
|
client.ChangeNickname(msg.nickname)
|
2012-12-09 07:54:58 +01:00
|
|
|
}
|
|
|
|
|
2014-02-18 07:10:48 +01:00
|
|
|
func (m *UserCommand) HandleServer(s *Server) {
|
2014-02-20 07:20:34 +01:00
|
|
|
m.Client().ErrAlreadyRegistered()
|
2012-12-09 07:54:58 +01:00
|
|
|
}
|
|
|
|
|
2014-02-17 07:20:42 +01:00
|
|
|
func (msg *QuitCommand) HandleServer(server *Server) {
|
2014-02-18 08:58:02 +01:00
|
|
|
msg.Client().Quit(msg.message)
|
2012-12-15 23:34:20 +01:00
|
|
|
}
|
|
|
|
|
2013-05-09 18:12:03 +02:00
|
|
|
func (m *JoinCommand) HandleServer(s *Server) {
|
2014-02-17 07:20:42 +01:00
|
|
|
client := m.Client()
|
2012-12-17 04:13:53 +01:00
|
|
|
|
2012-12-15 23:34:20 +01:00
|
|
|
if m.zero {
|
2014-02-17 07:20:42 +01:00
|
|
|
for channel := range client.channels {
|
|
|
|
channel.Part(client, client.Nick())
|
2012-12-15 23:34:20 +01:00
|
|
|
}
|
2012-12-17 04:13:53 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-02-19 04:31:59 +01:00
|
|
|
for name, key := range m.channels {
|
2014-02-17 07:20:42 +01:00
|
|
|
channel := s.GetOrMakeChannel(name)
|
2014-02-19 04:31:59 +01:00
|
|
|
channel.Join(client, key)
|
2012-12-09 07:54:58 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-16 05:20:37 +01:00
|
|
|
func (m *PartCommand) HandleServer(server *Server) {
|
2014-02-17 07:20:42 +01:00
|
|
|
client := m.Client()
|
2012-12-15 23:34:20 +01:00
|
|
|
for _, chname := range m.channels {
|
2014-02-16 05:20:37 +01:00
|
|
|
channel := server.channels[chname]
|
2012-12-15 23:34:20 +01:00
|
|
|
|
|
|
|
if channel == nil {
|
2014-02-20 07:20:34 +01:00
|
|
|
m.Client().ErrNoSuchChannel(chname)
|
2012-12-15 23:34:20 +01:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2014-02-17 07:20:42 +01:00
|
|
|
channel.Part(client, m.Message())
|
2012-12-09 07:54:58 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-17 07:20:42 +01:00
|
|
|
func (msg *TopicCommand) HandleServer(server *Server) {
|
|
|
|
client := msg.Client()
|
|
|
|
channel := server.channels[msg.channel]
|
2012-12-17 04:13:53 +01:00
|
|
|
if channel == nil {
|
2014-02-20 07:20:34 +01:00
|
|
|
client.ErrNoSuchChannel(msg.channel)
|
2012-12-15 23:34:20 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-02-17 07:20:42 +01:00
|
|
|
if msg.setTopic {
|
|
|
|
channel.SetTopic(client, msg.topic)
|
|
|
|
} else {
|
|
|
|
channel.GetTopic(client)
|
|
|
|
}
|
2012-12-15 23:34:20 +01:00
|
|
|
}
|
|
|
|
|
2014-02-17 07:20:42 +01:00
|
|
|
func (msg *PrivMsgCommand) HandleServer(server *Server) {
|
|
|
|
client := msg.Client()
|
|
|
|
if IsChannel(msg.target) {
|
|
|
|
channel := server.channels[msg.target]
|
2012-12-15 23:34:20 +01:00
|
|
|
if channel == nil {
|
2014-02-20 07:20:34 +01:00
|
|
|
client.ErrNoSuchChannel(msg.target)
|
2012-12-15 23:34:20 +01:00
|
|
|
return
|
2012-12-09 07:54:58 +01:00
|
|
|
}
|
2012-12-15 23:34:20 +01:00
|
|
|
|
2014-02-17 07:20:42 +01:00
|
|
|
channel.PrivMsg(client, msg.message)
|
2012-12-15 23:34:20 +01:00
|
|
|
return
|
2012-12-09 07:54:58 +01:00
|
|
|
}
|
2012-12-15 23:34:20 +01:00
|
|
|
|
2014-02-17 07:20:42 +01:00
|
|
|
target := server.clients[msg.target]
|
2012-12-17 04:13:53 +01:00
|
|
|
if target == nil {
|
2014-02-20 07:20:34 +01:00
|
|
|
client.ErrNoSuchNick(msg.target)
|
2012-12-15 23:34:20 +01:00
|
|
|
return
|
|
|
|
}
|
2014-02-20 07:20:34 +01:00
|
|
|
target.replies <- RplPrivMsg(client, target, msg.message)
|
2014-02-17 22:22:35 +01:00
|
|
|
if target.flags[Away] {
|
2014-02-20 07:20:34 +01:00
|
|
|
target.RplAway(client)
|
2014-02-12 00:44:58 +01:00
|
|
|
}
|
2012-04-07 20:44:59 +02:00
|
|
|
}
|
2012-12-13 08:27:17 +01:00
|
|
|
|
2013-05-09 18:12:03 +02:00
|
|
|
func (m *ModeCommand) HandleServer(s *Server) {
|
2014-02-09 02:10:04 +01:00
|
|
|
client := m.Client()
|
2014-02-18 02:58:22 +01:00
|
|
|
target := s.clients.Get(m.nickname)
|
|
|
|
|
|
|
|
if target == nil {
|
2014-02-20 07:20:34 +01:00
|
|
|
client.ErrNoSuchNick(m.nickname)
|
2014-02-18 02:58:22 +01:00
|
|
|
return
|
|
|
|
}
|
2014-02-17 22:22:35 +01:00
|
|
|
|
|
|
|
if client != target && !client.flags[Operator] {
|
2014-02-20 07:20:34 +01:00
|
|
|
client.ErrUsersDontMatch()
|
2014-02-16 04:49:20 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
changes := make(ModeChanges, 0)
|
|
|
|
|
|
|
|
for _, change := range m.changes {
|
2014-02-17 22:22:35 +01:00
|
|
|
switch change.mode {
|
|
|
|
case Invisible, ServerNotice, WallOps:
|
2014-02-16 04:49:20 +01:00
|
|
|
switch change.op {
|
|
|
|
case Add:
|
2014-02-20 07:20:34 +01:00
|
|
|
target.flags[change.mode] = true
|
2014-02-16 04:49:20 +01:00
|
|
|
changes = append(changes, change)
|
|
|
|
|
|
|
|
case Remove:
|
2014-02-20 07:20:34 +01:00
|
|
|
delete(target.flags, change.mode)
|
2014-02-17 22:22:35 +01:00
|
|
|
changes = append(changes, change)
|
|
|
|
}
|
|
|
|
|
|
|
|
case Operator, LocalOperator:
|
|
|
|
if change.op == Remove {
|
2014-02-20 07:20:34 +01:00
|
|
|
delete(target.flags, change.mode)
|
2014-02-16 04:49:20 +01:00
|
|
|
changes = append(changes, change)
|
2014-02-09 02:10:04 +01:00
|
|
|
}
|
2014-02-08 23:20:23 +01:00
|
|
|
}
|
|
|
|
}
|
2014-02-09 02:10:04 +01:00
|
|
|
|
2014-02-20 07:20:34 +01:00
|
|
|
// Who should get these replies?
|
2014-02-16 04:49:20 +01:00
|
|
|
if len(changes) > 0 {
|
2014-02-20 07:20:34 +01:00
|
|
|
client.replies <- RplMode(client, target, changes)
|
2014-02-16 04:49:20 +01:00
|
|
|
}
|
2012-12-13 08:27:17 +01:00
|
|
|
}
|
2014-02-09 02:43:59 +01:00
|
|
|
|
2014-02-20 07:20:34 +01:00
|
|
|
func (client *Client) WhoisChannelsNames() []string {
|
|
|
|
chstrs := make([]string, len(client.channels))
|
|
|
|
index := 0
|
|
|
|
for channel := range client.channels {
|
|
|
|
switch {
|
|
|
|
case channel.members[client][ChannelOperator]:
|
|
|
|
chstrs[index] = "@" + channel.name
|
|
|
|
|
|
|
|
case channel.members[client][Voice]:
|
|
|
|
chstrs[index] = "+" + channel.name
|
|
|
|
|
|
|
|
default:
|
|
|
|
chstrs[index] = channel.name
|
|
|
|
}
|
|
|
|
index += 1
|
|
|
|
}
|
|
|
|
return chstrs
|
|
|
|
}
|
|
|
|
|
2014-02-09 02:43:59 +01:00
|
|
|
func (m *WhoisCommand) HandleServer(server *Server) {
|
|
|
|
client := m.Client()
|
|
|
|
|
|
|
|
// TODO implement target query
|
|
|
|
|
|
|
|
for _, mask := range m.masks {
|
|
|
|
// TODO implement wildcard matching
|
2014-02-18 04:08:57 +01:00
|
|
|
mclient := server.clients.Get(mask)
|
|
|
|
if mclient == nil {
|
2014-02-20 07:20:34 +01:00
|
|
|
client.ErrNoSuchNick(mask)
|
2014-02-18 04:08:57 +01:00
|
|
|
continue
|
|
|
|
}
|
2014-02-20 07:20:34 +01:00
|
|
|
client.RplWhoisUser(mclient)
|
2014-02-18 04:08:57 +01:00
|
|
|
if client.flags[Operator] {
|
2014-02-20 07:20:34 +01:00
|
|
|
client.RplWhoisOperator(mclient)
|
2014-02-09 02:43:59 +01:00
|
|
|
}
|
2014-02-20 07:20:34 +01:00
|
|
|
client.RplWhoisIdle(mclient)
|
|
|
|
client.MultilineReply(client.WhoisChannelsNames(), RPL_WHOISCHANNELS,
|
|
|
|
"%s :%s", client.Nick())
|
|
|
|
client.RplEndOfWhois()
|
2014-02-09 02:43:59 +01:00
|
|
|
}
|
|
|
|
}
|
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 {
|
2014-02-20 07:20:34 +01:00
|
|
|
client.ErrNoSuchChannel(msg.channel)
|
2014-02-09 03:14:39 +01:00
|
|
|
return
|
|
|
|
}
|
2014-02-17 07:20:42 +01:00
|
|
|
|
|
|
|
channel.Mode(client, msg.changes)
|
2014-02-09 03:14:39 +01:00
|
|
|
}
|
2014-02-09 03:49:52 +01:00
|
|
|
|
2014-02-18 06:30:14 +01:00
|
|
|
func whoChannel(client *Client, channel *Channel) {
|
2014-02-09 03:49:52 +01:00
|
|
|
for member := range channel.members {
|
2014-02-18 06:30:14 +01:00
|
|
|
if !client.flags[Invisible] {
|
2014-02-20 07:20:34 +01:00
|
|
|
client.RplWhoReply(channel, member)
|
2014-02-18 06:30:14 +01:00
|
|
|
}
|
2014-02-09 03:49:52 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (msg *WhoCommand) HandleServer(server *Server) {
|
|
|
|
client := msg.Client()
|
|
|
|
|
2014-02-20 07:20:34 +01:00
|
|
|
// 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 {
|
2014-02-18 06:30:14 +01:00
|
|
|
whoChannel(client, channel)
|
2014-02-09 03:49:52 +01:00
|
|
|
}
|
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 {
|
2014-02-18 06:30:14 +01:00
|
|
|
whoChannel(client, channel)
|
2014-02-09 03:49:52 +01:00
|
|
|
}
|
|
|
|
} else {
|
2014-02-09 07:42:14 +01:00
|
|
|
mclient := server.clients[mask]
|
2014-02-18 06:30:14 +01:00
|
|
|
if mclient != nil && !mclient.flags[Invisible] {
|
2014-02-20 07:20:34 +01:00
|
|
|
client.RplWhoReply(nil, mclient)
|
2014-02-09 03:49:52 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-20 07:20:34 +01:00
|
|
|
client.RplEndOfWho(mask)
|
2014-02-09 03:49:52 +01:00
|
|
|
}
|
2014-02-09 19:07:40 +01:00
|
|
|
|
|
|
|
func (msg *OperCommand) HandleServer(server *Server) {
|
|
|
|
client := msg.Client()
|
|
|
|
|
|
|
|
if server.operators[msg.name] != msg.password {
|
2014-02-20 07:20:34 +01:00
|
|
|
client.ErrPasswdMismatch()
|
2014-02-09 19:07:40 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-02-17 22:22:35 +01:00
|
|
|
client.flags[Operator] = true
|
2014-02-09 19:07:40 +01:00
|
|
|
|
2014-02-20 07:20:34 +01:00
|
|
|
client.RplYoureOper()
|
|
|
|
client.RplUModeIs(client)
|
2014-02-09 19:07:40 +01:00
|
|
|
}
|
2014-02-10 20:14:34 +01:00
|
|
|
|
2014-02-12 00:44:58 +01:00
|
|
|
func (msg *AwayCommand) HandleServer(server *Server) {
|
|
|
|
client := msg.Client()
|
2014-02-17 22:22:35 +01:00
|
|
|
if msg.away {
|
|
|
|
client.flags[Away] = true
|
|
|
|
} else {
|
|
|
|
delete(client.flags, Away)
|
|
|
|
}
|
2014-02-12 00:44:58 +01:00
|
|
|
client.awayMessage = msg.text
|
|
|
|
|
2014-02-17 22:22:35 +01:00
|
|
|
if client.flags[Away] {
|
2014-02-20 07:20:34 +01:00
|
|
|
client.RplNowAway()
|
2014-02-12 00:44:58 +01:00
|
|
|
} else {
|
2014-02-20 07:20:34 +01:00
|
|
|
client.RplUnAway()
|
2014-02-12 00:44:58 +01:00
|
|
|
}
|
|
|
|
}
|
2014-02-12 00:58:54 +01:00
|
|
|
|
|
|
|
func (msg *IsOnCommand) HandleServer(server *Server) {
|
|
|
|
client := msg.Client()
|
|
|
|
|
|
|
|
ison := make([]string, 0)
|
|
|
|
for _, nick := range msg.nicks {
|
2014-02-18 02:58:22 +01:00
|
|
|
if iclient := server.clients.Get(nick); iclient != nil {
|
|
|
|
ison = append(ison, iclient.Nick())
|
2014-02-12 00:58:54 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-20 07:20:34 +01:00
|
|
|
client.RplIsOn(ison)
|
2014-02-12 00:58:54 +01:00
|
|
|
}
|
2014-02-12 01:35:32 +01:00
|
|
|
|
|
|
|
func (msg *MOTDCommand) HandleServer(server *Server) {
|
|
|
|
server.MOTD(msg.Client())
|
|
|
|
}
|
2014-02-12 02:11:59 +01:00
|
|
|
|
|
|
|
func (msg *NoticeCommand) HandleServer(server *Server) {
|
2014-02-17 07:20:42 +01:00
|
|
|
client := msg.Client()
|
2014-02-12 02:11:59 +01:00
|
|
|
if IsChannel(msg.target) {
|
|
|
|
channel := server.channels[msg.target]
|
|
|
|
if channel == nil {
|
2014-02-20 07:20:34 +01:00
|
|
|
client.ErrNoSuchChannel(msg.target)
|
2014-02-12 02:11:59 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-02-17 07:20:42 +01:00
|
|
|
channel.Notice(client, msg.message)
|
2014-02-12 02:11:59 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-02-18 02:58:22 +01:00
|
|
|
target := server.clients.Get(msg.target)
|
2014-02-12 02:11:59 +01:00
|
|
|
if target == nil {
|
2014-02-20 07:20:34 +01:00
|
|
|
client.ErrNoSuchNick(msg.target)
|
2014-02-12 02:11:59 +01:00
|
|
|
return
|
|
|
|
}
|
2014-02-20 07:20:34 +01:00
|
|
|
target.replies <- RplNotice(client, target, msg.message)
|
2014-02-17 02:23:47 +01:00
|
|
|
}
|
2014-02-17 08:29:11 +01:00
|
|
|
|
|
|
|
func (msg *KickCommand) HandleServer(server *Server) {
|
|
|
|
client := msg.Client()
|
|
|
|
for chname, nickname := range msg.kicks {
|
|
|
|
channel := server.channels[chname]
|
|
|
|
if channel == nil {
|
2014-02-20 07:20:34 +01:00
|
|
|
client.ErrNoSuchChannel(chname)
|
2014-02-17 08:29:11 +01:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
target := server.clients[nickname]
|
|
|
|
if target == nil {
|
2014-02-20 07:20:34 +01:00
|
|
|
client.ErrNoSuchNick(nickname)
|
2014-02-17 08:29:11 +01:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
channel.Kick(client, target, msg.Comment())
|
|
|
|
}
|
|
|
|
}
|
2014-02-17 08:51:27 +01:00
|
|
|
|
|
|
|
func (msg *ListCommand) HandleServer(server *Server) {
|
|
|
|
client := msg.Client()
|
|
|
|
|
|
|
|
// TODO target server
|
|
|
|
if msg.target != "" {
|
2014-02-20 07:20:34 +01:00
|
|
|
client.ErrNoSuchServer(msg.target)
|
2014-02-17 08:51:27 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(msg.channels) == 0 {
|
|
|
|
for _, channel := range server.channels {
|
2014-02-17 22:22:35 +01:00
|
|
|
if !client.flags[Operator] &&
|
|
|
|
(channel.flags[Secret] || channel.flags[Private]) {
|
2014-02-17 08:51:27 +01:00
|
|
|
continue
|
|
|
|
}
|
2014-02-20 07:20:34 +01:00
|
|
|
client.RplList(channel)
|
2014-02-17 08:51:27 +01:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
for _, chname := range msg.channels {
|
|
|
|
channel := server.channels[chname]
|
2014-02-17 22:22:35 +01:00
|
|
|
if channel == nil || (!client.flags[Operator] &&
|
|
|
|
(channel.flags[Secret] || channel.flags[Private])) {
|
2014-02-20 07:20:34 +01:00
|
|
|
client.ErrNoSuchChannel(chname)
|
2014-02-17 08:51:27 +01:00
|
|
|
continue
|
|
|
|
}
|
2014-02-20 07:20:34 +01:00
|
|
|
client.RplList(channel)
|
2014-02-17 08:51:27 +01:00
|
|
|
}
|
|
|
|
}
|
2014-02-20 07:20:34 +01:00
|
|
|
client.RplListEnd(server)
|
2014-02-17 08:51:27 +01:00
|
|
|
}
|
2014-02-18 03:10:52 +01:00
|
|
|
|
2014-02-18 06:02:03 +01:00
|
|
|
func (msg *NamesCommand) HandleServer(server *Server) {
|
|
|
|
client := msg.Client()
|
|
|
|
if len(server.channels) == 0 {
|
|
|
|
for _, channel := range server.channels {
|
|
|
|
channel.Names(client)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, chname := range msg.channels {
|
|
|
|
channel := server.channels[chname]
|
|
|
|
if channel == nil {
|
2014-02-20 07:20:34 +01:00
|
|
|
client.ErrNoSuchChannel(chname)
|
2014-02-18 06:02:03 +01:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
channel.Names(client)
|
|
|
|
}
|
|
|
|
}
|