mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-24 14:16:45 +01:00
Add some string injection for commands
This commit is contained in:
parent
899a37edbc
commit
02cacb9e94
@ -26,8 +26,11 @@ public interface LevelUpCommand {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Execute the command
|
* Execute the command
|
||||||
|
* @param player the player
|
||||||
|
* @param primarySkillType the skill
|
||||||
|
* @param level the level of the skill
|
||||||
*/
|
*/
|
||||||
void executeCommand();
|
void executeCommand(McMMOPlayer player, PrimarySkillType primarySkillType, int level);
|
||||||
|
|
||||||
class LevelUpCommandBuilder {
|
class LevelUpCommandBuilder {
|
||||||
private Set<PrimarySkillType> skillFilter = null;
|
private Set<PrimarySkillType> skillFilter = null;
|
||||||
|
@ -7,7 +7,6 @@ import com.gmail.nossr50.util.LogUtils;
|
|||||||
import org.bukkit.Bukkit;
|
import org.bukkit.Bukkit;
|
||||||
import org.jetbrains.annotations.NotNull;
|
import org.jetbrains.annotations.NotNull;
|
||||||
|
|
||||||
import java.util.Collection;
|
|
||||||
import java.util.LinkedList;
|
import java.util.LinkedList;
|
||||||
import java.util.Objects;
|
import java.util.Objects;
|
||||||
import java.util.Set;
|
import java.util.Set;
|
||||||
@ -16,18 +15,18 @@ import java.util.function.BiPredicate;
|
|||||||
public class LevelUpCommandImpl implements LevelUpCommand {
|
public class LevelUpCommandImpl implements LevelUpCommand {
|
||||||
private final BiPredicate<PrimarySkillType, Integer> predicate;
|
private final BiPredicate<PrimarySkillType, Integer> predicate;
|
||||||
private final boolean logInfo;
|
private final boolean logInfo;
|
||||||
private final @NotNull LinkedList<String> commandStr;
|
private final @NotNull LinkedList<String> commands;
|
||||||
|
|
||||||
public LevelUpCommandImpl(@NotNull BiPredicate<PrimarySkillType, Integer> predicate, @NotNull String commandStr, boolean logInfo) {
|
public LevelUpCommandImpl(@NotNull BiPredicate<PrimarySkillType, Integer> predicate, @NotNull String command, boolean logInfo) {
|
||||||
this.predicate = predicate;
|
this.predicate = predicate;
|
||||||
this.commandStr = new LinkedList<>();
|
this.commands = new LinkedList<>();
|
||||||
this.commandStr.add(commandStr);
|
this.commands.add(command);
|
||||||
this.logInfo = logInfo;
|
this.logInfo = logInfo;
|
||||||
}
|
}
|
||||||
|
|
||||||
public LevelUpCommandImpl(@NotNull BiPredicate<PrimarySkillType, Integer> predicate, @NotNull LinkedList<String> commandStr, boolean logInfo) {
|
public LevelUpCommandImpl(@NotNull BiPredicate<PrimarySkillType, Integer> predicate, @NotNull LinkedList<String> commands, boolean logInfo) {
|
||||||
this.predicate = predicate;
|
this.predicate = predicate;
|
||||||
this.commandStr = commandStr;
|
this.commands = commands;
|
||||||
this.logInfo = logInfo;
|
this.logInfo = logInfo;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -37,36 +36,57 @@ public class LevelUpCommandImpl implements LevelUpCommand {
|
|||||||
if (predicate.test(primarySkillType, i)) {
|
if (predicate.test(primarySkillType, i)) {
|
||||||
// execute command via server console in Bukkit
|
// execute command via server console in Bukkit
|
||||||
if(logInfo) {
|
if(logInfo) {
|
||||||
mcMMO.p.getLogger().info("Executing command: " + commandStr);
|
mcMMO.p.getLogger().info("Executing command: " + commands);
|
||||||
} else {
|
} else {
|
||||||
LogUtils.debug(mcMMO.p.getLogger(), "Executing command: " + commandStr);
|
LogUtils.debug(mcMMO.p.getLogger(), "Executing command: " + commands);
|
||||||
}
|
}
|
||||||
executeCommand();
|
executeCommand(player, primarySkillType, i);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void executeCommand() {
|
public void executeCommand(McMMOPlayer player, PrimarySkillType primarySkillType, int level) {
|
||||||
// TODO: Change this to debug later
|
// TODO: Change this to debug later
|
||||||
mcMMO.p.getLogger().info("Executing commands for level up: " + commandStr);
|
mcMMO.p.getLogger().info("Executing commands for level up: " + commands);
|
||||||
for (String command : commandStr) {
|
for (String command : commands) {
|
||||||
// TODO: Change this to debug later
|
// TODO: Change this to debug later
|
||||||
mcMMO.p.getLogger().info("Executing command: " + command);
|
mcMMO.p.getLogger().info("Executing command: " + command);
|
||||||
Bukkit.dispatchCommand(Bukkit.getConsoleSender(), command);
|
String injectedCommand = injectedCommand(command, player, primarySkillType, level);
|
||||||
|
// TODO: Remove verbose logging later
|
||||||
|
if (!injectedCommand.equalsIgnoreCase(command)) {
|
||||||
|
mcMMO.p.getLogger().info(("Command has been injected with new values: " + injectedCommand));
|
||||||
|
}
|
||||||
|
Bukkit.dispatchCommand(Bukkit.getConsoleSender(), injectedCommand);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private String injectedCommand(String command, McMMOPlayer player, PrimarySkillType primarySkillType, int level) {
|
||||||
|
// replace %player% with player name, %skill% with skill name, and %level% with level
|
||||||
|
command = safeReplace(command, "%player%", player.getPlayer().getName());
|
||||||
|
command = safeReplace(command, "%skill%", primarySkillType.getName());
|
||||||
|
command = safeReplace(command, "%level%", String.valueOf(level));
|
||||||
|
return command;
|
||||||
|
}
|
||||||
|
|
||||||
|
private String safeReplace(String targetStr, String toReplace, String replacement) {
|
||||||
|
if (replacement == null) {
|
||||||
|
return targetStr;
|
||||||
|
}
|
||||||
|
|
||||||
|
return targetStr.replace(toReplace, replacement);
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean equals(Object o) {
|
public boolean equals(Object o) {
|
||||||
if (this == o) return true;
|
if (this == o) return true;
|
||||||
if (o == null || getClass() != o.getClass()) return false;
|
if (o == null || getClass() != o.getClass()) return false;
|
||||||
LevelUpCommandImpl that = (LevelUpCommandImpl) o;
|
LevelUpCommandImpl that = (LevelUpCommandImpl) o;
|
||||||
return logInfo == that.logInfo && Objects.equals(predicate, that.predicate) && Objects.equals(commandStr, that.commandStr);
|
return logInfo == that.logInfo && Objects.equals(predicate, that.predicate) && Objects.equals(commands, that.commands);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int hashCode() {
|
public int hashCode() {
|
||||||
return Objects.hash(predicate, logInfo, commandStr);
|
return Objects.hash(predicate, logInfo, commands);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@ -74,7 +94,7 @@ public class LevelUpCommandImpl implements LevelUpCommand {
|
|||||||
return "LevelUpCommandImpl{" +
|
return "LevelUpCommandImpl{" +
|
||||||
"predicate=" + predicate +
|
"predicate=" + predicate +
|
||||||
", logInfo=" + logInfo +
|
", logInfo=" + logInfo +
|
||||||
", commandStr='" + commandStr + '\'' +
|
", commandStr='" + commands + '\'' +
|
||||||
'}';
|
'}';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -24,7 +24,9 @@ public class CommandOnLevelUpConfig extends BukkitConfig {
|
|||||||
public static final String COMMANDS = "commands";
|
public static final String COMMANDS = "commands";
|
||||||
|
|
||||||
public CommandOnLevelUpConfig(@NotNull File dataFolder) {
|
public CommandOnLevelUpConfig(@NotNull File dataFolder) {
|
||||||
super("commandonlevelup", dataFolder);
|
super("levelupcommands.yml", dataFolder);
|
||||||
|
// TODO: loadKeys() should really get called in super
|
||||||
|
loadKeys();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -167,6 +167,7 @@ public class mcMMO extends JavaPlugin {
|
|||||||
skillTools = new SkillTools(this); //Load after general config
|
skillTools = new SkillTools(this); //Load after general config
|
||||||
|
|
||||||
//Init configs
|
//Init configs
|
||||||
|
levelUpCommandManager = new LevelUpCommandManager(this);
|
||||||
advancedConfig = new AdvancedConfig(getDataFolder());
|
advancedConfig = new AdvancedConfig(getDataFolder());
|
||||||
commandOnLevelUpConfig = new CommandOnLevelUpConfig(getDataFolder());
|
commandOnLevelUpConfig = new CommandOnLevelUpConfig(getDataFolder());
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
level_up_commands:
|
level_up_commands:
|
||||||
unique_id_here:
|
unique_id_here:
|
||||||
enabled: false
|
enabled: true
|
||||||
condition:
|
condition:
|
||||||
skills:
|
skills:
|
||||||
- 'Swords'
|
- 'Swords'
|
||||||
@ -12,12 +12,11 @@ level_up_commands:
|
|||||||
run_command_as: 'CONSOLE'
|
run_command_as: 'CONSOLE'
|
||||||
log_level: 'INFO'
|
log_level: 'INFO'
|
||||||
other_unique_id_here:
|
other_unique_id_here:
|
||||||
enabled: false
|
enabled: true
|
||||||
condition:
|
condition:
|
||||||
complex_condition:
|
levels: [1, 2, 3, 4, 5]
|
||||||
source: 'player.getLevel() % 2 == 0'
|
|
||||||
commands:
|
commands:
|
||||||
- "say %player% reached an even level!"
|
- "say this command should execute for all skills, %player%!"
|
||||||
- "say Isn't that fun?"
|
- "say Isn't that fun?"
|
||||||
run_command_as: 'CONSOLE'
|
run_command_as: 'CONSOLE'
|
||||||
log_level: 'DEBUG'
|
log_level: 'DEBUG'
|
@ -2,6 +2,7 @@ package com.gmail.nossr50.commands.levelup;
|
|||||||
|
|
||||||
import com.gmail.nossr50.MMOTestEnvironmentBasic;
|
import com.gmail.nossr50.MMOTestEnvironmentBasic;
|
||||||
import com.gmail.nossr50.datatypes.experience.XPGainReason;
|
import com.gmail.nossr50.datatypes.experience.XPGainReason;
|
||||||
|
import com.gmail.nossr50.datatypes.player.McMMOPlayer;
|
||||||
import com.gmail.nossr50.datatypes.skills.PrimarySkillType;
|
import com.gmail.nossr50.datatypes.skills.PrimarySkillType;
|
||||||
import com.gmail.nossr50.events.experience.McMMOPlayerLevelUpEvent;
|
import com.gmail.nossr50.events.experience.McMMOPlayerLevelUpEvent;
|
||||||
import com.gmail.nossr50.mcMMO;
|
import com.gmail.nossr50.mcMMO;
|
||||||
@ -46,7 +47,7 @@ class LevelUpCommandTest extends MMOTestEnvironmentBasic {
|
|||||||
verify(levelUpCommandManager).apply(any(), any(), any());
|
verify(levelUpCommandManager).apply(any(), any(), any());
|
||||||
verify(levelUpCommand).process(any(), any(), any());
|
verify(levelUpCommand).process(any(), any(), any());
|
||||||
// THEN the command should have executed
|
// THEN the command should have executed
|
||||||
verify(levelUpCommand, times(levelsGained)).executeCommand();
|
verify(levelUpCommand, times(levelsGained)).executeCommand(any(McMMOPlayer.class), any(PrimarySkillType.class), anyInt());
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@ -67,7 +68,7 @@ class LevelUpCommandTest extends MMOTestEnvironmentBasic {
|
|||||||
verify(levelUpCommandManager).apply(any(), any(), any());
|
verify(levelUpCommandManager).apply(any(), any(), any());
|
||||||
verify(levelUpCommand).process(any(), any(), any());
|
verify(levelUpCommand).process(any(), any(), any());
|
||||||
// THEN the command should have executed
|
// THEN the command should have executed
|
||||||
verify(levelUpCommand).executeCommand();
|
verify(levelUpCommand).executeCommand(any(McMMOPlayer.class), any(PrimarySkillType.class), anyInt());
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@ -89,12 +90,12 @@ class LevelUpCommandTest extends MMOTestEnvironmentBasic {
|
|||||||
verify(levelUpCommandManager).apply(any(), any(), any());
|
verify(levelUpCommandManager).apply(any(), any(), any());
|
||||||
verify(levelUpCommand).process(any(), any(), any());
|
verify(levelUpCommand).process(any(), any(), any());
|
||||||
// THEN the command should not be run
|
// THEN the command should not be run
|
||||||
verify(levelUpCommand, never()).executeCommand();
|
verify(levelUpCommand, never()).executeCommand(any(McMMOPlayer.class), any(PrimarySkillType.class), anyInt());
|
||||||
}
|
}
|
||||||
|
|
||||||
private LevelUpCommand buildLevelUpCommand(String commandStr, Set<Integer> levels, Set<PrimarySkillType> skillFilter) {
|
private LevelUpCommand buildLevelUpCommand(String commandStr, Set<Integer> levels, Set<PrimarySkillType> skillFilter) {
|
||||||
LevelUpCommand.LevelUpCommandBuilder builder = new LevelUpCommand.LevelUpCommandBuilder();
|
LevelUpCommand.LevelUpCommandBuilder builder = new LevelUpCommand.LevelUpCommandBuilder();
|
||||||
builder.commandString(commandStr)
|
builder.command(commandStr)
|
||||||
.withLevels(levels)
|
.withLevels(levels)
|
||||||
.withLogInfo(true);
|
.withLogInfo(true);
|
||||||
if (skillFilter != null) {
|
if (skillFilter != null) {
|
||||||
@ -106,7 +107,7 @@ class LevelUpCommandTest extends MMOTestEnvironmentBasic {
|
|||||||
|
|
||||||
private LevelUpCommand buildLevelUpCommand(String commandStr, BiPredicate<PrimarySkillType, Integer> predicate) {
|
private LevelUpCommand buildLevelUpCommand(String commandStr, BiPredicate<PrimarySkillType, Integer> predicate) {
|
||||||
LevelUpCommand.LevelUpCommandBuilder builder = new LevelUpCommand.LevelUpCommandBuilder();
|
LevelUpCommand.LevelUpCommandBuilder builder = new LevelUpCommand.LevelUpCommandBuilder();
|
||||||
builder.commandString(commandStr)
|
builder.command(commandStr)
|
||||||
.withPredicate(predicate)
|
.withPredicate(predicate)
|
||||||
.withLogInfo(true);
|
.withLogInfo(true);
|
||||||
return Mockito.spy(builder.build());
|
return Mockito.spy(builder.build());
|
||||||
|
Loading…
Reference in New Issue
Block a user