1
0
mirror of https://github.com/Rogiel/l2jserver2 synced 2025-12-08 08:23:11 +00:00

Chat channel filters support

Signed-off-by: Rogiel <rogiel@rogiel.com>
This commit is contained in:
2011-07-31 02:11:56 -03:00
parent b7d3738c0b
commit 4fff207e32
3 changed files with 88 additions and 3 deletions

View File

@@ -105,8 +105,9 @@ public class SimpleChatService extends AbstractService implements ChatService {
}
@Override
public ChatMessage send(CharacterID sender, ChatMessageType chat, String message,
String extra) throws TargetNotFoundChatServiceException,
public ChatMessage send(CharacterID sender, ChatMessageType chat,
String message, String extra)
throws TargetNotFoundChatServiceException,
CannotChatToSelfChatServiceException,
ChatBanActiveChatServiceException,
ChatTargetOfflineServiceException {
@@ -213,6 +214,11 @@ public class SimpleChatService extends AbstractService implements ChatService {
*/
protected final Set<ChatChannelListener> listeners = CollectionFactory
.newSet();
/**
* The list of all filters on this channel
*/
protected final Set<ChatChannelFilter> filters = CollectionFactory
.newSet();
@Override
public ChatMessage send(CharacterID sender, String textMessage) {
@@ -220,6 +226,14 @@ public class SimpleChatService extends AbstractService implements ChatService {
Preconditions.checkNotNull(textMessage, "message");
// TODO throw exception if sender is banned from chat
// filter the message. if a single filter refuses it, the message
// will be discarded
for (final ChatChannelFilter filter : filters) {
if (!filter.filter(sender, this, textMessage))
// discard message
return null;
}
// log this chat message
ChatMessage message = chatLoggingService.log(sender, this,
textMessage);
@@ -227,7 +241,7 @@ public class SimpleChatService extends AbstractService implements ChatService {
for (final ChatChannelListener listener : listeners) {
listener.onMessage(this, message);
}
return message;
}
@@ -243,6 +257,18 @@ public class SimpleChatService extends AbstractService implements ChatService {
listeners.remove(listener);
}
@Override
public void addChatChannelFilter(ChatChannelFilter filter) {
Preconditions.checkNotNull(filter, "filter");
filters.add(filter);
}
@Override
public void removeChatChannelFilter(ChatChannelFilter filter) {
Preconditions.checkNotNull(filter, "filter");
filters.remove(filter);
}
@Override
public String getChannelName() {
return getMessageType().name();