mirror of
https://github.com/moparisthebest/Yaaic
synced 2024-11-16 05:55:08 -05:00
Implemented onNickChange IRC event
This commit is contained in:
parent
995ba53319
commit
dee13c82bf
@ -20,6 +20,8 @@ along with Yaaic. If not, see <http://www.gnu.org/licenses/>.
|
|||||||
*/
|
*/
|
||||||
package org.yaaic.irc;
|
package org.yaaic.irc;
|
||||||
|
|
||||||
|
import java.util.Vector;
|
||||||
|
|
||||||
import android.content.Intent;
|
import android.content.Intent;
|
||||||
import android.util.Log;
|
import android.util.Log;
|
||||||
|
|
||||||
@ -263,7 +265,17 @@ public class IRCConnection extends PircBot
|
|||||||
{
|
{
|
||||||
debug("Nick", oldNick + " " + newNick);
|
debug("Nick", oldNick + " " + newNick);
|
||||||
|
|
||||||
// XXX: Add message to all channels where oldNick / newNick is present
|
for (String target : getChannelsByNickname(newNick)) {
|
||||||
|
Channel channel = server.getChannel(target);
|
||||||
|
Message message = new Message(oldNick + " is now known as " + newNick);
|
||||||
|
message.setColor(Message.COLOR_GREEN);
|
||||||
|
channel.addMessage(message);
|
||||||
|
|
||||||
|
Intent intent = new Intent(Broadcast.CHANNEL_MESSAGE);
|
||||||
|
intent.putExtra(Broadcast.EXTRA_SERVER, server.getId());
|
||||||
|
intent.putExtra(Broadcast.EXTRA_CHANNEL, target);
|
||||||
|
service.sendBroadcast(intent);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -372,7 +384,7 @@ public class IRCConnection extends PircBot
|
|||||||
}
|
}
|
||||||
|
|
||||||
Intent intent = new Intent(Broadcast.CHANNEL_MESSAGE);
|
Intent intent = new Intent(Broadcast.CHANNEL_MESSAGE);
|
||||||
;
|
|
||||||
intent.putExtra(Broadcast.EXTRA_SERVER, server.getId());
|
intent.putExtra(Broadcast.EXTRA_SERVER, server.getId());
|
||||||
intent.putExtra(Broadcast.EXTRA_CHANNEL, target);
|
intent.putExtra(Broadcast.EXTRA_CHANNEL, target);
|
||||||
service.sendBroadcast(intent);
|
service.sendBroadcast(intent);
|
||||||
@ -428,6 +440,30 @@ public class IRCConnection extends PircBot
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get all channels where the user with the given nickname is online
|
||||||
|
*
|
||||||
|
* @param nickname
|
||||||
|
* @return Array of channel names
|
||||||
|
*/
|
||||||
|
private Vector<String> getChannelsByNickname(String nickname)
|
||||||
|
{
|
||||||
|
Vector<String> channels = new Vector<String>();
|
||||||
|
|
||||||
|
for (String channel : this.getChannels()) {
|
||||||
|
for (User user : this.getUsers(channel)) {
|
||||||
|
if (user.getNick().equals(nickname)) {
|
||||||
|
channels.add(channel);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Log.d(TAG, "Found " + channels.size() + " channels for nickname " + nickname);
|
||||||
|
|
||||||
|
return channels;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Quits from the IRC server with default reason.
|
* Quits from the IRC server with default reason.
|
||||||
*/
|
*/
|
||||||
|
Loading…
Reference in New Issue
Block a user