ergo/irc/reply.go

583 lines
15 KiB
Go
Raw Normal View History

package irc
import (
"fmt"
2012-12-09 21:51:50 +01:00
"strings"
"time"
)
type ReplyCode interface {
String() string
}
type StringCode string
func (code StringCode) String() string {
return string(code)
}
type NumericCode uint
func (code NumericCode) String() string {
return fmt.Sprintf("%03d", code)
}
func NewStringReply(source Identifiable, code StringCode,
format string, args ...interface{}) string {
var header string
if source == nil {
2014-02-22 21:15:34 +01:00
header = code.String() + " "
} else {
header = fmt.Sprintf(":%s %s ", source, code)
}
2014-02-22 21:15:34 +01:00
var message string
if len(args) > 0 {
message = fmt.Sprintf(format, args...)
} else {
message = format
}
2014-02-20 20:15:42 +01:00
return header + message
}
func NewNumericReply(target *Client, code NumericCode,
format string, args ...interface{}) string {
header := fmt.Sprintf(":%s %s %s ", target.server.Id(), code, target.Nick())
2014-02-22 21:15:34 +01:00
var message string
if len(args) > 0 {
message = fmt.Sprintf(format, args...)
} else {
message = format
}
2014-02-20 20:15:42 +01:00
return header + message
}
func (target *Client) NumericReply(code NumericCode,
format string, args ...interface{}) {
2014-02-22 20:40:32 +01:00
target.Reply(NewNumericReply(target, code, format, args...))
}
2014-02-18 05:47:41 +01:00
//
// multiline replies
//
2013-06-03 07:07:50 +02:00
2014-02-18 05:47:41 +01:00
func joinedLen(names []string) int {
var l = len(names) - 1 // " " between names
for _, name := range names {
l += len(name)
2013-06-03 07:07:50 +02:00
}
2014-02-18 05:47:41 +01:00
return l
2013-06-03 07:07:50 +02:00
}
func (target *Client) MultilineReply(names []string, code NumericCode, format string,
args ...interface{}) {
baseLen := len(NewNumericReply(target, code, format))
2013-06-03 07:07:50 +02:00
tooLong := func(names []string) bool {
return (baseLen + joinedLen(names)) > MAX_REPLY_LEN
}
argsAndNames := func(names []string) []interface{} {
return append(args, strings.Join(names, " "))
}
2014-02-08 22:18:11 +01:00
from, to := 0, 1
2014-02-18 05:47:41 +01:00
for to < len(names) {
if (from < (to - 1)) && tooLong(names[from:to]) {
target.NumericReply(code, format, argsAndNames(names[from:to-1])...)
2014-03-28 20:11:01 +01:00
from = to - 1
2014-02-08 22:18:11 +01:00
} else {
to += 1
2013-06-03 07:07:50 +02:00
}
}
2014-02-18 05:47:41 +01:00
if from < len(names) {
target.NumericReply(code, format, argsAndNames(names[from:])...)
2013-06-03 07:07:50 +02:00
}
2014-02-18 05:47:41 +01:00
}
//
2012-12-13 08:33:09 +01:00
// messaging replies
2014-02-18 05:47:41 +01:00
//
func RplPrivMsg(source Identifiable, target Identifiable, message Text) string {
return NewStringReply(source, PRIVMSG, "%s :%s", target.Nick(), message)
}
func RplCTCPAction(source Identifiable, target Identifiable, action CTCPText) string {
return RplPrivMsg(source, target, NewText(fmt.Sprintf("\x01ACTION %s\x01", action)))
}
func RplNotice(source Identifiable, target Identifiable, message Text) string {
return NewStringReply(source, NOTICE, "%s :%s", target.Nick(), message)
2014-02-12 02:11:59 +01:00
}
func RplNick(source Identifiable, newNick Name) string {
2014-03-09 21:45:36 +01:00
return NewStringReply(source, NICK, newNick.String())
}
func RplJoin(client *Client, channel *Channel) string {
2014-03-09 21:45:36 +01:00
return NewStringReply(client, JOIN, channel.name.String())
2012-12-13 08:27:17 +01:00
}
2014-03-09 21:45:36 +01:00
func RplPart(client *Client, channel *Channel, message Text) string {
return NewStringReply(client, PART, "%s :%s", channel, message)
}
func RplModeChanges(client *Client, target *Client, changes ModeChanges) string {
return NewStringReply(client, MODE, "%s :%s", target.Nick(), changes)
}
func RplChannelMode(client *Client, channel *Channel,
changes ChannelModeChanges) string {
return NewStringReply(client, MODE, "%s %s", channel, changes)
}
func RplTopicMsg(source Identifiable, channel *Channel) string {
return NewStringReply(source, TOPIC, "%s :%s", channel, channel.topic)
2012-12-13 08:27:17 +01:00
}
func RplPing(target Identifiable) string {
return NewStringReply(nil, PING, ":%s", target.Nick())
2014-02-09 21:13:09 +01:00
}
func RplPong(client *Client, msg Text) string {
// #5: IRC for Android will time out if it doesn't get the prefix back.
return NewStringReply(client, PONG, "%s :%s", client.server, msg.String())
2012-12-13 08:27:17 +01:00
}
2014-03-09 21:45:36 +01:00
func RplQuit(client *Client, message Text) string {
return NewStringReply(client, QUIT, ":%s", message)
2012-12-09 22:47:02 +01:00
}
func RplError(message string) string {
return NewStringReply(nil, ERROR, ":%s", message)
}
2014-03-09 21:45:36 +01:00
func RplInviteMsg(inviter *Client, invitee *Client, channel Name) string {
2014-03-06 07:54:50 +01:00
return NewStringReply(inviter, INVITE, "%s :%s", invitee.Nick(), channel)
2012-12-13 08:33:09 +01:00
}
2014-03-09 21:45:36 +01:00
func RplKick(channel *Channel, client *Client, target *Client, comment Text) string {
2014-02-17 08:29:11 +01:00
return NewStringReply(client, KICK, "%s %s :%s",
channel, target.Nick(), comment)
}
2014-03-09 21:45:36 +01:00
func RplKill(client *Client, target *Client, comment Text) string {
2014-02-25 18:10:16 +01:00
return NewStringReply(client, KICK,
"%s :%s", target.Nick(), comment)
}
2014-03-08 22:59:48 +01:00
func RplCap(client *Client, subCommand CapSubCommand, arg interface{}) string {
// client.server needs to be here to workaround a parsing bug in weechat 1.4
// and let it connect to the server (otherwise it doesn't respond to the CAP
// message with anything and just hangs on connection)
return NewStringReply(client.server, CAP, "%s %s :%s", client.Nick(), subCommand, arg)
2014-03-08 22:59:48 +01:00
}
2012-12-13 08:33:09 +01:00
// numeric replies
func (target *Client) RplWelcome() {
target.NumericReply(RPL_WELCOME,
":Welcome to the Internet Relay Network %s", target.Id())
}
func (target *Client) RplYourHost() {
target.NumericReply(RPL_YOURHOST,
":Your host is %s, running version %s", target.server.name, SEM_VER)
}
func (target *Client) RplCreated() {
target.NumericReply(RPL_CREATED,
":This server was created %s", target.server.ctime.Format(time.RFC1123))
}
func (target *Client) RplMyInfo() {
target.NumericReply(RPL_MYINFO,
"%s %s %s %s",
target.server.name, SEM_VER, SupportedUserModes, SupportedChannelModes)
}
func (target *Client) RplISupport() {
for _, tokenline := range target.server.isupport.CachedReply {
target.NumericReply(RPL_ISUPPORT,
"%s :are supported by this server",
tokenline)
}
}
func (target *Client) RplUModeIs(client *Client) {
target.NumericReply(RPL_UMODEIS, client.ModeString())
}
func (target *Client) RplNoTopic(channel *Channel) {
target.NumericReply(RPL_NOTOPIC,
"%s :No topic is set", channel.name)
2012-12-10 00:20:21 +01:00
}
func (target *Client) RplTopic(channel *Channel) {
target.NumericReply(RPL_TOPIC,
"%s :%s", channel.name, channel.topic)
2012-12-10 00:20:21 +01:00
}
// <nick> <channel>
// NB: correction in errata
2014-03-09 21:45:36 +01:00
func (target *Client) RplInvitingMsg(invitee *Client, channel Name) {
target.NumericReply(RPL_INVITING,
2014-02-25 16:28:09 +01:00
"%s %s", invitee.Nick(), channel)
}
func (target *Client) RplEndOfNames(channel *Channel) {
target.NumericReply(RPL_ENDOFNAMES,
2014-02-08 22:18:11 +01:00
"%s :End of NAMES list", channel.name)
}
2014-02-09 19:07:40 +01:00
// :You are now an IRC operator
func (target *Client) RplYoureOper() {
target.NumericReply(RPL_YOUREOPER,
":You are now an IRC operator")
2012-12-10 05:24:53 +01:00
}
func (target *Client) RplWhois(client *Client) {
target.RplWhoisUser(client)
if client.flags[Operator] {
target.RplWhoisOperator(client)
}
target.RplWhoisIdle(client)
target.RplWhoisChannels(client)
target.RplEndOfWhois(client)
}
func (target *Client) RplWhoisUser(client *Client) {
target.NumericReply(RPL_WHOISUSER,
"%s %s %s * :%s", client.Nick(), client.username, client.hostname,
client.realname)
2014-02-09 02:43:59 +01:00
}
func (target *Client) RplWhoisOperator(client *Client) {
target.NumericReply(RPL_WHOISOPERATOR,
2014-02-18 04:08:57 +01:00
"%s :is an IRC operator", client.Nick())
}
func (target *Client) RplWhoisIdle(client *Client) {
target.NumericReply(RPL_WHOISIDLE,
2014-02-18 04:56:06 +01:00
"%s %d %d :seconds idle, signon time",
client.Nick(), client.IdleSeconds(), client.SignonTime())
2014-02-18 04:08:57 +01:00
}
func (target *Client) RplEndOfWhois(client *Client) {
target.NumericReply(RPL_ENDOFWHOIS,
"%s :End of WHOIS list", client.Nick())
2014-02-09 02:43:59 +01:00
}
func (target *Client) RplChannelModeIs(channel *Channel) {
target.NumericReply(RPL_CHANNELMODEIS,
"%s %s", channel, channel.ModeString(target))
2014-02-09 03:14:39 +01:00
}
2014-02-09 03:49:52 +01:00
// <channel> <user> <host> <server> <nick> ( "H" / "G" ) ["*"] [ ( "@" / "+" ) ]
// :<hopcount> <real name>
func (target *Client) RplWhoReply(channel *Channel, client *Client) {
2014-02-11 18:09:16 +01:00
channelName := "*"
2014-02-18 06:30:14 +01:00
flags := ""
if client.flags[Away] {
flags = "G"
} else {
flags = "H"
}
if client.flags[Operator] {
flags += "*"
}
2014-02-11 18:09:16 +01:00
if channel != nil {
flags += channel.members[client].Prefixes(target.capabilities[MultiPrefix])
2014-03-09 21:45:36 +01:00
channelName = channel.name.String()
2014-02-11 18:09:16 +01:00
}
target.NumericReply(RPL_WHOREPLY,
"%s %s %s %s %s %s :%d %s", channelName, client.username, client.hostname,
client.server.name, client.Nick(), flags, client.hops, client.realname)
2014-02-09 03:49:52 +01:00
}
// <name> :End of WHO list
2014-03-09 21:45:36 +01:00
func (target *Client) RplEndOfWho(name Name) {
target.NumericReply(RPL_ENDOFWHO,
"%s :End of WHO list", name)
2014-02-09 03:49:52 +01:00
}
2014-03-09 21:45:36 +01:00
func (target *Client) RplMaskList(mode ChannelMode, channel *Channel, mask Name) {
2014-02-23 00:01:11 +01:00
switch mode {
case BanMask:
target.RplBanList(channel, mask)
case ExceptMask:
target.RplExceptList(channel, mask)
case InviteMask:
target.RplInviteList(channel, mask)
}
}
func (target *Client) RplEndOfMaskList(mode ChannelMode, channel *Channel) {
switch mode {
case BanMask:
target.RplEndOfBanList(channel)
case ExceptMask:
target.RplEndOfExceptList(channel)
case InviteMask:
target.RplEndOfInviteList(channel)
}
}
2014-03-09 21:45:36 +01:00
func (target *Client) RplBanList(channel *Channel, mask Name) {
target.NumericReply(RPL_BANLIST,
2014-02-23 00:01:11 +01:00
"%s %s", channel, mask)
}
func (target *Client) RplEndOfBanList(channel *Channel) {
target.NumericReply(RPL_ENDOFBANLIST,
2014-02-23 00:01:11 +01:00
"%s :End of channel ban list", channel)
}
2014-03-09 21:45:36 +01:00
func (target *Client) RplExceptList(channel *Channel, mask Name) {
2014-02-23 00:01:11 +01:00
target.NumericReply(RPL_EXCEPTLIST,
"%s %s", channel, mask)
}
func (target *Client) RplEndOfExceptList(channel *Channel) {
target.NumericReply(RPL_ENDOFEXCEPTLIST,
"%s :End of channel exception list", channel)
}
2014-03-09 21:45:36 +01:00
func (target *Client) RplInviteList(channel *Channel, mask Name) {
2014-02-23 00:01:11 +01:00
target.NumericReply(RPL_INVITELIST,
"%s %s", channel, mask)
}
func (target *Client) RplEndOfInviteList(channel *Channel) {
target.NumericReply(RPL_ENDOFINVITELIST,
"%s :End of channel invite list", channel)
2014-02-12 00:44:58 +01:00
}
func (target *Client) RplNowAway() {
target.NumericReply(RPL_NOWAWAY,
2014-02-12 00:44:58 +01:00
":You have been marked as being away")
}
func (target *Client) RplUnAway() {
target.NumericReply(RPL_UNAWAY,
2014-02-12 00:44:58 +01:00
":You are no longer marked as being away")
}
func (target *Client) RplAway(client *Client) {
target.NumericReply(RPL_AWAY,
"%s :%s", client.Nick(), client.awayMessage)
}
func (target *Client) RplIsOn(nicks []string) {
target.NumericReply(RPL_ISON,
2014-02-12 00:58:54 +01:00
":%s", strings.Join(nicks, " "))
}
func (target *Client) RplMOTDStart() {
target.NumericReply(RPL_MOTDSTART,
":- %s Message of the day - ", target.server.name)
2014-02-12 01:35:32 +01:00
}
func (target *Client) RplMOTD(line string) {
target.NumericReply(RPL_MOTD,
2014-02-12 01:35:32 +01:00
":- %s", line)
}
func (target *Client) RplMOTDEnd() {
target.NumericReply(RPL_ENDOFMOTD,
2014-02-12 01:35:32 +01:00
":End of MOTD command")
}
func (target *Client) RplList(channel *Channel) {
target.NumericReply(RPL_LIST,
"%s %d :%s", channel, len(channel.members), channel.topic)
2014-02-17 08:51:27 +01:00
}
func (target *Client) RplListEnd(server *Server) {
target.NumericReply(RPL_LISTEND,
":End of LIST")
2014-02-17 08:51:27 +01:00
}
2014-02-22 22:15:31 +01:00
func (target *Client) RplNamReply(channel *Channel) {
target.MultilineReply(channel.Nicks(target), RPL_NAMREPLY,
2014-02-22 22:15:31 +01:00
"= %s :%s", channel)
}
func (target *Client) RplWhoisChannels(client *Client) {
target.MultilineReply(client.WhoisChannelsNames(target), RPL_WHOISCHANNELS,
2014-02-22 22:15:31 +01:00
"%s :%s", client.Nick())
}
2014-02-25 07:04:11 +01:00
func (target *Client) RplVersion() {
target.NumericReply(RPL_VERSION,
"%s %s", SEM_VER, target.server.name)
2014-02-25 07:04:11 +01:00
}
2014-03-09 21:45:36 +01:00
func (target *Client) RplInviting(invitee *Client, channel Name) {
2014-02-25 16:28:09 +01:00
target.NumericReply(RPL_INVITING,
"%s %s", invitee.Nick(), channel)
}
2014-02-25 16:45:40 +01:00
func (target *Client) RplTime() {
target.NumericReply(RPL_TIME,
"%s :%s", target.server.name, time.Now().Format(time.RFC1123))
}
func (target *Client) RplWhoWasUser(whoWas *WhoWas) {
2014-03-06 21:14:21 +01:00
target.NumericReply(RPL_WHOWASUSER,
"%s %s %s * :%s",
whoWas.nickname, whoWas.username, whoWas.hostname, whoWas.realname)
2014-03-06 21:14:21 +01:00
}
2014-03-09 21:45:36 +01:00
func (target *Client) RplEndOfWhoWas(nickname Name) {
2014-03-06 21:14:21 +01:00
target.NumericReply(RPL_ENDOFWHOWAS,
"%s :End of WHOWAS", nickname)
}
2014-02-12 00:58:54 +01:00
//
2012-12-13 08:33:09 +01:00
// errors (also numeric)
2014-02-12 00:58:54 +01:00
//
func (target *Client) ErrAlreadyRegistered() {
target.NumericReply(ERR_ALREADYREGISTRED,
":You may not reregister")
}
2014-03-09 21:45:36 +01:00
func (target *Client) ErrNickNameInUse(nick Name) {
target.NumericReply(ERR_NICKNAMEINUSE,
"%s :Nickname is already in use", nick)
}
func (target *Client) ErrUnknownCommand(code StringCode) {
target.NumericReply(ERR_UNKNOWNCOMMAND,
2014-02-17 08:29:11 +01:00
"%s :Unknown command", code)
}
func (target *Client) ErrUsersDontMatch() {
target.NumericReply(ERR_USERSDONTMATCH,
2012-12-09 22:47:02 +01:00
":Cannot change mode for other users")
}
2014-03-09 21:45:36 +01:00
func (target *Client) ErrNeedMoreParams(command StringCode) {
target.NumericReply(ERR_NEEDMOREPARAMS,
"%s :Not enough parameters", command)
}
2014-03-09 21:45:36 +01:00
func (target *Client) ErrNoSuchChannel(channel Name) {
target.NumericReply(ERR_NOSUCHCHANNEL,
"%s :No such channel", channel)
2012-12-09 22:47:02 +01:00
}
func (target *Client) ErrUserOnChannel(channel *Channel, member *Client) {
target.NumericReply(ERR_USERONCHANNEL,
"%s %s :is already on channel", member.Nick(), channel.name)
}
func (target *Client) ErrNotOnChannel(channel *Channel) {
target.NumericReply(ERR_NOTONCHANNEL,
"%s :You're not on that channel", channel.name)
}
func (target *Client) ErrInviteOnlyChannel(channel *Channel) {
target.NumericReply(ERR_INVITEONLYCHAN,
"%s :Cannot join channel (+i)", channel.name)
}
func (target *Client) ErrBadChannelKey(channel *Channel) {
target.NumericReply(ERR_BADCHANNELKEY,
"%s :Cannot join channel (+k)", channel.name)
}
2014-03-09 21:45:36 +01:00
func (target *Client) ErrNoSuchNick(nick Name) {
target.NumericReply(ERR_NOSUCHNICK,
"%s :No such nick/channel", nick)
}
2012-12-10 05:24:53 +01:00
func (target *Client) ErrPasswdMismatch() {
target.NumericReply(ERR_PASSWDMISMATCH, ":Password incorrect")
2012-12-10 05:24:53 +01:00
}
func (target *Client) ErrNoChanModes(channel *Channel) {
target.NumericReply(ERR_NOCHANMODES,
2014-02-17 08:29:11 +01:00
"%s :Channel doesn't support modes", channel)
}
func (target *Client) ErrNoPrivileges() {
target.NumericReply(ERR_NOPRIVILEGES, ":Permission Denied")
}
func (target *Client) ErrRestricted() {
target.NumericReply(ERR_RESTRICTED, ":Your connection is restricted!")
}
2014-02-09 02:43:59 +01:00
2014-03-09 21:45:36 +01:00
func (target *Client) ErrNoSuchServer(server Name) {
target.NumericReply(ERR_NOSUCHSERVER, "%s :No such server", server)
2014-02-09 02:43:59 +01:00
}
2014-02-09 03:14:39 +01:00
func (target *Client) ErrUserNotInChannel(channel *Channel, client *Client) {
target.NumericReply(ERR_USERNOTINCHANNEL,
2014-02-17 08:29:11 +01:00
"%s %s :They aren't on that channel", client.Nick(), channel)
2014-02-09 03:14:39 +01:00
}
2014-02-09 08:33:56 +01:00
func (target *Client) ErrCannotSendToChan(channel *Channel) {
target.NumericReply(ERR_CANNOTSENDTOCHAN,
2014-02-17 08:29:11 +01:00
"%s :Cannot send to channel", channel)
2014-02-09 08:33:56 +01:00
}
// <channel> :You're not channel operator
func (target *Client) ErrChanOPrivIsNeeded(channel *Channel) {
target.NumericReply(ERR_CHANOPRIVSNEEDED,
2014-02-17 08:29:11 +01:00
"%s :You're not channel operator", channel)
}
2014-02-12 00:33:02 +01:00
func (target *Client) ErrNoMOTD() {
target.NumericReply(ERR_NOMOTD, ":MOTD File is missing")
2014-02-12 00:33:02 +01:00
}
func (target *Client) ErrNoNicknameGiven() {
target.NumericReply(ERR_NONICKNAMEGIVEN, ":No nickname given")
}
2014-03-09 21:45:36 +01:00
func (target *Client) ErrErroneusNickname(nick Name) {
target.NumericReply(ERR_ERRONEUSNICKNAME,
"%s :Erroneous nickname", nick)
}
2014-02-22 21:15:34 +01:00
func (target *Client) ErrUnknownMode(mode ChannelMode, channel *Channel) {
target.NumericReply(ERR_UNKNOWNMODE,
"%s :is unknown mode char to me for %s", mode, channel)
}
2014-03-13 09:55:46 +01:00
func (target *Client) ErrConfiguredMode(mode ChannelMode) {
target.NumericReply(ERR_UNKNOWNMODE,
"%s :can only change this mode in daemon configuration", mode)
}
func (target *Client) ErrChannelIsFull(channel *Channel) {
target.NumericReply(ERR_CHANNELISFULL,
"%s :Cannot join channel (+l)", channel)
}
2014-03-06 21:14:21 +01:00
2014-03-09 21:45:36 +01:00
func (target *Client) ErrWasNoSuchNick(nickname Name) {
2014-03-06 21:14:21 +01:00
target.NumericReply(ERR_WASNOSUCHNICK,
"%s :There was no such nickname", nickname)
}
func (target *Client) ErrInvalidCapCmd(subCommand CapSubCommand) {
target.NumericReply(ERR_INVALIDCAPCMD,
"%s :Invalid CAP subcommand", subCommand)
}
2014-03-08 02:09:49 +01:00
func (target *Client) ErrBannedFromChan(channel *Channel) {
target.NumericReply(ERR_BANNEDFROMCHAN,
"%s :Cannot join channel (+b)", channel)
}
func (target *Client) ErrInviteOnlyChan(channel *Channel) {
target.NumericReply(ERR_INVITEONLYCHAN,
"%s :Cannot join channel (+i)", channel)
}