mirror of
https://github.com/plexusorg/Module-HTTPD.git
synced 2024-10-31 17:37:10 +00:00
52 lines
1.9 KiB
Java
52 lines
1.9 KiB
Java
|
package dev.plex.request.impl;
|
||
|
|
||
|
import com.google.gson.GsonBuilder;
|
||
|
import dev.plex.HTTPDModule;
|
||
|
import dev.plex.Plex;
|
||
|
import dev.plex.cache.DataUtils;
|
||
|
import dev.plex.player.PlexPlayer;
|
||
|
import dev.plex.rank.enums.Rank;
|
||
|
import dev.plex.request.AbstractServlet;
|
||
|
import dev.plex.request.GetMapping;
|
||
|
import dev.plex.util.PlexLog;
|
||
|
import jakarta.servlet.http.HttpServletRequest;
|
||
|
import java.util.UUID;
|
||
|
import org.bukkit.Bukkit;
|
||
|
import org.bukkit.OfflinePlayer;
|
||
|
|
||
|
public class IndefBansEndpoint extends AbstractServlet
|
||
|
{
|
||
|
@GetMapping(endpoint = "/api/indefbans/")
|
||
|
public String getBans(HttpServletRequest request)
|
||
|
{
|
||
|
String ipAddress = request.getHeader("X-FORWARDED-FOR");
|
||
|
if (ipAddress == null)
|
||
|
{
|
||
|
ipAddress = request.getRemoteAddr();
|
||
|
}
|
||
|
final PlexPlayer player = DataUtils.getPlayerByIP(ipAddress);
|
||
|
if (player == null)
|
||
|
{
|
||
|
return "Couldn't load your IP Address: " + ipAddress + ". Have you joined the server before?";
|
||
|
}
|
||
|
if (Plex.get().getSystem().equalsIgnoreCase("ranks"))
|
||
|
{
|
||
|
PlexLog.debug("Plex-HTTPD using ranks check");
|
||
|
if (!player.getRankFromString().isAtLeast(Rank.ADMIN))
|
||
|
{
|
||
|
return "Not a high enough rank to view this page.";
|
||
|
}
|
||
|
}
|
||
|
else if (Plex.get().getSystem().equalsIgnoreCase("permissions"))
|
||
|
{
|
||
|
PlexLog.debug("Plex-HTTPD using permissions check");
|
||
|
final OfflinePlayer offlinePlayer = Bukkit.getOfflinePlayer(UUID.fromString(player.getUuid()));
|
||
|
if (!HTTPDModule.getPermissions().playerHas(null, offlinePlayer, "plex.httpd.indefbans.access"))
|
||
|
{
|
||
|
return "Not enough permissions to view this page.";
|
||
|
}
|
||
|
}
|
||
|
return new GsonBuilder().setPrettyPrinting().create().toJson(Plex.get().getPunishmentManager().getIndefiniteBans().stream().toList());
|
||
|
}
|
||
|
}
|