Yaaic/src/org/yaaic/irc/IRCConnection.java

262 lines
5.8 KiB
Java
Raw Normal View History

2009-12-17 15:27:57 -05:00
/*
Yaaic - Yet Another Android IRC Client
Copyright 2009 Sebastian Kaspari
This file is part of Yaaic.
Yaaic 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.
Yaaic 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 Yaaic. If not, see <http://www.gnu.org/licenses/>.
*/
package org.yaaic.irc;
import android.content.Intent;
2010-03-02 12:42:44 -05:00
import android.util.Log;
2009-12-17 15:27:57 -05:00
import org.jibble.pircbot.PircBot;
2010-03-02 12:42:44 -05:00
import org.jibble.pircbot.User;
2009-12-17 15:27:57 -05:00
import org.yaaic.Yaaic;
import org.yaaic.model.Broadcast;
import org.yaaic.model.Server;
import org.yaaic.model.Status;
public class IRCConnection extends PircBot
{
private IRCService service;
private Server server;
2010-03-02 12:42:44 -05:00
// XXX: Print all IRC events to the debug console
private static final boolean DEBUG_EVENTS = true;
public static final String TAG = "Yaaic/IRCConnection";
/**
* Create a new connection
*
* @param service
* @param serverId
*/
2009-12-17 15:27:57 -05:00
public IRCConnection(IRCService service, int serverId)
{
this.server = Yaaic.getInstance().getServerById(serverId);
this.service = service;
this.setName("Yaaic");
this.setLogin("Yaaic");
this.setAutoNickChange(true);
this.setVersion("Yaaic - Yet another Android IRC client - http://www.yaaic.org");
}
/**
* On connect
*/
@Override
public void onConnect()
{
server.setStatus(Status.CONNECTED);
service.sendBroadcast(new Intent(Broadcast.SERVER_UPDATE));
}
2010-03-02 12:42:44 -05:00
/**
* On channel action
*/
@Override
protected void onAction(String sender, String login, String hostname, String target, String action)
{
debug("Action", target + " " + sender + " " + action);
}
/**
* On Channel Info
*/
@Override
protected void onChannelInfo(String channel, int userCount, String topic)
{
debug("ChannelInfo", channel + " " + userCount);
}
/**
* On Deop
*/
@Override
protected void onDeop(String channel, String sourceNick, String sourceLogin, String sourceHostname, String recipient)
{
debug("Deop", channel + " " + recipient + "(" + sourceNick + ")");
}
/**
* On DeVoice
*/
@Override
protected void onDeVoice(String channel, String sourceNick, String sourceLogin, String sourceHostname, String recipient)
{
debug("DeVoice", channel + " " + recipient + "(" + sourceNick + ")");
}
/**
* On Invite
*/
@Override
protected void onInvite(String targetNick, String sourceNick, String sourceLogin, String sourceHostname, String channel)
{
debug("Invite", channel + " " + targetNick + "(" + sourceNick + ")");
}
/**
* On Join
*/
@Override
protected void onJoin(String channel, String sender, String login, String hostname)
{
debug("Join", channel + " " + sender);
}
/**
* On Kick
*/
@Override
protected void onKick(String channel, String kickerNick, String kickerLogin, String kickerHostname, String recipientNick, String reason)
{
debug("Kick", channel + " " + recipientNick + "(" + kickerNick + ")");
}
/**
* On Message
*/
@Override
protected void onMessage(String channel, String sender, String login, String hostname, String message)
{
debug("Deop", channel + " " + sender + " " + message);
}
/**
* On Mode
*/
@Override
protected void onMode(String channel, String sourceNick, String sourceLogin, String sourceHostname, String mode)
{
debug("Mode", channel + " " + sourceNick + " " + mode);
}
/**
* On Nick Change
*/
@Override
protected void onNickChange(String oldNick, String login, String hostname, String newNick)
{
debug("Nick", oldNick + " " + newNick);
}
/**
* On Notice
*/
@Override
protected void onNotice(String sourceNick, String sourceLogin, String sourceHostname, String target, String notice)
{
debug("Notice", sourceNick + " " + notice);
}
/**
* On Op
*/
@Override
protected void onOp(String channel, String sourceNick, String sourceLogin, String sourceHostname, String recipient)
{
debug("Deop", channel + " " + recipient + "(" + sourceNick + ")");
}
/**
* On Part
*/
@Override
protected void onPart(String channel, String sender, String login, String hostname)
{
debug("Part", channel + " " + sender);
}
/**
* On Private Message
*/
@Override
protected void onPrivateMessage(String sender, String login, String hostname, String message)
{
debug("PrivateMessage", sender + " " + message);
}
/**
* On Quit
*/
@Override
protected void onQuit(String sourceNick, String sourceLogin, String sourceHostname, String reason)
{
debug("Quit", sourceNick);
}
/**
* On Topic
*/
@Override
protected void onTopic(String channel, String topic, String setBy, long date, boolean changed)
{
debug("Topic", channel + " " + setBy + " " + topic);
}
/**
* On User List
*/
@Override
protected void onUserList(String channel, User[] users)
{
debug("UserList", channel + " (" + users.length + ")");
}
/**
* On Voice
*/
@Override
protected void onVoice(String channel, String sourceNick, String sourceLogin, String sourceHostname, String recipient)
{
debug("Voice", channel + " " + recipient + "(" + sourceNick + ")");
}
2009-12-17 15:27:57 -05:00
/**
* On disconnect
*/
@Override
public void onDisconnect()
{
server.setStatus(Status.DISCONNECTED);
service.sendBroadcast(new Intent(Broadcast.SERVER_UPDATE));
}
2010-03-02 12:42:44 -05:00
/**
* Print an event to the debug console
*/
private void debug(String event, String params)
{
if (DEBUG_EVENTS) {
Log.d(TAG, "[" + event + "]: " + params);
}
}
2009-12-17 15:27:57 -05:00
/**
* Quits from the IRC server with default reason.
*/
@Override
public void quitServer()
{
quitServer("Yaaic - Yet another Android IRC client - http://www.yaaic.org");
}
}