Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

Message.java 4.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  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.BaseCommandInfo;
  26. import com.dmdirc.commandparser.CommandArguments;
  27. import com.dmdirc.commandparser.CommandInfo;
  28. import com.dmdirc.commandparser.CommandType;
  29. import com.dmdirc.commandparser.commands.Command;
  30. import com.dmdirc.commandparser.commands.CommandOptions;
  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.parser.interfaces.Parser;
  36. import com.dmdirc.ui.input.AdditionalTabTargets;
  37. import com.dmdirc.ui.input.TabCompletionType;
  38. import com.dmdirc.ui.interfaces.InputWindow;
  39. /**
  40. * Allows the user to send privmsgs.
  41. */
  42. @CommandOptions(allowOffline = false)
  43. public class Message extends Command implements IntelligentCommand,
  44. WrappableCommand {
  45. /** A command info object for this command. */
  46. public static final CommandInfo INFO = new BaseCommandInfo("msg",
  47. "msg <target> <message> - sends a private message",
  48. CommandType.TYPE_SERVER);
  49. /** {@inheritDoc} */
  50. @Override
  51. public void execute(final FrameContainer origin,
  52. final CommandArguments args, final CommandContext context) {
  53. final Server server = ((ServerCommandContext) context).getServer();
  54. if (args.getArguments().length < 2) {
  55. showUsage(origin, args.isSilent(), "msg", "<target> <message>");
  56. } else {
  57. final String target = args.getArguments()[0];
  58. final String message = args.getArgumentsAsString(1);
  59. sendLine(origin, args.isSilent(), "selfMessage", target, message);
  60. // If this is a known server or channel, and this is not a silent
  61. // invokation, use sendLine, else send it raw to the parser.
  62. if (!args.isSilent() && server.hasChannel(target)) {
  63. server.getChannel(target).sendLine(message);
  64. } else if (!args.isSilent() && server.hasQuery(target)) {
  65. server.getQuery(target).sendLine(message, target);
  66. } else {
  67. final Parser parser = server.getParser();
  68. if (parser == null) {
  69. // This can happen if the server gets disconnected after
  70. // the command manager has checked the @CommandOptions
  71. // annotation. Yay for concurrency.
  72. sendLine(origin, args.isSilent(), FORMAT_ERROR,
  73. "You must be connected to use this command");
  74. } else {
  75. parser.sendMessage(target, message);
  76. }
  77. }
  78. }
  79. }
  80. /** {@inheritDoc} */
  81. @Override
  82. public AdditionalTabTargets getSuggestions(final int arg,
  83. final IntelligentCommandContext context) {
  84. final AdditionalTabTargets res = new AdditionalTabTargets();
  85. if (arg == 0) {
  86. res.excludeAll();
  87. res.include(TabCompletionType.CHANNEL_NICK);
  88. res.include(TabCompletionType.CHANNEL);
  89. res.include(TabCompletionType.QUERY_NICK);
  90. }
  91. return res;
  92. }
  93. /** {@inheritDoc} */
  94. @Override
  95. public int getLineCount(final InputWindow origin, final CommandArguments arguments) {
  96. if (arguments.getArguments().length >= 2) {
  97. final String target = arguments.getArguments()[0];
  98. return origin.getContainer().getServer().getNumLines("PRIVMSG "
  99. + target + " :" + arguments.getArgumentsAsString(1));
  100. } else {
  101. return 1;
  102. }
  103. }
  104. }