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

io.micronaut.chatbots.core.ChatbotsConfigurationProperties Maven / Gradle / Ivy

Go to download

Ease the creation of Telegram, Google Chat, Discord chatbots with the Micronaut Framework

There is a newer version: 2.0.0-M6
Show newest version
/*
 * Copyright 2017-2023 original authors
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * https://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package io.micronaut.chatbots.core;

import io.micronaut.context.annotation.ConfigurationProperties;
import io.micronaut.core.annotation.NonNull;
import io.micronaut.core.annotation.Nullable;
import io.micronaut.core.util.StringUtils;
import jakarta.validation.constraints.NotBlank;

import java.util.Arrays;
import java.util.List;

/**
 * {@link ConfigurationProperties} implementation of {@link ChatbotsConfiguration}.
 *
 * @author Sergio del Amo
 * @since 1.0.0
 */
@ConfigurationProperties(ChatbotsConfiguration.PREFIX)
public class ChatbotsConfigurationProperties implements ChatbotsConfiguration {
    /**
     * The default BOT commands folder.
     */
    public static final String DEFAULT_FOLDER = "botcommands";

    /**
     * The default enable value.
     */
    @SuppressWarnings("WeakerAccess")
    public static final boolean DEFAULT_ENABLED = true;

    private boolean enabled = DEFAULT_ENABLED;

    @NonNull
    @NotBlank
    private String folder = DEFAULT_FOLDER;

    @Nullable
    private List possibleStaticCommandExtensions = Arrays.asList(FileExtension.values());

    @Override
    public boolean isEnabled() {
        return this.enabled;
    }

    /**
     * Whether chatbots is enabled. Default value ({@value #DEFAULT_ENABLED}).
     *
     * @param enabled True if view rendering is enabled
     */
    public void setEnabled(boolean enabled) {
        this.enabled = enabled;
    }

    @Override
    @NonNull
    public String getFolder() {
        return folder;
    }

    /**
     * The folder to look for bot commands.
     *
     * @param folder The folder
     */
    public void setFolder(String folder) {
        if (StringUtils.isNotEmpty(folder)) {
            this.folder = folder;
        }
    }

    @Override
    @Nullable
    public List getPossibleStaticCommandExtensions() {
        return possibleStaticCommandExtensions;
    }

    /**
     * Possible static command file extensions. Default values MARKDOWN, HTML, TXT
     *
     * @param possibleStaticCommandExtensions Possible static command file extensions.
     */
    public void setPossibleStaticCommandExtensions(@Nullable List possibleStaticCommandExtensions) {
        this.possibleStaticCommandExtensions = possibleStaticCommandExtensions;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy