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
|
2016-06-19 07:43:16 +02:00
|
|
|
name Name
|
|
|
|
nameString string // cache for server name string since it's used with almost every reply
|
2016-06-28 17:09:07 +02:00
|
|
|
newConns chan clientConn
|
2016-04-21 08:39:31 +02:00
|
|
|
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}
|
|
|
|
)
|
|
|
|
|
2016-06-28 17:09:07 +02:00
|
|
|
type clientConn struct {
|
|
|
|
Conn net.Conn
|
|
|
|
IsTLS bool
|
|
|
|
}
|
|
|
|
|
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),
|
2016-06-19 07:43:16 +02:00
|
|
|
nameString: NewName(config.Server.Name).String(),
|
2016-06-28 17:09:07 +02:00
|
|
|
newConns: make(chan clientConn),
|
2016-04-21 08:39:31 +02:00
|
|
|
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-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")
|
2016-06-19 13:59:18 +02:00
|
|
|
// "- " is the required prefix for MOTD, we just add it here to make
|
|
|
|
// bursting it out to clients easier
|
|
|
|
line = fmt.Sprintf("- %s", line)
|
2016-04-13 07:49:30 +02:00
|
|
|
|
|
|
|
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
|
|
|
|
}
|
2016-06-19 13:59:18 +02:00
|
|
|
channel.key = key
|
|
|
|
channel.topic = 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-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-19 13:59:18 +02:00
|
|
|
client.Notice("Server is shutting down")
|
2014-03-02 20:36:00 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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:
|
2016-06-28 17:09:07 +02:00
|
|
|
NewClient(server, conn.Conn, conn.IsTLS)
|
2014-02-20 22:03:33 +01:00
|
|
|
|
2016-06-19 13:59:18 +02:00
|
|
|
/*TODO(dan): LOOK AT THIS MORE CLOSELY
|
2014-02-24 07:21:39 +01:00
|
|
|
case cmd := <-server.commands:
|
2014-02-25 02:45:04 +01:00
|
|
|
server.processCommand(cmd)
|
2016-06-19 13:59:18 +02:00
|
|
|
*/
|
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
|
|
|
|
2016-06-28 17:09:07 +02:00
|
|
|
newConn := clientConn{
|
|
|
|
Conn: conn,
|
|
|
|
IsTLS: listenTLS,
|
|
|
|
}
|
|
|
|
|
|
|
|
s.newConns <- newConn
|
2014-03-14 01:19:39 +01:00
|
|
|
}
|
|
|
|
}()
|
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
|
|
|
|
}
|
|
|
|
|
2016-06-28 17:09:07 +02:00
|
|
|
newConn := clientConn{
|
|
|
|
Conn: WSContainer{ws},
|
|
|
|
IsTLS: false, //TODO(dan): track TLS or not here properly
|
|
|
|
}
|
|
|
|
s.newConns <- newConn
|
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
|
|
|
c.Register()
|
2016-06-19 13:59:18 +02:00
|
|
|
|
|
|
|
// send welcome text
|
|
|
|
//NOTE(dan): we specifically use the NICK here instead of the nickmask
|
|
|
|
// see http://modern.ircdocs.horse/#rplwelcome-001 for details on why we avoid using the nickmask
|
2016-06-20 14:53:45 +02:00
|
|
|
c.Send(nil, s.nameString, RPL_WELCOME, c.nickString, fmt.Sprintf("Welcome to the Internet Relay Network %s", c.nickString))
|
2016-06-30 09:42:24 +02:00
|
|
|
c.Send(nil, s.nameString, RPL_YOURHOST, c.nickString, fmt.Sprintf("Your host is %s, running version %s", s.nameString, VER))
|
2016-06-20 14:53:45 +02:00
|
|
|
c.Send(nil, s.nameString, RPL_CREATED, c.nickString, fmt.Sprintf("This server was created %s", s.ctime.Format(time.RFC1123)))
|
2016-06-19 13:59:18 +02:00
|
|
|
//TODO(dan): Look at adding last optional [<channel modes with a parameter>] parameter
|
2016-06-30 09:42:24 +02:00
|
|
|
c.Send(nil, s.nameString, RPL_MYINFO, c.nickString, s.nameString, VER, supportedUserModesString, supportedChannelModesString)
|
2016-04-12 07:38:42 +02:00
|
|
|
c.RplISupport()
|
2014-03-13 01:52:25 +01:00
|
|
|
s.MOTD(c)
|
2016-06-28 17:09:07 +02:00
|
|
|
c.Send(nil, c.nickMaskString, RPL_UMODEIS, c.nickString, c.ModeString())
|
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-19 13:59:18 +02:00
|
|
|
client.Send(nil, server.nameString, ERR_NOMOTD, client.nickString, "MOTD File is missing")
|
2014-02-12 01:35:32 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-06-19 13:59:18 +02:00
|
|
|
client.Send(nil, server.nameString, RPL_MOTDSTART, client.nickString, fmt.Sprintf("- %s Message of the day - ", server.nameString))
|
2016-04-13 07:49:30 +02:00
|
|
|
for _, line := range server.motdLines {
|
2016-06-19 13:59:18 +02:00
|
|
|
client.Send(nil, server.nameString, RPL_MOTD, client.nickString, line)
|
2014-02-12 01:35:32 +01:00
|
|
|
}
|
2016-06-19 13:59:18 +02:00
|
|
|
client.Send(nil, server.nameString, RPL_ENDOFMOTD, client.nickString, "End of MOTD command")
|
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 {
|
2016-06-19 13:59:18 +02:00
|
|
|
if client.registered {
|
|
|
|
client.Send(nil, server.nameString, ERR_ALREADYREGISTRED, client.nickString, "You may not reregister")
|
2016-06-17 14:17:42 +02:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2016-06-20 14:53:45 +02:00
|
|
|
// if no password exists, skip checking
|
|
|
|
if len(server.password) == 0 {
|
|
|
|
client.authorized = true
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2016-06-17 14:17:42 +02:00
|
|
|
// check the provided password
|
2016-06-19 13:59:18 +02:00
|
|
|
password := []byte(msg.Params[0])
|
2016-06-17 14:17:42 +02:00
|
|
|
if ComparePassword(server.password, password) != nil {
|
2016-06-28 08:06:17 +02:00
|
|
|
client.Send(nil, server.nameString, ERR_PASSWDMISMATCH, client.nickString, "Password incorrect")
|
|
|
|
client.Send(nil, server.nameString, "ERROR", "Password incorrect")
|
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 {
|
2016-06-19 13:59:18 +02:00
|
|
|
if client.registered {
|
|
|
|
client.Send(nil, server.nameString, ERR_ALREADYREGISTRED, client.nickString, "You may not reregister")
|
2016-06-17 14:17:42 +02:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2014-03-01 04:21:33 +01:00
|
|
|
if !client.authorized {
|
2016-06-19 13:59:18 +02:00
|
|
|
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)
|
|
|
|
|
2016-06-20 14:53:45 +02:00
|
|
|
if !client.HasUsername() {
|
|
|
|
client.username = Name("~" + msg.Params[0])
|
2016-06-19 13:59:18 +02:00
|
|
|
client.updateNickMask()
|
2016-06-17 14:17:42 +02:00
|
|
|
}
|
|
|
|
if client.realname != "" {
|
2016-06-19 13:59:18 +02:00
|
|
|
client.realname = msg.Params[3]
|
2016-06-17 14:17:42 +02:00
|
|
|
}
|
|
|
|
|
2014-03-07 01:51:33 +01:00
|
|
|
server.clients.Add(client)
|
2014-02-17 07:20:42 +01:00
|
|
|
server.tryRegister(client)
|
2016-06-19 13:59:18 +02:00
|
|
|
|
|
|
|
return false
|
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]
|
|
|
|
}
|
2016-06-19 13:59:18 +02:00
|
|
|
client.Quit(reason)
|
2016-06-17 14:17:42 +02:00
|
|
|
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 {
|
2016-06-22 14:04:13 +02:00
|
|
|
client.Send(nil, server.nameString, "PONG", msg.Params...)
|
|
|
|
return false
|
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 {
|
2016-06-22 14:04:13 +02:00
|
|
|
// client gets touched when they send this command, so we don't need to do anything
|
|
|
|
return false
|
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 {
|
2016-06-19 13:59:18 +02:00
|
|
|
channel.Part(client, client.nickString)
|
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], ",")
|
|
|
|
}
|
|
|
|
|
2016-06-19 13:59:18 +02:00
|
|
|
var name Name
|
|
|
|
for i, nameString := range channels {
|
|
|
|
name = Name(nameString)
|
2014-03-09 21:45:36 +01:00
|
|
|
if !name.IsChannel() {
|
2016-06-20 14:53:45 +02:00
|
|
|
fmt.Println("ISN'T CHANNEL NAME:", nameString)
|
2016-06-19 13:59:18 +02:00
|
|
|
client.Send(nil, server.nameString, ERR_NOSUCHCHANNEL, client.nickString, nameString, "No such channel")
|
2014-02-22 02:19:02 +01:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2016-06-19 13:59:18 +02:00
|
|
|
channel := server.channels.Get(name)
|
2014-02-22 02:19:02 +01:00
|
|
|
if channel == nil {
|
2016-06-19 13:59:18 +02:00
|
|
|
channel = NewChannel(server, 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-19 13:59:18 +02:00
|
|
|
return false
|
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], ",")
|
2016-06-19 13:59:18 +02:00
|
|
|
var reason string //TODO(dan): if this isn't supplied here, make sure the param doesn't exist in the PART message sent to other users
|
2016-06-17 14:17:42 +02:00
|
|
|
if len(msg.Params) > 1 {
|
|
|
|
reason = msg.Params[1]
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, chname := range channels {
|
2016-06-19 13:59:18 +02:00
|
|
|
channel := server.channels.Get(Name(chname))
|
2012-12-15 23:34:20 +01:00
|
|
|
|
|
|
|
if channel == nil {
|
2016-06-19 13:59:18 +02:00
|
|
|
client.Send(nil, server.nameString, ERR_NOSUCHCHANNEL, client.nickString, chname, "No such channel")
|
2012-12-15 23:34:20 +01:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2016-06-19 13:59:18 +02:00
|
|
|
channel.Part(client, reason)
|
2012-12-09 07:54:58 +01:00
|
|
|
}
|
2016-06-19 13:59:18 +02:00
|
|
|
return false
|
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 {
|
2016-06-19 13:59:18 +02:00
|
|
|
channel := server.channels.Get(Name(msg.Params[0]))
|
2012-12-17 04:13:53 +01:00
|
|
|
if channel == nil {
|
2016-06-19 13:59:18 +02:00
|
|
|
client.Send(nil, server.nameString, ERR_NOSUCHCHANNEL, client.nickString, msg.Params[0], "No such channel")
|
|
|
|
return false
|
2012-12-15 23:34:20 +01:00
|
|
|
}
|
|
|
|
|
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)
|
|
|
|
}
|
2016-06-19 13:59:18 +02:00
|
|
|
return false
|
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-19 13:59:18 +02:00
|
|
|
var target Name
|
|
|
|
for _, targetString := range targets {
|
|
|
|
target = Name(targetString)
|
2016-06-17 14:17:42 +02:00
|
|
|
if target.IsChannel() {
|
|
|
|
channel := server.channels.Get(target)
|
|
|
|
if channel == nil {
|
2016-06-19 13:59:18 +02:00
|
|
|
client.Send(nil, server.nameString, ERR_NOSUCHCHANNEL, client.nickString, targetString, "No such channel")
|
2016-06-17 14:17:42 +02:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
channel.PrivMsg(client, message)
|
|
|
|
} else {
|
|
|
|
user := server.clients.Get(target)
|
|
|
|
if user == nil {
|
2016-06-19 13:59:18 +02:00
|
|
|
client.Send(nil, server.nameString, ERR_NOSUCHNICK, targetString, "No such nick")
|
|
|
|
continue
|
2016-06-17 14:17:42 +02:00
|
|
|
}
|
2016-06-19 13:59:18 +02:00
|
|
|
user.Send(nil, client.nickMaskString, "PRIVMSG", user.nickString, message)
|
2016-06-17 14:17:42 +02:00
|
|
|
if user.flags[Away] {
|
2016-06-19 13:59:18 +02:00
|
|
|
//TODO(dan): possibly implement cooldown of away notifications to users
|
|
|
|
client.Send(nil, server.nameString, RPL_AWAY, user.nickString, user.awayMessage)
|
2016-06-17 14:17:42 +02:00
|
|
|
}
|
|
|
|
}
|
2014-02-12 00:44:58 +01:00
|
|
|
}
|
2016-06-19 13:59:18 +02:00
|
|
|
return false
|
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 {
|
2016-06-19 13:59:18 +02:00
|
|
|
var masksString string
|
2016-06-20 14:53:45 +02:00
|
|
|
//var target string
|
2014-02-09 02:43:59 +01:00
|
|
|
|
2016-06-17 14:17:42 +02:00
|
|
|
if len(msg.Params) > 1 {
|
2016-06-20 14:53:45 +02:00
|
|
|
//target = msg.Params[0]
|
2016-06-19 13:59:18 +02:00
|
|
|
masksString = msg.Params[1]
|
2016-06-17 14:17:42 +02:00
|
|
|
} else {
|
2016-06-19 13:59:18 +02:00
|
|
|
masksString = msg.Params[0]
|
2016-06-17 14:17:42 +02:00
|
|
|
}
|
2014-02-09 02:43:59 +01:00
|
|
|
|
2016-06-19 13:59:18 +02:00
|
|
|
if client.flags[Operator] {
|
|
|
|
masks := strings.Split(masksString, ",")
|
|
|
|
for _, mask := range masks {
|
|
|
|
matches := server.clients.FindAll(Name(mask))
|
|
|
|
if len(matches) == 0 {
|
|
|
|
client.Send(nil, client.server.nameString, ERR_NOSUCHNICK, mask, "No such nick")
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
for mclient := range matches {
|
|
|
|
mclient.getWhoisOf(client)
|
|
|
|
}
|
2014-02-18 04:08:57 +01:00
|
|
|
}
|
2016-06-19 13:59:18 +02:00
|
|
|
} else {
|
|
|
|
// specifically treat this as a single lookup rather than splitting as we do above
|
|
|
|
// this is by design
|
|
|
|
mclient := server.clients.Get(Name(masksString))
|
|
|
|
if mclient == nil {
|
|
|
|
client.Send(nil, client.server.nameString, ERR_NOSUCHNICK, masksString, "No such nick")
|
|
|
|
// fall through, ENDOFWHOIS is always sent
|
|
|
|
} else {
|
|
|
|
client.getWhoisOf(mclient)
|
2014-02-09 02:43:59 +01:00
|
|
|
}
|
|
|
|
}
|
2016-06-19 13:59:18 +02:00
|
|
|
client.Send(nil, server.nameString, RPL_ENDOFWHOIS, client.nickString, masksString, "End of /WHOIS list")
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
func (client *Client) getWhoisOf(target *Client) {
|
|
|
|
client.Send(nil, client.server.nameString, RPL_WHOISUSER, client.nickString, target.nickString, target.username.String(), target.hostname.String(), "*", target.realname)
|
|
|
|
if target.flags[Operator] {
|
|
|
|
client.Send(nil, client.server.nameString, RPL_WHOISOPERATOR, client.nickString, target.nickString, "is an IRC operator")
|
|
|
|
}
|
|
|
|
client.Send(nil, client.server.nameString, RPL_WHOISIDLE, client.nickString, target.nickString, string(target.IdleSeconds()), string(target.SignonTime()), "seconds idle, signon time")
|
|
|
|
for _, line := range client.WhoisChannelsNames(target) {
|
|
|
|
client.Send(nil, client.server.nameString, RPL_WHOISCHANNELS, client.nickString, target.nickString, line)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// <channel> <user> <host> <server> <nick> ( "H" / "G" ) ["*"] [ ( "@" / "+" ) ]
|
|
|
|
// :<hopcount> <real name>
|
|
|
|
func (target *Client) RplWhoReply(channel *Channel, client *Client) {
|
|
|
|
channelName := "*"
|
|
|
|
flags := ""
|
|
|
|
|
|
|
|
if client.flags[Away] {
|
|
|
|
flags = "G"
|
|
|
|
} else {
|
|
|
|
flags = "H"
|
|
|
|
}
|
|
|
|
if client.flags[Operator] {
|
|
|
|
flags += "*"
|
|
|
|
}
|
|
|
|
|
|
|
|
if channel != nil {
|
|
|
|
flags += channel.members[client].Prefixes(target.capabilities[MultiPrefix])
|
|
|
|
channelName = channel.name.String()
|
|
|
|
}
|
|
|
|
target.Send(nil, target.server.nameString, RPL_WHOREPLY, target.nickString, channelName, client.username.String(), client.hostname.String(), client.server.nameString, client.nickString, flags, string(client.hops), client.realname)
|
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] {
|
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
|
|
|
|
2016-06-19 13:59:18 +02:00
|
|
|
var mask Name
|
2016-06-17 14:17:42 +02:00
|
|
|
if len(msg.Params) > 0 {
|
2016-06-19 13:59:18 +02:00
|
|
|
mask = Name(msg.Params[0])
|
2016-06-17 14:17:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//TODO(dan): is this used and would I put this param in the Modern doc?
|
|
|
|
// if not, can we remove it?
|
2016-06-20 14:53:45 +02:00
|
|
|
//var operatorOnly bool
|
|
|
|
//if len(msg.Params) > 1 && msg.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
|
2016-06-19 13:59:18 +02:00
|
|
|
//TODO(dan): ^ only for opers
|
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)
|
2014-02-09 03:49:52 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-19 13:59:18 +02:00
|
|
|
client.Send(nil, server.nameString, RPL_ENDOFWHO, client.nickString, mask.String(), "End of WHO list")
|
|
|
|
return false
|
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 {
|
2016-06-19 13:59:18 +02:00
|
|
|
name := NewName(msg.Params[0])
|
|
|
|
hash := server.operators[name]
|
|
|
|
password := []byte(msg.Params[1])
|
2014-02-09 19:07:40 +01:00
|
|
|
|
2016-06-19 13:59:18 +02:00
|
|
|
err := ComparePassword(hash, password)
|
2016-06-17 14:17:42 +02:00
|
|
|
|
|
|
|
if (hash == nil) || (err != nil) {
|
2016-06-19 13:59:18 +02:00
|
|
|
client.Send(nil, server.nameString, ERR_PASSWDMISMATCH, client.nickString, "Password incorrect")
|
2016-06-17 14:17:42 +02:00
|
|
|
return true
|
2014-02-24 07:21:39 +01:00
|
|
|
}
|
2014-02-09 19:07:40 +01:00
|
|
|
|
2014-02-24 07:21:39 +01:00
|
|
|
client.flags[Operator] = true
|
2016-06-20 14:53:45 +02:00
|
|
|
client.Send(nil, server.nameString, RPL_YOUREOPER, client.nickString, "You are now an IRC operator")
|
2016-06-19 13:59:18 +02:00
|
|
|
//TODO(dan): Should this be sent automagically as part of setting the flag/mode?
|
|
|
|
modech := ModeChanges{&ModeChange{
|
2014-04-15 17:49:52 +02:00
|
|
|
mode: Operator,
|
|
|
|
op: Add,
|
2016-06-19 13:59:18 +02:00
|
|
|
}}
|
|
|
|
client.Send(nil, server.nameString, "MODE", client.nickString, client.nickString, modech.String())
|
|
|
|
return false
|
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 {
|
2016-06-19 13:59:18 +02:00
|
|
|
isAway = true
|
|
|
|
text = msg.Params[0]
|
2016-06-17 14:17:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
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-19 13:59:18 +02:00
|
|
|
client.Send(nil, server.nameString, RPL_NOWAWAY, client.nickString, "You have been marked as being away")
|
2014-02-12 00:44:58 +01:00
|
|
|
} else {
|
2014-04-15 17:49:52 +02:00
|
|
|
op = Remove
|
2016-06-19 13:59:18 +02:00
|
|
|
client.Send(nil, server.nameString, RPL_UNAWAY, client.nickString, "You are no longer marked as being away")
|
2014-02-12 00:44:58 +01:00
|
|
|
}
|
2016-06-19 13:59:18 +02:00
|
|
|
//TODO(dan): Should this be sent automagically as part of setting the flag/mode?
|
|
|
|
modech := ModeChanges{&ModeChange{
|
2014-04-15 17:49:52 +02:00
|
|
|
mode: Away,
|
|
|
|
op: op,
|
2016-06-19 13:59:18 +02:00
|
|
|
}}
|
|
|
|
client.Send(nil, server.nameString, "MODE", client.nickString, client.nickString, modech.String())
|
|
|
|
return false
|
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 {
|
2016-06-19 13:59:18 +02:00
|
|
|
var nicks = 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 {
|
2016-06-19 13:59:18 +02:00
|
|
|
if iclient := server.clients.Get(Name(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-19 13:59:18 +02:00
|
|
|
client.Send(nil, server.nameString, RPL_ISON, client.nickString, strings.Join(nicks, " "))
|
|
|
|
return false
|
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???
|
2016-06-20 14:53:45 +02:00
|
|
|
//var target string
|
|
|
|
//if len(msg.Params) > 0 {
|
|
|
|
// target = msg.Params[0]
|
|
|
|
//}
|
2016-06-17 14:17:42 +02:00
|
|
|
|
2016-06-19 13:59:18 +02:00
|
|
|
server.MOTD(client)
|
|
|
|
return false
|
2014-02-12 01:35:32 +01:00
|
|
|
}
|
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 {
|
2016-06-19 13:59:18 +02:00
|
|
|
targets := strings.Split(msg.Params[0], ",")
|
|
|
|
message := msg.Params[1]
|
2016-06-17 14:17:42 +02:00
|
|
|
|
2016-06-19 13:59:18 +02:00
|
|
|
var target Name
|
|
|
|
for _, targetString := range targets {
|
|
|
|
target = Name(targetString)
|
|
|
|
if target.IsChannel() {
|
|
|
|
channel := server.channels.Get(target)
|
|
|
|
if channel == nil {
|
|
|
|
// errors silently ignored with NOTICE as per RFC
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
channel.PrivMsg(client, message)
|
|
|
|
} else {
|
|
|
|
user := server.clients.Get(target)
|
|
|
|
if user == nil {
|
|
|
|
// errors silently ignored with NOTICE as per RFC
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
user.Send(nil, client.nickMaskString, "NOTICE", user.nickString, message)
|
2014-02-12 02:11:59 +01:00
|
|
|
}
|
|
|
|
}
|
2016-06-19 13:59:18 +02:00
|
|
|
return false
|
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 {
|
2016-06-19 13:59:18 +02:00
|
|
|
channels := strings.Split(msg.Params[0], ",")
|
|
|
|
users := strings.Split(msg.Params[1], ",")
|
2016-06-17 14:17:42 +02:00
|
|
|
if (len(channels) != len(users)) && (len(users) != 1) {
|
2016-06-19 13:59:18 +02:00
|
|
|
client.Send(nil, server.nameString, ERR_NEEDMOREPARAMS, client.nickString, "KICK", "Not enough parameters")
|
2016-06-17 14:17:42 +02:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2016-06-19 13:59:18 +02:00
|
|
|
kicks := make(map[string]string)
|
2016-06-17 14:17:42 +02:00
|
|
|
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 {
|
2016-06-19 13:59:18 +02:00
|
|
|
channel := server.channels.Get(Name(chname))
|
2014-02-17 08:29:11 +01:00
|
|
|
if channel == nil {
|
2016-06-19 13:59:18 +02:00
|
|
|
client.Send(nil, server.nameString, ERR_NOSUCHCHANNEL, client.nickString, chname, "No such channel")
|
2014-02-17 08:29:11 +01:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2016-06-19 13:59:18 +02:00
|
|
|
target := server.clients.Get(Name(nickname))
|
2014-02-17 08:29:11 +01:00
|
|
|
if target == nil {
|
2016-06-19 13:59:18 +02:00
|
|
|
client.Send(nil, server.nameString, ERR_NOSUCHNICK, nickname, "No such nick")
|
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
|
2016-06-30 07:43:27 +02:00
|
|
|
//TODO(dan): split this into a separate function that checks if users have privs
|
|
|
|
// over other users, useful for things like -aoh as well
|
2016-04-14 01:35:36 +02:00
|
|
|
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 == "" {
|
2016-06-30 07:43:27 +02:00
|
|
|
comment = nickname
|
2016-06-17 14:17:42 +02:00
|
|
|
}
|
2016-06-30 07:43:27 +02:00
|
|
|
channel.Kick(client, target, comment)
|
2016-04-14 01:35:36 +02:00
|
|
|
} else {
|
2016-06-19 13:59:18 +02:00
|
|
|
client.Send(nil, client.server.nameString, ERR_CHANOPRIVSNEEDED, chname, "You're not a channel operator")
|
2016-04-14 01:35:36 +02:00
|
|
|
}
|
2014-02-17 08:29:11 +01:00
|
|
|
}
|
2016-06-19 13:59:18 +02:00
|
|
|
return false
|
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 {
|
2016-06-19 13:59:18 +02:00
|
|
|
var channels []string
|
|
|
|
if len(msg.Params) > 0 {
|
|
|
|
channels = strings.Split(msg.Params[0], ",")
|
2016-06-17 14:17:42 +02:00
|
|
|
}
|
2016-06-19 13:59:18 +02:00
|
|
|
var target string
|
|
|
|
if len(msg.Params) > 1 {
|
|
|
|
target = msg.Params[1]
|
2016-06-17 14:17:42 +02:00
|
|
|
}
|
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 != "" {
|
2016-06-19 13:59:18 +02:00
|
|
|
client.Send(nil, server.nameString, ERR_NOSUCHSERVER, client.nickString, target, "No such server")
|
|
|
|
return false
|
2014-02-17 08:51:27 +01:00
|
|
|
}
|
|
|
|
|
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)
|
2014-02-17 08:51:27 +01:00
|
|
|
}
|
|
|
|
} else {
|
2016-06-17 14:17:42 +02:00
|
|
|
for _, chname := range channels {
|
2016-06-19 13:59:18 +02:00
|
|
|
channel := server.channels.Get(Name(chname))
|
2016-04-14 14:33:38 +02:00
|
|
|
if channel == nil || (!client.flags[Operator] && channel.flags[Secret]) {
|
2016-06-19 13:59:18 +02:00
|
|
|
client.Send(nil, server.nameString, ERR_NOSUCHCHANNEL, client.nickString, chname, "No such channel")
|
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
|
|
|
}
|
|
|
|
}
|
2016-06-19 13:59:18 +02:00
|
|
|
client.Send(nil, server.nameString, RPL_LISTEND, client.nickString, "End of LIST")
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
func (target *Client) RplList(channel *Channel) {
|
|
|
|
// get the correct number of channel members
|
|
|
|
var memberCount int
|
|
|
|
if target.flags[Operator] || channel.members.Has(target) {
|
|
|
|
memberCount = len(channel.members)
|
|
|
|
} else {
|
|
|
|
for member := range channel.members {
|
|
|
|
if !member.flags[Invisible] {
|
|
|
|
memberCount += 1
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
target.Send(nil, target.server.nameString, RPL_LIST, target.nickString, channel.nameString, string(memberCount), channel.topic)
|
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 {
|
2016-06-19 13:59:18 +02:00
|
|
|
var channels []string
|
|
|
|
if len(msg.Params) > 0 {
|
|
|
|
channels = strings.Split(msg.Params[0], ",")
|
2016-06-17 14:17:42 +02:00
|
|
|
}
|
2016-06-20 14:53:45 +02:00
|
|
|
//var target string
|
|
|
|
//if len(msg.Params) > 1 {
|
|
|
|
// target = msg.Params[1]
|
|
|
|
//}
|
2016-06-17 14:17:42 +02:00
|
|
|
|
|
|
|
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 {
|
2016-06-19 13:59:18 +02:00
|
|
|
channel := server.channels.Get(Name(chname))
|
2014-02-18 06:02:03 +01:00
|
|
|
if channel == nil {
|
2016-06-19 13:59:18 +02:00
|
|
|
client.Send(nil, server.nameString, ERR_NOSUCHCHANNEL, client.nickString, chname, "No such channel")
|
2014-02-18 06:02:03 +01:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
channel.Names(client)
|
|
|
|
}
|
2016-06-19 13:59:18 +02:00
|
|
|
return false
|
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 {
|
2016-06-19 13:59:18 +02:00
|
|
|
var target string
|
|
|
|
if len(msg.Params) > 0 {
|
|
|
|
target = msg.Params[0]
|
2016-06-17 14:17:42 +02:00
|
|
|
}
|
2016-06-19 13:59:18 +02:00
|
|
|
if (target != "") && (Name(target) != server.name) {
|
|
|
|
client.Send(nil, server.nameString, ERR_NOSUCHSERVER, client.nickString, target, "No such server")
|
|
|
|
return false
|
2014-02-25 07:04:11 +01:00
|
|
|
}
|
|
|
|
|
2016-06-30 09:42:24 +02:00
|
|
|
client.Send(nil, server.nameString, RPL_VERSION, client.nickString, VER, server.nameString)
|
2016-04-14 01:55:22 +02:00
|
|
|
client.RplISupport()
|
2016-06-19 13:59:18 +02:00
|
|
|
return false
|
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 {
|
2016-06-19 13:59:18 +02:00
|
|
|
nickname := msg.Params[0]
|
|
|
|
channelName := msg.Params[1]
|
2014-02-25 16:28:09 +01:00
|
|
|
|
2016-06-19 13:59:18 +02:00
|
|
|
target := server.clients.Get(Name(nickname))
|
2014-02-25 16:28:09 +01:00
|
|
|
if target == nil {
|
2016-06-19 13:59:18 +02:00
|
|
|
client.Send(nil, server.nameString, ERR_NOSUCHNICK, client.nickString, nickname, "No such nick")
|
|
|
|
return false
|
2014-02-25 16:28:09 +01:00
|
|
|
}
|
|
|
|
|
2016-06-19 13:59:18 +02:00
|
|
|
channel := server.channels.Get(Name(channelName))
|
2014-02-25 16:28:09 +01:00
|
|
|
if channel == nil {
|
2016-06-19 13:59:18 +02:00
|
|
|
client.Send(nil, server.nameString, RPL_INVITING, client.nickString, target.nickString, channelName)
|
|
|
|
target.Send(nil, client.nickMaskString, "INVITE", target.nickString, channel.nameString)
|
|
|
|
return true
|
2014-02-25 16:28:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
channel.Invite(target, client)
|
2016-06-19 13:59:18 +02:00
|
|
|
return false
|
2014-02-25 16:28:09 +01:00
|
|
|
}
|
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 {
|
2016-06-19 13:59:18 +02:00
|
|
|
var target string
|
2016-06-17 14:17:42 +02:00
|
|
|
if len(msg.Params) > 0 {
|
2016-06-19 13:59:18 +02:00
|
|
|
target = msg.Params[0]
|
2016-06-17 14:17:42 +02:00
|
|
|
}
|
2016-06-19 13:59:18 +02:00
|
|
|
if (target != "") && (Name(target) != server.name) {
|
|
|
|
client.Send(nil, server.nameString, ERR_NOSUCHSERVER, client.nickString, target, "No such server")
|
|
|
|
return false
|
2014-02-25 18:10:16 +01:00
|
|
|
}
|
2016-06-19 13:59:18 +02:00
|
|
|
client.Send(nil, server.nameString, RPL_TIME, client.nickString, server.nameString, time.Now().Format(time.RFC1123))
|
|
|
|
return false
|
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 {
|
2016-06-19 13:59:18 +02:00
|
|
|
nickname := msg.Params[0]
|
|
|
|
comment := msg.Params[1]
|
2016-06-17 14:17:42 +02:00
|
|
|
|
2016-06-19 13:59:18 +02:00
|
|
|
target := server.clients.Get(Name(nickname))
|
2014-02-25 18:10:16 +01:00
|
|
|
if target == nil {
|
2016-06-19 13:59:18 +02:00
|
|
|
client.Send(nil, client.server.nameString, ERR_NOSUCHNICK, nickname, "No such nick")
|
|
|
|
return false
|
2014-02-25 18:10:16 +01:00
|
|
|
}
|
|
|
|
|
2016-06-19 13:59:18 +02:00
|
|
|
quitMsg := fmt.Sprintf("Killed (%s (%s))", client.nickString, comment)
|
|
|
|
target.Quit(quitMsg)
|
|
|
|
target.destroy()
|
|
|
|
return false
|
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 {
|
2016-06-19 13:59:18 +02:00
|
|
|
nicknames := strings.Split(msg.Params[0], ",")
|
2016-06-17 14:17:42 +02:00
|
|
|
|
2016-06-19 13:59:18 +02:00
|
|
|
var count int64
|
2016-06-17 14:17:42 +02:00
|
|
|
if len(msg.Params) > 1 {
|
|
|
|
count, _ = strconv.ParseInt(msg.Params[1], 10, 64)
|
|
|
|
}
|
2016-06-20 14:53:45 +02:00
|
|
|
//var target string
|
|
|
|
//if len(msg.Params) > 2 {
|
|
|
|
// target = msg.Params[2]
|
|
|
|
//}
|
2016-06-17 14:17:42 +02:00
|
|
|
for _, nickname := range nicknames {
|
2016-06-19 13:59:18 +02:00
|
|
|
results := server.whoWas.Find(Name(nickname), count)
|
2014-03-06 22:55:25 +01:00
|
|
|
if len(results) == 0 {
|
2016-06-19 13:59:18 +02:00
|
|
|
client.Send(nil, server.nameString, ERR_WASNOSUCHNICK, client.nickString, nickname, "There was no such nickname")
|
2014-03-06 22:55:25 +01:00
|
|
|
} else {
|
|
|
|
for _, whoWas := range results {
|
2016-06-19 13:59:18 +02:00
|
|
|
client.Send(nil, server.nameString, RPL_WHOWASUSER, client.nickString, whoWas.nickname.String(), whoWas.username.String(), whoWas.hostname.String(), "*", whoWas.realname)
|
2014-03-06 22:55:25 +01:00
|
|
|
}
|
|
|
|
}
|
2016-06-19 13:59:18 +02:00
|
|
|
client.Send(nil, server.nameString, RPL_ENDOFWHOWAS, client.nickString, nickname, "End of WHOWAS")
|
2014-03-06 21:14:21 +01:00
|
|
|
}
|
2016-06-19 13:59:18 +02:00
|
|
|
return false
|
2014-03-06 21:14:21 +01:00
|
|
|
}
|