2012-04-07 11:44:59 -07:00
|
|
|
package irc
|
|
|
|
|
|
|
|
import (
|
2014-02-11 16:35:32 -08:00
|
|
|
"bufio"
|
2014-02-25 11:11:34 -08:00
|
|
|
"database/sql"
|
2014-02-08 17:10:04 -08:00
|
|
|
"fmt"
|
2012-04-07 11:44:59 -07:00
|
|
|
"log"
|
|
|
|
"net"
|
2014-02-11 16:35:32 -08:00
|
|
|
"os"
|
2014-02-25 11:11:34 -08:00
|
|
|
"os/signal"
|
2014-02-23 10:04:31 -08:00
|
|
|
"runtime"
|
|
|
|
"runtime/debug"
|
|
|
|
"runtime/pprof"
|
2014-02-17 18:10:52 -08:00
|
|
|
"strings"
|
2014-03-02 11:36:00 -08:00
|
|
|
"syscall"
|
2012-04-17 22:21:41 -07:00
|
|
|
"time"
|
2012-04-07 11:44:59 -07:00
|
|
|
)
|
|
|
|
|
2014-03-12 17:52:25 -07:00
|
|
|
type ServerCommand interface {
|
|
|
|
Command
|
|
|
|
HandleServer(*Server)
|
|
|
|
}
|
|
|
|
|
|
|
|
type RegServerCommand interface {
|
|
|
|
Command
|
|
|
|
HandleRegServer(*Server)
|
|
|
|
}
|
2014-03-08 14:20:36 -08:00
|
|
|
|
2012-04-07 11:44:59 -07:00
|
|
|
type Server struct {
|
2014-02-09 10:07:40 -08:00
|
|
|
channels ChannelNameMap
|
2014-03-06 11:56:32 -08:00
|
|
|
clients *ClientLookupSet
|
2014-02-13 20:08:16 -08:00
|
|
|
commands chan Command
|
2014-02-09 10:07:40 -08:00
|
|
|
ctime time.Time
|
2014-02-25 11:11:34 -08:00
|
|
|
db *sql.DB
|
2014-02-18 11:22:56 -08:00
|
|
|
idle chan *Client
|
2014-02-11 16:35:32 -08:00
|
|
|
motdFile string
|
2014-03-09 13:45:36 -07:00
|
|
|
name Name
|
2014-02-20 13:03:33 -08:00
|
|
|
newConns chan net.Conn
|
2014-03-09 13:45:36 -07:00
|
|
|
operators map[Name][]byte
|
2014-02-23 22:21:39 -08:00
|
|
|
password []byte
|
2014-02-25 11:11:34 -08:00
|
|
|
signals chan os.Signal
|
2014-03-06 13:55:25 -08:00
|
|
|
whoWas *WhoWasList
|
2014-03-13 09:55:46 +01:00
|
|
|
theaters map[Name][]byte
|
2012-04-17 18:16:57 -07:00
|
|
|
}
|
|
|
|
|
2014-03-12 17:52:25 -07:00
|
|
|
var (
|
|
|
|
SERVER_SIGNALS = []os.Signal{syscall.SIGINT, syscall.SIGHUP,
|
|
|
|
syscall.SIGTERM, syscall.SIGQUIT}
|
|
|
|
)
|
|
|
|
|
2014-02-09 07:53:42 -08:00
|
|
|
func NewServer(config *Config) *Server {
|
2012-12-09 12:51:50 -08:00
|
|
|
server := &Server{
|
2014-02-09 10:07:40 -08:00
|
|
|
channels: make(ChannelNameMap),
|
2014-03-06 11:56:32 -08:00
|
|
|
clients: NewClientLookupSet(),
|
2014-03-08 14:20:36 -08:00
|
|
|
commands: make(chan Command),
|
2014-02-09 10:07:40 -08:00
|
|
|
ctime: time.Now(),
|
2014-03-02 11:41:24 -08:00
|
|
|
db: OpenDB(config.Server.Database),
|
2014-03-08 14:20:36 -08:00
|
|
|
idle: make(chan *Client),
|
2014-03-01 14:34:51 -08:00
|
|
|
motdFile: config.Server.MOTD,
|
2014-03-09 13:45:36 -07:00
|
|
|
name: NewName(config.Server.Name),
|
2014-03-08 14:20:36 -08:00
|
|
|
newConns: make(chan net.Conn),
|
2014-03-01 14:34:51 -08:00
|
|
|
operators: config.Operators(),
|
2014-03-08 14:20:36 -08:00
|
|
|
signals: make(chan os.Signal, len(SERVER_SIGNALS)),
|
2014-03-06 13:55:25 -08:00
|
|
|
whoWas: NewWhoWasList(100),
|
2014-03-13 09:55:46 +01:00
|
|
|
theaters: config.Theaters(),
|
2012-12-15 14:34:20 -08:00
|
|
|
}
|
2014-02-09 10:07:40 -08:00
|
|
|
|
2014-03-06 11:00:48 -08:00
|
|
|
if config.Server.Password != "" {
|
|
|
|
server.password = config.Server.PasswordBytes()
|
|
|
|
}
|
|
|
|
|
2014-02-25 15:57:35 -08:00
|
|
|
server.loadChannels()
|
|
|
|
|
2014-03-01 14:34:51 -08:00
|
|
|
for _, addr := range config.Server.Listen {
|
2014-03-13 17:19:39 -07:00
|
|
|
server.listen(addr)
|
2014-02-25 15:57:35 -08:00
|
|
|
}
|
|
|
|
|
2014-03-08 14:20:36 -08:00
|
|
|
signal.Notify(server.signals, SERVER_SIGNALS...)
|
2014-03-02 11:51:29 -08:00
|
|
|
|
2014-02-25 15:57:35 -08:00
|
|
|
return server
|
|
|
|
}
|
|
|
|
|
2014-03-07 18:14:02 -08:00
|
|
|
func loadChannelList(channel *Channel, list string, maskMode ChannelMode) {
|
|
|
|
if list == "" {
|
|
|
|
return
|
|
|
|
}
|
2014-03-09 13:45:36 -07:00
|
|
|
channel.lists[maskMode].AddAll(NewNames(strings.Split(list, " ")))
|
2014-03-07 18:14:02 -08:00
|
|
|
}
|
|
|
|
|
2014-02-25 15:57:35 -08:00
|
|
|
func (server *Server) loadChannels() {
|
|
|
|
rows, err := server.db.Query(`
|
2014-03-07 18:14:02 -08:00
|
|
|
SELECT name, flags, key, topic, user_limit, ban_list, except_list,
|
|
|
|
invite_list
|
2014-02-25 11:11:34 -08:00
|
|
|
FROM channel`)
|
|
|
|
if err != nil {
|
2014-03-05 23:07:55 -08:00
|
|
|
log.Fatal("error loading channels: ", err)
|
2014-02-25 11:11:34 -08:00
|
|
|
}
|
|
|
|
for rows.Next() {
|
2014-03-13 13:18:40 -07:00
|
|
|
var name, flags, key, topic string
|
2014-02-25 11:11:34 -08:00
|
|
|
var userLimit uint64
|
2014-03-07 18:14:02 -08:00
|
|
|
var banList, exceptList, inviteList string
|
|
|
|
err = rows.Scan(&name, &flags, &key, &topic, &userLimit, &banList,
|
|
|
|
&exceptList, &inviteList)
|
2014-02-25 11:11:34 -08:00
|
|
|
if err != nil {
|
2014-03-07 18:14:02 -08:00
|
|
|
log.Println("Server.loadChannels:", err)
|
2014-02-25 11:11:34 -08:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2014-03-13 13:18:40 -07:00
|
|
|
channel := NewChannel(server, NewName(name))
|
2014-02-25 15:57:35 -08:00
|
|
|
for _, flag := range flags {
|
2014-02-25 11:11:34 -08:00
|
|
|
channel.flags[ChannelMode(flag)] = true
|
|
|
|
}
|
2014-03-13 13:18:40 -07:00
|
|
|
channel.key = NewText(key)
|
|
|
|
channel.topic = NewText(topic)
|
2014-02-25 11:11:34 -08:00
|
|
|
channel.userLimit = userLimit
|
2014-03-07 18:14:02 -08:00
|
|
|
loadChannelList(channel, banList, BanMask)
|
|
|
|
loadChannelList(channel, exceptList, ExceptMask)
|
|
|
|
loadChannelList(channel, inviteList, InviteMask)
|
2014-02-25 11:11:34 -08:00
|
|
|
}
|
2013-06-02 22:07:50 -07:00
|
|
|
}
|
|
|
|
|
2014-02-24 17:45:04 -08:00
|
|
|
func (server *Server) processCommand(cmd Command) {
|
2014-02-23 19:13:45 -08:00
|
|
|
client := cmd.Client()
|
2014-03-28 13:47:49 -07:00
|
|
|
Log.debug.Printf("%s → %+v", client, cmd)
|
2014-02-23 19:13:45 -08:00
|
|
|
|
2014-03-12 17:52:25 -07:00
|
|
|
if !client.registered {
|
2014-02-23 19:13:45 -08:00
|
|
|
regCmd, ok := cmd.(RegServerCommand)
|
|
|
|
if !ok {
|
|
|
|
client.Quit("unexpected command")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
regCmd.HandleRegServer(server)
|
2014-03-12 17:52:25 -07:00
|
|
|
return
|
|
|
|
}
|
2014-02-23 19:13:45 -08:00
|
|
|
|
2014-03-12 17:52:25 -07:00
|
|
|
srvCmd, ok := cmd.(ServerCommand)
|
|
|
|
if !ok {
|
|
|
|
client.ErrUnknownCommand(cmd.Code())
|
|
|
|
return
|
|
|
|
}
|
|
|
|
switch srvCmd.(type) {
|
|
|
|
case *PingCommand, *PongCommand:
|
|
|
|
client.Touch()
|
2014-02-23 19:13:45 -08:00
|
|
|
|
2014-03-12 17:52:25 -07:00
|
|
|
case *QuitCommand:
|
|
|
|
// no-op
|
2014-02-23 19:13:45 -08:00
|
|
|
|
2014-03-12 17:52:25 -07:00
|
|
|
default:
|
|
|
|
client.Active()
|
|
|
|
client.Touch()
|
2014-02-23 19:13:45 -08:00
|
|
|
}
|
2014-03-12 17:52:25 -07:00
|
|
|
srvCmd.HandleServer(server)
|
2014-02-23 19:13:45 -08:00
|
|
|
}
|
|
|
|
|
2014-03-02 11:36:00 -08:00
|
|
|
func (server *Server) Shutdown() {
|
|
|
|
server.db.Close()
|
2014-03-06 11:56:32 -08:00
|
|
|
for _, client := range server.clients.byNick {
|
2014-03-02 11:36:00 -08:00
|
|
|
client.Reply(RplNotice(server, client, "shutting down"))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-23 19:13:45 -08:00
|
|
|
func (server *Server) Run() {
|
2014-02-25 11:11:34 -08:00
|
|
|
done := false
|
|
|
|
for !done {
|
2014-02-16 22:38:43 -08:00
|
|
|
select {
|
2014-02-25 11:11:34 -08:00
|
|
|
case <-server.signals:
|
2014-03-02 11:36:00 -08:00
|
|
|
server.Shutdown()
|
2014-02-25 11:11:34 -08:00
|
|
|
done = true
|
|
|
|
|
2014-02-20 13:03:33 -08:00
|
|
|
case conn := <-server.newConns:
|
|
|
|
NewClient(server, conn)
|
|
|
|
|
2014-02-23 22:21:39 -08:00
|
|
|
case cmd := <-server.commands:
|
2014-02-24 17:45:04 -08:00
|
|
|
server.processCommand(cmd)
|
2014-02-23 22:21:39 -08:00
|
|
|
|
2014-02-18 11:22:56 -08:00
|
|
|
case client := <-server.idle:
|
|
|
|
client.Idle()
|
2014-02-14 18:28:36 -08:00
|
|
|
}
|
2014-02-13 18:39:33 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-19 19:30:49 -08:00
|
|
|
//
|
|
|
|
// listen goroutine
|
|
|
|
//
|
|
|
|
|
2014-03-01 14:34:51 -08:00
|
|
|
func (s *Server) listen(addr string) {
|
|
|
|
listener, err := net.Listen("tcp", addr)
|
2012-04-07 11:44:59 -07:00
|
|
|
if err != nil {
|
2014-02-18 10:22:40 -08:00
|
|
|
log.Fatal(s, "listen error: ", err)
|
2012-04-07 11:44:59 -07:00
|
|
|
}
|
|
|
|
|
2014-03-08 15:01:15 -08:00
|
|
|
Log.info.Printf("%s listening on %s", s, addr)
|
2012-12-08 22:54:58 -08:00
|
|
|
|
2014-03-13 17:19:39 -07: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-16 22:30:01 -08:00
|
|
|
|
2014-03-13 17:19:39 -07:00
|
|
|
s.newConns <- conn
|
|
|
|
}
|
|
|
|
}()
|
2012-12-08 22:54:58 -08:00
|
|
|
}
|
|
|
|
|
2014-02-14 18:28:36 -08:00
|
|
|
//
|
2012-12-08 22:54:58 -08:00
|
|
|
// server functionality
|
2014-02-14 18:28:36 -08:00
|
|
|
//
|
2012-12-08 22:54:58 -08:00
|
|
|
|
2012-12-15 14:34:20 -08:00
|
|
|
func (s *Server) tryRegister(c *Client) {
|
2014-03-12 17:52:25 -07:00
|
|
|
if c.registered || !c.HasNick() || !c.HasUsername() ||
|
|
|
|
(c.capState == CapNegotiating) {
|
|
|
|
return
|
2012-12-15 14:34:20 -08:00
|
|
|
}
|
2014-03-12 17:52:25 -07:00
|
|
|
|
|
|
|
c.Register()
|
|
|
|
c.RplWelcome()
|
|
|
|
c.RplYourHost()
|
|
|
|
c.RplCreated()
|
|
|
|
c.RplMyInfo()
|
|
|
|
s.MOTD(c)
|
2012-12-15 14:34:20 -08:00
|
|
|
}
|
|
|
|
|
2014-02-11 15:33:02 -08:00
|
|
|
func (server *Server) MOTD(client *Client) {
|
2014-02-11 16:35:32 -08:00
|
|
|
if server.motdFile == "" {
|
2014-02-19 22:20:34 -08:00
|
|
|
client.ErrNoMOTD()
|
2014-02-11 16:35:32 -08:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
file, err := os.Open(server.motdFile)
|
|
|
|
if err != nil {
|
2014-02-19 22:20:34 -08:00
|
|
|
client.ErrNoMOTD()
|
2014-02-11 16:35:32 -08:00
|
|
|
return
|
|
|
|
}
|
|
|
|
defer file.Close()
|
|
|
|
|
2014-02-19 22:20:34 -08:00
|
|
|
client.RplMOTDStart()
|
2014-02-11 16:35:32 -08:00
|
|
|
reader := bufio.NewReader(file)
|
|
|
|
for {
|
|
|
|
line, err := reader.ReadString('\n')
|
|
|
|
if err != nil {
|
|
|
|
break
|
|
|
|
}
|
2014-02-17 18:10:52 -08:00
|
|
|
line = strings.TrimRight(line, "\r\n")
|
2014-02-11 16:35:32 -08:00
|
|
|
|
|
|
|
if len(line) > 80 {
|
|
|
|
for len(line) > 80 {
|
2014-02-19 22:20:34 -08:00
|
|
|
client.RplMOTD(line[0:80])
|
2014-02-11 16:35:32 -08:00
|
|
|
line = line[80:]
|
|
|
|
}
|
|
|
|
if len(line) > 0 {
|
2014-02-19 22:20:34 -08:00
|
|
|
client.RplMOTD(line)
|
2014-02-11 16:35:32 -08:00
|
|
|
}
|
|
|
|
} else {
|
2014-02-19 22:20:34 -08:00
|
|
|
client.RplMOTD(line)
|
2014-02-11 16:35:32 -08:00
|
|
|
}
|
|
|
|
}
|
2014-02-19 22:20:34 -08:00
|
|
|
client.RplMOTDEnd()
|
2014-02-11 15:33:02 -08:00
|
|
|
}
|
|
|
|
|
2014-03-09 13:45:36 -07:00
|
|
|
func (s *Server) Id() Name {
|
2013-05-11 13:55:01 -07:00
|
|
|
return s.name
|
|
|
|
}
|
|
|
|
|
2013-05-11 18:28:18 -07:00
|
|
|
func (s *Server) String() string {
|
2014-03-09 13:45:36 -07:00
|
|
|
return s.name.String()
|
2012-12-15 14:34:20 -08:00
|
|
|
}
|
|
|
|
|
2014-03-09 13:45:36 -07:00
|
|
|
func (s *Server) Nick() Name {
|
2014-02-08 17:10:04 -08:00
|
|
|
return s.Id()
|
2012-12-16 19:13:53 -08:00
|
|
|
}
|
|
|
|
|
2012-12-15 14:34:20 -08:00
|
|
|
//
|
2014-02-28 19:21:33 -08:00
|
|
|
// registration commands
|
2012-12-15 14:34:20 -08:00
|
|
|
//
|
|
|
|
|
2014-02-28 19:21:33 -08:00
|
|
|
func (msg *PassCommand) HandleRegServer(server *Server) {
|
2014-02-23 22:21:39 -08:00
|
|
|
client := msg.Client()
|
2014-02-24 09:41:09 -08:00
|
|
|
if msg.err != nil {
|
2014-02-19 22:20:34 -08:00
|
|
|
client.ErrPasswdMismatch()
|
2014-02-23 17:04:24 -08:00
|
|
|
client.Quit("bad password")
|
2014-02-14 18:28:36 -08:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-02-28 19:21:33 -08:00
|
|
|
client.authorized = true
|
2012-12-15 14:34:20 -08:00
|
|
|
}
|
|
|
|
|
2014-02-23 17:04:24 -08:00
|
|
|
func (msg *ProxyCommand) HandleRegServer(server *Server) {
|
|
|
|
msg.Client().hostname = msg.hostname
|
|
|
|
}
|
|
|
|
|
2014-02-17 22:10:48 -08:00
|
|
|
func (msg *RFC1459UserCommand) HandleRegServer(server *Server) {
|
2014-02-28 19:21:33 -08:00
|
|
|
client := msg.Client()
|
|
|
|
if !client.authorized {
|
|
|
|
client.ErrPasswdMismatch()
|
|
|
|
client.Quit("bad password")
|
|
|
|
return
|
|
|
|
}
|
2014-03-06 17:07:23 -08:00
|
|
|
msg.setUserInfo(server)
|
2014-02-17 22:10:48 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
func (msg *RFC2812UserCommand) HandleRegServer(server *Server) {
|
|
|
|
client := msg.Client()
|
2014-02-28 19:21:33 -08:00
|
|
|
if !client.authorized {
|
|
|
|
client.ErrPasswdMismatch()
|
|
|
|
client.Quit("bad password")
|
|
|
|
return
|
|
|
|
}
|
2014-02-17 22:10:48 -08:00
|
|
|
flags := msg.Flags()
|
|
|
|
if len(flags) > 0 {
|
2014-03-13 13:18:40 -07:00
|
|
|
for _, mode := range flags {
|
2014-02-17 22:10:48 -08:00
|
|
|
client.flags[mode] = true
|
|
|
|
}
|
2014-02-19 22:20:34 -08:00
|
|
|
client.RplUModeIs(client)
|
2014-02-17 22:10:48 -08:00
|
|
|
}
|
2014-03-06 17:07:23 -08:00
|
|
|
msg.setUserInfo(server)
|
2014-02-17 22:10:48 -08:00
|
|
|
}
|
|
|
|
|
2014-03-06 17:07:23 -08:00
|
|
|
func (msg *UserCommand) setUserInfo(server *Server) {
|
2014-02-16 22:20:42 -08:00
|
|
|
client := msg.Client()
|
2014-02-28 19:21:33 -08:00
|
|
|
if client.capState == CapNegotiating {
|
|
|
|
client.capState = CapNegotiated
|
|
|
|
}
|
2014-03-06 17:44:37 -08:00
|
|
|
|
2014-03-06 16:51:33 -08:00
|
|
|
server.clients.Remove(client)
|
2014-02-17 22:10:48 -08:00
|
|
|
client.username, client.realname = msg.username, msg.realname
|
2014-03-06 16:51:33 -08:00
|
|
|
server.clients.Add(client)
|
2014-03-06 17:44:37 -08:00
|
|
|
|
2014-02-16 22:20:42 -08:00
|
|
|
server.tryRegister(client)
|
2014-02-14 18:28:36 -08:00
|
|
|
}
|
|
|
|
|
2014-02-18 13:25:21 -08:00
|
|
|
func (msg *QuitCommand) HandleRegServer(server *Server) {
|
|
|
|
msg.Client().Quit(msg.message)
|
|
|
|
}
|
|
|
|
|
2014-02-14 18:28:36 -08:00
|
|
|
//
|
|
|
|
// normal commands
|
|
|
|
//
|
|
|
|
|
|
|
|
func (m *PassCommand) HandleServer(s *Server) {
|
2014-02-19 22:20:34 -08:00
|
|
|
m.Client().ErrAlreadyRegistered()
|
2014-02-14 18:28:36 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
func (m *PingCommand) HandleServer(s *Server) {
|
2014-02-22 11:40:32 -08:00
|
|
|
m.Client().Reply(RplPong(m.Client()))
|
2014-02-14 18:28:36 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
func (m *PongCommand) HandleServer(s *Server) {
|
|
|
|
// no-op
|
2012-12-15 14:34:20 -08:00
|
|
|
}
|
|
|
|
|
2014-02-17 22:10:48 -08:00
|
|
|
func (m *UserCommand) HandleServer(s *Server) {
|
2014-02-19 22:20:34 -08:00
|
|
|
m.Client().ErrAlreadyRegistered()
|
2012-12-08 22:54:58 -08:00
|
|
|
}
|
|
|
|
|
2014-02-16 22:20:42 -08:00
|
|
|
func (msg *QuitCommand) HandleServer(server *Server) {
|
2014-02-17 23:58:02 -08:00
|
|
|
msg.Client().Quit(msg.message)
|
2012-12-15 14:34:20 -08:00
|
|
|
}
|
|
|
|
|
2013-05-09 09:12:03 -07:00
|
|
|
func (m *JoinCommand) HandleServer(s *Server) {
|
2014-02-16 22:20:42 -08:00
|
|
|
client := m.Client()
|
2012-12-16 19:13:53 -08:00
|
|
|
|
2012-12-15 14:34:20 -08:00
|
|
|
if m.zero {
|
2014-02-16 22:20:42 -08:00
|
|
|
for channel := range client.channels {
|
2014-03-09 13:45:36 -07:00
|
|
|
channel.Part(client, client.Nick().Text())
|
2012-12-15 14:34:20 -08:00
|
|
|
}
|
2012-12-16 19:13:53 -08:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-02-18 19:31:59 -08:00
|
|
|
for name, key := range m.channels {
|
2014-03-09 13:45:36 -07:00
|
|
|
if !name.IsChannel() {
|
2014-02-21 17:19:02 -08:00
|
|
|
client.ErrNoSuchChannel(name)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2014-02-25 20:17:26 -08:00
|
|
|
channel := s.channels.Get(name)
|
2014-02-21 17:19:02 -08:00
|
|
|
if channel == nil {
|
|
|
|
channel = NewChannel(s, name)
|
|
|
|
}
|
2014-02-18 19:31:59 -08:00
|
|
|
channel.Join(client, key)
|
2012-12-08 22:54:58 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-15 20:20:37 -08:00
|
|
|
func (m *PartCommand) HandleServer(server *Server) {
|
2014-02-16 22:20:42 -08:00
|
|
|
client := m.Client()
|
2012-12-15 14:34:20 -08:00
|
|
|
for _, chname := range m.channels {
|
2014-02-25 20:17:26 -08:00
|
|
|
channel := server.channels.Get(chname)
|
2012-12-15 14:34:20 -08:00
|
|
|
|
|
|
|
if channel == nil {
|
2014-02-19 22:20:34 -08:00
|
|
|
m.Client().ErrNoSuchChannel(chname)
|
2012-12-15 14:34:20 -08:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2014-02-16 22:20:42 -08:00
|
|
|
channel.Part(client, m.Message())
|
2012-12-08 22:54:58 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-16 22:20:42 -08:00
|
|
|
func (msg *TopicCommand) HandleServer(server *Server) {
|
|
|
|
client := msg.Client()
|
2014-02-25 20:17:26 -08:00
|
|
|
channel := server.channels.Get(msg.channel)
|
2012-12-16 19:13:53 -08:00
|
|
|
if channel == nil {
|
2014-02-19 22:20:34 -08:00
|
|
|
client.ErrNoSuchChannel(msg.channel)
|
2012-12-15 14:34:20 -08:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-02-16 22:20:42 -08:00
|
|
|
if msg.setTopic {
|
|
|
|
channel.SetTopic(client, msg.topic)
|
|
|
|
} else {
|
|
|
|
channel.GetTopic(client)
|
|
|
|
}
|
2012-12-15 14:34:20 -08:00
|
|
|
}
|
|
|
|
|
2014-02-16 22:20:42 -08:00
|
|
|
func (msg *PrivMsgCommand) HandleServer(server *Server) {
|
|
|
|
client := msg.Client()
|
2014-03-09 13:45:36 -07:00
|
|
|
if msg.target.IsChannel() {
|
2014-02-25 20:17:26 -08:00
|
|
|
channel := server.channels.Get(msg.target)
|
2012-12-15 14:34:20 -08:00
|
|
|
if channel == nil {
|
2014-02-19 22:20:34 -08:00
|
|
|
client.ErrNoSuchChannel(msg.target)
|
2012-12-15 14:34:20 -08:00
|
|
|
return
|
2012-12-08 22:54:58 -08:00
|
|
|
}
|
2012-12-15 14:34:20 -08:00
|
|
|
|
2014-02-16 22:20:42 -08:00
|
|
|
channel.PrivMsg(client, msg.message)
|
2012-12-15 14:34:20 -08:00
|
|
|
return
|
2012-12-08 22:54:58 -08:00
|
|
|
}
|
2012-12-15 14:34:20 -08:00
|
|
|
|
2014-02-25 20:17:26 -08:00
|
|
|
target := server.clients.Get(msg.target)
|
2012-12-16 19:13:53 -08:00
|
|
|
if target == nil {
|
2014-02-19 22:20:34 -08:00
|
|
|
client.ErrNoSuchNick(msg.target)
|
2012-12-15 14:34:20 -08:00
|
|
|
return
|
|
|
|
}
|
2014-02-22 11:40:32 -08:00
|
|
|
target.Reply(RplPrivMsg(client, target, msg.message))
|
2014-02-17 13:22:35 -08:00
|
|
|
if target.flags[Away] {
|
2014-02-25 07:28:09 -08:00
|
|
|
client.RplAway(target)
|
2014-02-11 15:44:58 -08:00
|
|
|
}
|
2012-04-07 11:44:59 -07:00
|
|
|
}
|
2012-12-12 23:27:17 -08:00
|
|
|
|
2014-02-19 22:20:34 -08:00
|
|
|
func (client *Client) WhoisChannelsNames() []string {
|
|
|
|
chstrs := make([]string, len(client.channels))
|
|
|
|
index := 0
|
|
|
|
for channel := range client.channels {
|
|
|
|
switch {
|
|
|
|
case channel.members[client][ChannelOperator]:
|
2014-03-09 13:45:36 -07:00
|
|
|
chstrs[index] = "@" + channel.name.String()
|
2014-02-19 22:20:34 -08:00
|
|
|
|
|
|
|
case channel.members[client][Voice]:
|
2014-03-09 13:45:36 -07:00
|
|
|
chstrs[index] = "+" + channel.name.String()
|
2014-02-19 22:20:34 -08:00
|
|
|
|
|
|
|
default:
|
2014-03-09 13:45:36 -07:00
|
|
|
chstrs[index] = channel.name.String()
|
2014-02-19 22:20:34 -08:00
|
|
|
}
|
|
|
|
index += 1
|
|
|
|
}
|
|
|
|
return chstrs
|
|
|
|
}
|
|
|
|
|
2014-02-08 17:43:59 -08:00
|
|
|
func (m *WhoisCommand) HandleServer(server *Server) {
|
|
|
|
client := m.Client()
|
|
|
|
|
|
|
|
// TODO implement target query
|
|
|
|
|
|
|
|
for _, mask := range m.masks {
|
2014-03-06 11:56:32 -08:00
|
|
|
matches := server.clients.FindAll(mask)
|
|
|
|
if len(matches) == 0 {
|
2014-02-19 22:20:34 -08:00
|
|
|
client.ErrNoSuchNick(mask)
|
2014-02-17 19:08:57 -08:00
|
|
|
continue
|
|
|
|
}
|
2014-03-06 11:56:32 -08:00
|
|
|
for mclient := range matches {
|
|
|
|
client.RplWhois(mclient)
|
2014-02-08 17:43:59 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-02-08 18:14:39 -08:00
|
|
|
|
2014-03-06 11:56:32 -08:00
|
|
|
func whoChannel(client *Client, channel *Channel, friends ClientSet) {
|
2014-02-08 18:49:52 -08:00
|
|
|
for member := range channel.members {
|
2014-03-06 11:56:32 -08:00
|
|
|
if !client.flags[Invisible] || friends[client] {
|
2014-02-19 22:20:34 -08:00
|
|
|
client.RplWhoReply(channel, member)
|
2014-02-17 21:30:14 -08:00
|
|
|
}
|
2014-02-08 18:49:52 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (msg *WhoCommand) HandleServer(server *Server) {
|
|
|
|
client := msg.Client()
|
2014-03-06 11:56:32 -08:00
|
|
|
friends := client.Friends()
|
|
|
|
mask := msg.mask
|
2014-02-08 18:49:52 -08:00
|
|
|
|
2014-02-08 22:42:14 -08:00
|
|
|
if mask == "" {
|
2014-02-08 18:49:52 -08:00
|
|
|
for _, channel := range server.channels {
|
2014-03-06 11:56:32 -08:00
|
|
|
whoChannel(client, channel, friends)
|
2014-02-08 18:49:52 -08:00
|
|
|
}
|
2014-03-09 13:45:36 -07:00
|
|
|
} else if mask.IsChannel() {
|
2014-03-06 11:56:32 -08:00
|
|
|
// TODO implement wildcard matching
|
2014-02-25 20:17:26 -08:00
|
|
|
channel := server.channels.Get(mask)
|
2014-02-08 18:49:52 -08:00
|
|
|
if channel != nil {
|
2014-03-06 11:56:32 -08:00
|
|
|
whoChannel(client, channel, friends)
|
2014-02-08 18:49:52 -08:00
|
|
|
}
|
|
|
|
} else {
|
2014-03-06 11:56:32 -08:00
|
|
|
for mclient := range server.clients.FindAll(mask) {
|
2014-02-19 22:20:34 -08:00
|
|
|
client.RplWhoReply(nil, mclient)
|
2014-02-08 18:49:52 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-19 22:20:34 -08:00
|
|
|
client.RplEndOfWho(mask)
|
2014-02-08 18:49:52 -08:00
|
|
|
}
|
2014-02-09 10:07:40 -08:00
|
|
|
|
|
|
|
func (msg *OperCommand) HandleServer(server *Server) {
|
|
|
|
client := msg.Client()
|
|
|
|
|
2014-02-24 09:41:09 -08:00
|
|
|
if (msg.hash == nil) || (msg.err != nil) {
|
2014-02-23 22:21:39 -08:00
|
|
|
client.ErrPasswdMismatch()
|
|
|
|
return
|
|
|
|
}
|
2014-02-09 10:07:40 -08:00
|
|
|
|
2014-02-23 22:21:39 -08:00
|
|
|
client.flags[Operator] = true
|
2014-02-19 22:20:34 -08:00
|
|
|
client.RplYoureOper()
|
|
|
|
client.RplUModeIs(client)
|
2014-02-09 10:07:40 -08:00
|
|
|
}
|
2014-02-10 11:14:34 -08:00
|
|
|
|
2014-02-11 15:44:58 -08:00
|
|
|
func (msg *AwayCommand) HandleServer(server *Server) {
|
|
|
|
client := msg.Client()
|
2014-02-17 13:22:35 -08:00
|
|
|
if msg.away {
|
|
|
|
client.flags[Away] = true
|
|
|
|
} else {
|
|
|
|
delete(client.flags, Away)
|
|
|
|
}
|
2014-02-11 15:44:58 -08:00
|
|
|
client.awayMessage = msg.text
|
|
|
|
|
2014-02-17 13:22:35 -08:00
|
|
|
if client.flags[Away] {
|
2014-02-19 22:20:34 -08:00
|
|
|
client.RplNowAway()
|
2014-02-11 15:44:58 -08:00
|
|
|
} else {
|
2014-02-19 22:20:34 -08:00
|
|
|
client.RplUnAway()
|
2014-02-11 15:44:58 -08:00
|
|
|
}
|
|
|
|
}
|
2014-02-11 15:58:54 -08:00
|
|
|
|
|
|
|
func (msg *IsOnCommand) HandleServer(server *Server) {
|
|
|
|
client := msg.Client()
|
|
|
|
|
|
|
|
ison := make([]string, 0)
|
|
|
|
for _, nick := range msg.nicks {
|
2014-02-17 17:58:22 -08:00
|
|
|
if iclient := server.clients.Get(nick); iclient != nil {
|
2014-03-09 13:45:36 -07:00
|
|
|
ison = append(ison, iclient.Nick().String())
|
2014-02-11 15:58:54 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-19 22:20:34 -08:00
|
|
|
client.RplIsOn(ison)
|
2014-02-11 15:58:54 -08:00
|
|
|
}
|
2014-02-11 16:35:32 -08:00
|
|
|
|
|
|
|
func (msg *MOTDCommand) HandleServer(server *Server) {
|
|
|
|
server.MOTD(msg.Client())
|
|
|
|
}
|
2014-02-11 17:11:59 -08:00
|
|
|
|
|
|
|
func (msg *NoticeCommand) HandleServer(server *Server) {
|
2014-02-16 22:20:42 -08:00
|
|
|
client := msg.Client()
|
2014-03-09 13:45:36 -07:00
|
|
|
if msg.target.IsChannel() {
|
2014-02-25 20:17:26 -08:00
|
|
|
channel := server.channels.Get(msg.target)
|
2014-02-11 17:11:59 -08:00
|
|
|
if channel == nil {
|
2014-02-19 22:20:34 -08:00
|
|
|
client.ErrNoSuchChannel(msg.target)
|
2014-02-11 17:11:59 -08:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-02-16 22:20:42 -08:00
|
|
|
channel.Notice(client, msg.message)
|
2014-02-11 17:11:59 -08:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-02-17 17:58:22 -08:00
|
|
|
target := server.clients.Get(msg.target)
|
2014-02-11 17:11:59 -08:00
|
|
|
if target == nil {
|
2014-02-19 22:20:34 -08:00
|
|
|
client.ErrNoSuchNick(msg.target)
|
2014-02-11 17:11:59 -08:00
|
|
|
return
|
|
|
|
}
|
2014-02-22 11:40:32 -08:00
|
|
|
target.Reply(RplNotice(client, target, msg.message))
|
2014-02-16 17:23:47 -08:00
|
|
|
}
|
2014-02-16 23:29:11 -08:00
|
|
|
|
|
|
|
func (msg *KickCommand) HandleServer(server *Server) {
|
|
|
|
client := msg.Client()
|
|
|
|
for chname, nickname := range msg.kicks {
|
2014-02-25 20:17:26 -08:00
|
|
|
channel := server.channels.Get(chname)
|
2014-02-16 23:29:11 -08:00
|
|
|
if channel == nil {
|
2014-02-19 22:20:34 -08:00
|
|
|
client.ErrNoSuchChannel(chname)
|
2014-02-16 23:29:11 -08:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2014-02-25 20:17:26 -08:00
|
|
|
target := server.clients.Get(nickname)
|
2014-02-16 23:29:11 -08:00
|
|
|
if target == nil {
|
2014-02-19 22:20:34 -08:00
|
|
|
client.ErrNoSuchNick(nickname)
|
2014-02-16 23:29:11 -08:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
channel.Kick(client, target, msg.Comment())
|
|
|
|
}
|
|
|
|
}
|
2014-02-16 23:51:27 -08:00
|
|
|
|
|
|
|
func (msg *ListCommand) HandleServer(server *Server) {
|
|
|
|
client := msg.Client()
|
|
|
|
|
|
|
|
// TODO target server
|
|
|
|
if msg.target != "" {
|
2014-02-19 22:20:34 -08:00
|
|
|
client.ErrNoSuchServer(msg.target)
|
2014-02-16 23:51:27 -08:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(msg.channels) == 0 {
|
|
|
|
for _, channel := range server.channels {
|
2014-02-24 17:45:04 -08:00
|
|
|
if !client.flags[Operator] && channel.flags[Private] {
|
2014-02-16 23:51:27 -08:00
|
|
|
continue
|
|
|
|
}
|
2014-02-19 22:20:34 -08:00
|
|
|
client.RplList(channel)
|
2014-02-16 23:51:27 -08:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
for _, chname := range msg.channels {
|
2014-02-25 20:17:26 -08:00
|
|
|
channel := server.channels.Get(chname)
|
2014-02-24 17:45:04 -08:00
|
|
|
if channel == nil || (!client.flags[Operator] && channel.flags[Private]) {
|
2014-02-19 22:20:34 -08:00
|
|
|
client.ErrNoSuchChannel(chname)
|
2014-02-16 23:51:27 -08:00
|
|
|
continue
|
|
|
|
}
|
2014-02-19 22:20:34 -08:00
|
|
|
client.RplList(channel)
|
2014-02-16 23:51:27 -08:00
|
|
|
}
|
|
|
|
}
|
2014-02-19 22:20:34 -08:00
|
|
|
client.RplListEnd(server)
|
2014-02-16 23:51:27 -08:00
|
|
|
}
|
2014-02-17 18:10:52 -08:00
|
|
|
|
2014-02-17 21:02:03 -08:00
|
|
|
func (msg *NamesCommand) HandleServer(server *Server) {
|
|
|
|
client := msg.Client()
|
|
|
|
if len(server.channels) == 0 {
|
|
|
|
for _, channel := range server.channels {
|
|
|
|
channel.Names(client)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, chname := range msg.channels {
|
2014-02-25 20:17:26 -08:00
|
|
|
channel := server.channels.Get(chname)
|
2014-02-17 21:02:03 -08:00
|
|
|
if channel == nil {
|
2014-02-19 22:20:34 -08:00
|
|
|
client.ErrNoSuchChannel(chname)
|
2014-02-17 21:02:03 -08:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
channel.Names(client)
|
|
|
|
}
|
|
|
|
}
|
2014-02-23 10:04:31 -08:00
|
|
|
|
|
|
|
func (server *Server) Reply(target *Client, format string, args ...interface{}) {
|
2014-03-09 13:45:36 -07:00
|
|
|
target.Reply(RplPrivMsg(server, target, NewText(fmt.Sprintf(format, args...))))
|
2014-02-23 10:04:31 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
func (msg *DebugCommand) HandleServer(server *Server) {
|
|
|
|
client := msg.Client()
|
|
|
|
if !client.flags[Operator] {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
switch msg.subCommand {
|
|
|
|
case "GC":
|
|
|
|
runtime.GC()
|
|
|
|
server.Reply(client, "OK")
|
|
|
|
|
|
|
|
case "GCSTATS":
|
2014-03-28 12:35:05 -07:00
|
|
|
stats := debug.GCStats{
|
|
|
|
Pause: make([]time.Duration, 10),
|
2014-02-23 10:04:31 -08:00
|
|
|
PauseQuantiles: make([]time.Duration, 5),
|
|
|
|
}
|
2014-03-28 12:35:05 -07:00
|
|
|
debug.ReadGCStats(&stats)
|
2014-02-23 10:04:31 -08:00
|
|
|
server.Reply(client, "last GC: %s", stats.LastGC.Format(time.RFC1123))
|
|
|
|
server.Reply(client, "num GC: %d", stats.NumGC)
|
|
|
|
server.Reply(client, "pause total: %s", stats.PauseTotal)
|
|
|
|
server.Reply(client, "pause quantiles min%%: %s", stats.PauseQuantiles[0])
|
|
|
|
server.Reply(client, "pause quantiles 25%%: %s", stats.PauseQuantiles[1])
|
|
|
|
server.Reply(client, "pause quantiles 50%%: %s", stats.PauseQuantiles[2])
|
|
|
|
server.Reply(client, "pause quantiles 75%%: %s", stats.PauseQuantiles[3])
|
|
|
|
server.Reply(client, "pause quantiles max%%: %s", stats.PauseQuantiles[4])
|
|
|
|
|
|
|
|
case "NUMGOROUTINE":
|
|
|
|
count := runtime.NumGoroutine()
|
|
|
|
server.Reply(client, "num goroutines: %d", count)
|
|
|
|
|
|
|
|
case "PROFILEHEAP":
|
2014-03-28 12:35:05 -07:00
|
|
|
profFile := "ergonomadic-heap.prof"
|
|
|
|
file, err := os.Create(profFile)
|
2014-02-23 10:04:31 -08:00
|
|
|
if err != nil {
|
|
|
|
log.Printf("error: %s", err)
|
|
|
|
break
|
|
|
|
}
|
|
|
|
defer file.Close()
|
|
|
|
pprof.Lookup("heap").WriteTo(file, 0)
|
2014-03-28 12:35:05 -07:00
|
|
|
server.Reply(client, "written to %s", profFile)
|
2014-02-23 10:04:31 -08:00
|
|
|
}
|
|
|
|
}
|
2014-02-24 22:04:11 -08:00
|
|
|
|
|
|
|
func (msg *VersionCommand) HandleServer(server *Server) {
|
|
|
|
client := msg.Client()
|
|
|
|
if (msg.target != "") && (msg.target != server.name) {
|
|
|
|
client.ErrNoSuchServer(msg.target)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
client.RplVersion()
|
|
|
|
}
|
2014-02-25 07:28:09 -08:00
|
|
|
|
|
|
|
func (msg *InviteCommand) HandleServer(server *Server) {
|
|
|
|
client := msg.Client()
|
|
|
|
|
|
|
|
target := server.clients.Get(msg.nickname)
|
|
|
|
if target == nil {
|
|
|
|
client.ErrNoSuchNick(msg.nickname)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-02-25 20:17:26 -08:00
|
|
|
channel := server.channels.Get(msg.channel)
|
2014-02-25 07:28:09 -08:00
|
|
|
if channel == nil {
|
2014-03-05 22:54:50 -08:00
|
|
|
client.RplInviting(target, msg.channel)
|
|
|
|
target.Reply(RplInviteMsg(client, target, msg.channel))
|
2014-02-25 07:28:09 -08:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
channel.Invite(target, client)
|
|
|
|
}
|
2014-02-25 07:45:40 -08:00
|
|
|
|
|
|
|
func (msg *TimeCommand) HandleServer(server *Server) {
|
2014-02-25 09:10:16 -08:00
|
|
|
client := msg.Client()
|
2014-02-25 07:45:40 -08:00
|
|
|
if (msg.target != "") && (msg.target != server.name) {
|
2014-02-25 09:10:16 -08:00
|
|
|
client.ErrNoSuchServer(msg.target)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
client.RplTime()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (msg *KillCommand) HandleServer(server *Server) {
|
|
|
|
client := msg.Client()
|
|
|
|
if !client.flags[Operator] {
|
|
|
|
client.ErrNoPrivileges()
|
2014-02-25 07:45:40 -08:00
|
|
|
return
|
|
|
|
}
|
2014-02-25 09:10:16 -08:00
|
|
|
|
|
|
|
target := server.clients.Get(msg.nickname)
|
|
|
|
if target == nil {
|
|
|
|
client.ErrNoSuchNick(msg.nickname)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
quitMsg := fmt.Sprintf("KILLed by %s: %s", client.Nick(), msg.comment)
|
2014-03-09 13:45:36 -07:00
|
|
|
target.Quit(NewText(quitMsg))
|
2014-02-25 07:45:40 -08:00
|
|
|
}
|
2014-03-06 11:56:32 -08:00
|
|
|
|
2014-03-06 12:14:21 -08:00
|
|
|
func (msg *WhoWasCommand) HandleServer(server *Server) {
|
|
|
|
client := msg.Client()
|
|
|
|
for _, nickname := range msg.nicknames {
|
2014-03-06 13:55:25 -08:00
|
|
|
results := server.whoWas.Find(nickname, msg.count)
|
|
|
|
if len(results) == 0 {
|
|
|
|
client.ErrWasNoSuchNick(nickname)
|
|
|
|
} else {
|
|
|
|
for _, whoWas := range results {
|
|
|
|
client.RplWhoWasUser(whoWas)
|
|
|
|
}
|
|
|
|
}
|
2014-03-06 12:14:21 -08:00
|
|
|
client.RplEndOfWhoWas(nickname)
|
|
|
|
}
|
|
|
|
}
|