/* * This file is part of Player Analytics (Plan). * * Plan is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License v3 as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Plan is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with Plan. If not, see . */ package com.djrapitops.plan.settings.config; import com.djrapitops.plan.settings.config.paths.CustomizedFileSettings; import com.djrapitops.plan.settings.config.paths.PluginSettings; import com.djrapitops.plan.settings.config.paths.WebserverSettings; import com.djrapitops.plan.storage.file.PlanFiles; import com.djrapitops.plan.utilities.dev.Untrusted; import org.apache.commons.lang3.StringUtils; import java.io.IOException; import java.io.UncheckedIOException; import java.nio.file.Path; import java.nio.file.Paths; import java.util.Collections; public class ResourceSettings { private final PlanFiles files; private final PlanConfig config; public ResourceSettings( PlanFiles files, PlanConfig config ) { this.files = files; this.config = config; } public boolean shouldBeCustomized(String plugin, @Untrusted String fileName) { if (config.isTrue(CustomizedFileSettings.WEB_DEV_MODE) && config.isFalse(PluginSettings.FRONTEND_BETA)) { return true; } ConfigNode fileCustomization = getCustomizationConfigNode(); fileCustomization.setComment(Collections.singletonList("The files are placed in /Plan/web/ if the setting is 'true' when accessed.")); ConfigNode pluginCustomization = fileCustomization.getNode(plugin).orElseGet(() -> fileCustomization.addNode(plugin)); // No longer untrusted in configuration context, but may contain untrusted data in other context. String fileNameNonPath = StringUtils.replaceChars(fileName, '.', ','); if (pluginCustomization.contains(fileNameNonPath)) { return pluginCustomization.getBoolean(fileNameNonPath); } else { pluginCustomization.set(fileNameNonPath, false); try { pluginCustomization.sort(); pluginCustomization.save(); } catch (IOException e) { throw new UncheckedIOException("Could not save config.yml: " + e.getMessage(), e); } return false; } } public ConfigNode getCustomizationConfigNode() { return config.getNode("Customized_files").orElseGet(() -> config.addNode("Customized_files")); } public Path getCustomizationDirectory() { Path customizationDirectory = Paths.get(config.get(CustomizedFileSettings.PATH)); return customizationDirectory.isAbsolute() ? customizationDirectory : files.getDataDirectory().resolve(customizationDirectory); } public Path getPublicHtmlDirectory() { Path customizationDirectory = Paths.get(config.get(WebserverSettings.PUBLIC_HTML_PATH)); return customizationDirectory.isAbsolute() ? customizationDirectory : files.getDataDirectory().resolve(customizationDirectory); } }