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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  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.Server;
  25. import com.dmdirc.commandparser.CommandArguments;
  26. import com.dmdirc.commandparser.CommandInfo;
  27. import com.dmdirc.commandparser.CommandManager;
  28. import com.dmdirc.commandparser.CommandType;
  29. import com.dmdirc.commandparser.commands.Command;
  30. import com.dmdirc.commandparser.commands.IntelligentCommand;
  31. import com.dmdirc.commandparser.commands.WrappableCommand;
  32. import com.dmdirc.commandparser.commands.context.CommandContext;
  33. import com.dmdirc.commandparser.commands.context.ServerCommandContext;
  34. import com.dmdirc.ui.input.AdditionalTabTargets;
  35. import com.dmdirc.ui.input.TabCompletionType;
  36. import com.dmdirc.ui.interfaces.InputWindow;
  37. import com.dmdirc.ui.messages.Styliser;
  38. /**
  39. * Allows the user to open a query dialog with another user.
  40. * @author chris
  41. */
  42. public final class OpenQuery extends Command implements IntelligentCommand,
  43. WrappableCommand, CommandInfo {
  44. /**
  45. * Creates a new instance of Query.
  46. */
  47. public OpenQuery() {
  48. super();
  49. }
  50. /** {@inheritDoc} */
  51. @Override
  52. public void execute(final FrameContainer origin,
  53. final CommandArguments args, final CommandContext context) {
  54. final Server server = ((ServerCommandContext) context).getServer();
  55. if (args.getArguments().length == 0) {
  56. showUsage(origin, args.isSilent(), "query", "<target> <message>");
  57. return;
  58. }
  59. if (server.getParser().isValidChannelName(args.getArguments()[0])) {
  60. sendLine(origin, args.isSilent(), FORMAT_ERROR, "You can't open a query "
  61. + "with a channel; maybe you meant " + Styliser.CODE_FIXED
  62. + Styliser.CODE_BOLD + CommandManager.getCommandChar()
  63. + (args.getArguments().length > 1 ? "msg" : "join") + " "
  64. + args.getArgumentsAsString()
  65. + Styliser.CODE_BOLD + Styliser.CODE_FIXED + "?");
  66. return;
  67. }
  68. if (!args.isSilent()) {
  69. server.getQuery(args.getArguments()[0]).activateFrame();
  70. }
  71. if (args.getArguments().length > 1) {
  72. server.getQuery(args.getArguments()[0]).sendLine(args.getArgumentsAsString(1),
  73. args.getArguments()[0]);
  74. }
  75. }
  76. /** {@inheritDoc} */
  77. @Override
  78. public String getName() {
  79. return "query";
  80. }
  81. /** {@inheritDoc} */
  82. @Override
  83. public boolean showInHelp() {
  84. return true;
  85. }
  86. /** {@inheritDoc} */
  87. @Override
  88. public CommandType getType() {
  89. return CommandType.TYPE_SERVER;
  90. }
  91. /** {@inheritDoc} */
  92. @Override
  93. public String getHelp() {
  94. return "query <user> [message] - opens a query with the specified user";
  95. }
  96. /** {@inheritDoc} */
  97. @Override
  98. public AdditionalTabTargets getSuggestions(final int arg,
  99. final IntelligentCommandContext context) {
  100. final AdditionalTabTargets targets = new AdditionalTabTargets();
  101. if (arg == 0) {
  102. targets.excludeAll();
  103. targets.include(TabCompletionType.CHANNEL_NICK);
  104. }
  105. return targets;
  106. }
  107. /** {@inheritDoc} */
  108. @Override
  109. public int getLineCount(final InputWindow origin, final CommandArguments arguments) {
  110. if (arguments.getArguments().length >= 2) {
  111. final String target = arguments.getArguments()[0];
  112. return origin.getContainer().getServer().getNumLines("PRIVMSG "
  113. + target + " :" + arguments.getArgumentsAsString(1));
  114. } else {
  115. return 1;
  116. }
  117. }
  118. }