Merge pull request #23 from saxnbt/main

Add myadmin and login messages
This commit is contained in:
Business Goose 2022-03-22 18:24:28 +00:00 committed by GitHub
commit afce2a9713
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 58 additions and 2 deletions

View file

@ -12,7 +12,7 @@ public class Admin
{
private final UUID uuid;
private String lastLoginName;
private final String loginMessage;
private String loginMessage;
private final boolean isSeniorAdmin;
private final boolean isTelnetAdmin;
private final List<String> consoleAliases;
@ -115,6 +115,11 @@ public class Admin
ips.clear();
}
public void setCustomLoginMessage(String newLoginMessage)
{
this.loginMessage = newLoginMessage;
}
public Date getLastLogin()
{
return lastLogin;
@ -124,7 +129,7 @@ public class Admin
{
return loginMessage;
}
public boolean isSeniorAdmin()
{
return isSeniorAdmin;

View file

@ -0,0 +1,51 @@
package me.StevenLawson.TotalFreedomMod.commands;
import me.StevenLawson.TotalFreedomMod.admin.AdminList;
import org.apache.commons.lang3.StringUtils;
import org.bukkit.ChatColor;
import org.bukkit.command.Command;
import org.bukkit.command.CommandSender;
import org.bukkit.entity.Player;
import java.util.UUID;
@CommandPermissions(level = AdminLevel.SUPER, source = SourceType.ONLY_IN_GAME)
@CommandParameters(description = "Manages your admin login message and other utilities.", usage = "/<command> <clear <variable> | setloginmessage <message>>")
public class Command_myadmin extends FreedomCommand {
@Override
public boolean run(CommandSender sender, Player sender_p, Command cmd, String commandLabel, String[] args, boolean senderIsConsole) {
if (args.length >= 2) {
if ("setloginmessage".equalsIgnoreCase(args[0])) {
final String inputMessage = StringUtils.join(args, " ", 1, args.length); // Parse the input provided.
final UUID uuid = sender_p.getUniqueId(); // Get the sender's uuid as a variable.
playerMsg(ChatColor.GRAY + "Set your custom login message."); // Notify player that the login message has been set.
AdminList.getEntry(uuid).setCustomLoginMessage(inputMessage); // Set the custom login message to the value.
AdminList.save(AdminList.getEntry(uuid)); // Save the modified value to the super admin configuration.
AdminList.updateIndexLists(); // Update and refresh configuration.
return true;
} else if ("clear".equalsIgnoreCase(args[0])) {
if("loginmessage".equals(args[1])) {
final UUID uuid = sender_p.getUniqueId(); // Get the sender's uuid as a variable.
playerMsg(ChatColor.GRAY + "Cleared your custom login message."); // Notify player that the login message has been set.
AdminList.getEntry(uuid).setCustomLoginMessage(""); // Set the custom login message to the value.
AdminList.save(AdminList.getEntry(uuid)); // Save the modified value to the super admin configuration.
AdminList.updateIndexLists(); // Update and refresh configuration.
return true;
} else {
return false;
}
} else {
return false;
}
} else {
return false;
}
}
}