You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

OpenQuery.java 4.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. /*
  2. * Copyright (c) 2006-2015 DMDirc Developers
  3. *
  4. * Permission is hereby granted, free of charge, to any person obtaining a copy
  5. * of this software and associated documentation files (the "Software"), to deal
  6. * in the Software without restriction, including without limitation the rights
  7. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  8. * copies of the Software, and to permit persons to whom the Software is
  9. * furnished to do so, subject to the following conditions:
  10. *
  11. * The above copyright notice and this permission notice shall be included in
  12. * all copies or substantial portions of the Software.
  13. *
  14. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  15. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  16. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  17. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  18. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  19. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  20. * SOFTWARE.
  21. */
  22. package com.dmdirc.commandparser.commands.server;
  23. import com.dmdirc.commandparser.BaseCommandInfo;
  24. import com.dmdirc.commandparser.CommandArguments;
  25. import com.dmdirc.commandparser.CommandInfo;
  26. import com.dmdirc.commandparser.CommandType;
  27. import com.dmdirc.commandparser.commands.Command;
  28. import com.dmdirc.commandparser.commands.CommandOptions;
  29. import com.dmdirc.commandparser.commands.IntelligentCommand;
  30. import com.dmdirc.commandparser.commands.WrappableCommand;
  31. import com.dmdirc.commandparser.commands.context.CommandContext;
  32. import com.dmdirc.commandparser.commands.context.ServerCommandContext;
  33. import com.dmdirc.interfaces.CommandController;
  34. import com.dmdirc.interfaces.Connection;
  35. import com.dmdirc.interfaces.PrivateChat;
  36. import com.dmdirc.interfaces.WindowModel;
  37. import com.dmdirc.ui.input.AdditionalTabTargets;
  38. import com.dmdirc.ui.input.TabCompletionType;
  39. import com.dmdirc.ui.messages.IRCControlCodes;
  40. import javax.annotation.Nonnull;
  41. import javax.inject.Inject;
  42. /**
  43. * Allows the user to open a query dialog with another user.
  44. */
  45. @CommandOptions(allowOffline = false)
  46. public class OpenQuery extends Command implements IntelligentCommand,
  47. WrappableCommand {
  48. /** A command info object for this command. */
  49. public static final CommandInfo INFO = new BaseCommandInfo("query",
  50. "query <user> [message] - opens a query with the specified user",
  51. CommandType.TYPE_SERVER);
  52. /**
  53. * Creates a new instance of this command.
  54. *
  55. * @param controller The controller to use for command information.
  56. */
  57. @Inject
  58. public OpenQuery(final CommandController controller) {
  59. super(controller);
  60. }
  61. @Override
  62. public void execute(@Nonnull final WindowModel origin,
  63. final CommandArguments args, final CommandContext context) {
  64. if (args.getArguments().length == 0) {
  65. showUsage(origin, args.isSilent(), "query", "<target> <message>");
  66. return;
  67. }
  68. final Connection connection = ((ServerCommandContext) context).getConnection();
  69. if (connection.getParser().get().isValidChannelName(args.getArguments()[0])) {
  70. showError(origin, args.isSilent(), "You can't open a query "
  71. + "with a channel; maybe you meant " + IRCControlCodes.FIXED
  72. + IRCControlCodes.BOLD
  73. + getController().getCommandChar()
  74. + (args.getArguments().length > 1 ? "msg" : "join") + ' '
  75. + args.getArgumentsAsString()
  76. + IRCControlCodes.BOLD + IRCControlCodes.FIXED + '?');
  77. return;
  78. }
  79. final PrivateChat query = connection.getQuery(args.getArguments()[0], !args.isSilent());
  80. if (args.getArguments().length > 1) {
  81. query.sendLine(args.getArgumentsAsString(1), args.getArguments()[0]);
  82. }
  83. // TODO: Focus if the command isn't silent
  84. }
  85. @Override
  86. public AdditionalTabTargets getSuggestions(final int arg,
  87. final IntelligentCommandContext context) {
  88. final AdditionalTabTargets targets = new AdditionalTabTargets();
  89. if (arg == 0) {
  90. targets.excludeAll();
  91. targets.include(TabCompletionType.CHANNEL_NICK);
  92. }
  93. return targets;
  94. }
  95. @Override
  96. public int getLineCount(final WindowModel origin, final CommandArguments arguments) {
  97. if (arguments.getArguments().length >= 2) {
  98. final String target = arguments.getArguments()[0];
  99. return origin.getConnection().get().getWindowModel().getInputModel().get()
  100. .getNumLines("PRIVMSG " + target + " :" + arguments.getArgumentsAsString(1));
  101. } else {
  102. return 1;
  103. }
  104. }
  105. }