From c5e38ac321fa8aa500e92e88bb435ab2911f5563 Mon Sep 17 00:00:00 2001 From: =?utf8?q?David=20=E2=80=98Bombe=E2=80=99=20Roden?= Date: Thu, 11 Apr 2013 22:11:05 +0200 Subject: [PATCH] Send private messages to listeners. --- .../java/net/pterodactylus/xdcc/core/Core.java | 13 ++++ .../xdcc/core/event/MessageReceived.java | 70 ++++++++++++++++++++++ 2 files changed, 83 insertions(+) create mode 100644 src/main/java/net/pterodactylus/xdcc/core/event/MessageReceived.java diff --git a/src/main/java/net/pterodactylus/xdcc/core/Core.java b/src/main/java/net/pterodactylus/xdcc/core/Core.java index df6d278..e3b981b 100644 --- a/src/main/java/net/pterodactylus/xdcc/core/Core.java +++ b/src/main/java/net/pterodactylus/xdcc/core/Core.java @@ -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 index 0000000..fb3c4cd --- /dev/null +++ b/src/main/java/net/pterodactylus/xdcc/core/event/MessageReceived.java @@ -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 . + */ + +package net.pterodactylus.xdcc.core.event; + +import net.pterodactylus.irc.Source; + +/** + * Notifies a listener that a message was received. + * + * @author David ‘Bombe’ Roden + */ +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; + } + +} -- 2.7.4