org.apache.camel.component.irc.IrcConsumer Maven / Gradle / Ivy
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.camel.component.irc;
import org.apache.camel.Processor;
import org.apache.camel.impl.DefaultConsumer;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.schwering.irc.lib.IRCConnection;
import org.schwering.irc.lib.IRCEventAdapter;
import org.schwering.irc.lib.IRCModeParser;
import org.schwering.irc.lib.IRCUser;
public class IrcConsumer extends DefaultConsumer {
private static final transient Log LOG = LogFactory.getLog(IrcConsumer.class);
private final IrcConfiguration configuration;
private final IrcEndpoint endpoint;
private final IRCConnection connection;
private FilteredIRCEventAdapter listener;
public IrcConsumer(IrcEndpoint endpoint, Processor processor, IRCConnection connection) {
super(endpoint, processor);
this.endpoint = endpoint;
this.connection = connection;
configuration = endpoint.getConfiguration();
}
@Override
protected void doStop() throws Exception {
String target = endpoint.getConfiguration().getTarget();
connection.doPart(target);
connection.removeIRCEventListener(listener);
super.doStop();
}
@Override
protected void doStart() throws Exception {
super.doStart();
String target = endpoint.getConfiguration().getTarget();
connection.addIRCEventListener(new FilteredIRCEventAdapter(target));
LOG.debug("joining: " + target);
connection.doJoin(target);
}
public IRCConnection getConnection() {
return connection;
}
class FilteredIRCEventAdapter extends IRCEventAdapter {
final String target;
public FilteredIRCEventAdapter(String target) {
this.target = target;
}
@Override
public void onNick(IRCUser user, String newNick) {
if (configuration.isOnNick()) {
IrcExchange exchange = endpoint.createOnNickExchange(user, newNick);
try {
getProcessor().process(exchange);
} catch (Exception e) {
// TODO: what should we do when a processing failure
// occurs??
e.printStackTrace();
}
}
}
@Override
public void onQuit(IRCUser user, String msg) {
if (configuration.isOnQuit()) {
IrcExchange exchange = endpoint.createOnQuitExchange(user, msg);
try {
getProcessor().process(exchange);
} catch (Exception e) {
// TODO: what should we do when a processing failure
// occurs??
e.printStackTrace();
}
}
}
@Override
public void onJoin(String channel, IRCUser user) {
if (configuration.isOnJoin()) {
if (channel.equals(configuration.getTarget())) {
IrcExchange exchange = endpoint.createOnJoinExchange(channel, user);
try {
getProcessor().process(exchange);
} catch (Exception e) {
// TODO: what should we do when a processing failure
// occurs??
e.printStackTrace();
}
}
}
}
@Override
public void onKick(String channel, IRCUser user, String passiveNick, String msg) {
if (configuration.isOnKick()) {
if (channel.equals(configuration.getTarget())) {
IrcExchange exchange = endpoint.createOnKickExchange(channel, user, passiveNick, msg);
try {
getProcessor().process(exchange);
} catch (Exception e) {
// TODO: what should we do when a processing failure
// occurs??
e.printStackTrace();
}
}
}
}
@Override
public void onMode(String channel, IRCUser user, IRCModeParser modeParser) {
if (configuration.isOnMode()) {
if (channel.equals(configuration.getTarget())) {
IrcExchange exchange = endpoint.createOnModeExchange(channel, user, modeParser);
try {
getProcessor().process(exchange);
} catch (Exception e) {
// TODO: what should we do when a processing failure
// occurs??
e.printStackTrace();
}
}
}
}
@Override
public void onPart(String channel, IRCUser user, String msg) {
if (configuration.isOnPart()) {
if (channel.equals(configuration.getTarget())) {
IrcExchange exchange = endpoint.createOnPartExchange(channel, user, msg);
try {
getProcessor().process(exchange);
} catch (Exception e) {
// TODO: what should we do when a processing failure
// occurs??
e.printStackTrace();
}
}
}
}
@Override
public void onTopic(String channel, IRCUser user, String topic) {
if (configuration.isOnTopic()) {
if (channel.equals(configuration.getTarget())) {
IrcExchange exchange = endpoint.createOnTopicExchange(channel, user, topic);
try {
getProcessor().process(exchange);
} catch (Exception e) {
// TODO: what should we do when a processing failure
// occurs??
e.printStackTrace();
}
}
}
}
@Override
public void onPrivmsg(String target, IRCUser user, String msg) {
if (configuration.isOnPrivmsg()) {
if (target.equals(configuration.getTarget())) {
IrcExchange exchange = endpoint.createOnPrivmsgExchange(target, user, msg);
try {
getProcessor().process(exchange);
} catch (Exception e) {
// TODO: what should we do when a processing failure
// occurs??
e.printStackTrace();
}
}
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy