From a40696f16e5a056b0100214db707ba4150b06dc5 Mon Sep 17 00:00:00 2001 From: Anthony Stirling <77850077+Frooodle@users.noreply.github.com.> Date: Thu, 6 Jun 2024 19:49:53 +0100 Subject: [PATCH] remove settings files update for now --- build.gradle | 2 +- .../SPDF/config/ConfigInitializer.java | 95 ++++++++----------- 2 files changed, 41 insertions(+), 56 deletions(-) diff --git a/build.gradle b/build.gradle index 38ea2b2e..3cddcc32 100644 --- a/build.gradle +++ b/build.gradle @@ -12,7 +12,7 @@ plugins { import com.github.jk1.license.render.* group = 'stirling.software' -version = '0.25.1' +version = '0.25.2' //17 is lowest but we support and recommend 21 sourceCompatibility = '17' diff --git a/src/main/java/stirling/software/SPDF/config/ConfigInitializer.java b/src/main/java/stirling/software/SPDF/config/ConfigInitializer.java index 874d43c3..673fc707 100644 --- a/src/main/java/stirling/software/SPDF/config/ConfigInitializer.java +++ b/src/main/java/stirling/software/SPDF/config/ConfigInitializer.java @@ -1,10 +1,8 @@ package stirling.software.SPDF.config; -import java.io.BufferedReader; import java.io.FileNotFoundException; import java.io.IOException; import java.io.InputStream; -import java.io.InputStreamReader; import java.net.URISyntaxException; import java.nio.file.Files; import java.nio.file.Path; @@ -47,61 +45,48 @@ public class ConfigInitializer } } } else { - // Load the template content from classpath - List templateLines; - try (InputStream in = - getClass().getClassLoader().getResourceAsStream("settings.yml.template")) { - if (in == null) { - throw new FileNotFoundException( - "Resource file not found: settings.yml.template"); - } - templateLines = new ArrayList<>(); - try (var reader = new InputStreamReader(in)) { - try (var bufferedReader = new BufferedReader(reader)) { - String line; - while ((line = bufferedReader.readLine()) != null) { - templateLines.add(line); - } - } - } - } - - // Read the user settings file if it exists - Path userPath = Paths.get("configs", "settings.yml"); - List userLines = - Files.exists(userPath) ? Files.readAllLines(userPath) : new ArrayList<>(); - - List resultLines = new ArrayList<>(); - int position = 0; - for (String templateLine : templateLines) { - // Check if the line is a comment - if (templateLine.trim().startsWith("#")) { - String entry = templateLine.trim().substring(1).trim(); - if (!entry.isEmpty()) { - // Check if this comment has been uncommented in userLines - String key = entry.split(":")[0].trim(); - addLine(resultLines, userLines, templateLine, key, position); - } else { - resultLines.add(templateLine); - } - } - // Check if the line is a key-value pair - else if (templateLine.contains(":")) { - String key = templateLine.split(":")[0].trim(); - addLine(resultLines, userLines, templateLine, key, position); - } - // Handle empty lines - else if (templateLine.trim().length() == 0) { - resultLines.add(""); - } - position++; - } - - // Write the result to the user settings file - Files.write(userPath, resultLines); +// Path templatePath = +// Paths.get( +// getClass() +// .getClassLoader() +// .getResource("settings.yml.template") +// .toURI()); +// Path userPath = Paths.get("configs", "settings.yml"); +// +// List templateLines = Files.readAllLines(templatePath); +// List userLines = +// Files.exists(userPath) ? Files.readAllLines(userPath) : new ArrayList<>(); +// +// List resultLines = new ArrayList<>(); +// int position = 0; +// for (String templateLine : templateLines) { +// // Check if the line is a comment +// if (templateLine.trim().startsWith("#")) { +// String entry = templateLine.trim().substring(1).trim(); +// if (!entry.isEmpty()) { +// // Check if this comment has been uncommented in userLines +// String key = entry.split(":")[0].trim(); +// addLine(resultLines, userLines, templateLine, key, position); +// } else { +// resultLines.add(templateLine); +// } +// } +// // Check if the line is a key-value pair +// else if (templateLine.contains(":")) { +// String key = templateLine.split(":")[0].trim(); +// addLine(resultLines, userLines, templateLine, key, position); +// } +// // Handle empty lines +// else if (templateLine.trim().length() == 0) { +// resultLines.add(""); +// } +// position++; +// } +// +// // Write the result to the user settings file +// Files.write(userPath, resultLines); } - // Ensure the custom settings file exists Path customSettingsPath = Paths.get("configs", "custom_settings.yml"); if (!Files.exists(customSettingsPath)) { Files.createFile(customSettingsPath);