Rename a bot if its nickname changes.
[xudocci.git] / src / main / java / net / pterodactylus / irc / Connection.java
index eacf75e..f5b29b4 100644 (file)
@@ -39,14 +39,19 @@ import java.util.logging.Logger;
 import javax.net.SocketFactory;
 
 import net.pterodactylus.irc.event.ChannelJoined;
+import net.pterodactylus.irc.event.ChannelLeft;
 import net.pterodactylus.irc.event.ChannelMessageReceived;
 import net.pterodactylus.irc.event.ChannelNicknames;
 import net.pterodactylus.irc.event.ChannelNotJoined;
 import net.pterodactylus.irc.event.ChannelNotJoined.Reason;
 import net.pterodactylus.irc.event.ChannelTopic;
+import net.pterodactylus.irc.event.ClientQuit;
 import net.pterodactylus.irc.event.ConnectionEstablished;
 import net.pterodactylus.irc.event.ConnectionFailed;
+import net.pterodactylus.irc.event.DccAcceptReceived;
+import net.pterodactylus.irc.event.DccSendReceived;
 import net.pterodactylus.irc.event.MotdReceived;
+import net.pterodactylus.irc.event.NicknameChanged;
 import net.pterodactylus.irc.event.NicknameInUseReceived;
 import net.pterodactylus.irc.event.NoNicknameGivenReceived;
 import net.pterodactylus.irc.event.PrivateMessageReceived;
@@ -58,6 +63,7 @@ import com.google.common.collect.Maps;
 import com.google.common.collect.Sets;
 import com.google.common.eventbus.EventBus;
 import com.google.common.io.Closeables;
+import com.google.common.primitives.Ints;
 import com.google.common.primitives.Longs;
 import com.google.common.util.concurrent.AbstractExecutionThreadService;
 import com.google.common.util.concurrent.Service;
@@ -199,6 +205,19 @@ public class Connection extends AbstractExecutionThreadService implements Servic
        //
 
        /**
+        * Checks whether the given source is the client represented by this
+        * connection.
+        *
+        * @param source
+        *              The source to check
+        * @return {@code true} if this connection represents the given source, {@code
+        *         false} otherwise
+        */
+       public boolean isSource(Source source) {
+               return source.nick().isPresent() && source.nick().get().equals(nickname);
+       }
+
+       /**
         * Joins the given channel.
         *
         * @param channel
@@ -225,6 +244,24 @@ public class Connection extends AbstractExecutionThreadService implements Servic
                connectionHandler.sendCommand("PRIVMSG", recipient, message);
        }
 
+       /**
+        * Sends a DCC RESUME request to the given recipient.
+        *
+        * @param recipient
+        *              The recipient of the request
+        * @param filename
+        *              The name of the file to resume
+        * @param port
+        *              The port number from the original DCC SEND request
+        * @param position
+        *              The position at which to resume the transfer
+        * @throws IOException
+        *              if an I/O error occurs
+        */
+       public void sendDccResume(String recipient, String filename, int port, long position) throws IOException {
+               connectionHandler.sendCommand("PRIVMSG", recipient, String.format("\u0001DCC RESUME %s %d %d\u0001", filename, port, position));
+       }
+
        //
        // ABSTRACTEXECUTIONTHREADSERVICE METHODS
        //
@@ -279,7 +316,31 @@ public class Connection extends AbstractExecutionThreadService implements Servic
                                if (command.equalsIgnoreCase("PRIVMSG")) {
                                        String recipient = parameters.get(0);
                                        String message = parameters.get(1);
-                                       if (!channelTypes.contains(recipient.charAt(0))) {
+                                       if (message.startsWith("\u0001") && message.endsWith("\u0001")) {
+                                               /* CTCP! */
+                                               String[] messageWords = message.substring(1, message.length() - 1).split(" +");
+                                               String ctcpCommand = messageWords[0];
+                                               if (ctcpCommand.equalsIgnoreCase("DCC")) {
+                                                       if (messageWords[1].equalsIgnoreCase("SEND")) {
+                                                               Optional<InetAddress> inetAddress = parseInetAddress(messageWords[3]);
+                                                               Optional<Integer> port = Optional.fromNullable(Ints.tryParse(messageWords[4]));
+                                                               long fileSize = Optional.fromNullable(Longs.tryParse(messageWords[5])).or(-1L);
+                                                               if (inetAddress.isPresent() && port.isPresent()) {
+                                                                       eventBus.post(new DccSendReceived(this, reply.source().get(), messageWords[2], inetAddress.get(), port.get(), fileSize));
+                                                               } else {
+                                                                       logger.warning(String.format("Received malformed DCC SEND: “%s”", message));
+                                                               }
+                                                       } else if (messageWords[1].equalsIgnoreCase("ACCEPT")) {
+                                                               Optional<Integer> port = Optional.fromNullable(Ints.tryParse(messageWords[3]));
+                                                               long position = Optional.fromNullable(Longs.tryParse(messageWords[4])).or(-1L);
+                                                               if (port.isPresent()) {
+                                                                       eventBus.post(new DccAcceptReceived(this, reply.source().get(), messageWords[2], port.get(), position));
+                                                               } else {
+                                                                       logger.warning(String.format("Received malformed DCC ACCEPT: “%s”", message));
+                                                               }
+                                                       }
+                                               }
+                                       } else if (!channelTypes.contains(recipient.charAt(0))) {
                                                eventBus.post(new PrivateMessageReceived(this, reply.source().get(), message));
                                        } else {
                                                eventBus.post(new ChannelMessageReceived(this, recipient, reply.source().get(), message));
@@ -339,6 +400,10 @@ public class Connection extends AbstractExecutionThreadService implements Servic
                                                eventBus.post(new NicknameInUseReceived(this, reply));
                                        }
 
+                               /* client stuff. */
+                               } else if (command.equalsIgnoreCase("NICK")) {
+                                       eventBus.post(new NicknameChanged(this, reply.source().get(), parameters.get(0)));
+
                                /* channel stuff. */
                                } else if (command.equalsIgnoreCase("JOIN")) {
                                        eventBus.post(new ChannelJoined(this, parameters.get(0), reply.source().get()));
@@ -357,6 +422,10 @@ public class Connection extends AbstractExecutionThreadService implements Servic
                                } else if (command.equals("366")) {
                                        eventBus.post(new ChannelNicknames(this, parameters.get(1), nicks));
                                        nicks.clear();
+                               } else if (command.equalsIgnoreCase("PART")) {
+                                       eventBus.post(new ChannelLeft(this, parameters.get(0), reply.source().get(), getOptional(parameters, 1)));
+                               } else if (command.equalsIgnoreCase("QUIT")) {
+                                       eventBus.post(new ClientQuit(this, reply.source().get(), parameters.get(0)));
 
                                /* common channel join errors. */
                                } else if (command.equals("474")) {