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.InvalidConfigurationException;
028import org.bukkit.configuration.file.FileConfiguration;
029import org.bukkit.configuration.file.YamlConfiguration;
030
031import java.io.File;
032import java.io.IOException;
033import java.util.Locale;
034
035public class BukkitLocales extends Locales {
036    private final BukkitCommandManager manager;
037
038    public BukkitLocales(BukkitCommandManager manager) {
039        super(manager);
040        this.manager = manager;
041        this.addBundleClassLoader(this.manager.getPlugin().getClass().getClassLoader());
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(Locale.ENGLISH));
049    }
050
051    /**
052     * Loads the given file
053     *
054     * @param file
055     * @param locale
056     * @return If any language keys were added
057     * @throws IOException
058     * @throws InvalidConfigurationException
059     */
060    public boolean loadYamlLanguageFile(File file, Locale locale) throws IOException, InvalidConfigurationException {
061        YamlConfiguration yamlConfiguration = new YamlConfiguration();
062        yamlConfiguration.load(file);
063        return loadLanguage(yamlConfiguration, locale);
064    }
065
066    /**
067     * Loads a file out of the plugin's data folder by the given name
068     *
069     * @param file
070     * @param locale
071     * @return If any language keys were added
072     * @throws IOException
073     * @throws InvalidConfigurationException
074     */
075    public boolean loadYamlLanguageFile(String file, Locale locale) throws IOException, InvalidConfigurationException {
076        YamlConfiguration yamlConfiguration = new YamlConfiguration();
077        yamlConfiguration.load(new File(this.manager.plugin.getDataFolder(), file));
078        return loadLanguage(yamlConfiguration, locale);
079    }
080
081    /**
082     * Loads every message from the Configuration object. Any nested values will be treated as namespace
083     * so acf-core:\n\tfoo: bar will be acf-core.foo = bar
084     *
085     * @param config
086     * @param locale
087     * @return If any language keys were added
088     */
089    public boolean loadLanguage(FileConfiguration config, Locale locale) {
090        boolean loaded = false;
091        for (String key : config.getKeys(true)) {
092            if (config.isString(key) || config.isDouble(key) || config.isLong(key) || config.isInt(key)
093                    || config.isBoolean(key)) {
094                String value = config.getString(key);
095                if (value != null && !value.isEmpty()) {
096                    addMessage(locale, MessageKey.of(key), value);
097                    loaded = true;
098                }
099            }
100        }
101
102        return loaded;
103    }
104}