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     * @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 key : config.getKeys(true)) {
089            if (config.isString(key) || config.isDouble(key) || config.isLong(key) || config.isInt(key)
090                    || config.isBoolean(key)) {
091                String value = config.getString(key);
092                if (value != null && !value.isEmpty()) {
093                    addMessage(locale, MessageKey.of(key), value);
094                    loaded = true;
095                }
096            }
097        }
098
099        return loaded;
100    }
101}