ergo/irc/reply.go

439 lines
11 KiB
Go
Raw Normal View History

package irc
import (
"fmt"
2012-12-09 21:51:50 +01:00
"strings"
"time"
)
func NewStringReply(source Identifier, 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-02-08 22:18:11 +01:00
from, to = to-1, to
} 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 Identifier, target Identifier, message string) string {
return NewStringReply(source, PRIVMSG, "%s :%s", target.Nick(), message)
}
func RplNotice(source Identifier, target Identifier, message string) string {
return NewStringReply(source, NOTICE, "%s :%s", target.Nick(), message)
2014-02-12 02:11:59 +01:00
}
func RplNick(source Identifier, newNick string) string {
return NewStringReply(source, NICK, newNick)
}
func RplJoin(client *Client, channel *Channel) string {
return NewStringReply(client, JOIN, channel.name)
2012-12-13 08:27:17 +01:00
}
func RplPart(client *Client, channel *Channel, message string) string {
return NewStringReply(client, PART, "%s :%s", channel, message)
}
func RplMode(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 Identifier, channel *Channel) string {
return NewStringReply(source, TOPIC, "%s :%s", channel, channel.topic)
2012-12-13 08:27:17 +01:00
}
func RplPing(target Identifier) string {
return NewStringReply(nil, PING, ":%s", target.Nick())
2014-02-09 21:13:09 +01:00
}
func RplPong(client *Client) string {
return NewStringReply(nil, PONG, client.Nick())
2012-12-13 08:27:17 +01:00
}
func RplQuit(client *Client, message string) 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)
}
func RplInviteMsg(channel *Channel, inviter *Client) string {
return NewStringReply(inviter, INVITE, channel.name)
2012-12-13 08:33:09 +01:00
}
func RplKick(channel *Channel, client *Client, target *Client, comment string) string {
2014-02-17 08:29:11 +01:00
return NewStringReply(client, KICK, "%s %s :%s",
channel, target.Nick(), comment)
}
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, VERSION)
}
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 aiOorsw abeIikmntpqrsl", target.server.name, VERSION)
}
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
func (target *Client) RplInvitingMsg(channel *Channel, invitee *Client) {
target.NumericReply(RPL_INVITING,
"%s %s", invitee.Nick(), channel.name)
}
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) 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() {
target.NumericReply(RPL_ENDOFWHOIS,
":End of WHOIS list")
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 {
channelName = channel.name
2014-02-18 06:30:14 +01:00
if channel.members[client][ChannelOperator] {
flags += "@"
} else if channel.members[client][Voice] {
flags += "+"
}
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
func (target *Client) RplEndOfWho(name string) {
target.NumericReply(RPL_ENDOFWHO,
"%s :End of WHO list", name)
2014-02-09 03:49:52 +01:00
}
func (target *Client) RplBanList(channel *Channel, ban UserMask) {
target.NumericReply(RPL_BANLIST,
"%s %s", channel.name, ban)
}
func (target *Client) RplEndOfBanList(channel *Channel) {
target.NumericReply(RPL_ENDOFBANLIST,
2014-02-12 00:44:58 +01:00
"%s :End of channel ban list", channel.name)
}
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(), RPL_NAMREPLY,
"= %s :%s", channel)
}
func (target *Client) RplWhoisChannels(client *Client) {
target.MultilineReply(client.WhoisChannelsNames(), RPL_WHOISCHANNELS,
"%s :%s", client.Nick())
}
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")
}
func (target *Client) ErrNickNameInUse(nick string) {
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")
}
func (target *Client) ErrNeedMoreParams(command string) {
target.NumericReply(ERR_NEEDMOREPARAMS,
"%s :Not enough parameters", command)
}
func (target *Client) ErrNoSuchChannel(channel string) {
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)
}
func (target *Client) ErrNoSuchNick(nick string) {
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
func (target *Client) ErrNoSuchServer(server string) {
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")
}
func (target *Client) ErrErroneusNickname(nick string) {
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)
}
func (target *Client) ErrChannelIsFull(channel *Channel) {
target.NumericReply(ERR_CHANNELISFULL,
"%s :Cannot join channel (+l)", channel)
}