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.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. /*
  2. * Copyright (c) 2006-2014 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.FrameContainer;
  24. import com.dmdirc.Query;
  25. import com.dmdirc.Server;
  26. import com.dmdirc.commandparser.BaseCommandInfo;
  27. import com.dmdirc.commandparser.CommandArguments;
  28. import com.dmdirc.commandparser.CommandInfo;
  29. import com.dmdirc.commandparser.CommandType;
  30. import com.dmdirc.commandparser.commands.Command;
  31. import com.dmdirc.commandparser.commands.IntelligentCommand;
  32. import com.dmdirc.commandparser.commands.WrappableCommand;
  33. import com.dmdirc.commandparser.commands.context.CommandContext;
  34. import com.dmdirc.commandparser.commands.context.ServerCommandContext;
  35. import com.dmdirc.interfaces.CommandController;
  36. import com.dmdirc.ui.input.AdditionalTabTargets;
  37. import com.dmdirc.ui.input.TabCompletionType;
  38. import com.dmdirc.ui.messages.Styliser;
  39. import javax.annotation.Nonnull;
  40. import javax.inject.Inject;
  41. /**
  42. * Allows the user to open a query dialog with another user.
  43. */
  44. public class OpenQuery extends Command implements IntelligentCommand,
  45. WrappableCommand {
  46. /** A command info object for this command. */
  47. public static final CommandInfo INFO = new BaseCommandInfo("query",
  48. "query <user> [message] - opens a query with the specified user",
  49. CommandType.TYPE_SERVER);
  50. /**
  51. * Creates a new instance of this command.
  52. *
  53. * @param controller The controller to use for command information.
  54. */
  55. @Inject
  56. public OpenQuery(final CommandController controller) {
  57. super(controller);
  58. }
  59. @Override
  60. public void execute(@Nonnull final FrameContainer origin,
  61. final CommandArguments args, final CommandContext context) {
  62. if (args.getArguments().length == 0) {
  63. showUsage(origin, args.isSilent(), "query", "<target> <message>");
  64. return;
  65. }
  66. final Server server = ((ServerCommandContext) context).getServer();
  67. if (server.getParser().isValidChannelName(args.getArguments()[0])) {
  68. sendLine(origin, args.isSilent(), FORMAT_ERROR, "You can't open a query "
  69. + "with a channel; maybe you meant " + Styliser.CODE_FIXED
  70. + Styliser.CODE_BOLD
  71. + getController().getCommandChar()
  72. + (args.getArguments().length > 1 ? "msg" : "join") + " "
  73. + args.getArgumentsAsString()
  74. + Styliser.CODE_BOLD + Styliser.CODE_FIXED + "?");
  75. return;
  76. }
  77. final Query query = server.getQuery(args.getArguments()[0], !args.isSilent());
  78. if (args.getArguments().length > 1) {
  79. query.sendLine(args.getArgumentsAsString(1), args.getArguments()[0]);
  80. }
  81. if (!args.isSilent()) {
  82. //TODO how are we going to handle focusing an existing query?
  83. //context.getSource().getController().requestWindowFocus(query);
  84. return; //NOPMD
  85. }
  86. }
  87. @Override
  88. public AdditionalTabTargets getSuggestions(final int arg,
  89. final IntelligentCommandContext context) {
  90. final AdditionalTabTargets targets = new AdditionalTabTargets();
  91. if (arg == 0) {
  92. targets.excludeAll();
  93. targets.include(TabCompletionType.CHANNEL_NICK);
  94. }
  95. return targets;
  96. }
  97. @Override
  98. public int getLineCount(final FrameContainer origin, final CommandArguments arguments) {
  99. if (arguments.getArguments().length >= 2) {
  100. final String target = arguments.getArguments()[0];
  101. return ((Server) origin.getConnection()).getNumLines("PRIVMSG "
  102. + target + " :" + arguments.getArgumentsAsString(1));
  103. } else {
  104. return 1;
  105. }
  106. }
  107. }