2016-06-15 13:50:56 +02:00
|
|
|
// Copyright (c) 2012-2014 Jeremy Latt
|
|
|
|
// Copyright (c) 2014-2015 Edmund Huber
|
|
|
|
// Copyright (c) 2016- Daniel Oaks <daniel@danieloaks.net>
|
|
|
|
// released under the MIT license
|
|
|
|
|
2012-04-07 20:44:59 +02:00
|
|
|
package irc
|
|
|
|
|
|
|
|
import (
|
2014-02-12 01:35:32 +01:00
|
|
|
"bufio"
|
2016-04-13 12:45:09 +02:00
|
|
|
"crypto/tls"
|
2014-02-25 20:11:34 +01:00
|
|
|
"database/sql"
|
2014-02-09 02:10:04 +01:00
|
|
|
"fmt"
|
2012-04-07 20:44:59 +02:00
|
|
|
"log"
|
|
|
|
"net"
|
2015-05-04 07:47:26 +02:00
|
|
|
"net/http"
|
2014-02-12 01:35:32 +01:00
|
|
|
"os"
|
2014-02-25 20:11:34 +01:00
|
|
|
"os/signal"
|
2016-06-17 14:17:42 +02:00
|
|
|
"strconv"
|
2014-02-18 03:10:52 +01:00
|
|
|
"strings"
|
2014-03-02 20:36:00 +01:00
|
|
|
"syscall"
|
2012-04-18 07:21:41 +02:00
|
|
|
"time"
|
2014-03-13 01:52:25 +01:00
|
|
|
|
2016-06-17 14:17:42 +02:00
|
|
|
"github.com/DanielOaks/girc-go/ircmsg"
|
|
|
|
)
|
2014-03-08 23:20:36 +01:00
|
|
|
|
2012-04-07 20:44:59 +02:00
|
|
|
type Server struct {
|
2016-04-21 08:39:31 +02:00
|
|
|
channels ChannelNameMap
|
|
|
|
clients *ClientLookupSet
|
|
|
|
commands chan Command
|
|
|
|
ctime time.Time
|
|
|
|
db *sql.DB
|
|
|
|
idle chan *Client
|
|
|
|
motdLines []string
|
|
|
|
name Name
|
|
|
|
newConns chan net.Conn
|
|
|
|
operators map[Name][]byte
|
|
|
|
password []byte
|
|
|
|
signals chan os.Signal
|
|
|
|
proxyAllowedFrom []string
|
|
|
|
whoWas *WhoWasList
|
|
|
|
theaters map[Name][]byte
|
|
|
|
isupport *ISupportList
|
2012-04-18 03:16:57 +02:00
|
|
|
}
|
|
|
|
|
2014-03-13 01:52:25 +01:00
|
|
|
var (
|
|
|
|
SERVER_SIGNALS = []os.Signal{syscall.SIGINT, syscall.SIGHUP,
|
|
|
|
syscall.SIGTERM, syscall.SIGQUIT}
|
|
|
|
)
|
|
|
|
|
2014-02-09 16:53:42 +01:00
|
|
|
func NewServer(config *Config) *Server {
|
2012-12-09 21:51:50 +01:00
|
|
|
server := &Server{
|
2016-04-21 08:39:31 +02:00
|
|
|
channels: make(ChannelNameMap),
|
|
|
|
clients: NewClientLookupSet(),
|
|
|
|
commands: make(chan Command),
|
|
|
|
ctime: time.Now(),
|
|
|
|
db: OpenDB(config.Server.Database),
|
|
|
|
idle: make(chan *Client),
|
|
|
|
name: NewName(config.Server.Name),
|
|
|
|
newConns: make(chan net.Conn),
|
|
|
|
operators: config.Operators(),
|
|
|
|
signals: make(chan os.Signal, len(SERVER_SIGNALS)),
|
|
|
|
proxyAllowedFrom: config.Server.ProxyAllowedFrom,
|
|
|
|
whoWas: NewWhoWasList(100),
|
|
|
|
theaters: config.Theaters(),
|
2012-12-15 23:34:20 +01:00
|
|
|
}
|
2014-02-09 19:07:40 +01:00
|
|
|
|
2016-04-15 07:57:08 +02:00
|
|
|
// ensure that there is a minimum number of args specified for every command
|
|
|
|
for name, _ := range parseCommandFuncs {
|
|
|
|
_, exists := commandMinimumArgs[name]
|
|
|
|
if !exists {
|
|
|
|
log.Fatal("commandMinArgs not found for ", name)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-13 07:49:30 +02:00
|
|
|
if config.Server.MOTD != "" {
|
|
|
|
file, err := os.Open(config.Server.MOTD)
|
|
|
|
if err == nil {
|
|
|
|
defer file.Close()
|
|
|
|
|
|
|
|
reader := bufio.NewReader(file)
|
|
|
|
for {
|
|
|
|
line, err := reader.ReadString('\n')
|
|
|
|
if err != nil {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
line = strings.TrimRight(line, "\r\n")
|
|
|
|
|
|
|
|
server.motdLines = append(server.motdLines, line)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-06 20:00:48 +01:00
|
|
|
if config.Server.Password != "" {
|
|
|
|
server.password = config.Server.PasswordBytes()
|
|
|
|
}
|
|
|
|
|
2014-02-26 00:57:35 +01:00
|
|
|
server.loadChannels()
|
|
|
|
|
2014-03-01 23:34:51 +01:00
|
|
|
for _, addr := range config.Server.Listen {
|
2016-04-28 12:12:23 +02:00
|
|
|
server.listen(addr, config.TLSListeners())
|
2014-02-26 00:57:35 +01:00
|
|
|
}
|
|
|
|
|
2015-05-04 07:47:26 +02:00
|
|
|
if config.Server.Wslisten != "" {
|
2016-04-28 12:41:26 +02:00
|
|
|
server.wslisten(config.Server.Wslisten, config.Server.TLSListeners)
|
2015-05-04 07:47:26 +02:00
|
|
|
}
|
|
|
|
|
2014-03-08 23:20:36 +01:00
|
|
|
signal.Notify(server.signals, SERVER_SIGNALS...)
|
2014-03-02 20:51:29 +01:00
|
|
|
|
2016-04-12 07:38:42 +02:00
|
|
|
// add RPL_ISUPPORT tokens
|
|
|
|
server.isupport = NewISupportList()
|
|
|
|
server.isupport.Add("CASEMAPPING", "ascii")
|
2016-04-12 17:01:53 +02:00
|
|
|
// server.isupport.Add("CHANMODES", "") //TODO(dan): Channel mode list here
|
|
|
|
// server.isupport.Add("CHANNELLEN", "") //TODO(dan): Support channel length
|
2016-04-12 07:38:42 +02:00
|
|
|
server.isupport.Add("CHANTYPES", "#")
|
|
|
|
server.isupport.Add("EXCEPTS", "")
|
|
|
|
server.isupport.Add("INVEX", "")
|
2016-04-12 17:01:53 +02:00
|
|
|
// server.isupport.Add("KICKLEN", "") //TODO(dan): Support kick length?
|
|
|
|
// server.isupport.Add("MAXLIST", "") //TODO(dan): Support max list length?
|
|
|
|
// server.isupport.Add("MODES", "") //TODO(dan): Support max modes?
|
2016-04-12 07:44:00 +02:00
|
|
|
server.isupport.Add("NETWORK", config.Network.Name)
|
2016-04-12 17:01:53 +02:00
|
|
|
// server.isupport.Add("NICKLEN", "") //TODO(dan): Support nick length
|
2016-04-14 01:35:36 +02:00
|
|
|
server.isupport.Add("PREFIX", "(qaohv)~&@%+")
|
2016-04-12 07:51:51 +02:00
|
|
|
// server.isupport.Add("STATUSMSG", "@+") //TODO(dan): Autogenerate based on PREFIXes, support STATUSMSG
|
2016-04-12 17:01:53 +02:00
|
|
|
// server.isupport.Add("TARGMAX", "") //TODO(dan): Support this
|
|
|
|
// server.isupport.Add("TOPICLEN", "") //TODO(dan): Support topic length
|
2016-04-12 07:38:42 +02:00
|
|
|
server.isupport.RegenerateCachedReply()
|
|
|
|
|
2014-02-26 00:57:35 +01:00
|
|
|
return server
|
|
|
|
}
|
|
|
|
|
2014-03-08 03:14:02 +01:00
|
|
|
func loadChannelList(channel *Channel, list string, maskMode ChannelMode) {
|
|
|
|
if list == "" {
|
|
|
|
return
|
|
|
|
}
|
2014-03-09 21:45:36 +01:00
|
|
|
channel.lists[maskMode].AddAll(NewNames(strings.Split(list, " ")))
|
2014-03-08 03:14:02 +01:00
|
|
|
}
|
|
|
|
|
2014-02-26 00:57:35 +01:00
|
|
|
func (server *Server) loadChannels() {
|
|
|
|
rows, err := server.db.Query(`
|
2014-03-08 03:14:02 +01:00
|
|
|
SELECT name, flags, key, topic, user_limit, ban_list, except_list,
|
|
|
|
invite_list
|
2014-02-25 20:11:34 +01:00
|
|
|
FROM channel`)
|
|
|
|
if err != nil {
|
2014-03-06 08:07:55 +01:00
|
|
|
log.Fatal("error loading channels: ", err)
|
2014-02-25 20:11:34 +01:00
|
|
|
}
|
|
|
|
for rows.Next() {
|
2014-03-13 21:18:40 +01:00
|
|
|
var name, flags, key, topic string
|
2014-02-25 20:11:34 +01:00
|
|
|
var userLimit uint64
|
2014-03-08 03:14:02 +01:00
|
|
|
var banList, exceptList, inviteList string
|
|
|
|
err = rows.Scan(&name, &flags, &key, &topic, &userLimit, &banList,
|
|
|
|
&exceptList, &inviteList)
|
2014-02-25 20:11:34 +01:00
|
|
|
if err != nil {
|
2014-03-08 03:14:02 +01:00
|
|
|
log.Println("Server.loadChannels:", err)
|
2014-02-25 20:11:34 +01:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2016-04-21 11:29:50 +02:00
|
|
|
channel := NewChannel(server, NewName(name), false)
|
2014-02-26 00:57:35 +01:00
|
|
|
for _, flag := range flags {
|
2014-02-25 20:11:34 +01:00
|
|
|
channel.flags[ChannelMode(flag)] = true
|
|
|
|
}
|
2014-03-13 21:18:40 +01:00
|
|
|
channel.key = NewText(key)
|
|
|
|
channel.topic = NewText(topic)
|
2014-02-25 20:11:34 +01:00
|
|
|
channel.userLimit = userLimit
|
2014-03-08 03:14:02 +01:00
|
|
|
loadChannelList(channel, banList, BanMask)
|
|
|
|
loadChannelList(channel, exceptList, ExceptMask)
|
|
|
|
loadChannelList(channel, inviteList, InviteMask)
|
2014-02-25 20:11:34 +01:00
|
|
|
}
|
2013-06-03 07:07:50 +02:00
|
|
|
}
|
|
|
|
|
2014-02-25 02:45:04 +01:00
|
|
|
func (server *Server) processCommand(cmd Command) {
|
2014-02-24 04:13:45 +01:00
|
|
|
client := cmd.Client()
|
|
|
|
|
2016-04-15 07:57:08 +02:00
|
|
|
numCmd, ok := cmd.(*NeedMoreParamsCommand)
|
|
|
|
if ok {
|
|
|
|
client.ErrNeedMoreParams(numCmd.code)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-03-13 01:52:25 +01:00
|
|
|
if !client.registered {
|
2014-02-24 04:13:45 +01:00
|
|
|
regCmd, ok := cmd.(RegServerCommand)
|
|
|
|
if !ok {
|
|
|
|
client.Quit("unexpected command")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
regCmd.HandleRegServer(server)
|
2014-03-13 01:52:25 +01:00
|
|
|
return
|
|
|
|
}
|
2014-02-24 04:13:45 +01:00
|
|
|
|
2014-03-13 01:52:25 +01:00
|
|
|
srvCmd, ok := cmd.(ServerCommand)
|
|
|
|
if !ok {
|
|
|
|
client.ErrUnknownCommand(cmd.Code())
|
|
|
|
return
|
|
|
|
}
|
2014-04-15 17:49:52 +02:00
|
|
|
|
2014-03-13 01:52:25 +01:00
|
|
|
switch srvCmd.(type) {
|
|
|
|
case *PingCommand, *PongCommand:
|
|
|
|
client.Touch()
|
2014-02-24 04:13:45 +01:00
|
|
|
|
2014-03-13 01:52:25 +01:00
|
|
|
case *QuitCommand:
|
|
|
|
// no-op
|
2014-02-24 04:13:45 +01:00
|
|
|
|
2014-03-13 01:52:25 +01:00
|
|
|
default:
|
|
|
|
client.Active()
|
|
|
|
client.Touch()
|
2014-02-24 04:13:45 +01:00
|
|
|
}
|
2014-04-15 17:49:52 +02:00
|
|
|
|
2014-03-13 01:52:25 +01:00
|
|
|
srvCmd.HandleServer(server)
|
2014-02-24 04:13:45 +01:00
|
|
|
}
|
|
|
|
|
2014-03-02 20:36:00 +01:00
|
|
|
func (server *Server) Shutdown() {
|
|
|
|
server.db.Close()
|
2014-03-06 20:56:32 +01:00
|
|
|
for _, client := range server.clients.byNick {
|
2016-06-17 14:17:42 +02:00
|
|
|
client.Send("notice")
|
2014-03-02 20:36:00 +01:00
|
|
|
client.Reply(RplNotice(server, client, "shutting down"))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-24 04:13:45 +01:00
|
|
|
func (server *Server) Run() {
|
2014-02-25 20:11:34 +01:00
|
|
|
done := false
|
|
|
|
for !done {
|
2014-02-17 07:38:43 +01:00
|
|
|
select {
|
2014-02-25 20:11:34 +01:00
|
|
|
case <-server.signals:
|
2014-03-02 20:36:00 +01:00
|
|
|
server.Shutdown()
|
2014-02-25 20:11:34 +01:00
|
|
|
done = true
|
|
|
|
|
2014-02-20 22:03:33 +01:00
|
|
|
case conn := <-server.newConns:
|
|
|
|
NewClient(server, conn)
|
|
|
|
|
2014-02-24 07:21:39 +01:00
|
|
|
case cmd := <-server.commands:
|
2014-02-25 02:45:04 +01:00
|
|
|
server.processCommand(cmd)
|
2014-02-24 07:21:39 +01:00
|
|
|
|
2014-02-18 20:22:56 +01:00
|
|
|
case client := <-server.idle:
|
|
|
|
client.Idle()
|
2014-02-15 03:28:36 +01:00
|
|
|
}
|
2014-02-14 03:39:33 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-20 04:30:49 +01:00
|
|
|
//
|
|
|
|
// listen goroutine
|
|
|
|
//
|
|
|
|
|
2016-04-28 12:12:23 +02:00
|
|
|
func (s *Server) listen(addr string, tlsMap map[Name]*tls.Config) {
|
|
|
|
config, listenTLS := tlsMap[NewName(addr)]
|
2016-04-13 12:45:09 +02:00
|
|
|
|
2014-03-01 23:34:51 +01:00
|
|
|
listener, err := net.Listen("tcp", addr)
|
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
|
|
|
}
|
|
|
|
|
2016-04-28 12:12:23 +02:00
|
|
|
tlsString := "plaintext"
|
|
|
|
if listenTLS {
|
2016-04-13 12:45:09 +02:00
|
|
|
listener = tls.NewListener(listener, config)
|
2016-04-28 12:12:23 +02:00
|
|
|
tlsString = "TLS"
|
2016-04-13 12:45:09 +02:00
|
|
|
}
|
2016-04-28 12:12:23 +02:00
|
|
|
Log.info.Printf("%s listening on %s using %s.", s, addr, tlsString)
|
2012-12-09 07:54:58 +01:00
|
|
|
|
2014-03-14 01:19:39 +01:00
|
|
|
go func() {
|
|
|
|
for {
|
|
|
|
conn, err := listener.Accept()
|
|
|
|
if err != nil {
|
|
|
|
Log.error.Printf("%s accept error: %s", s, err)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
Log.debug.Printf("%s accept: %s", s, conn.RemoteAddr())
|
2014-02-17 07:30:01 +01:00
|
|
|
|
2014-03-14 01:19:39 +01:00
|
|
|
s.newConns <- conn
|
|
|
|
}
|
|
|
|
}()
|
2012-12-09 07:54:58 +01:00
|
|
|
}
|
|
|
|
|
2015-05-04 07:47:26 +02:00
|
|
|
//
|
|
|
|
// websocket listen goroutine
|
|
|
|
//
|
|
|
|
|
2016-04-28 12:41:26 +02:00
|
|
|
func (s *Server) wslisten(addr string, tlsMap map[string]*TLSListenConfig) {
|
2015-05-04 07:47:26 +02:00
|
|
|
http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
if r.Method != "GET" {
|
|
|
|
Log.error.Printf("%s method not allowed", s)
|
|
|
|
return
|
|
|
|
}
|
2015-06-07 00:11:59 +02:00
|
|
|
|
|
|
|
// We don't have any subprotocols, so if someone attempts to `new
|
|
|
|
// WebSocket(server, "subprotocol")` they'll break here, instead of
|
|
|
|
// getting the default, ambiguous, response from gorilla.
|
|
|
|
if v, ok := r.Header["Sec-Websocket-Protocol"]; ok {
|
|
|
|
http.Error(w, fmt.Sprintf("WebSocket subprocotols (e.g. %s) not supported", v), 400)
|
|
|
|
}
|
|
|
|
|
2015-05-04 07:47:26 +02:00
|
|
|
ws, err := upgrader.Upgrade(w, r, nil)
|
|
|
|
if err != nil {
|
|
|
|
Log.error.Printf("%s websocket upgrade error: %s", s, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-06-07 01:11:06 +02:00
|
|
|
s.newConns <- WSContainer{ws}
|
2015-05-04 07:47:26 +02:00
|
|
|
})
|
|
|
|
go func() {
|
2016-04-28 12:41:26 +02:00
|
|
|
config, listenTLS := tlsMap[addr]
|
|
|
|
|
|
|
|
tlsString := "plaintext"
|
|
|
|
var err error
|
|
|
|
if listenTLS {
|
|
|
|
tlsString = "TLS"
|
|
|
|
}
|
|
|
|
Log.info.Printf("%s websocket listening on %s using %s.", s, addr, tlsString)
|
|
|
|
|
|
|
|
if listenTLS {
|
|
|
|
err = http.ListenAndServeTLS(addr, config.Cert, config.Key, nil)
|
|
|
|
} else {
|
|
|
|
err = http.ListenAndServe(addr, nil)
|
|
|
|
}
|
2015-05-04 07:47:26 +02:00
|
|
|
if err != nil {
|
2016-04-28 12:41:26 +02:00
|
|
|
Log.error.Printf("%s listenAndServe (%s) error: %s", s, tlsString, err)
|
2015-05-04 07:47:26 +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-03-13 01:52:25 +01:00
|
|
|
if c.registered || !c.HasNick() || !c.HasUsername() ||
|
|
|
|
(c.capState == CapNegotiating) {
|
|
|
|
return
|
2012-12-15 23:34:20 +01:00
|
|
|
}
|
2014-03-13 01:52:25 +01:00
|
|
|
|
2016-06-17 14:17:42 +02:00
|
|
|
c.Send("Intro to the network")
|
2014-03-13 01:52:25 +01:00
|
|
|
c.Register()
|
|
|
|
c.RplWelcome()
|
|
|
|
c.RplYourHost()
|
|
|
|
c.RplCreated()
|
|
|
|
c.RplMyInfo()
|
2016-04-12 07:38:42 +02:00
|
|
|
c.RplISupport()
|
2014-03-13 01:52:25 +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) {
|
2016-04-13 07:49:30 +02:00
|
|
|
if len(server.motdLines) < 1 {
|
2016-06-17 14:17:42 +02:00
|
|
|
c.Send("send")
|
2014-02-20 07:20:34 +01:00
|
|
|
client.ErrNoMOTD()
|
2014-02-12 01:35:32 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-02-20 07:20:34 +01:00
|
|
|
client.RplMOTDStart()
|
2016-04-13 07:49:30 +02:00
|
|
|
for _, line := range server.motdLines {
|
2016-06-17 14:17:42 +02:00
|
|
|
c.Send("send")
|
2016-04-12 05:03:59 +02:00
|
|
|
client.RplMOTD(line)
|
2014-02-12 01:35:32 +01:00
|
|
|
}
|
2016-06-17 14:17:42 +02:00
|
|
|
c.Send("send")
|
2014-02-20 07:20:34 +01:00
|
|
|
client.RplMOTDEnd()
|
2014-02-12 00:33:02 +01:00
|
|
|
}
|
|
|
|
|
2014-03-09 21:45:36 +01:00
|
|
|
func (s *Server) Id() Name {
|
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-03-09 21:45:36 +01:00
|
|
|
return s.name.String()
|
2012-12-15 23:34:20 +01:00
|
|
|
}
|
|
|
|
|
2014-03-09 21:45:36 +01:00
|
|
|
func (s *Server) Nick() Name {
|
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-03-01 04:21:33 +01:00
|
|
|
// registration commands
|
2012-12-15 23:34:20 +01:00
|
|
|
//
|
|
|
|
|
2016-06-17 14:17:42 +02:00
|
|
|
// PASS <password>
|
|
|
|
func passHandler(server *Server, client *Client, msg ircmsg.IrcMessage) bool {
|
|
|
|
if client.Registered {
|
|
|
|
client.Send("send")
|
|
|
|
client.ErrAlreadyRegistered()
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// check the provided password
|
|
|
|
logger.Fatal("Implement PASS command")
|
|
|
|
password := []byte(args[0])
|
|
|
|
if ComparePassword(server.password, password) != nil {
|
|
|
|
logger.Fatal("SEND BACK REJECTION")
|
2014-02-24 02:04:24 +01:00
|
|
|
client.Quit("bad password")
|
2016-06-17 14:17:42 +02:00
|
|
|
return true
|
2014-02-15 03:28:36 +01:00
|
|
|
}
|
|
|
|
|
2014-03-01 04:21:33 +01:00
|
|
|
client.authorized = true
|
2016-06-17 14:17:42 +02:00
|
|
|
return false
|
2012-12-15 23:34:20 +01:00
|
|
|
}
|
|
|
|
|
2016-06-17 14:17:42 +02:00
|
|
|
// PROXY TCP4/6 SOURCEIP DESTIP SOURCEPORT DESTPORT
|
|
|
|
// http://www.haproxy.org/download/1.5/doc/proxy-protocol.txt
|
|
|
|
func proxyHandler(server *Server, client *Client, msg ircmsg.IrcMessage) bool {
|
2016-04-21 08:39:31 +02:00
|
|
|
clientAddress := IPString(client.socket.conn.RemoteAddr()).String()
|
|
|
|
clientHostname := client.hostname.String()
|
|
|
|
|
|
|
|
for _, address := range server.proxyAllowedFrom {
|
|
|
|
if clientHostname == address || clientAddress == address {
|
2016-06-17 14:17:42 +02:00
|
|
|
client.hostname = LookupHostname(NewName(msg.Params[1]))
|
|
|
|
return false
|
2016-04-21 08:39:31 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
client.Quit("PROXY command is not usable from your address")
|
2016-06-17 14:17:42 +02:00
|
|
|
return true
|
2014-02-24 02:04:24 +01:00
|
|
|
}
|
|
|
|
|
2016-06-17 14:17:42 +02:00
|
|
|
// USER <username> * 0 <realname>
|
|
|
|
func userHandler(server *Server, client *Client, msg ircmsg.IrcMessage) bool {
|
|
|
|
if client.Registered {
|
|
|
|
client.Send("send")
|
|
|
|
client.ErrAlreadyRegistered()
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2014-03-01 04:21:33 +01:00
|
|
|
if !client.authorized {
|
|
|
|
client.Quit("bad password")
|
2016-06-17 14:17:42 +02:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
if client.username != "" && client.realname != "" {
|
|
|
|
return false
|
2014-03-01 04:21:33 +01:00
|
|
|
}
|
2014-03-07 02:44:37 +01:00
|
|
|
|
2016-04-15 10:45:05 +02:00
|
|
|
// set user info and log client in
|
|
|
|
//TODO(dan): Could there be a race condition here with adding/removing the client?
|
2016-06-17 14:17:42 +02:00
|
|
|
//TODO(dan): we should do something like server.clients.Replace(client) instead
|
|
|
|
|
|
|
|
// we do it this way to ONLY replace what hasn't already been set
|
|
|
|
server.clients.Remove(client)
|
|
|
|
|
|
|
|
if client.username != "" {
|
|
|
|
client.username = msg.username
|
|
|
|
}
|
|
|
|
if client.realname != "" {
|
|
|
|
client.realname = msg.realname
|
|
|
|
}
|
|
|
|
|
2014-03-07 01:51:33 +01:00
|
|
|
server.clients.Add(client)
|
2014-03-07 02:44:37 +01:00
|
|
|
|
2014-02-17 07:20:42 +01:00
|
|
|
server.tryRegister(client)
|
2014-02-15 03:28:36 +01:00
|
|
|
}
|
|
|
|
|
2016-06-17 14:17:42 +02:00
|
|
|
// QUIT [<reason>]
|
|
|
|
func quitHandler(server *Server, client *Client, msg ircmsg.IrcMessage) bool {
|
|
|
|
reason := "Quit"
|
|
|
|
if len(msg.Params) > 0 {
|
|
|
|
reason += ": " + msg.Params[0]
|
|
|
|
}
|
|
|
|
client.Quit(msg.message)
|
|
|
|
return true
|
2014-02-18 22:25:21 +01:00
|
|
|
}
|
|
|
|
|
2014-02-15 03:28:36 +01:00
|
|
|
//
|
|
|
|
// normal commands
|
|
|
|
//
|
|
|
|
|
2016-06-17 14:17:42 +02:00
|
|
|
// PING <server1> [<server2>]
|
|
|
|
func pingHandler(server *Server, client *Client, msg ircmsg.IrcMessage) bool {
|
|
|
|
// client.Socket.Send(response here)
|
|
|
|
return true
|
2014-02-15 03:28:36 +01:00
|
|
|
}
|
|
|
|
|
2016-06-17 14:17:42 +02:00
|
|
|
// PONG <server> [ <server2> ]
|
|
|
|
func pongHandler(server *Server, client *Client, msg ircmsg.IrcMessage) bool {
|
|
|
|
//TODO(dan): update client idle timer from this
|
|
|
|
//TODO(dan): use this to affect how often we send pings
|
|
|
|
return true
|
2012-12-15 23:34:20 +01:00
|
|
|
}
|
|
|
|
|
2016-06-17 14:17:42 +02:00
|
|
|
// JOIN <channel>{,<channel>} [<key>{,<key>}]
|
|
|
|
// JOIN 0
|
|
|
|
func joinHandler(server *Server, client *Client, msg ircmsg.IrcMessage) bool {
|
|
|
|
// handle JOIN 0
|
|
|
|
if msg.Params[0] == "0" {
|
2014-02-17 07:20:42 +01:00
|
|
|
for channel := range client.channels {
|
2014-03-09 21:45:36 +01:00
|
|
|
channel.Part(client, client.Nick().Text())
|
2012-12-15 23:34:20 +01:00
|
|
|
}
|
2016-06-17 14:17:42 +02:00
|
|
|
return false
|
2012-12-17 04:13:53 +01:00
|
|
|
}
|
|
|
|
|
2016-06-17 14:17:42 +02:00
|
|
|
// handle regular JOINs
|
|
|
|
channels := strings.Split(msg.Params[0], ",")
|
|
|
|
var keys []string
|
|
|
|
if len(msg.Params) > 1 {
|
|
|
|
keys = strings.Split(msg.Params[1], ",")
|
|
|
|
}
|
|
|
|
|
|
|
|
for i, name := range channels {
|
2014-03-09 21:45:36 +01:00
|
|
|
if !name.IsChannel() {
|
2016-06-17 14:17:42 +02:00
|
|
|
log.Fatal("Implement ErrNoSuchChannel")
|
2014-02-22 02:19:02 +01:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2014-02-26 05:17:26 +01:00
|
|
|
channel := s.channels.Get(name)
|
2014-02-22 02:19:02 +01:00
|
|
|
if channel == nil {
|
2016-04-21 11:29:50 +02:00
|
|
|
channel = NewChannel(s, name, true)
|
2014-02-22 02:19:02 +01:00
|
|
|
}
|
2016-06-17 14:17:42 +02:00
|
|
|
|
|
|
|
var key string
|
|
|
|
if len(keys) > i {
|
|
|
|
key = keys[i]
|
|
|
|
}
|
|
|
|
|
2014-02-19 04:31:59 +01:00
|
|
|
channel.Join(client, key)
|
2012-12-09 07:54:58 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-17 14:17:42 +02:00
|
|
|
// PART <channel>{,<channel>} [<reason>]
|
|
|
|
func partHandler(server *Server, client *Client, msg ircmsg.IrcMessage) bool {
|
|
|
|
channels := strings.Split(msg.Params[0], ",")
|
|
|
|
var reason string //TODO(dan): should this be the user's nickname instead of empty?
|
|
|
|
if len(msg.Params) > 1 {
|
|
|
|
reason = msg.Params[1]
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, chname := range channels {
|
2014-02-26 05:17:26 +01:00
|
|
|
channel := server.channels.Get(chname)
|
2012-12-15 23:34:20 +01:00
|
|
|
|
|
|
|
if channel == nil {
|
2016-06-17 14:17:42 +02:00
|
|
|
log.Fatal("Implement ErrNoSuchChannel")
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-17 14:17:42 +02:00
|
|
|
// TOPIC <channel> [<topic>]
|
|
|
|
func topicHandler(server *Server, client *Client, msg ircmsg.IrcMessage) bool {
|
|
|
|
channel := server.channels.Get(msg.Params[0])
|
2012-12-17 04:13:53 +01:00
|
|
|
if channel == nil {
|
2016-06-17 14:17:42 +02:00
|
|
|
log.Fatal("Implement ErrNoSuchChannel")
|
2012-12-15 23:34:20 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-06-17 14:17:42 +02:00
|
|
|
if len(msg.Params) > 1 {
|
|
|
|
channel.SetTopic(client, msg.Params[1])
|
2014-02-17 07:20:42 +01:00
|
|
|
} else {
|
|
|
|
channel.GetTopic(client)
|
|
|
|
}
|
2012-12-15 23:34:20 +01:00
|
|
|
}
|
|
|
|
|
2016-06-17 14:17:42 +02:00
|
|
|
// PRIVMSG <target>{,<target>} <message>
|
|
|
|
func privmsgHandler(server *Server, client *Client, msg ircmsg.IrcMessage) bool {
|
|
|
|
targets := strings.Split(msg.Params[0], ",")
|
|
|
|
message := msg.Params[1]
|
2012-12-15 23:34:20 +01:00
|
|
|
|
2016-06-17 14:17:42 +02:00
|
|
|
for _, target := range targets {
|
|
|
|
if target.IsChannel() {
|
|
|
|
channel := server.channels.Get(target)
|
|
|
|
if channel == nil {
|
|
|
|
client.Send("send")
|
|
|
|
client.ErrNoSuchChannel(target)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
channel.PrivMsg(client, message)
|
|
|
|
} else {
|
|
|
|
user := server.clients.Get(target)
|
|
|
|
if user == nil {
|
|
|
|
client.Send("send")
|
|
|
|
client.ErrNoSuchNick(target)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
user.Send("content here")
|
|
|
|
if user.flags[Away] {
|
|
|
|
client.Send("target is AWAY")
|
|
|
|
}
|
|
|
|
}
|
2014-02-12 00:44:58 +01:00
|
|
|
}
|
2012-04-07 20:44:59 +02:00
|
|
|
}
|
2012-12-13 08:27:17 +01:00
|
|
|
|
2016-04-14 14:33:38 +02:00
|
|
|
func (client *Client) WhoisChannelsNames(target *Client) []string {
|
|
|
|
isMultiPrefix := target.capabilities[MultiPrefix]
|
|
|
|
var chstrs []string
|
2014-02-20 07:20:34 +01:00
|
|
|
index := 0
|
|
|
|
for channel := range client.channels {
|
2016-04-14 14:33:38 +02:00
|
|
|
// channel is secret and the target can't see it
|
|
|
|
if !target.flags[Operator] && channel.flags[Secret] && !channel.members.Has(target) {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
chstrs = append(chstrs, channel.members[client].Prefixes(isMultiPrefix)+channel.name.String())
|
|
|
|
index++
|
2014-02-20 07:20:34 +01:00
|
|
|
}
|
|
|
|
return chstrs
|
|
|
|
}
|
|
|
|
|
2016-06-17 14:17:42 +02:00
|
|
|
// WHOIS [ <target> ] <mask> *( "," <mask> )
|
|
|
|
func whoisHandler(server *Server, client *Client, msg ircmsg.IrcMessage) bool {
|
|
|
|
var masks string
|
|
|
|
var target string
|
2014-02-09 02:43:59 +01:00
|
|
|
|
2016-06-17 14:17:42 +02:00
|
|
|
if len(msg.Params) > 1 {
|
|
|
|
target = msg.Params[0]
|
|
|
|
masks = msg.Params[1]
|
|
|
|
} else {
|
|
|
|
masks = msg.Params[0]
|
|
|
|
}
|
2014-02-09 02:43:59 +01:00
|
|
|
|
2016-06-17 14:17:42 +02:00
|
|
|
// TODO implement target query
|
|
|
|
for _, mask := range masks {
|
2014-03-06 20:56:32 +01:00
|
|
|
matches := server.clients.FindAll(mask)
|
|
|
|
if len(matches) == 0 {
|
2014-02-20 07:20:34 +01:00
|
|
|
client.ErrNoSuchNick(mask)
|
2016-06-17 14:17:42 +02:00
|
|
|
client.Send("NOSUCHNICK")
|
2014-02-18 04:08:57 +01:00
|
|
|
continue
|
|
|
|
}
|
2014-03-06 20:56:32 +01:00
|
|
|
for mclient := range matches {
|
|
|
|
client.RplWhois(mclient)
|
2016-06-17 14:17:42 +02:00
|
|
|
client.Send("WHOIS")
|
2014-02-09 02:43:59 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-02-09 03:14:39 +01:00
|
|
|
|
2014-03-06 20:56:32 +01:00
|
|
|
func whoChannel(client *Client, channel *Channel, friends ClientSet) {
|
2014-02-09 03:49:52 +01:00
|
|
|
for member := range channel.members {
|
2014-03-06 20:56:32 +01:00
|
|
|
if !client.flags[Invisible] || friends[client] {
|
2016-06-17 14:17:42 +02:00
|
|
|
client.Send("send")
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-17 14:17:42 +02:00
|
|
|
// WHO [ <mask> [ "o" ] ]
|
|
|
|
func whoHandler(server *Server, client *Client, msg ircmsg.IrcMessage) bool {
|
2014-03-06 20:56:32 +01:00
|
|
|
friends := client.Friends()
|
2016-06-17 14:17:42 +02:00
|
|
|
|
|
|
|
var mask string
|
|
|
|
if len(msg.Params) > 0 {
|
|
|
|
mask = NewName(msg.Params[0])
|
|
|
|
}
|
|
|
|
|
|
|
|
//TODO(dan): is this used and would I put this param in the Modern doc?
|
|
|
|
// if not, can we remove it?
|
|
|
|
var operatorOnly bool
|
|
|
|
if len(msg.Params) > 1 && msr.Params[1] == "o" {
|
|
|
|
operatorOnly = true
|
|
|
|
}
|
2014-02-09 03:49:52 +01:00
|
|
|
|
2014-02-09 07:42:14 +01:00
|
|
|
if mask == "" {
|
2014-02-09 03:49:52 +01:00
|
|
|
for _, channel := range server.channels {
|
2014-03-06 20:56:32 +01:00
|
|
|
whoChannel(client, channel, friends)
|
2014-02-09 03:49:52 +01:00
|
|
|
}
|
2014-03-09 21:45:36 +01:00
|
|
|
} else if mask.IsChannel() {
|
2014-03-06 20:56:32 +01:00
|
|
|
// TODO implement wildcard matching
|
2014-02-26 05:17:26 +01:00
|
|
|
channel := server.channels.Get(mask)
|
2014-02-09 03:49:52 +01:00
|
|
|
if channel != nil {
|
2014-03-06 20:56:32 +01:00
|
|
|
whoChannel(client, channel, friends)
|
2014-02-09 03:49:52 +01:00
|
|
|
}
|
|
|
|
} else {
|
2014-03-06 20:56:32 +01:00
|
|
|
for mclient := range server.clients.FindAll(mask) {
|
2014-02-20 07:20:34 +01:00
|
|
|
client.RplWhoReply(nil, mclient)
|
2016-06-17 14:17:42 +02:00
|
|
|
client.Send("REPLY")
|
2014-02-09 03:49:52 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-20 07:20:34 +01:00
|
|
|
client.RplEndOfWho(mask)
|
2016-06-17 14:17:42 +02:00
|
|
|
client.Send("ENDOFWHO")
|
2014-02-09 03:49:52 +01:00
|
|
|
}
|
2014-02-09 19:07:40 +01:00
|
|
|
|
2016-06-17 14:17:42 +02:00
|
|
|
// OPER <name> <password>
|
|
|
|
func operHandler(server *Server, client *Client, msg ircmsg.IrcMessage) bool {
|
|
|
|
name = NewName(msg.Params[0])
|
|
|
|
hash = server.operators[name]
|
|
|
|
password = []byte(msg.Params[1])
|
2014-02-09 19:07:40 +01:00
|
|
|
|
2016-06-17 14:17:42 +02:00
|
|
|
err = ComparePassword(hash, password)
|
|
|
|
|
|
|
|
if (hash == nil) || (err != nil) {
|
2014-02-24 07:21:39 +01:00
|
|
|
client.ErrPasswdMismatch()
|
2016-06-17 14:17:42 +02:00
|
|
|
client.Send("PASSWDBAD")
|
|
|
|
return true
|
2014-02-24 07:21:39 +01:00
|
|
|
}
|
2014-02-09 19:07:40 +01:00
|
|
|
|
2016-06-17 14:17:42 +02:00
|
|
|
//TODO(dan): Split this into client.makeOper() ??
|
2014-02-24 07:21:39 +01:00
|
|
|
client.flags[Operator] = true
|
2014-02-20 07:20:34 +01:00
|
|
|
client.RplYoureOper()
|
2016-06-17 14:17:42 +02:00
|
|
|
client.Send("YOUROPER")
|
2014-04-15 17:49:52 +02:00
|
|
|
client.Reply(RplModeChanges(client, client, ModeChanges{&ModeChange{
|
|
|
|
mode: Operator,
|
|
|
|
op: Add,
|
|
|
|
}}))
|
2016-06-17 14:17:42 +02:00
|
|
|
client.Send("OPERMODECHANGE")
|
2014-02-09 19:07:40 +01:00
|
|
|
}
|
2014-02-10 20:14:34 +01:00
|
|
|
|
2016-06-17 14:17:42 +02:00
|
|
|
// AWAY [<message>]
|
|
|
|
func awayHandler(server *Server, client *Client, msg ircmsg.IrcMessage) bool {
|
|
|
|
var isAway bool
|
|
|
|
var text string
|
|
|
|
if len(msg.Params) > 0 {
|
|
|
|
isAway = True
|
|
|
|
text = NewText(msg.Params[0])
|
|
|
|
}
|
|
|
|
|
|
|
|
if isAway {
|
2014-02-17 22:22:35 +01:00
|
|
|
client.flags[Away] = true
|
|
|
|
} else {
|
|
|
|
delete(client.flags, Away)
|
|
|
|
}
|
2016-06-17 14:17:42 +02:00
|
|
|
client.awayMessage = text
|
2014-02-12 00:44:58 +01:00
|
|
|
|
2014-04-15 17:49:52 +02:00
|
|
|
var op ModeOp
|
2014-02-17 22:22:35 +01:00
|
|
|
if client.flags[Away] {
|
2014-04-15 17:49:52 +02:00
|
|
|
op = Add
|
2016-06-17 14:17:42 +02:00
|
|
|
client.Send("imaway")
|
2014-02-20 07:20:34 +01:00
|
|
|
client.RplNowAway()
|
2014-02-12 00:44:58 +01:00
|
|
|
} else {
|
2014-04-15 17:49:52 +02:00
|
|
|
op = Remove
|
2016-06-17 14:17:42 +02:00
|
|
|
client.Send("unaway")
|
2014-02-20 07:20:34 +01:00
|
|
|
client.RplUnAway()
|
2014-02-12 00:44:58 +01:00
|
|
|
}
|
2016-06-17 14:17:42 +02:00
|
|
|
client.Send("mode changes I guess?")
|
2014-04-15 17:49:52 +02:00
|
|
|
client.Reply(RplModeChanges(client, client, ModeChanges{&ModeChange{
|
|
|
|
mode: Away,
|
|
|
|
op: op,
|
|
|
|
}}))
|
2014-02-12 00:44:58 +01:00
|
|
|
}
|
2014-02-12 00:58:54 +01:00
|
|
|
|
2016-06-17 14:17:42 +02:00
|
|
|
// ISON <nick>{ <nick>}
|
|
|
|
func isonHandler(server *Server, client *Client, msg ircmsg.IrcMessage) bool {
|
|
|
|
var nicks = NewNames(msg.Params)
|
2014-02-12 00:58:54 +01:00
|
|
|
|
|
|
|
ison := make([]string, 0)
|
2016-06-17 14:17:42 +02:00
|
|
|
for _, nick := range nicks {
|
2014-02-18 02:58:22 +01:00
|
|
|
if iclient := server.clients.Get(nick); iclient != nil {
|
2014-03-09 21:45:36 +01:00
|
|
|
ison = append(ison, iclient.Nick().String())
|
2014-02-12 00:58:54 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-17 14:17:42 +02:00
|
|
|
client.Send("ISON")
|
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
|
|
|
|
2016-06-17 14:17:42 +02:00
|
|
|
// MOTD [<target>]
|
|
|
|
func motdHandler(server *Server, client *Client, msg ircmsg.IrcMessage) bool {
|
|
|
|
//TODO(dan): hook this up when we have multiple servers I guess???
|
|
|
|
var target string
|
|
|
|
if len(msg.Params) > 0 {
|
|
|
|
target = NewName(msg.Params[0])
|
|
|
|
}
|
|
|
|
|
|
|
|
client.Send("MOTD")
|
2014-02-12 01:35:32 +01:00
|
|
|
server.MOTD(msg.Client())
|
|
|
|
}
|
2014-02-12 02:11:59 +01:00
|
|
|
|
2016-06-17 14:17:42 +02:00
|
|
|
// NOTICE <target>{,<target>} <message>
|
|
|
|
func noticeHandler(server *Server, client *Client, msg ircmsg.IrcMessage) bool {
|
|
|
|
targetName := NewName(msg.Params[0])
|
|
|
|
message := NewText(msg.Params[1])
|
|
|
|
|
|
|
|
if targetName.IsChannel() {
|
|
|
|
channel := server.channels.Get(targetName)
|
2014-02-12 02:11:59 +01:00
|
|
|
if channel == nil {
|
2016-06-17 14:17:42 +02:00
|
|
|
client.Send("ERRNOSUCHCHAN")
|
|
|
|
client.ErrNoSuchChannel(targetName)
|
2014-02-12 02:11:59 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-06-17 14:17:42 +02:00
|
|
|
channel.Notice(client, message)
|
2014-02-12 02:11:59 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-06-17 14:17:42 +02:00
|
|
|
target := server.clients.Get(targetName)
|
2014-02-12 02:11:59 +01:00
|
|
|
if target == nil {
|
2016-06-17 14:17:42 +02:00
|
|
|
client.Send("ERRNOSUCHNICK")
|
|
|
|
client.ErrNoSuchNick(targetName)
|
2014-02-12 02:11:59 +01:00
|
|
|
return
|
|
|
|
}
|
2016-06-17 14:17:42 +02:00
|
|
|
client.Send("NOTICE")
|
|
|
|
target.Reply(RplNotice(client, target, message))
|
2014-02-17 02:23:47 +01:00
|
|
|
}
|
2014-02-17 08:29:11 +01:00
|
|
|
|
2016-06-17 14:17:42 +02:00
|
|
|
// KICK <channel>{,<channel>} <user>{,<user>} [<comment>]
|
|
|
|
func kickHandler(server *Server, client *Client, msg ircmsg.IrcMessage) bool {
|
|
|
|
channels := NewNames(strings.Split(msg.Params[0], ","))
|
|
|
|
users := NewNames(strings.Split(msg.Params[1], ","))
|
|
|
|
if (len(channels) != len(users)) && (len(users) != 1) {
|
|
|
|
client.Send("NotEnoughArgs??")
|
|
|
|
return false
|
|
|
|
// not needed return nil, NotEnoughArgsError
|
|
|
|
}
|
|
|
|
|
|
|
|
kicks := make(map[Name]Name)
|
|
|
|
for index, channel := range channels {
|
|
|
|
if len(users) == 1 {
|
|
|
|
kicks[channel] = users[0]
|
|
|
|
} else {
|
|
|
|
kicks[channel] = users[index]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var comment string
|
|
|
|
if len(msg.Params) > 2 {
|
|
|
|
comment = msg.Params[2]
|
|
|
|
}
|
|
|
|
for chname, nickname := range kicks {
|
2014-02-26 05:17:26 +01:00
|
|
|
channel := server.channels.Get(chname)
|
2014-02-17 08:29:11 +01:00
|
|
|
if channel == nil {
|
2014-02-20 07:20:34 +01:00
|
|
|
client.ErrNoSuchChannel(chname)
|
2016-06-17 14:17:42 +02:00
|
|
|
client.Send("send")
|
2014-02-17 08:29:11 +01:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2014-02-26 05:17:26 +01:00
|
|
|
target := server.clients.Get(nickname)
|
2014-02-17 08:29:11 +01:00
|
|
|
if target == nil {
|
2014-02-20 07:20:34 +01:00
|
|
|
client.ErrNoSuchNick(nickname)
|
2016-06-17 14:17:42 +02:00
|
|
|
client.Send("send")
|
2014-02-17 08:29:11 +01:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2016-04-14 01:35:36 +02:00
|
|
|
// make sure client has privs to kick the given user
|
|
|
|
var hasPrivs bool
|
|
|
|
for _, mode := range ChannelPrivModes {
|
|
|
|
if channel.members[client][mode] {
|
|
|
|
hasPrivs = true
|
|
|
|
|
|
|
|
// admins cannot kick other admins
|
|
|
|
if mode == ChannelAdmin && channel.members[target][ChannelAdmin] {
|
|
|
|
hasPrivs = false
|
|
|
|
}
|
|
|
|
|
|
|
|
break
|
|
|
|
} else if channel.members[target][mode] {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if hasPrivs {
|
2016-06-17 14:17:42 +02:00
|
|
|
if comment == "" {
|
|
|
|
channel.Kick(client, target, nickname)
|
|
|
|
} else {
|
|
|
|
channel.Kick(client, target, comment)
|
|
|
|
}
|
2016-04-14 01:35:36 +02:00
|
|
|
} else {
|
|
|
|
client.ErrChanOPrivIsNeeded(channel)
|
2016-06-17 14:17:42 +02:00
|
|
|
client.Send("send")
|
2016-04-14 01:35:36 +02:00
|
|
|
}
|
2014-02-17 08:29:11 +01:00
|
|
|
}
|
|
|
|
}
|
2014-02-17 08:51:27 +01:00
|
|
|
|
2016-06-17 14:17:42 +02:00
|
|
|
// LIST [<channel>{,<channel>} [<server>]]
|
|
|
|
func listHandler(server *Server, client *Client, msg ircmsg.IrcMessage) bool {
|
|
|
|
var channels []Name
|
|
|
|
if len(args) > 0 {
|
|
|
|
channels = NewNames(strings.Split(args[0], ","))
|
|
|
|
}
|
|
|
|
var target Name
|
|
|
|
if len(args) > 1 {
|
|
|
|
target = NewName(args[1])
|
|
|
|
}
|
2014-02-17 08:51:27 +01:00
|
|
|
|
2016-06-17 14:17:42 +02:00
|
|
|
//TODO(dan): target server when we have multiple servers
|
|
|
|
//TODO(dan): we should continue just fine if it's this current server though
|
|
|
|
if target != "" {
|
2014-02-20 07:20:34 +01:00
|
|
|
client.ErrNoSuchServer(msg.target)
|
2016-06-17 14:17:42 +02:00
|
|
|
client.Send("send")
|
2014-02-17 08:51:27 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-06-17 14:17:42 +02:00
|
|
|
if len(channels) == 0 {
|
2014-02-17 08:51:27 +01:00
|
|
|
for _, channel := range server.channels {
|
2016-04-14 14:33:38 +02:00
|
|
|
if !client.flags[Operator] && channel.flags[Secret] {
|
2014-02-17 08:51:27 +01:00
|
|
|
continue
|
|
|
|
}
|
2014-02-20 07:20:34 +01:00
|
|
|
client.RplList(channel)
|
2016-06-17 14:17:42 +02:00
|
|
|
client.Send("send")
|
2014-02-17 08:51:27 +01:00
|
|
|
}
|
|
|
|
} else {
|
2016-06-17 14:17:42 +02:00
|
|
|
for _, chname := range channels {
|
2014-02-26 05:17:26 +01:00
|
|
|
channel := server.channels.Get(chname)
|
2016-04-14 14:33:38 +02:00
|
|
|
if channel == nil || (!client.flags[Operator] && channel.flags[Secret]) {
|
2014-02-20 07:20:34 +01:00
|
|
|
client.ErrNoSuchChannel(chname)
|
2016-06-17 14:17:42 +02:00
|
|
|
client.Send("send")
|
2014-02-17 08:51:27 +01:00
|
|
|
continue
|
|
|
|
}
|
2014-02-20 07:20:34 +01:00
|
|
|
client.RplList(channel)
|
2016-06-17 14:17:42 +02:00
|
|
|
client.Send("send")
|
2014-02-17 08:51:27 +01:00
|
|
|
}
|
|
|
|
}
|
2014-02-20 07:20:34 +01:00
|
|
|
client.RplListEnd(server)
|
2016-06-17 14:17:42 +02:00
|
|
|
client.Send("send")
|
2014-02-17 08:51:27 +01:00
|
|
|
}
|
2014-02-18 03:10:52 +01:00
|
|
|
|
2016-06-17 14:17:42 +02:00
|
|
|
// NAMES [<channel>{,<channel>}]
|
|
|
|
func namesHandler(server *Server, client *Client, msg ircmsg.IrcMessage) bool {
|
|
|
|
var channels []Name
|
|
|
|
if len(args) > 0 {
|
|
|
|
channels = NewNames(strings.Split(args[0], ","))
|
|
|
|
}
|
|
|
|
var target Name
|
|
|
|
if len(args) > 1 {
|
|
|
|
target = NewName(args[1])
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(channels) == 0 {
|
2014-02-18 06:02:03 +01:00
|
|
|
for _, channel := range server.channels {
|
|
|
|
channel.Names(client)
|
|
|
|
}
|
2016-06-17 14:17:42 +02:00
|
|
|
return false
|
2014-02-18 06:02:03 +01:00
|
|
|
}
|
|
|
|
|
2016-06-17 14:17:42 +02:00
|
|
|
for _, chname := range channels {
|
2014-02-26 05:17:26 +01:00
|
|
|
channel := server.channels.Get(chname)
|
2014-02-18 06:02:03 +01:00
|
|
|
if channel == nil {
|
2014-02-20 07:20:34 +01:00
|
|
|
client.ErrNoSuchChannel(chname)
|
2016-06-17 14:17:42 +02:00
|
|
|
client.Send("send")
|
2014-02-18 06:02:03 +01:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
channel.Names(client)
|
2016-06-17 14:17:42 +02:00
|
|
|
client.Send("send")
|
2014-02-18 06:02:03 +01:00
|
|
|
}
|
|
|
|
}
|
2014-02-23 19:04:31 +01:00
|
|
|
|
2016-06-17 14:17:42 +02:00
|
|
|
// VERSION [<server>]
|
|
|
|
func versionHandler(server *Server, client *Client, msg ircmsg.IrcMessage) bool {
|
|
|
|
var target Name
|
|
|
|
if len(args) > 0 {
|
|
|
|
target = NewName(args[0])
|
|
|
|
}
|
|
|
|
if (target != "") && (target != server.name) {
|
|
|
|
client.ErrNoSuchServer(target)
|
|
|
|
client.Send("send")
|
2014-02-25 07:04:11 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
client.RplVersion()
|
2016-06-17 14:17:42 +02:00
|
|
|
client.Send("send")
|
2016-04-14 01:55:22 +02:00
|
|
|
client.RplISupport()
|
2016-06-17 14:17:42 +02:00
|
|
|
client.Send("send")
|
2014-02-25 07:04:11 +01:00
|
|
|
}
|
2014-02-25 16:28:09 +01:00
|
|
|
|
2016-06-17 14:17:42 +02:00
|
|
|
// INVITE <nickname> <channel>
|
|
|
|
func inviteHandler(server *Server, client *Client, msg ircmsg.IrcMessage) bool {
|
|
|
|
nickname := NewName(msg.Params[0])
|
|
|
|
channelName := NewName(msg.Params[1])
|
2014-02-25 16:28:09 +01:00
|
|
|
|
2016-06-17 14:17:42 +02:00
|
|
|
target := server.clients.Get(nickname)
|
2014-02-25 16:28:09 +01:00
|
|
|
if target == nil {
|
2016-06-17 14:17:42 +02:00
|
|
|
client.ErrNoSuchNick(nickname)
|
|
|
|
client.Send("send")
|
2014-02-25 16:28:09 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-06-17 14:17:42 +02:00
|
|
|
channel := server.channels.Get(channelName)
|
2014-02-25 16:28:09 +01:00
|
|
|
if channel == nil {
|
2016-06-17 14:17:42 +02:00
|
|
|
client.RplInviting(target, channelName)
|
|
|
|
client.Send("send")
|
|
|
|
target.Reply(RplInviteMsg(client, target, channelName))
|
|
|
|
client.Send("send")
|
2014-02-25 16:28:09 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
channel.Invite(target, client)
|
|
|
|
}
|
2014-02-25 16:45:40 +01:00
|
|
|
|
2016-06-17 14:17:42 +02:00
|
|
|
// TIME [<server>]
|
|
|
|
func timeHandler(server *Server, client *Client, msg ircmsg.IrcMessage) bool {
|
|
|
|
var target Name
|
|
|
|
if len(msg.Params) > 0 {
|
|
|
|
target = NewName(msg.Params[0])
|
|
|
|
}
|
|
|
|
if (target != "") && (target != server.name) {
|
|
|
|
client.ErrNoSuchServer(target)
|
|
|
|
client.Send("send")
|
2014-02-25 18:10:16 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
client.RplTime()
|
2016-06-17 14:17:42 +02:00
|
|
|
client.Send("send")
|
2014-02-25 18:10:16 +01:00
|
|
|
}
|
|
|
|
|
2016-06-17 14:17:42 +02:00
|
|
|
// KILL <nickname> <comment>
|
|
|
|
func killHandler(server *Server, client *Client, msg ircmsg.IrcMessage) bool {
|
|
|
|
nickname := NewName(msg.Params[0])
|
|
|
|
comment := NewText(msg.Params[1])
|
|
|
|
|
2014-02-25 18:10:16 +01:00
|
|
|
if !client.flags[Operator] {
|
|
|
|
client.ErrNoPrivileges()
|
2016-06-17 14:17:42 +02:00
|
|
|
client.Send("send")
|
2014-02-25 16:45:40 +01:00
|
|
|
return
|
|
|
|
}
|
2014-02-25 18:10:16 +01:00
|
|
|
|
2016-06-17 14:17:42 +02:00
|
|
|
target := server.clients.Get(nickname)
|
2014-02-25 18:10:16 +01:00
|
|
|
if target == nil {
|
2016-06-17 14:17:42 +02:00
|
|
|
client.ErrNoSuchNick(nickname)
|
|
|
|
client.Send("send")
|
2014-02-25 18:10:16 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-06-17 14:17:42 +02:00
|
|
|
//TODO(dan): make below format match that from other IRCds
|
|
|
|
quitMsg := fmt.Sprintf("KILLed by %s: %s", client.Nick(), comment)
|
2014-03-09 21:45:36 +01:00
|
|
|
target.Quit(NewText(quitMsg))
|
2016-06-17 14:17:42 +02:00
|
|
|
return true
|
2014-02-25 16:45:40 +01:00
|
|
|
}
|
2014-03-06 20:56:32 +01:00
|
|
|
|
2016-06-17 14:17:42 +02:00
|
|
|
// WHOWAS <nickname> [<count> [<server>]]
|
|
|
|
func whowasHandler(server *Server, client *Client, msg ircmsg.IrcMessage) bool {
|
|
|
|
nicknames := NewNames(strings.Split(msg.Params[0], ","))
|
|
|
|
|
|
|
|
var count int
|
|
|
|
if len(msg.Params) > 1 {
|
|
|
|
count, _ = strconv.ParseInt(msg.Params[1], 10, 64)
|
|
|
|
}
|
|
|
|
var target Name
|
|
|
|
if len(msg.Params) > 2 {
|
|
|
|
target = NewName(msg.Params[2])
|
|
|
|
}
|
|
|
|
for _, nickname := range nicknames {
|
2014-03-06 22:55:25 +01:00
|
|
|
results := server.whoWas.Find(nickname, msg.count)
|
|
|
|
if len(results) == 0 {
|
|
|
|
client.ErrWasNoSuchNick(nickname)
|
2016-06-17 14:17:42 +02:00
|
|
|
client.Send("send")
|
2014-03-06 22:55:25 +01:00
|
|
|
} else {
|
|
|
|
for _, whoWas := range results {
|
|
|
|
client.RplWhoWasUser(whoWas)
|
2016-06-17 14:17:42 +02:00
|
|
|
client.Send("send")
|
2014-03-06 22:55:25 +01:00
|
|
|
}
|
|
|
|
}
|
2014-03-06 21:14:21 +01:00
|
|
|
client.RplEndOfWhoWas(nickname)
|
2016-06-17 14:17:42 +02:00
|
|
|
client.Send("send")
|
2014-03-06 21:14:21 +01:00
|
|
|
}
|
|
|
|
}
|