Dieser Commit ist enthalten in:
Ursprung
e0a1542b03
Commit
dc234b2b33
@ -1,40 +1,28 @@
|
|||||||
package de.steamwar.bungeecore.commands;
|
package de.steamwar.bungeecore.commands;
|
||||||
|
|
||||||
import de.steamwar.bungeecore.Message;
|
import de.steamwar.bungeecore.Message;
|
||||||
|
import de.steamwar.bungeecore.sql.Mod;
|
||||||
import de.steamwar.bungeecore.sql.Statement;
|
import de.steamwar.bungeecore.sql.Statement;
|
||||||
import de.steamwar.bungeecore.sql.SteamwarUser;
|
|
||||||
import de.steamwar.bungeecore.sql.UserGroup;
|
|
||||||
import de.steamwar.command.SWCommand;
|
import de.steamwar.command.SWCommand;
|
||||||
|
import jdk.internal.net.http.common.Pair;
|
||||||
import net.md_5.bungee.api.connection.ProxiedPlayer;
|
import net.md_5.bungee.api.connection.ProxiedPlayer;
|
||||||
|
|
||||||
import java.sql.ResultSet;
|
import java.sql.ResultSet;
|
||||||
import java.sql.SQLException;
|
|
||||||
import java.sql.SQLSyntaxErrorException;
|
|
||||||
|
|
||||||
public class ModCommand extends SWCommand {
|
public class ModCommand extends SWCommand {
|
||||||
|
|
||||||
private static final Statement set = new Statement("UPDATE Mods Set ModType = ? WHERE ModName = ?");
|
private static final Statement set = new Statement("UPDATE Mods Set ModType = ? WHERE ModName = ? AND ModType = ?");
|
||||||
private static final Statement findFirst = new Statement("SELECT * FROM Mods WHERE ModType = 0 LIMIT 1");
|
private static final Statement findFirst = new Statement("SELECT * FROM Mods WHERE ModType = 0 LIMIT 1");
|
||||||
|
|
||||||
private static final Statement get = new Statement("SELECT * FROM Mods WHERE ModName = ?");
|
private static final Statement get = new Statement("SELECT * FROM Mods WHERE ModName = ?");
|
||||||
|
|
||||||
public ModCommand() {
|
public ModCommand() {
|
||||||
super("mod", "bungeecore.teamchat", "mods");
|
super("mod", "bungeecore.softreload", "mods");
|
||||||
}
|
}
|
||||||
|
|
||||||
@Register(value = {"set"},description = "MOD_COMMAND_SET_USAGE")
|
@Register(value = {"set"},description = "MOD_COMMAND_SET_USAGE")
|
||||||
public void set(ProxiedPlayer p,String modName,Integer newModType) {
|
public void set(ProxiedPlayer p,String modName,String platform,Integer newModType) {
|
||||||
SteamwarUser user = SteamwarUser.get(p.getUniqueId());
|
boolean modExists = get.select(ResultSet::next,modName,Mod.Platform.valueOf(platform));
|
||||||
UserGroup group = user.getUserGroup();
|
|
||||||
|
|
||||||
if(!group.isAdminGroup()) {
|
|
||||||
Message.send("MOD_COMMAND_SET_USAGE",p);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
boolean modExists = get.select(ResultSet::next,modName);
|
|
||||||
|
|
||||||
System.out.println(modExists);
|
|
||||||
|
|
||||||
if(!modExists) {
|
if(!modExists) {
|
||||||
Message.send("MOD_COMMAND_NOT_FOUND_IN_DATABASE",p,modName);
|
Message.send("MOD_COMMAND_NOT_FOUND_IN_DATABASE",p,modName);
|
||||||
@ -46,19 +34,13 @@ public class ModCommand extends SWCommand {
|
|||||||
Message.send("MOD_CHANGED_TYPE",p,modName,newModType);
|
Message.send("MOD_CHANGED_TYPE",p,modName,newModType);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Register(value = {"next"},description = "MOD_COMMAND_NEXT_USAGE")
|
@Register()
|
||||||
public void next(ProxiedPlayer p) {
|
public void next(ProxiedPlayer p) {
|
||||||
SteamwarUser user = SteamwarUser.get(p.getUniqueId());
|
Pair<String ,Integer> foundMod = findFirst.select(rs -> {
|
||||||
UserGroup group = user.getUserGroup();
|
|
||||||
|
|
||||||
if(!group.isAdminGroup()) {
|
|
||||||
Message.send("MOD_COMMAND_NEXT_USAGE",p);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
String foundMod = findFirst.select(rs -> {
|
|
||||||
if(rs.next()) {
|
if(rs.next()) {
|
||||||
return rs.getString("ModName");
|
String name = rs.getString("ModName");
|
||||||
|
Integer platform = rs.getInt("Platform");
|
||||||
|
return new Pair<>(name,platform);
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
});
|
});
|
||||||
@ -68,6 +50,6 @@ public class ModCommand extends SWCommand {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
Message.send("MOD_FOUND_NEXT_MOD",p,foundMod);
|
Message.send("MOD_FOUND_NEXT_MOD",p,foundMod.first, Mod.Platform.getByValue(foundMod.second));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -71,6 +71,17 @@ public class Mod {
|
|||||||
public int get() {
|
public int get() {
|
||||||
return value;
|
return value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static String getByValue(int val) {
|
||||||
|
String platform;
|
||||||
|
switch (val) {
|
||||||
|
case 0 : platform = "Forge";
|
||||||
|
case 1: platform = "Labymod";
|
||||||
|
case 2: platform = "Fabric";
|
||||||
|
default: platform = "";
|
||||||
|
}
|
||||||
|
return platform;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public enum ModType {
|
public enum ModType {
|
||||||
|
@ -659,8 +659,7 @@ ADVENT_CALENDAR_OPEN=§7You got §e{0} §7from the advent calendar!
|
|||||||
|
|
||||||
#Mod Command
|
#Mod Command
|
||||||
MOD_COMMAND_SET_USAGE=§7/mod [mod name] [ModType 1-4]
|
MOD_COMMAND_SET_USAGE=§7/mod [mod name] [ModType 1-4]
|
||||||
MOD_COMMAND_NEXT_USAGE=§7/mod next
|
|
||||||
MOD_CHANGED_TYPE=§7Successfully reclassified mod {0} to type {1}!
|
MOD_CHANGED_TYPE=§7Successfully reclassified mod {0} to type {1}!
|
||||||
MOD_NO_MORE_UNCLASSIFIED_MODS=§7No more unclassified mods found in databank!
|
MOD_NO_MORE_UNCLASSIFIED_MODS=§7No more unclassified mods found in databank!
|
||||||
MOD_FOUND_NEXT_MOD=§7Next unclassified mod is {0}!
|
MOD_FOUND_NEXT_MOD=§7Next unclassified mod is {0}!
|
||||||
MOD_COMMAND_NOT_FOUND_IN_DATABASE=§7The Mod {0} was§c not §7found in the database!
|
MOD_COMMAND_NOT_FOUND_IN_DATABASE=§7The Mod {0} on platform {1} was§c not §7found in the database!
|
In neuem Issue referenzieren
Einen Benutzer sperren