001/*
002 * Copyright (c) 2016-2017 Daniel Ennis (Aikar) - MIT License
003 *
004 *  Permission is hereby granted, free of charge, to any person obtaining
005 *  a copy of this software and associated documentation files (the
006 *  "Software"), to deal in the Software without restriction, including
007 *  without limitation the rights to use, copy, modify, merge, publish,
008 *  distribute, sublicense, and/or sell copies of the Software, and to
009 *  permit persons to whom the Software is furnished to do so, subject to
010 *  the following conditions:
011 *
012 *  The above copyright notice and this permission notice shall be
013 *  included in all copies or substantial portions of the Software.
014 *
015 *  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
016 *  EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
017 *  MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
018 *  NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
019 *  LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
020 *  OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
021 *  WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
022 */
023
024package co.aikar.commands;
025
026import co.aikar.locales.MessageKey;
027import org.bukkit.configuration.ConfigurationSection;
028import org.bukkit.configuration.InvalidConfigurationException;
029import org.bukkit.configuration.file.FileConfiguration;
030import org.bukkit.configuration.file.YamlConfiguration;
031
032import java.io.File;
033import java.io.IOException;
034import java.util.Locale;
035
036public class BukkitLocales extends Locales {
037    private final BukkitCommandManager manager;
038
039    public BukkitLocales(BukkitCommandManager manager) {
040        super(manager);
041        this.manager = manager;
042    }
043
044    @Override
045    public void loadLanguages() {
046        super.loadLanguages();
047        String pluginName = "acf-" + manager.plugin.getDescription().getName();
048        addMessageBundles("acf-minecraft", pluginName, pluginName.toLowerCase());
049    }
050
051    /**
052     * Loads the given file
053     * @param file
054     * @param locale
055     * @return If any language keys were added
056     * @throws IOException
057     * @throws InvalidConfigurationException
058     */
059    public boolean loadYamlLanguageFile(File file, Locale locale) throws IOException, InvalidConfigurationException {
060        YamlConfiguration yamlConfiguration = new YamlConfiguration();
061        yamlConfiguration.load(file);
062        return loadLanguage(yamlConfiguration, locale);
063    }
064
065    /**
066     * Loads a file out of the plugins data folder by the given name
067     * @param file
068     * @param locale
069     * @return If any language keys were added
070     * @throws IOException
071     * @throws InvalidConfigurationException
072     */
073    public boolean loadYamlLanguageFile(String file, Locale locale) throws IOException, InvalidConfigurationException {
074        YamlConfiguration yamlConfiguration = new YamlConfiguration();
075        yamlConfiguration.load(new File(this.manager.plugin.getDataFolder(), file));
076        return loadLanguage(yamlConfiguration, locale);
077    }
078
079    /**
080     * Loads every message from the Configuration object. Any nested values will be treated as namespace
081     * so acf-core:\n\tfoo: bar will be acf-core.foo = bar
082     * @param config
083     * @param locale
084     * @return If any language keys were added
085     */
086    public boolean loadLanguage(FileConfiguration config, Locale locale) {
087        boolean loaded = false;
088        for (String parentKey : config.getKeys(false)) {
089            ConfigurationSection inner = config.getConfigurationSection(parentKey);
090            if (inner == null) {
091                continue;
092            }
093            for (String key : inner.getKeys(false)) {
094                String value = inner.getString(key);
095                if (value != null && !value.isEmpty()) {
096                    addMessage(locale, MessageKey.of(parentKey + "." + key), value);
097                    loaded = true;
098                }
099            }
100        }
101
102        return loaded;
103    }
104}