]> Cypherpunks.ru repositories - goircd.git/blobdiff - daemon.go
Fix receive timestamp setting
[goircd.git] / daemon.go
index 0896add8c5b00539b6a4d454c5d1664a8dde773e..55491d79a83e7b2bbdb3b7caf0e61332d82686b3 100644 (file)
--- a/daemon.go
+++ b/daemon.go
@@ -162,6 +162,7 @@ func ClientRegister(client *Client, cmd string, cols []string) {
                nickname := cols[1]
                // Compatibility with some clients prepending colons to nickname
                nickname = strings.TrimPrefix(nickname, ":")
+               nickname = strings.ToLower(nickname)
                for existingClient := range clients {
                        if *existingClient.nickname == nickname {
                                client.ReplyParts("433", "*", nickname, "Nickname is already in use")
@@ -345,6 +346,9 @@ func Processor(events chan ClientEvent, finished chan struct{}) {
                                ClientRegister(client, cmd, cols)
                                continue
                        }
+                       if client != nil {
+                               client.recvTimestamp = now
+                       }
                        switch cmd {
                        case "AWAY":
                                if len(cols) == 1 {
@@ -485,6 +489,22 @@ func Processor(events chan ClientEvent, finished chan struct{}) {
                                cols := strings.Split(cols[1], " ")
                                nicknames := strings.Split(cols[len(cols)-1], ",")
                                SendWhois(client, nicknames)
+                       case "ISON":
+                               if len(cols) == 1 || len(cols[1]) < 1 {
+                                       client.ReplyNotEnoughParameters("ISON")
+                                       continue
+                               }
+                               nicksKnown := make(map[string]struct{})
+                               for c := range clients {
+                                       nicksKnown[*c.nickname] = struct{}{}
+                               }
+                               var nicksExists []string
+                               for _, nickname := range strings.Split(cols[1], " ") {
+                                       if _, exists := nicksKnown[nickname]; exists {
+                                               nicksExists = append(nicksExists, nickname)
+                                       }
+                               }
+                               client.ReplyNicknamed("303", strings.Join(nicksExists, " "))
                        case "VERSION":
                                var debug string
                                if *verbose {
@@ -497,8 +517,5 @@ func Processor(events chan ClientEvent, finished chan struct{}) {
                                client.ReplyNicknamed("421", cmd, "Unknown command")
                        }
                }
-               if client != nil {
-                       client.recvTimestamp = now
-               }
        }
 }