Search in sources :

Example 11 with Component

use of com.griefdefender.lib.kyori.adventure.text.Component in project GDHooks by bloodmc.

the class CommandClanTrustAll method execute.

@CommandCompletion("@gdclans @gdtrusttypes @gddummy")
@CommandAlias("clantrustall")
@Description("%clan-trust-all")
@Syntax("<clan> [<accessor|builder|container|manager|resident>]")
@Subcommand("clan trustall")
public void execute(Player player, String clanTag, @Optional String type, @Optional String identifier) {
    TrustType trustType = null;
    final Audience audience = GriefDefender.getAudienceProvider().getSender(player);
    if (type == null) {
        trustType = TrustTypes.BUILDER;
    } else {
        trustType = HooksUtil.getTrustType(type);
        if (trustType == null) {
            audience.sendMessage(MessageConfig.MESSAGE_DATA.getMessage(MessageConfig.TRUST_INVALID));
            return;
        }
    }
    final Clan clan = GDHooks.getInstance().getClanProvider().getClan(clanTag);
    if (clan == null) {
        audience.sendMessage(MessageConfig.MESSAGE_DATA.getMessage(MessageConfig.COMMAND_INVALID_CLAN, ImmutableMap.of("clan", clanTag)));
        return;
    }
    final CommandResult result = GriefDefender.getCore().canUseCommand(player, TrustTypes.MANAGER, identifier);
    if (!result.successful()) {
        if (result.getClaim() != null) {
            final Component message = MessageConfig.MESSAGE_DATA.getMessage(MessageConfig.PERMISSION_TRUST, ImmutableMap.of("owner", result.getClaim().getOwnerDisplayName()));
            audience.sendMessage(message);
        } else {
            audience.sendMessage(MessageConfig.MESSAGE_DATA.getMessage(MessageConfig.PERMISSION_COMMAND_TRUST));
        }
        return;
    }
    PlayerData playerData = GriefDefender.getCore().getPlayerData(player.getWorld().getUID(), player.getUniqueId());
    Set<Claim> claimList = null;
    if (playerData != null) {
        claimList = playerData.getClaims();
    }
    if (playerData == null || claimList == null || claimList.size() == 0) {
        audience.sendMessage(MessageConfig.MESSAGE_DATA.getMessage(MessageConfig.TRUST_NO_CLAIMS));
        return;
    }
    GriefDefender.getEventManager().getCauseStackManager().pushCause(player);
    GDClanTrustClaimEvent.Add event = new GDClanTrustClaimEvent.Add(new ArrayList<>(claimList), ImmutableSet.of(clan), trustType);
    GriefDefender.getEventManager().post(event);
    GriefDefender.getEventManager().getCauseStackManager().popCause();
    if (event.cancelled()) {
        audience.sendMessage(event.getMessage().orElse(MessageConfig.MESSAGE_DATA.getMessage(MessageConfig.TRUST_PLUGIN_CANCEL, ImmutableMap.of("target", clan.getTag()))));
        return;
    }
    for (Claim claim : claimList) {
        if (trustType == TrustTypes.RESIDENT && !claim.isAdminClaim() && !claim.isTown()) {
            continue;
        }
        claim.addClanTrust(clan, trustType);
    }
    final Component message = MessageConfig.MESSAGE_DATA.getMessage(MessageConfig.TRUST_INDIVIDUAL_ALL_CLAIMS, ImmutableMap.of("player", clan.getTag()));
    audience.sendMessage(message);
}
Also used : Audience(com.griefdefender.lib.kyori.adventure.audience.Audience) Clan(com.griefdefender.api.Clan) GDClanTrustClaimEvent(com.griefdefender.hooks.event.GDClanTrustClaimEvent) TrustType(com.griefdefender.api.claim.TrustType) Component(com.griefdefender.lib.kyori.adventure.text.Component) PlayerData(com.griefdefender.api.data.PlayerData) Claim(com.griefdefender.api.claim.Claim) CommandResult(com.griefdefender.api.CommandResult) Description(co.aikar.commands.annotation.Description) Subcommand(co.aikar.commands.annotation.Subcommand) CommandCompletion(co.aikar.commands.annotation.CommandCompletion) Syntax(co.aikar.commands.annotation.Syntax) CommandAlias(co.aikar.commands.annotation.CommandAlias)

Aggregations

Component (com.griefdefender.lib.kyori.adventure.text.Component)11 CommandAlias (co.aikar.commands.annotation.CommandAlias)10 Description (co.aikar.commands.annotation.Description)10 Subcommand (co.aikar.commands.annotation.Subcommand)10 CommandCompletion (co.aikar.commands.annotation.CommandCompletion)9 Syntax (co.aikar.commands.annotation.Syntax)9 Clan (com.griefdefender.api.Clan)9 Audience (com.griefdefender.lib.kyori.adventure.audience.Audience)9 TrustType (com.griefdefender.api.claim.TrustType)8 CommandResult (com.griefdefender.api.CommandResult)7 Claim (com.griefdefender.api.claim.Claim)7 GDClanTrustClaimEvent (com.griefdefender.hooks.event.GDClanTrustClaimEvent)4 ClanPlayer (com.griefdefender.api.ClanPlayer)3 ClaimManager (com.griefdefender.api.claim.ClaimManager)2 ClaimResult (com.griefdefender.api.claim.ClaimResult)2 PlayerData (com.griefdefender.api.data.PlayerData)2 ClanConfig (com.griefdefender.hooks.config.ClanConfig)2 HashSet (java.util.HashSet)2 TextComponent (com.griefdefender.lib.kyori.adventure.text.TextComponent)1 Duration (java.time.Duration)1