blob: 73c6fafe59b5a1ac18b35f55b19a58d99c0253d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
/*
* Copyright (C) 2021 Elytrium
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package net.elytrium.limboauth.command;
import com.google.common.collect.ImmutableList;
import com.velocitypowered.api.command.CommandSource;
import com.velocitypowered.api.command.SimpleCommand;
import java.util.List;
import java.util.stream.Collectors;
import java.util.stream.Stream;
import net.elytrium.limboauth.LimboAuth;
import net.elytrium.limboauth.Settings;
import net.kyori.adventure.text.Component;
import net.kyori.adventure.text.serializer.legacy.LegacyComponentSerializer;
public class LimboAuthCommand implements SimpleCommand {
private final LimboAuth plugin;
public LimboAuthCommand(LimboAuth plugin) {
this.plugin = plugin;
}
@Override
public List<String> suggest(SimpleCommand.Invocation invocation) {
CommandSource source = invocation.source();
String[] args = invocation.arguments();
if (args.length == 0) {
return this.getSubCommands()
.filter(cmd -> source.hasPermission("limboauth.admin." + cmd))
.collect(Collectors.toList());
} else if (args.length == 1) {
return this.getSubCommands()
.filter(cmd -> source.hasPermission("limboauth.admin." + cmd))
.filter(str -> str.regionMatches(true, 0, args[0], 0, args[0].length()))
.collect(Collectors.toList());
}
return ImmutableList.of();
}
@Override
public void execute(SimpleCommand.Invocation invocation) {
CommandSource source = invocation.source();
String[] args = invocation.arguments();
if (args.length == 1) {
if (args[0].equalsIgnoreCase("reload") && source.hasPermission("limboauth.admin.reload")) {
try {
this.plugin.reload();
source.sendMessage(LegacyComponentSerializer.legacyAmpersand().deserialize(Settings.IMP.MAIN.STRINGS.RELOAD));
} catch (Exception e) {
source.sendMessage(LegacyComponentSerializer.legacyAmpersand().deserialize(Settings.IMP.MAIN.STRINGS.RELOAD_FAILED));
e.printStackTrace();
}
return;
}
}
this.showHelp(source);
}
private void showHelp(CommandSource source) {
source.sendMessage(Component.text("§eThis server is using LimboAuth and LimboAPI"));
source.sendMessage(Component.text("§e(c) 2021 Elytrium"));
source.sendMessage(Component.text("§ahttps://ely.su/github/"));
source.sendMessage(Component.text("§r"));
source.sendMessage(Component.text("§fAvailable subcommands:"));
// Java moment
this.getSubCommands()
.filter(cmd -> source.hasPermission("limboauth.admin." + cmd))
.forEach(cmd -> {
if (cmd.equals("reload")) {
source.sendMessage(Component.text(" §a/limboauth reload §8- §eReload config"));
}
});
}
private Stream<String> getSubCommands() {
return Stream.of("reload");
}
}
|