Search in sources :

Example 1 with Ban

use of org.spongepowered.api.service.ban.Ban in project SpongeCommon by SpongePowered.

the class SpongeBanBuilder method build.

@Override
public Ban build() {
    if (this.banType == null) {
        throw new IllegalStateException("BanType cannot be null!");
    }
    final LegacyComponentSerializer lcs = LegacyComponentSerializer.legacySection();
    final String sourceName = this.source != null ? lcs.serialize(this.source) : null;
    final String reason = this.reason != null ? lcs.serialize(this.reason) : null;
    if (this.banType == BanTypes.PROFILE.get()) {
        if (this.profile == null) {
            throw new IllegalStateException("User cannot be null");
        }
        return (Ban) new UserBanListEntry(SpongeGameProfile.toMcProfile(this.profile.withoutProperties()), Date.from(this.start), sourceName, this.toDate(this.end), reason);
    }
    if (this.address == null) {
        throw new IllegalStateException("Address cannot be null!");
    }
    return (Ban) new IpBanListEntry(BanUtil.addressToBanCompatibleString(this.address), Date.from(this.start), sourceName, this.toDate(this.end), reason);
}
Also used : IpBanListEntry(net.minecraft.server.players.IpBanListEntry) UserBanListEntry(net.minecraft.server.players.UserBanListEntry) LegacyComponentSerializer(net.kyori.adventure.text.serializer.legacy.LegacyComponentSerializer) Ban(org.spongepowered.api.service.ban.Ban)

Example 2 with Ban

use of org.spongepowered.api.service.ban.Ban in project SpongeCommon by SpongePowered.

the class SpongeBanService method remove.

@Override
public CompletableFuture<Boolean> remove(final Ban ban) {
    if (!this.hasBan(ban)) {
        return CompletableFuture.completedFuture(false);
    }
    if (ban.type().equals(BanTypes.PROFILE.get())) {
        return Sponge.server().userManager().loadOrCreate(((Ban.Profile) ban).profile().uuid()).thenApplyAsync(user -> {
            Sponge.eventManager().post(SpongeEventFactory.createPardonUserEvent(PhaseTracker.getCauseStackManager().currentCause(), (Ban.Profile) ban, user));
            UserListUtil.removeEntry(this.getUserBanList(), SpongeGameProfile.toMcProfile(((Ban.Profile) ban).profile()));
            return true;
        }, SpongeCommon.server());
    } else if (ban.type().equals(BanTypes.IP.get())) {
        Sponge.eventManager().post(SpongeEventFactory.createPardonIpEvent(PhaseTracker.getCauseStackManager().currentCause(), (Ban.IP) ban));
        final InetSocketAddress inetSocketAddress = new InetSocketAddress(((Ban.IP) ban).address(), 0);
        UserListUtil.removeEntry(this.getIPBanList(), ((IpBanListAccessor) this.getIPBanList()).invoker$getIpFromAddress(inetSocketAddress));
        return CompletableFuture.completedFuture(true);
    }
    throw new IllegalArgumentException(String.format("Ban %s had unrecognized BanType %s!", ban, ban.type()));
}
Also used : IpBanListAccessor(org.spongepowered.common.accessor.server.players.IpBanListAccessor) InetSocketAddress(java.net.InetSocketAddress) Ban(org.spongepowered.api.service.ban.Ban) SpongeGameProfile(org.spongepowered.common.profile.SpongeGameProfile) GameProfile(org.spongepowered.api.profile.GameProfile)

Aggregations

Ban (org.spongepowered.api.service.ban.Ban)2 InetSocketAddress (java.net.InetSocketAddress)1 LegacyComponentSerializer (net.kyori.adventure.text.serializer.legacy.LegacyComponentSerializer)1 IpBanListEntry (net.minecraft.server.players.IpBanListEntry)1 UserBanListEntry (net.minecraft.server.players.UserBanListEntry)1 GameProfile (org.spongepowered.api.profile.GameProfile)1 IpBanListAccessor (org.spongepowered.common.accessor.server.players.IpBanListAccessor)1 SpongeGameProfile (org.spongepowered.common.profile.SpongeGameProfile)1