Yaaic/application/src/org/yaaic/command/handler/NamesHandler.java

95 lines
2.8 KiB
Java
Raw Normal View History

2010-03-09 16:25:54 -05:00
/*
2010-03-12 14:35:25 -05:00
Yaaic - Yet Another Android IRC Client
2010-03-09 16:25:54 -05:00
2013-01-21 15:32:43 -05:00
Copyright 2009-2013 Sebastian Kaspari
2010-03-09 16:25:54 -05:00
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/>.
2011-01-25 15:02:27 -05:00
*/
package org.yaaic.command.handler;
2010-03-09 16:25:54 -05:00
import org.jibble.pircbot.User;
import org.yaaic.R;
import org.yaaic.command.BaseHandler;
import org.yaaic.exception.CommandException;
2010-03-09 16:25:54 -05:00
import org.yaaic.irc.IRCService;
import org.yaaic.model.Broadcast;
import org.yaaic.model.Conversation;
2010-03-09 16:25:54 -05:00
import org.yaaic.model.Message;
import org.yaaic.model.Server;
import android.content.Context;
2010-03-09 16:25:54 -05:00
import android.content.Intent;
import android.support.v4.content.LocalBroadcastManager;
2010-03-09 16:25:54 -05:00
/**
* Command: /names
2011-01-25 15:02:27 -05:00
* Lists all users currently in the selected channel
2010-03-09 16:25:54 -05:00
*
* @author Sebastian Kaspari <sebastian@yaaic.org>
*/
public class NamesHandler extends BaseHandler
2010-03-09 16:25:54 -05:00
{
2010-11-18 12:52:19 -05:00
/**
* Execute /names
*/
@Override
2011-01-25 15:02:27 -05:00
public void execute(String[] params, Server server, Conversation conversation, IRCService service) throws CommandException
2010-11-18 12:52:19 -05:00
{
if (conversation.getType() != Conversation.TYPE_CHANNEL) {
throw new CommandException(service.getString(R.string.only_usable_from_channel));
}
2011-01-25 15:02:27 -05:00
2010-11-18 12:52:19 -05:00
StringBuffer userList = new StringBuffer(service.getString(R.string.message_users_on_chan, conversation.getName()));
2011-01-25 15:02:27 -05:00
2010-11-18 12:52:19 -05:00
User[] mUsers = service.getConnection(server.getId()).getUsers(conversation.getName());
int mSize = mUsers.length;
for (int i = 0; i < mSize; i++) {
userList.append(" ");
userList.append(mUsers[i].getPrefix());
userList.append(mUsers[i].getNick());
}
2011-01-25 15:02:27 -05:00
2010-11-18 12:52:19 -05:00
Message message = new Message(userList.toString());
message.setColor(Message.COLOR_YELLOW);
conversation.addMessage(message);
2011-01-25 15:02:27 -05:00
2010-11-18 12:52:19 -05:00
Intent intent = Broadcast.createConversationIntent(
Broadcast.CONVERSATION_MESSAGE,
server.getId(),
conversation.getName()
);
LocalBroadcastManager.getInstance(service).sendBroadcast(intent);
2010-11-18 12:52:19 -05:00
}
2011-01-25 15:02:27 -05:00
2010-11-18 12:52:19 -05:00
/**
* Usage of /names
*/
@Override
public String getUsage()
{
return "/names";
}
2010-03-26 14:05:37 -04:00
2010-11-18 12:52:19 -05:00
/**
* Description of /names
*/
@Override
public String getDescription(Context context)
{
return context.getString(R.string.command_desc_names);
}
2010-03-09 16:25:54 -05:00
}