Added handler for IRC TIME query

This commit is contained in:
Justin 2015-08-09 08:49:41 -07:00
parent b8408ad060
commit 503bd6eefa
1 changed files with 14 additions and 0 deletions

View File

@ -4,6 +4,7 @@ import (
"fmt"
"strconv"
"strings"
"time"
"github.com/sorcix/irc"
)
@ -876,3 +877,16 @@ func KickHandler(message *irc.Message, client *Client) {
}
}
}
// TimeHandler is a specialized CommandHandler to respond to channel IRC TIME commands from a client
// Implemented according to RFC 1459 Section 4.3.4 and RFC 2812 Section 3.4.6
func TimeHandler(message *irc.Message, client *Client) {
if len(message.Params) != 0 {
m := irc.Message{Prefix: client.Server.Prefix, Command: irc.ERR_NOSUCHSERVER, Params: []string{client.Nickname, message.Params[0]}, Trailing: "No such server"}
client.Encode(&m)
return
}
m := irc.Message{Prefix: client.Server.Prefix, Command: irc.RPL_TIME, Params: []string{client.Nickname, client.Server.Config.Name}, Trailing: time.Now().Format(time.UnixDate)}
client.Encode(&m)
}