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

157 lines
4.9 KiB
Java
Raw Normal View History

2010-04-06 16:12:10 -04:00
/*
Yaaic - Yet Another Android IRC Client
2013-01-21 15:32:43 -05:00
Copyright 2009-2013 Sebastian Kaspari
2010-04-06 16:12:10 -04: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
*/
2010-03-26 14:05:37 -04:00
package org.yaaic.command.handler;
import java.util.HashMap;
2010-04-06 14:38:54 -04:00
import java.util.Set;
2010-03-26 14:05:37 -04:00
import org.yaaic.R;
2010-03-26 14:05:37 -04:00
import org.yaaic.command.BaseHandler;
import org.yaaic.command.CommandParser;
import org.yaaic.exception.CommandException;
import org.yaaic.irc.IRCService;
import org.yaaic.model.Broadcast;
import org.yaaic.model.Conversation;
import org.yaaic.model.Message;
import org.yaaic.model.Server;
import android.content.Context;
2010-03-26 14:05:37 -04:00
import android.content.Intent;
import android.support.v4.content.LocalBroadcastManager;
2010-03-26 14:05:37 -04:00
/**
2011-01-25 15:02:27 -05:00
* Command: /help
*
2010-03-26 14:05:37 -04:00
* @author Karol Gliniecki <karol.gliniecki@googlemail.com>
2010-04-19 03:42:13 -04:00
* @author Sebastian Kaspari <sebastian@yaaic.org>
2010-03-26 14:05:37 -04:00
*/
2010-04-06 14:38:31 -04:00
public class HelpHandler extends BaseHandler
{
2010-11-18 12:52:19 -05:00
/**
* Execute /help
*/
@Override
public void execute(String[] params, Server server, Conversation conversation, IRCService service) throws CommandException
{
if (params.length == 2) {
2011-01-25 15:02:27 -05:00
showCommandDetails(service, server, conversation, params[1]);
2010-11-18 12:52:19 -05:00
} else if (params.length == 1) {
showAllCommands(service, server, conversation);
} else {
throw new CommandException(service.getString(R.string.invalid_number_of_params));
}
}
2011-01-25 15:02:27 -05:00
2010-11-18 12:52:19 -05:00
/**
* Show all available commands
*
2010-11-18 12:52:19 -05:00
* @param conversation
* @param server
* @param service
*/
private void showAllCommands(IRCService service, Server server, Conversation conversation)
{
CommandParser cp = CommandParser.getInstance();
2011-01-25 15:02:27 -05:00
2010-11-18 12:52:19 -05:00
StringBuffer commandList = new StringBuffer(service.getString(R.string.available_commands));
commandList.append("\n");
2011-01-25 15:02:27 -05:00
2010-11-18 12:52:19 -05:00
HashMap<String, BaseHandler> commands = cp.getCommands();
HashMap<String, String> aliases = cp.getAliases();
2010-04-19 03:42:13 -04:00
2010-11-18 12:52:19 -05:00
Set<String> commandKeys = commands.keySet();
Set<String> aliasesKeys = aliases.keySet();
2011-01-25 15:02:27 -05:00
2010-11-18 12:52:19 -05:00
for (Object command : commandKeys) {
String alias = "";
for (Object aliasCommand : aliasesKeys) {
if (command.equals(aliases.get(aliasCommand))) {
alias = " " + service.getString(R.string.logical_or) + " /" + aliasCommand;
break;
}
}
commandList.append("/" + command.toString() + alias + " - "+commands.get(command).getDescription(service) + "\n");
}
2011-01-25 15:02:27 -05:00
2010-11-18 12:52:19 -05:00
Message message = new Message(commandList.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()
);
2011-01-25 15:02:27 -05:00
LocalBroadcastManager.getInstance(service).sendBroadcast(intent);
2010-11-18 12:52:19 -05:00
}
2010-03-26 14:05:37 -04:00
2010-11-18 12:52:19 -05:00
/**
* Show details of a single command
*
2010-11-18 12:52:19 -05:00
* @param conversation
* @param server
* @param service
* @param command
* @throws CommandException
*/
private void showCommandDetails(IRCService service, Server server, Conversation conversation, String command) throws CommandException
{
CommandParser cp = CommandParser.getInstance();
HashMap<String, BaseHandler> commands = cp.getCommands();
2011-01-25 15:02:27 -05:00
2010-11-18 12:52:19 -05:00
if (commands.containsKey(command)) {
// XXX:I18N - String building salad :)
Message message = new Message("Help of /" + command + "\n" + commands.get(command).getUsage() + "\n" + commands.get(command).getDescription(service) + "\n");
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()
);
2011-01-25 15:02:27 -05:00
LocalBroadcastManager.getInstance(service).sendBroadcast(intent);
2010-11-18 12:52:19 -05:00
} else {
throw new CommandException(service.getString(R.string.unknown_command, command));
}
}
2010-04-19 03:42:13 -04:00
2010-11-18 12:52:19 -05:00
/**
* Usage of /help
*/
@Override
public String getUsage()
{
return "/help [<command>]";
}
2010-03-26 14:05:37 -04:00
2010-11-18 12:52:19 -05:00
/**
* Description of /help
*/
@Override
public String getDescription(Context context)
{
return context.getString(R.string.command_desc_help);
}
2010-03-26 14:05:37 -04:00
}