Send private messages to listeners.
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Thu, 11 Apr 2013 20:11:05 +0000 (22:11 +0200)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Thu, 11 Apr 2013 20:11:05 +0000 (22:11 +0200)
src/main/java/net/pterodactylus/xdcc/core/Core.java
src/main/java/net/pterodactylus/xdcc/core/event/MessageReceived.java [new file with mode: 0644]

index df6d278..e3b981b 100644 (file)
@@ -39,6 +39,7 @@ import net.pterodactylus.irc.event.ConnectionEstablished;
 import net.pterodactylus.irc.event.DccDownloadFailed;
 import net.pterodactylus.irc.event.DccDownloadFinished;
 import net.pterodactylus.irc.event.DccSendReceived;
+import net.pterodactylus.irc.event.PrivateMessageReceived;
 import net.pterodactylus.irc.util.MessageCleaner;
 import net.pterodactylus.irc.util.RandomNickname;
 import net.pterodactylus.xdcc.core.event.BotAdded;
@@ -46,6 +47,7 @@ import net.pterodactylus.xdcc.core.event.CoreStarted;
 import net.pterodactylus.xdcc.core.event.DownloadFailed;
 import net.pterodactylus.xdcc.core.event.DownloadFinished;
 import net.pterodactylus.xdcc.core.event.DownloadStarted;
+import net.pterodactylus.xdcc.core.event.MessageReceived;
 import net.pterodactylus.xdcc.data.Bot;
 import net.pterodactylus.xdcc.data.Channel;
 import net.pterodactylus.xdcc.data.Download;
@@ -343,6 +345,17 @@ public class Core extends AbstractIdleService {
        }
 
        /**
+        * Forward all private messages to every console.
+        *
+        * @param privateMessageReceived
+        *              The private message recevied event
+        */
+       @Subscribe
+       public void privateMessageReceived(PrivateMessageReceived privateMessageReceived) {
+               eventBus.post(new MessageReceived(privateMessageReceived.source(), privateMessageReceived.message()));
+       }
+
+       /**
         * Starts a DCC download.
         *
         * @param dccSendReceived
diff --git a/src/main/java/net/pterodactylus/xdcc/core/event/MessageReceived.java b/src/main/java/net/pterodactylus/xdcc/core/event/MessageReceived.java
new file mode 100644 (file)
index 0000000..fb3c4cd
--- /dev/null
@@ -0,0 +1,70 @@
+/*
+ * XdccDownloader - MessageReceived.java - Copyright © 2013 David Roden
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+
+package net.pterodactylus.xdcc.core.event;
+
+import net.pterodactylus.irc.Source;
+
+/**
+ * Notifies a listener that a message was received.
+ *
+ * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
+ */
+public class MessageReceived {
+
+       /** The source of the message. */
+       private final Source source;
+
+       /** The message. */
+       private final String message;
+
+       /**
+        * Creates a new message received event.
+        *
+        * @param source
+        *              The source of the message
+        * @param message
+        *              The message
+        */
+       public MessageReceived(Source source, String message) {
+               this.source = source;
+               this.message = message;
+       }
+
+       //
+       // ACCESSORS
+       //
+
+       /**
+        * Returns the source of the message.
+        *
+        * @return The source of the message
+        */
+       public Source source() {
+               return source;
+       }
+
+       /**
+        * Returns the message.
+        *
+        * @return The message
+        */
+       public String message() {
+               return message;
+       }
+
+}