All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.afarion1.command_handler.command.config.CommandConfig Maven / Gradle / Ivy

There is a newer version: 0.1.2
Show newest version
package com.github.afarion1.command_handler.command.config;

import net.dv8tion.jda.api.Permission;

import java.time.Duration;
import java.util.Collections;
import java.util.List;

/**
 * Represent configuration of command
 */
public final class CommandConfig {
    private final List nameAndAliases;
    private final String desc;
    private final String verboseDesc;
    private final CommandListType listType;
    private final Duration commandCooldown;
    private final List discordPerms;
    private final Duration commandGuildCooldown;
    private final List arguments;
    private final boolean executeInGuildOnly;
    private final boolean rawArgs;
    private final String rawArgsName;
    private final String rawArgsDesc;
    private final boolean executeIfCantCheckCooldown;
    private final String commandArgumentsSignature;
    private final boolean cleanCooldownRecords;
    private final Duration cooldownRecordsCleaningPeriod;


    CommandConfig(List nameAndAliases, String desc, String verboseDesc, CommandListType listType, Duration commandCooldown, List discordPerms, Duration commandGuildCooldown, List arguments, boolean executeInGuildOnly, boolean rawArgs, String rawArgsName, String rawArgsDesc, boolean executeIfCantCheckCooldown, String commandArgumentsSignature, boolean cleanCooldownRecords, Duration cooldownRecordsCleaningPeriod) {
        //keep everything immutable
        this.nameAndAliases = Collections.unmodifiableList(nameAndAliases);
        this.desc = desc;
        this.verboseDesc = verboseDesc;
        this.listType = listType;
        this.commandCooldown = commandCooldown;
        this.discordPerms = Collections.unmodifiableList(discordPerms);
        this.commandGuildCooldown = commandGuildCooldown;
        this.arguments = Collections.unmodifiableList(arguments);
        this.executeInGuildOnly = executeInGuildOnly;
        this.rawArgs = rawArgs;
        this.rawArgsName = rawArgsName;
        this.rawArgsDesc = rawArgsDesc;
        this.executeIfCantCheckCooldown = executeIfCantCheckCooldown;
        this.commandArgumentsSignature = commandArgumentsSignature;
        this.cleanCooldownRecords = cleanCooldownRecords;
        this.cooldownRecordsCleaningPeriod = cooldownRecordsCleaningPeriod;
    }

    public List getNameAndAliases() {
        return nameAndAliases;
    }

    public String getName() {
        return nameAndAliases.get(0);
    }

    public String getDescription() {
        return desc;
    }

    public String getVerboseDesc() {
        return verboseDesc;
    }

    public CommandListType getListType() {
        return listType;
    }

    public Duration getUserCooldown() {
        return commandCooldown;
    }

    public List getDiscordPerms() {
        return discordPerms;
    }

    public Duration getGuildCooldown() {
        return commandGuildCooldown;
    }

    public List getArguments() {
        return arguments;
    }

    public boolean isExecuteInGuildOnly() {
        return executeInGuildOnly;
    }

    public boolean isRawArgs() {
        return rawArgs;
    }

    public String getRawArgsName() {
        return rawArgsName;
    }

    public String getRawArgsDesc() {
        return rawArgsDesc;
    }

    public boolean shouldExecuteIfCantCheckOrSaveCooldown() {
        return executeIfCantCheckCooldown;
    }

    public String getCommandArgumentsSignature() {
        return commandArgumentsSignature;
    }

    public boolean shouldCleanCooldownRecords() {
        return cleanCooldownRecords;
    }

    public Duration getCooldownRecordsCleaningPeriod() {
        return cooldownRecordsCleaningPeriod;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy