3
0
mirror of https://github.com/ergochat/ergo.git synced 2024-11-10 22:19:31 +01:00

stub motd

This commit is contained in:
Jeremy Latt 2014-02-11 15:33:02 -08:00
parent 887f12cb31
commit cdae59ecf5
3 changed files with 15 additions and 8 deletions

View File

@ -156,11 +156,13 @@ func (client *Client) Destroy() error {
return nil
}
func (client *Client) Reply(reply Reply) error {
func (client *Client) Reply(replies ...Reply) error {
if client.replies == nil {
return ErrAlreadyDestroyed
}
client.replies <- reply
for _, reply := range replies {
client.replies <- reply
}
return nil
}

View File

@ -349,3 +349,7 @@ 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")
}

View File

@ -142,18 +142,19 @@ func (s *Server) GenerateGuestNick() string {
func (s *Server) tryRegister(c *Client) {
if !c.registered && c.HasNick() && c.HasUsername() {
c.registered = true
replies := []Reply{
c.Reply(
RplWelcome(s, c),
RplYourHost(s),
RplCreated(s),
RplMyInfo(s),
}
for _, reply := range replies {
c.Reply(reply)
}
RplMyInfo(s))
server.MOTD(c)
}
}
func (server *Server) MOTD(client *Client) {
c.Reply(ErrNoMOTD(server))
}
func (s *Server) Id() string {
return s.name
}