CommandHandler.java 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. package server;
  2. import command.*;
  3. public class CommandHandler {
  4. public static Command[] commands;
  5. public CommandHandler() {
  6. commands = new Command[9];
  7. commands[0] = new command.Kick();
  8. commands[1] = new command.List();
  9. commands[2] = new command.Exit();
  10. commands[3] = new command.Help();
  11. commands[4] = new command.PrivateMessage();
  12. commands[5] = new command.JoinChannel();
  13. commands[6] = new command.Ban();
  14. commands[7] = new command.LeaveChannel();
  15. commands[8] = new command.CreateChannel();
  16. }
  17. public static void executeCommand(String[] command, Client caller) {
  18. for (Command comm: commands) { //Go through all commands
  19. if ((comm.getName()).equals(command[0])) { //Look for command with correct name
  20. if (caller.hasPermission(comm.getPermission())) //Check if the client has permission
  21. if (command.length -1 >= comm.getMinArgNumber()) { //Check the number of arguments
  22. try {
  23. comm.execute(removeFirst(command), caller); //Execute command
  24. } catch (Exception e) {
  25. caller.send("Error while executing command!");
  26. e.printStackTrace();
  27. }
  28. return;
  29. } else {
  30. caller.send("More arguments required!");
  31. return;
  32. }
  33. else {
  34. caller.send("Not enough permissions!");
  35. return;
  36. }
  37. }
  38. }
  39. caller.send("No such command!");
  40. }
  41. public static String[] removeFirst(String[] command) {
  42. String[] newCommand = new String[command.length - 1];
  43. for (int i = 0; i < command.length -1; i++) {
  44. newCommand[i] = command[i + 1];
  45. }
  46. return newCommand;
  47. }
  48. public static String stringArrayToString(String[] strArr) {
  49. return strArr.toString().replace("[", "").replace("]", "").replace(", ", " ");
  50. }
  51. }