mirror of
https://github.com/Melledy/Nebula.git
synced 2025-12-13 21:04:36 +01:00
50 lines
1.5 KiB
Java
50 lines
1.5 KiB
Java
package emu.nebula.command.commands;
|
|
|
|
import emu.nebula.command.Command;
|
|
import emu.nebula.command.CommandArgs;
|
|
import emu.nebula.command.CommandHandler;
|
|
import emu.nebula.game.account.AccountHelper;
|
|
import emu.nebula.util.Utils;
|
|
|
|
@Command(label = "account", permission = "admin.account", desc = "/account {create | delete} [email] (reserved player uid). Creates or deletes an account.")
|
|
public class AccountCommand implements CommandHandler {
|
|
|
|
@Override
|
|
public String execute(CommandArgs args) {
|
|
if (args.size() < 2) {
|
|
return "Invalid amount of args";
|
|
}
|
|
|
|
String command = args.get(0).toLowerCase();
|
|
String username = args.get(1);
|
|
|
|
switch (command) {
|
|
case "create" -> {
|
|
// Reserved player uid
|
|
int reservedUid = 0;
|
|
|
|
if (args.size() >= 3) {
|
|
reservedUid = Utils.parseSafeInt(args.get(2));
|
|
}
|
|
|
|
if (AccountHelper.createAccount(username, null, reservedUid) != null) {
|
|
return "Account created";
|
|
} else {
|
|
return "Account already exists";
|
|
}
|
|
}
|
|
case "delete" -> {
|
|
if (AccountHelper.deleteAccount(username)) {
|
|
return "Account deleted";
|
|
} else {
|
|
return "Account doesnt exist";
|
|
}
|
|
}
|
|
}
|
|
|
|
// Fallback
|
|
return "Account sub command not found";
|
|
}
|
|
|
|
}
|