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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. /*
  2. * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
  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.CommandManager;
  30. import com.dmdirc.commandparser.CommandType;
  31. import com.dmdirc.commandparser.commands.Command;
  32. import com.dmdirc.commandparser.commands.IntelligentCommand;
  33. import com.dmdirc.commandparser.commands.WrappableCommand;
  34. import com.dmdirc.commandparser.commands.context.CommandContext;
  35. import com.dmdirc.commandparser.commands.context.ServerCommandContext;
  36. import com.dmdirc.ui.input.AdditionalTabTargets;
  37. import com.dmdirc.ui.input.TabCompletionType;
  38. import com.dmdirc.ui.interfaces.InputWindow;
  39. import com.dmdirc.ui.messages.Styliser;
  40. /**
  41. * Allows the user to open a query dialog with another user.
  42. */
  43. public class OpenQuery extends Command implements IntelligentCommand,
  44. WrappableCommand {
  45. /** A command info object for this command. */
  46. public static final CommandInfo INFO = new BaseCommandInfo("query",
  47. "query <user> [message] - opens a query with the specified user",
  48. CommandType.TYPE_SERVER);
  49. /** {@inheritDoc} */
  50. @Override
  51. public void execute(final FrameContainer origin,
  52. final CommandArguments args, final CommandContext context) {
  53. if (args.getArguments().length == 0) {
  54. showUsage(origin, args.isSilent(), "query", "<target> <message>");
  55. return;
  56. }
  57. final Server server = ((ServerCommandContext) context).getServer();
  58. if (server.getParser().isValidChannelName(args.getArguments()[0])) {
  59. sendLine(origin, args.isSilent(), FORMAT_ERROR, "You can't open a query "
  60. + "with a channel; maybe you meant " + Styliser.CODE_FIXED
  61. + Styliser.CODE_BOLD
  62. + CommandManager.getCommandManager().getCommandChar()
  63. + (args.getArguments().length > 1 ? "msg" : "join") + " "
  64. + args.getArgumentsAsString()
  65. + Styliser.CODE_BOLD + Styliser.CODE_FIXED + "?");
  66. return;
  67. }
  68. final Query query = server.getQuery(args.getArguments()[0], !args.isSilent());
  69. if (args.getArguments().length > 1) {
  70. query.sendLine(args.getArgumentsAsString(1), args.getArguments()[0]);
  71. }
  72. if (!args.isSilent()) {
  73. context.getSource().getController().requestWindowFocus(query);
  74. }
  75. }
  76. /** {@inheritDoc} */
  77. @Override
  78. public AdditionalTabTargets getSuggestions(final int arg,
  79. final IntelligentCommandContext context) {
  80. final AdditionalTabTargets targets = new AdditionalTabTargets();
  81. if (arg == 0) {
  82. targets.excludeAll();
  83. targets.include(TabCompletionType.CHANNEL_NICK);
  84. }
  85. return targets;
  86. }
  87. /** {@inheritDoc} */
  88. @Override
  89. public int getLineCount(final InputWindow origin, final CommandArguments arguments) {
  90. if (arguments.getArguments().length >= 2) {
  91. final String target = arguments.getArguments()[0];
  92. return origin.getContainer().getServer().getNumLines("PRIVMSG "
  93. + target + " :" + arguments.getArgumentsAsString(1));
  94. } else {
  95. return 1;
  96. }
  97. }
  98. }