ergo/irc/reply.go

302 lines
7.7 KiB
Go
Raw Normal View History

package irc
import (
"fmt"
2012-12-09 21:51:50 +01:00
"strings"
"time"
)
type Identifier interface {
Id() string
PublicId() string
Nick() string
}
2013-05-09 20:05:10 +02:00
type Replier interface {
Replies() chan<- Reply
}
type Reply interface {
2013-06-03 07:07:50 +02:00
Format(*Client, chan<- string)
Source() Identifier
}
type BaseReply struct {
source Identifier
message string
}
func (reply *BaseReply) Source() Identifier {
return reply.source
2012-12-13 08:27:17 +01:00
}
type StringReply struct {
2013-06-03 07:07:50 +02:00
*BaseReply
code string
}
func NewStringReply(source Identifier, code string,
format string, args ...interface{}) *StringReply {
message := fmt.Sprintf(format, args...)
fullMessage := fmt.Sprintf(":%s %s %s", source.Id(), code, message)
2013-05-12 20:20:55 +02:00
return &StringReply{
2013-06-03 07:07:50 +02:00
BaseReply: &BaseReply{source, fullMessage},
2013-05-12 20:20:55 +02:00
code: code,
}
}
2013-06-03 07:07:50 +02:00
func (reply *StringReply) Format(client *Client, write chan<- string) {
write <- reply.message
}
func (reply *StringReply) String() string {
return fmt.Sprintf("Reply(source=%s, code=%s, message=%s)",
reply.source, reply.code, reply.message)
}
2012-12-13 08:27:17 +01:00
type NumericReply struct {
2013-06-03 07:07:50 +02:00
*BaseReply
code int
}
2013-05-12 20:20:55 +02:00
func NewNumericReply(source Identifier, code int, format string,
args ...interface{}) *NumericReply {
return &NumericReply{
2013-06-03 07:07:50 +02:00
BaseReply: &BaseReply{source, fmt.Sprintf(format, args...)},
2013-05-12 20:20:55 +02:00
code: code,
}
}
2013-06-03 07:07:50 +02:00
func (reply *NumericReply) Format(client *Client, write chan<- string) {
write <- reply.FormatString(client)
}
func (reply *NumericReply) FormatString(client *Client) string {
return fmt.Sprintf(":%s %03d %s %s", reply.Source().Id(), reply.code,
client.Nick(), reply.message)
}
func (reply *NumericReply) String() string {
return fmt.Sprintf("Reply(source=%s, code=%d, message=%s)",
reply.source, reply.code, reply.message)
}
2013-06-03 07:07:50 +02:00
// names reply
type NamesReply struct {
*BaseReply
channel *Channel
}
func NewNamesReply(channel *Channel) Reply {
return &NamesReply{
BaseReply: &BaseReply{
source: channel,
},
2014-02-05 04:28:24 +01:00
channel: channel,
2013-06-03 07:07:50 +02:00
}
}
const (
MAX_REPLY_LEN = 510 // 512 - CRLF
)
func joinedLen(names []string) int {
var l = len(names) - 1 // " " between names
for _, name := range names {
l += len(name)
}
return l
}
func (reply *NamesReply) Format(client *Client, write chan<- string) {
base := RplNamReply(reply.channel, []string{})
baseLen := len(base.FormatString(client))
tooLong := func(names []string) bool {
return (baseLen + joinedLen(names)) > MAX_REPLY_LEN
}
2014-02-08 22:18:11 +01:00
from, to := 0, 1
2013-06-03 07:07:50 +02:00
nicks := reply.channel.Nicks()
2014-02-08 22:18:11 +01:00
for to < len(nicks) {
if (from < (to - 1)) && tooLong(nicks[from:to]) {
RplNamReply(reply.channel, nicks[from:to-1]).Format(client, write)
from, to = to-1, to
} else {
to += 1
2013-06-03 07:07:50 +02:00
}
}
2014-02-08 22:18:11 +01:00
if from < len(nicks) {
RplNamReply(reply.channel, nicks[from:]).Format(client, write)
2013-06-03 07:07:50 +02:00
}
RplEndOfNames(reply.channel).Format(client, write)
}
2014-02-08 22:18:11 +01:00
func (reply *NamesReply) String() string {
return fmt.Sprintf("NamesReply(channel=%s, names=%s)",
reply.channel, reply.channel.Nicks())
}
2012-12-13 08:33:09 +01:00
// messaging replies
func RplPrivMsg(source Identifier, target Identifier, message string) Reply {
return NewStringReply(source, RPL_PRIVMSG, "%s :%s", target.Nick(), message)
}
2013-05-12 20:20:55 +02:00
func RplNick(source Identifier, newNick string) Reply {
return NewStringReply(source, RPL_NICK, newNick)
}
func RplPrivMsgChannel(channel *Channel, source Identifier, message string) Reply {
return NewStringReply(source, RPL_PRIVMSG, "%s :%s", channel.name, message)
2012-12-09 22:47:02 +01:00
}
2014-02-05 04:28:24 +01:00
func RplJoin(channel *Channel, client *Client) Reply {
return NewStringReply(client, RPL_JOIN, channel.name)
2012-12-13 08:27:17 +01:00
}
2014-02-05 04:28:24 +01:00
func RplPart(channel *Channel, client *Client, message string) Reply {
return NewStringReply(client, RPL_PART, "%s :%s", channel.name, message)
2012-12-13 08:27:17 +01:00
}
func RplPong(server *Server) Reply {
return NewStringReply(server, RPL_PONG, server.Id())
2012-12-13 08:27:17 +01:00
}
func RplQuit(client *Client, message string) Reply {
return NewStringReply(client, RPL_QUIT, ":%s", message)
2012-12-09 22:47:02 +01:00
}
2012-12-13 08:33:09 +01:00
func RplInviteMsg(channel *Channel, inviter *Client) Reply {
return NewStringReply(inviter, RPL_INVITE, channel.name)
2012-12-13 08:33:09 +01:00
}
// numeric replies
func RplWelcome(source Identifier, client *Client) Reply {
2012-12-13 08:27:17 +01:00
return NewNumericReply(source, RPL_WELCOME,
"Welcome to the Internet Relay Network %s", client.Id())
}
2013-06-03 07:07:50 +02:00
func RplYourHost(server *Server) Reply {
2012-12-13 08:27:17 +01:00
return NewNumericReply(server, RPL_YOURHOST,
2013-05-11 22:55:01 +02:00
"Your host is %s, running version %s", server.name, VERSION)
}
func RplCreated(server *Server) Reply {
2012-12-13 08:27:17 +01:00
return NewNumericReply(server, RPL_CREATED,
"This server was created %s", server.ctime.Format(time.RFC1123))
}
func RplMyInfo(server *Server) Reply {
2012-12-13 08:27:17 +01:00
return NewNumericReply(server, RPL_MYINFO,
"%s %s a kn", server.name, VERSION)
}
func RplUModeIs(server *Server, client *Client) Reply {
2013-05-12 20:20:55 +02:00
return NewNumericReply(server, RPL_UMODEIS, client.UModeString())
}
2012-12-13 08:27:17 +01:00
func RplNoTopic(channel *Channel) Reply {
return NewNumericReply(channel.server, RPL_NOTOPIC,
"%s :No topic is set", channel.name)
2012-12-10 00:20:21 +01:00
}
2012-12-13 08:27:17 +01:00
func RplTopic(channel *Channel) Reply {
2012-12-13 08:34:32 +01:00
return NewNumericReply(channel.server, RPL_TOPIC,
"%s :%s", channel.name, channel.topic)
2012-12-10 00:20:21 +01:00
}
2012-12-13 08:27:17 +01:00
func RplInvitingMsg(channel *Channel, invitee *Client) Reply {
return NewNumericReply(channel.server, RPL_INVITING,
"%s %s", channel.name, invitee.Nick())
}
2013-06-03 07:07:50 +02:00
func RplNamReply(channel *Channel, names []string) *NumericReply {
return NewNumericReply(channel.server, RPL_NAMREPLY, "= %s :%s",
channel.name, strings.Join(names, " "))
}
2014-02-08 22:18:11 +01:00
func RplEndOfNames(channel *Channel) Reply {
return NewNumericReply(channel, RPL_ENDOFNAMES,
"%s :End of NAMES list", channel.name)
}
2012-12-10 05:24:53 +01:00
func RplYoureOper(server *Server) Reply {
return NewNumericReply(server, RPL_YOUREOPER,
":You are now an IRC operator")
2012-12-10 05:24:53 +01:00
}
2012-12-13 08:33:09 +01:00
// errors (also numeric)
func ErrAlreadyRegistered(source Identifier) Reply {
return NewNumericReply(source, ERR_ALREADYREGISTRED,
":You may not reregister")
}
func ErrNickNameInUse(source Identifier, nick string) Reply {
2012-12-13 08:27:17 +01:00
return NewNumericReply(source, ERR_NICKNAMEINUSE,
"%s :Nickname is already in use", nick)
}
func ErrUnknownCommand(source Identifier, command string) Reply {
2012-12-13 08:27:17 +01:00
return NewNumericReply(source, ERR_UNKNOWNCOMMAND,
"%s :Unknown command", command)
}
func ErrUsersDontMatch(source Identifier) Reply {
2012-12-13 08:27:17 +01:00
return NewNumericReply(source, ERR_USERSDONTMATCH,
2012-12-09 22:47:02 +01:00
":Cannot change mode for other users")
}
func ErrNeedMoreParams(source Identifier, command string) Reply {
2012-12-13 08:27:17 +01:00
return NewNumericReply(source, ERR_NEEDMOREPARAMS,
"%s :Not enough parameters", command)
}
func ErrNoSuchChannel(source Identifier, channel string) Reply {
2012-12-13 08:27:17 +01:00
return NewNumericReply(source, ERR_NOSUCHCHANNEL,
"%s :No such channel", channel)
2012-12-09 22:47:02 +01:00
}
func ErrUserOnChannel(channel *Channel, member *Client) Reply {
2012-12-13 08:27:17 +01:00
return NewNumericReply(channel.server, ERR_USERONCHANNEL,
"%s %s :is already on channel", member.nick, channel.name)
}
func ErrNotOnChannel(channel *Channel) Reply {
2012-12-13 08:27:17 +01:00
return NewNumericReply(channel.server, ERR_NOTONCHANNEL,
"%s :You're not on that channel", channel.name)
}
func ErrInviteOnlyChannel(channel *Channel) Reply {
2012-12-13 08:27:17 +01:00
return NewNumericReply(channel.server, ERR_INVITEONLYCHAN,
"%s :Cannot join channel (+i)", channel.name)
}
func ErrBadChannelKey(channel *Channel) Reply {
2012-12-13 08:27:17 +01:00
return NewNumericReply(channel.server, ERR_BADCHANNELKEY,
"%s :Cannot join channel (+k)", channel.name)
}
func ErrNoSuchNick(source Identifier, nick string) Reply {
2012-12-13 08:27:17 +01:00
return NewNumericReply(source, ERR_NOSUCHNICK,
"%s :No such nick/channel", nick)
}
2012-12-10 05:24:53 +01:00
func ErrPasswdMismatch(server *Server) Reply {
2012-12-13 08:27:17 +01:00
return NewNumericReply(server, ERR_PASSWDMISMATCH, ":Password incorrect")
2012-12-10 05:24:53 +01:00
}
func ErrNoChanModes(channel *Channel) Reply {
2012-12-13 08:27:17 +01:00
return NewNumericReply(channel.server, ERR_NOCHANMODES,
"%s :Channel doesn't support modes", channel.name)
}
func ErrNoPrivileges(server *Server) Reply {
return NewNumericReply(server, ERR_NOPRIVILEGES, ":Permission Denied")
}
func ErrRestricted(server *Server) Reply {
return NewNumericReply(server, ERR_RESTRICTED, ":Your connection is restricted!")
}