package net.knarcraft.minecraftserverlauncher.utility; import net.knarcraft.minecraftserverlauncher.Main; import net.knarcraft.minecraftserverlauncher.userinterface.WebBrowser; import java.io.BufferedReader; import java.io.BufferedWriter; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.FileWriter; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.io.OutputStreamWriter; import java.net.URI; import java.net.URISyntaxException; import java.net.URL; import java.nio.file.Files; import java.nio.file.Path; import java.nio.file.StandardCopyOption; import java.util.Scanner; /** * A holding class for methods shared between classes * * @author Kristian Knarvik * @version 1.0.0 * @since 1.0.0 */ public final class CommonFunctions { private static final String filesDirectory = Main.getApplicationWorkDirectory() + File.separator + "files"; /** * Creates all folders necessary for tests and normal operation * * @throws FileNotFoundException

If unable to create a folder

*/ public static void createAllFolders() throws FileNotFoundException { createFolder(new File(filesDirectory)); createFolder(new File(filesDirectory + File.separator + "Jars")); } /** * Creates a given folder * * @param folder

The folder to create

* @throws FileNotFoundException

If unable to create the folder

*/ public static void createFolder(File folder) throws FileNotFoundException { if (!folder.exists()) { if (!folder.mkdirs()) { throw new FileNotFoundException("Cannot create necessary directory."); } } } /** * Gets a resource as an InputStream * * @param resourceName

The name of the resource you want to readFromServer

* @return

An input stream which can be used to access the resource

*/ public static InputStream getResourceAsStream(String resourceName) { ClassLoader classloader = Thread.currentThread().getContextClassLoader(); return classloader.getResourceAsStream(resourceName); } /** * Gets a resource as a Scanner * * @param resourceName

The name of the resource you want to readFromServer

* @return

A scanner which can be used to readFromServer contents of the resource

* @throws FileNotFoundException

If the resource is not found

*/ public static Scanner getResourceAsScanner(String resourceName) throws FileNotFoundException { InputStream is = getResourceAsStream(resourceName); if (is == null) { throw new FileNotFoundException("The resource was not found."); } return new Scanner(is); } /** * Finds a substring between two substrings in a string * * @param string

The string containing the substrings

* @param start

The substring before the wanted substring

* @param end

The substring after the wanted substring

* @return

The wanted substring

*/ public static String stringBetween(String string, String start, String end) { int startPos = string.indexOf(start) + start.length(); if (!string.contains(start) || string.indexOf(end, startPos) < startPos) { return ""; } return string.substring(startPos, string.indexOf(end, startPos)); } /** * Reads a file from a website * *

This is used to find the newest version of jars and the software.

* * @param path

The full url of the file to readFromServer

* @return

True if successful. False otherwise

* @throws IOException

If unable to find or read the file

*/ public static String readRemoteFile(String path) throws IOException { URL url = new URL(path); return new Scanner(url.openStream()).useDelimiter("\\Z").next(); } /** * Gets a buffered reader for reading a given file * * @param path

The path of the file to read

* @return

A buffered reader for reading the file

* @throws FileNotFoundException

If the file does not exist

*/ public static BufferedReader getFileReader(String path) throws FileNotFoundException { return new BufferedReader(new InputStreamReader(new FileInputStream(path))); } /** * Gets a buffered writer for writing to a given file * @param path

The path to the file to write to

* @return

A buffered writer for writing to the file

* @throws FileNotFoundException

If the file does not exist

*/ public static BufferedWriter getFileWriter(String path) throws FileNotFoundException { return new BufferedWriter(new OutputStreamWriter(new FileOutputStream(path))); } /** * Reads a file from disk * * @param path

The path of the file to read

* @return

The contents of the file

* @throws IOException

If unable to find or read the file

*/ public static String readFile(String path) throws IOException { return CommonFunctions.readBufferedReader(getFileReader(path)); } /** * Writes text to a file and adds a trailing newline * * @param path

The path of the file to write to

* @param text

The text to write

* @throws IOException

If unable to write to the file

*/ public static void writeFile(String path, String text) throws IOException { writeFile(path, text, !text.equals("")); } /** * Writes text to a file * * @param path

The path of the file to write to

* @param text

The text to write

* @param addTrailingNewline

Whether to add a new line at the end of the file

* @throws IOException

If unable to write to the file

*/ public static void writeFile(String path, String text, Boolean addTrailingNewline) throws IOException { BufferedWriter writer = getFileWriter(path); writer.write(text); if (addTrailingNewline) { writer.newLine(); } writer.close(); } /** * Appends text to a file * * @param path

The path to the file to append to

* @param text

The text to append

* @throws IOException

If unable to append to the file

*/ public static void appendFile(String path, String text) throws IOException { BufferedWriter writer = new BufferedWriter(new FileWriter(path, true)); writer.write(text); writer.newLine(); writer.close(); } /** * Downloads a file from a website and replaces the target file * * @param path

The full url of the file to download

* @param outfile

The file to save to

* @return

True if successful. False otherwise

*/ public static boolean downloadFile(String path, Path outfile) { try { URL url = new URL(path); InputStream in = url.openStream(); Files.copy(in, outfile, StandardCopyOption.REPLACE_EXISTING); return true; } catch (IOException e) { return false; } } /** * Opens an url in the user's default application. * * @param url

The URL to open

*/ public static void goToURL(String url) { java.awt.Desktop desktop = java.awt.Desktop.getDesktop(); try { desktop.browse(new URI(url)); } catch (URISyntaxException | IOException | UnsupportedOperationException e1) { WebBrowser.displayPage(url); } } /** * Reads all lines from a buffered reader * * @param reader

The buffered reader to read from

* @return

All lines currently readable from the reader, split by the \n character

* @throws IOException

If unable to read from the buffered reader

*/ public static String readBufferedReader(BufferedReader reader) throws IOException { //String line; StringBuilder text = new StringBuilder(); char[] readCharacters = new char[1000]; while (reader.ready()) { if (reader.read(readCharacters) > 0) { text.append(readCharacters); readCharacters = new char[1000]; } else { return text.toString().trim(); } } return text.toString().trim(); } /** * Validates that a name is not empty and does not contain invalid characters * * @param name

The name to check

* @return

True if the name is valid

*/ public static boolean nameIsValid(String name) { return name != null && !name.equals("") && name.matches("[^!?;,]+"); } /** * Removes all files within a folder * * @param target

The folder to delete from

*/ static void removeFilesRecursively(File target) { File[] oldFiles = target.listFiles(); if (oldFiles == null) { throw new IllegalArgumentException("Unable to list files in directory"); } for (File file : oldFiles) { if (file.isFile()) { if (!file.delete()) { throw new IllegalArgumentException("Unable to delete a file from the directory"); } } } for (File file : oldFiles) { if (file.isDirectory()) { removeFilesRecursively(file); if (!file.delete()) { throw new IllegalArgumentException("Unable to delete a file from the directory"); } } } } }