2021-01-03 07:21:15 +00:00
|
|
|
package dev.plex.command.impl;
|
2020-11-05 13:40:48 +00:00
|
|
|
|
2020-11-05 21:17:14 +00:00
|
|
|
import com.google.common.collect.ImmutableList;
|
2022-01-27 09:00:50 +00:00
|
|
|
import com.google.common.collect.Lists;
|
2022-01-04 03:04:39 +00:00
|
|
|
import dev.plex.command.PlexCommand;
|
2021-01-03 07:21:15 +00:00
|
|
|
import dev.plex.command.annotation.CommandParameters;
|
|
|
|
import dev.plex.command.annotation.CommandPermissions;
|
|
|
|
import dev.plex.command.exception.CommandArgumentException;
|
|
|
|
import dev.plex.rank.enums.Rank;
|
2022-01-27 09:00:50 +00:00
|
|
|
import dev.plex.util.MojangUtils;
|
|
|
|
import dev.plex.util.PlexLog;
|
2021-01-03 07:21:15 +00:00
|
|
|
import dev.plex.util.PlexUtils;
|
2022-01-27 21:23:01 +00:00
|
|
|
import java.time.LocalDateTime;
|
|
|
|
import java.time.format.DateTimeFormatter;
|
|
|
|
import java.util.List;
|
|
|
|
import java.util.Map;
|
|
|
|
import java.util.UUID;
|
2022-01-27 09:00:50 +00:00
|
|
|
import net.kyori.adventure.text.Component;
|
|
|
|
import net.kyori.adventure.text.format.NamedTextColor;
|
|
|
|
import net.kyori.adventure.text.format.TextDecoration;
|
|
|
|
import org.bukkit.Bukkit;
|
|
|
|
import org.bukkit.OfflinePlayer;
|
|
|
|
import org.bukkit.command.CommandSender;
|
2022-02-04 04:01:30 +00:00
|
|
|
import org.bukkit.entity.Player;
|
2022-01-27 09:00:50 +00:00
|
|
|
import org.jetbrains.annotations.NotNull;
|
2022-02-04 04:49:05 +00:00
|
|
|
import org.jetbrains.annotations.Nullable;
|
2020-11-05 13:40:48 +00:00
|
|
|
|
2022-01-27 09:00:50 +00:00
|
|
|
@CommandParameters(name = "namehistory", description = "Get the name history of a player", usage = "/<command> <player>", aliases = "nh")
|
2022-01-30 01:31:10 +00:00
|
|
|
@CommandPermissions(level = Rank.OP, permission = "plex.namehistory")
|
2020-11-05 13:40:48 +00:00
|
|
|
public class NameHistoryCMD extends PlexCommand
|
|
|
|
{
|
2022-01-27 09:00:50 +00:00
|
|
|
private static final DateTimeFormatter DATE_FORMAT = DateTimeFormatter.ofPattern("MM/dd/yyyy 'at' HH:mm:ss");
|
2020-11-05 13:40:48 +00:00
|
|
|
|
|
|
|
@Override
|
2022-02-04 04:49:05 +00:00
|
|
|
protected Component execute(@NotNull CommandSender sender, @Nullable Player playerSender, String[] args)
|
2020-11-05 13:40:48 +00:00
|
|
|
{
|
|
|
|
if (args.length != 1)
|
2020-11-06 01:29:38 +00:00
|
|
|
{
|
2020-11-05 13:40:48 +00:00
|
|
|
throw new CommandArgumentException();
|
2020-11-06 01:29:38 +00:00
|
|
|
}
|
2020-11-05 13:40:48 +00:00
|
|
|
String username = args[0];
|
2022-01-27 09:00:50 +00:00
|
|
|
|
|
|
|
UUID uuid;
|
|
|
|
OfflinePlayer offlinePlayer = Bukkit.getOfflinePlayerIfCached(username);
|
|
|
|
if (offlinePlayer != null)
|
2020-11-05 13:40:48 +00:00
|
|
|
{
|
2022-01-27 09:00:50 +00:00
|
|
|
uuid = offlinePlayer.getUniqueId();
|
2022-01-30 21:03:47 +00:00
|
|
|
}
|
|
|
|
else
|
2020-11-05 13:40:48 +00:00
|
|
|
{
|
2022-01-27 09:00:50 +00:00
|
|
|
uuid = MojangUtils.getUUID(username);
|
2020-11-05 13:40:48 +00:00
|
|
|
}
|
|
|
|
|
2022-01-27 09:00:50 +00:00
|
|
|
if (uuid == null)
|
|
|
|
{
|
|
|
|
return Component.text("Couldn't find this user! Please check if your spelling was correct and this player exists").color(NamedTextColor.RED);
|
|
|
|
}
|
|
|
|
PlexLog.debug("NameHistory UUID: " + uuid);
|
2020-11-05 13:40:48 +00:00
|
|
|
|
2022-01-27 09:00:50 +00:00
|
|
|
List<Map.Entry<String, LocalDateTime>> history = MojangUtils.getNameHistory(uuid);
|
|
|
|
PlexLog.debug("NameHistory Size: " + history.size());
|
|
|
|
List<Component> historyList = Lists.newArrayList();
|
|
|
|
history.forEach(entry ->
|
2020-11-05 13:40:48 +00:00
|
|
|
{
|
2022-01-27 09:00:50 +00:00
|
|
|
if (entry.getValue() != null)
|
2020-11-06 01:29:38 +00:00
|
|
|
{
|
2022-01-27 09:00:50 +00:00
|
|
|
historyList.add(
|
|
|
|
Component.text(entry.getKey()).color(NamedTextColor.GOLD)
|
|
|
|
.append(Component.space())
|
|
|
|
.append(Component.text("-").color(NamedTextColor.DARK_GRAY))
|
|
|
|
.append(Component.space())
|
|
|
|
.append(Component.text(DATE_FORMAT.format(entry.getValue())).color(NamedTextColor.GOLD)));
|
2022-01-30 21:03:47 +00:00
|
|
|
}
|
|
|
|
else
|
2020-11-06 01:29:38 +00:00
|
|
|
{
|
2022-01-27 09:00:50 +00:00
|
|
|
historyList.add(
|
|
|
|
Component.text(entry.getKey()).color(NamedTextColor.GOLD)
|
|
|
|
.append(Component.space()));
|
2020-11-06 01:29:38 +00:00
|
|
|
}
|
2022-01-27 09:00:50 +00:00
|
|
|
});
|
|
|
|
send(sender, Component.text("Name History (" + username + ")").color(NamedTextColor.GOLD));
|
|
|
|
send(sender, Component.text("-----------------------------").color(NamedTextColor.GOLD).decoration(TextDecoration.STRIKETHROUGH, true));
|
|
|
|
historyList.forEach(component -> send(sender, component));
|
|
|
|
return null;
|
2020-11-05 13:40:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2022-01-27 09:00:50 +00:00
|
|
|
public @NotNull List<String> tabComplete(@NotNull CommandSender sender, @NotNull String alias, @NotNull String[] args) throws IllegalArgumentException
|
2020-11-05 13:40:48 +00:00
|
|
|
{
|
2020-11-05 21:17:14 +00:00
|
|
|
return args.length == 1 ? PlexUtils.getPlayerNameList() : ImmutableList.of();
|
2020-11-05 13:40:48 +00:00
|
|
|
}
|
|
|
|
}
|