package irc import ( "fmt" "strings" "time" ) func joinedLen(names []string) int { var l = len(names) - 1 // " " between names for _, name := range names { l += len(name) } return l } type BaseReply struct { id string message string source Identifier } func (reply *BaseReply) SetSource(source Identifier) { reply.id = source.Id() reply.source = source } func (reply *BaseReply) Source() Identifier { return reply.source } type StringReply struct { BaseReply code string } func NewStringReply(source Identifier, code string, format string, args ...interface{}) *StringReply { reply := &StringReply{ code: code, } reply.SetSource(source) reply.message = fmt.Sprintf(format, args...) return reply } func (reply *StringReply) Format(client *Client) []string { message := fmt.Sprintf(":%s %s %s", reply.id, reply.code, reply.message) return []string{message} } func (reply *StringReply) String() string { return fmt.Sprintf("Reply(source=%s, code=%s, message=%s)", reply.id, reply.code, reply.message) } type NumericReply struct { BaseReply code Numeric } func NewNumericReply(source Identifier, code Numeric, format string, args ...interface{}) *NumericReply { reply := &NumericReply{ code: code, } reply.SetSource(source) reply.message = fmt.Sprintf(format, args...) return reply } func (reply *NumericReply) Format(client *Client) []string { message := fmt.Sprintf(":%s %s %s %s", reply.id, reply.code, client.Nick(), reply.message) return []string{message} } func (reply *NumericReply) String() string { return fmt.Sprintf("Reply(source=%s, code=%d, message=%s)", reply.id, reply.code, reply.message) } // names reply type NamesReply struct { BaseReply channel *Channel } func NewNamesReply(channel *Channel) Reply { reply := &NamesReply{ channel: channel, } reply.SetSource(channel) return reply } func (reply *NamesReply) Format(client *Client) []string { lines := make([]string, 0) base := RplNamReply(reply.channel, []string{}) baseLen := len(base.Format(client)[0]) tooLong := func(names []string) bool { return (baseLen + joinedLen(names)) > MAX_REPLY_LEN } from, to := 0, 1 nicks := reply.channel.Nicks() for to < len(nicks) { if (from < (to - 1)) && tooLong(nicks[from:to]) { lines = append(lines, RplNamReply(reply.channel, nicks[from:to-1]).Format(client)...) from, to = to-1, to } else { to += 1 } } if from < len(nicks) { lines = append(lines, RplNamReply(reply.channel, nicks[from:]).Format(client)...) } lines = append(lines, RplEndOfNames(reply.channel).Format(client)...) return lines } func (reply *NamesReply) String() string { return fmt.Sprintf("NamesReply(channel=%s, names=%s)", reply.channel, reply.channel.Nicks()) } // messaging replies func RplPrivMsg(source Identifier, target Identifier, message string) Reply { return NewStringReply(source, "PRIVMSG", "%s :%s", target.Nick(), message) } func RplNotice(source Identifier, target Identifier, message string) Reply { return NewStringReply(source, "NOTICE", "%s :%s", target.Nick(), message) } func RplNick(source Identifier, newNick string) Reply { return NewStringReply(source, "NICK", newNick) } func RplJoin(client *Client, channel *Channel) Reply { return NewStringReply(client, "JOIN", channel.name) } func RplPart(client *Client, channel *Channel, message string) Reply { return NewStringReply(client, "PART", "%s :%s", channel.name, message) } func RplTopicMsg(source Identifier, channel *Channel) Reply { return NewStringReply(source, "TOPIC", "%s :%s", channel.name, channel.topic) } func RplPing(server *Server, target Identifier) Reply { return NewStringReply(server, "PING", target.Nick()) } func RplPong(server *Server, client *Client) Reply { return NewStringReply(server, "PONG", client.Nick()) } func RplQuit(client *Client, message string) Reply { return NewStringReply(client, "QUIT", ":%s", message) } func RplError(server *Server, target Identifier) Reply { return NewStringReply(server, "ERROR", target.Nick()) } func RplInviteMsg(channel *Channel, inviter *Client) Reply { return NewStringReply(inviter, "INVITE", channel.name) } // numeric replies func RplWelcome(source Identifier, client *Client) Reply { return NewNumericReply(source, RPL_WELCOME, "Welcome to the Internet Relay Network %s", client.Id()) } func RplYourHost(server *Server) Reply { return NewNumericReply(server, RPL_YOURHOST, "Your host is %s, running version %s", server.name, VERSION) } func RplCreated(server *Server) Reply { return NewNumericReply(server, RPL_CREATED, "This server was created %s", server.ctime.Format(time.RFC1123)) } func RplMyInfo(server *Server) Reply { return NewNumericReply(server, RPL_MYINFO, "%s %s aiOorsw abeIikmntpqrsl", server.name, VERSION) } func RplUModeIs(server *Server, client *Client) Reply { return NewNumericReply(server, RPL_UMODEIS, client.ModeString()) } func RplNoTopic(channel *Channel) Reply { return NewNumericReply(channel.server, RPL_NOTOPIC, "%s :No topic is set", channel.name) } func RplTopic(channel *Channel) Reply { return NewNumericReply(channel.server, RPL_TOPIC, "%s :%s", channel.name, channel.topic) } func RplInvitingMsg(channel *Channel, invitee *Client) Reply { return NewNumericReply(channel.server, RPL_INVITING, "%s %s", channel.name, invitee.Nick()) } func RplNamReply(channel *Channel, names []string) *NumericReply { return NewNumericReply(channel.server, RPL_NAMREPLY, "= %s :%s", channel.name, strings.Join(names, " ")) } func RplEndOfNames(channel *Channel) Reply { return NewNumericReply(channel.server, RPL_ENDOFNAMES, "%s :End of NAMES list", channel.name) } // :You are now an IRC operator func RplYoureOper(server *Server) Reply { return NewNumericReply(server, RPL_YOUREOPER, ":You are now an IRC operator") } func RplWhoisUser(server *Server, client *Client) Reply { return NewNumericReply(server, RPL_WHOISUSER, "%s %s %s * :%s", client.Nick(), client.username, client.hostname, client.realname) } func RplEndOfWhois(server *Server) Reply { return NewNumericReply(server, RPL_ENDOFWHOIS, ":End of WHOIS list") } func RplChannelModeIs(channel *Channel) Reply { return NewNumericReply(channel.server, RPL_CHANNELMODEIS, "%s %s", channel.name, channel.ModeString()) } // ( "H" / "G" ) ["*"] [ ( "@" / "+" ) ] // : func RplWhoReply(server *Server, channel *Channel, client *Client) Reply { channelName := "*" if channel != nil { channelName = channel.name } return NewNumericReply(server, RPL_WHOREPLY, "%s %s %s %s %s H :0 %s", channelName, client.username, client.hostname, server.name, client.Nick(), client.realname) } // :End of WHO list func RplEndOfWho(server *Server, name string) Reply { return NewNumericReply(server, RPL_ENDOFWHO, "%s :End of WHO list", name) } func RplBanList(channel *Channel, ban UserMask) Reply { return NewNumericReply(channel.server, RPL_BANLIST, "%s %s", channel.name, ban) } func RplEndOfBanList(channel *Channel) Reply { return NewNumericReply(channel.server, RPL_ENDOFBANLIST, "%s :End of channel ban list", channel.name) } func RplNowAway(server *Server) Reply { return NewNumericReply(server, RPL_NOWAWAY, ":You have been marked as being away") } func RplUnAway(server *Server) Reply { return NewNumericReply(server, RPL_UNAWAY, ":You are no longer marked as being away") } func RplAway(server *Server, client *Client) Reply { return NewNumericReply(server, RPL_AWAY, "%s :%s", client.Nick(), client.awayMessage) } func RplIsOn(server *Server, nicks []string) Reply { return NewNumericReply(server, RPL_ISON, ":%s", strings.Join(nicks, " ")) } func RplMOTDStart(server *Server) Reply { return NewNumericReply(server, RPL_MOTDSTART, ":- %s Message of the day - ", server.name) } func RplMOTD(server *Server, line string) Reply { return NewNumericReply(server, RPL_MOTD, ":- %s", line) } func RplMOTDEnd(server *Server) Reply { return NewNumericReply(server, RPL_ENDOFMOTD, ":End of MOTD command") } // // errors (also numeric) // func ErrAlreadyRegistered(source Identifier) Reply { return NewNumericReply(source, ERR_ALREADYREGISTRED, ":You may not reregister") } func ErrNickNameInUse(source Identifier, nick string) Reply { return NewNumericReply(source, ERR_NICKNAMEINUSE, "%s :Nickname is already in use", nick) } func ErrUnknownCommand(source Identifier, command string) Reply { return NewNumericReply(source, ERR_UNKNOWNCOMMAND, "%s :Unknown command", command) } func ErrUsersDontMatch(source Identifier) Reply { return NewNumericReply(source, ERR_USERSDONTMATCH, ":Cannot change mode for other users") } func ErrNeedMoreParams(source Identifier, command string) Reply { return NewNumericReply(source, ERR_NEEDMOREPARAMS, "%s :Not enough parameters", command) } func ErrNoSuchChannel(server *Server, channel string) Reply { return NewNumericReply(server, ERR_NOSUCHCHANNEL, "%s :No such channel", channel) } func ErrUserOnChannel(channel *Channel, member *Client) Reply { return NewNumericReply(channel.server, ERR_USERONCHANNEL, "%s %s :is already on channel", member.Nick(), channel.name) } func ErrNotOnChannel(channel *Channel) Reply { return NewNumericReply(channel.server, ERR_NOTONCHANNEL, "%s :You're not on that channel", channel.name) } func ErrInviteOnlyChannel(channel *Channel) Reply { return NewNumericReply(channel.server, ERR_INVITEONLYCHAN, "%s :Cannot join channel (+i)", channel.name) } func ErrBadChannelKey(channel *Channel) Reply { return NewNumericReply(channel.server, ERR_BADCHANNELKEY, "%s :Cannot join channel (+k)", channel.name) } func ErrNoSuchNick(source Identifier, nick string) Reply { return NewNumericReply(source, ERR_NOSUCHNICK, "%s :No such nick/channel", nick) } func ErrPasswdMismatch(server *Server) Reply { return NewNumericReply(server, ERR_PASSWDMISMATCH, ":Password incorrect") } func ErrNoChanModes(channel *Channel) Reply { 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!") } func ErrNoSuchServer(server *Server, target string) Reply { return NewNumericReply(server, ERR_NOSUCHSERVER, "%s :No such server", target) } func ErrUserNotInChannel(server *Server, nick string, channel *Channel) Reply { return NewNumericReply(server, ERR_USERNOTINCHANNEL, "%s %s :They aren't on that channel", nick, channel.name) } func ErrCannotSendToChan(channel *Channel) Reply { return NewNumericReply(channel.server, ERR_CANNOTSENDTOCHAN, "%s :Cannot send to channel", channel.name) } // :You're not channel operator func ErrChanOPrivIsNeeded(channel *Channel) Reply { return NewNumericReply(channel.server, ERR_CHANOPRIVSNEEDED, "%s :You're not channel operator", channel.name) } func ErrNoMOTD(server *Server) Reply { return NewNumericReply(server, ERR_NOMOTD, ":MOTD File is missing") } func ErrNoNicknameGiven(server *Server) Reply { return NewNumericReply(server, ERR_NONICKNAMEGIVEN, ":No nickname given") }