package net.knarcraft.paidsigns.manager; import net.knarcraft.paidsigns.PaidSigns; import net.knarcraft.paidsigns.container.PaidSign; import net.knarcraft.paidsigns.container.PaidSignCondition; import net.knarcraft.paidsigns.property.OptionState; import org.bukkit.configuration.ConfigurationSection; import org.bukkit.configuration.file.YamlConfiguration; import java.io.File; import java.io.IOException; import java.util.HashMap; import java.util.Map; import java.util.logging.Level; /** * A manager that keeps track of all registered paid signs */ public final class PaidSignManager { private final Map paidSigns; private static final File signsFile = new File(PaidSigns.getInstance().getDataFolder(), "data.yml"); /** * Instantiate a new paid sign manager * * @param paidSigns

The paid signs this manager should manage

*/ public PaidSignManager(Map paidSigns) { this.paidSigns = paidSigns; } /** * Adds a new paid sign to this paid sign manager * * @param paidSign

The paid sign to add

* @throws IOException

If unable to write to the signs file

*/ public void addPaidSign(PaidSign paidSign) throws IOException { this.paidSigns.put(paidSign.getName(), paidSign); saveSigns(); } /** * Removes a paid sign from this paid sign manager * * @param name

The name of the paid sign to remove

* @return

True if a sign was removed

* @throws IOException

If unable to write to the signs file

*/ public boolean removePaidSign(String name) throws IOException { boolean removed = this.paidSigns.remove(name) != null; if (!removed) { return false; } else { saveSigns(); return true; } } /** * Gets the paid sign with the given name * * @param name

The paid sign with the given name

* @return

The paid sign with the given name, or null if it does not exist

*/ public PaidSign getPaidSign(String name) { return paidSigns.get(name); } /** * Gets a copy of all registered paid signs * * @return

All registered paid signs

*/ public Map getAllPaidSigns() { return new HashMap<>(paidSigns); } /** * Loads paid signs from the signs file * * @return

The loaded paid signs

*/ public static Map loadSigns() { YamlConfiguration configuration = YamlConfiguration.loadConfiguration(signsFile); ConfigurationSection signSection = configuration.getConfigurationSection("paidSigns"); if (signSection == null) { PaidSigns.getInstance().getLogger().log(Level.WARNING, "Signs section not found in data.yml"); return new HashMap<>(); } Map paidSigns = new HashMap<>(); for (String name : signSection.getKeys(false)) { double cost = signSection.getDouble(name + ".cost"); String permission = signSection.getString(name + ".permission"); OptionState ignoreCase = OptionState.getFromBoolean(signSection.getBoolean(name + ".ignoreCase")); OptionState ignoreColor = OptionState.getFromBoolean(signSection.getBoolean(name + ".ignoreColor")); PaidSign sign = new PaidSign(name, cost, permission, ignoreCase, ignoreColor); loadConditions(signSection, sign); paidSigns.put(name, sign); } return paidSigns; } /** * Saves all signs registered to this paid sign manager * * @throws IOException

If unable to write to the signs file

*/ public void saveSigns() throws IOException { saveSigns(this.paidSigns); } /** * Saves the given paid signs to the signs file * * @param signs

The signs to save

* @throws IOException

If unable to write to the signs file

*/ public static void saveSigns(Map signs) throws IOException { YamlConfiguration configuration = YamlConfiguration.loadConfiguration(signsFile); ConfigurationSection signSection = configuration.createSection("paidSigns"); for (PaidSign sign : signs.values()) { String name = sign.getName(); signSection.set(name + ".cost", sign.getCost()); signSection.set(name + ".permission", sign.getPermission()); signSection.set(name + ".ignoreCase", sign.getIgnoreCase()); signSection.set(name + ".ignoreColor", sign.getIgnoreColor()); ConfigurationSection conditionsSection = signSection.createSection(name + ".conditions"); Map signConditions = sign.getConditions(); for (short lineIndex : signConditions.keySet()) { PaidSignCondition condition = signConditions.get(lineIndex); conditionsSection.set(lineIndex + ".stringToMatch", condition.getStringToMatch()); conditionsSection.set(lineIndex + ".executeRegEx", condition.executeRegex()); conditionsSection.set(lineIndex + ".ignoreCase", condition.ignoreCase()); conditionsSection.set(lineIndex + ".ignoreColor", condition.ignoreColor()); } } configuration.save(signsFile); } /** * Loads any saved paid sign conditions and applies them to the given sign * * @param signSection

The configuration section containing sign information

* @param sign

The sign to load conditions for

*/ private static void loadConditions(ConfigurationSection signSection, PaidSign sign) { ConfigurationSection conditionSection = signSection.getConfigurationSection(sign.getName() + ".conditions"); if (conditionSection != null) { for (String lineIndex : conditionSection.getKeys(false)) { short lineNumber = Short.parseShort(lineIndex); String stringToMatch = conditionSection.getString(lineIndex + ".stringToMatch"); boolean executeRegEx = conditionSection.getBoolean(lineIndex + ".executeRegEx"); boolean ignoreConditionCase = conditionSection.getBoolean(lineIndex + ".ignoreCase"); boolean ignoreConditionColor = conditionSection.getBoolean(lineIndex + ".ignoreColor"); sign.addCondition(lineNumber, stringToMatch, executeRegEx, OptionState.getFromBoolean(ignoreConditionCase), OptionState.getFromBoolean(ignoreConditionColor)); } } } }