66 lines
2.4 KiB
Java
66 lines
2.4 KiB
Java
/*
|
|
* Copyright (c) 2016 Lucko (Luck) <luck@lucko.me>
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
* in the Software without restriction, including without limitation the rights
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in all
|
|
* copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
* SOFTWARE.
|
|
*/
|
|
|
|
package me.lucko.luckperms;
|
|
|
|
import me.lucko.luckperms.commands.CommandManager;
|
|
import me.lucko.luckperms.commands.SenderFactory;
|
|
import org.bukkit.command.Command;
|
|
import org.bukkit.command.CommandExecutor;
|
|
import org.bukkit.command.CommandSender;
|
|
import org.bukkit.command.TabExecutor;
|
|
|
|
import java.util.Arrays;
|
|
import java.util.List;
|
|
|
|
class BukkitCommand extends CommandManager implements CommandExecutor, TabExecutor {
|
|
private static final Factory FACTORY = new Factory();
|
|
|
|
BukkitCommand(LuckPermsPlugin plugin) {
|
|
super(plugin);
|
|
}
|
|
|
|
@Override
|
|
public boolean onCommand(CommandSender sender, Command command, String label, String[] args) {
|
|
return onCommand(FACTORY.wrap(sender), label, Arrays.asList(args));
|
|
}
|
|
|
|
|
|
@Override
|
|
public List<String> onTabComplete(CommandSender sender, Command command, String label, String[] args) {
|
|
return onTabComplete(FACTORY.wrap(sender), Arrays.asList(args));
|
|
}
|
|
|
|
private static class Factory extends SenderFactory<CommandSender> {
|
|
|
|
@Override
|
|
protected void sendMessage(CommandSender sender, String s) {
|
|
sender.sendMessage(s);
|
|
}
|
|
|
|
@Override
|
|
protected boolean hasPermission(CommandSender sender, String node) {
|
|
return sender.hasPermission(node);
|
|
}
|
|
}
|
|
}
|