mirror of
https://github.com/PlaceholderAPI/Javascript-Expansion.git
synced 2025-05-23 10:39:04 +00:00
Scripts available on Github now fetched from repo master list
This commit is contained in:
parent
66f75c7ab5
commit
d32eb34d6d
@ -20,10 +20,9 @@
|
||||
*/
|
||||
package com.extendedclip.papi.expansion.javascript;
|
||||
|
||||
import com.extendedclip.papi.expansion.javascript.cloud.GithubScript;
|
||||
import com.extendedclip.papi.expansion.javascript.cloud.GithubScriptManager;
|
||||
import java.lang.reflect.Field;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Arrays;
|
||||
import java.util.HashMap;
|
||||
import java.util.HashSet;
|
||||
import java.util.List;
|
||||
@ -39,14 +38,11 @@ import me.clip.placeholderapi.expansion.Configurable;
|
||||
import me.clip.placeholderapi.expansion.PlaceholderExpansion;
|
||||
|
||||
import org.bukkit.Bukkit;
|
||||
import org.bukkit.ChatColor;
|
||||
import org.bukkit.OfflinePlayer;
|
||||
import org.bukkit.entity.Player;
|
||||
import org.bukkit.event.EventHandler;
|
||||
import org.bukkit.event.Listener;
|
||||
import org.bukkit.event.player.PlayerCommandPreprocessEvent;
|
||||
import org.bukkit.command.Command;
|
||||
import org.bukkit.command.CommandMap;
|
||||
|
||||
public class JavascriptExpansion extends PlaceholderExpansion implements Cacheable, Configurable, Listener {
|
||||
public class JavascriptExpansion extends PlaceholderExpansion implements Cacheable, Configurable {
|
||||
|
||||
private ScriptEngine globalEngine = null;
|
||||
|
||||
@ -54,123 +50,21 @@ public class JavascriptExpansion extends PlaceholderExpansion implements Cacheab
|
||||
private final Set<JavascriptPlaceholder> scripts = new HashSet<>();
|
||||
private final String VERSION = getClass().getPackage().getImplementationVersion();
|
||||
private static JavascriptExpansion instance;
|
||||
private boolean debug = false;
|
||||
private GithubScriptManager githubScripts = null;
|
||||
private boolean debug;
|
||||
private GithubScriptManager githubScripts;
|
||||
private JavascriptExpansionCommands commands;
|
||||
private CommandMap commandMap;
|
||||
|
||||
|
||||
public JavascriptExpansion() {
|
||||
instance = this;
|
||||
try {
|
||||
final Field f = Bukkit.getServer().getClass().getDeclaredField("commandMap");
|
||||
f.setAccessible(true);
|
||||
commandMap = (CommandMap) f.get(Bukkit.getServer());
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
|
||||
/*
|
||||
* I am just testing the waters here because there is no command system for expansions...
|
||||
*/
|
||||
@EventHandler
|
||||
public void onCmdExecute(PlayerCommandPreprocessEvent event) {
|
||||
|
||||
String msg = event.getMessage();
|
||||
|
||||
if (!msg.startsWith("/papijsp")) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (!event.getPlayer().hasPermission("placeholderapi.admin")) {
|
||||
return;
|
||||
}
|
||||
|
||||
event.setCancelled(true);
|
||||
|
||||
Player p = event.getPlayer();
|
||||
|
||||
// default command
|
||||
if (!msg.contains(" ")) {
|
||||
msg(p, "&7Javascript expansion v: &f" + getVersion());
|
||||
msg(p, "&7Created by: &f" + getAuthor());
|
||||
msg(p, "&fWiki: &ahttps://github.com/PlaceholderAPI-Expansions/Javascript-Expansion/wiki");
|
||||
msg(p, "&r");
|
||||
msg(p, "&7/papijsp reload &7- &fReload your javascripts without reloading PlaceholderAPI");
|
||||
msg(p, "&7/papijsp list &7- &fList loaded script identifiers.");
|
||||
msg(p, "&7/papijsp git download <name> &7- &fDownload a script from the js expansion github.");
|
||||
msg(p, "&7/papijsp git list &7- &fList available scripts in the js expansion github.");
|
||||
msg(p, "&7/papijsp git info (name) &7- &fGet the description and url of a specific script.");
|
||||
return;
|
||||
}
|
||||
|
||||
if (msg.equals("/papijsp reload")) {
|
||||
msg(p, "&aReloading...");
|
||||
int l = this.reloadScripts();
|
||||
msg(p, l + " &7script" + (l == 1 ? "" : "s")+ " loaded");
|
||||
return;
|
||||
}
|
||||
|
||||
if (msg.equals("/papijsp list")) {
|
||||
List<String> loaded = this.getLoadedIdentifiers();
|
||||
msg(p, loaded.size() + " &7script" + (loaded.size() == 1 ? "" : "s")+ " loaded");
|
||||
msg(p, String.join(", ", loaded));
|
||||
return;
|
||||
}
|
||||
|
||||
if (msg.equals("/papijsp git list")) {
|
||||
msg(p, GithubScript.values().length + " &7script"
|
||||
+ (GithubScript.values().length == 1 ? "" : "s") + " available on Github.");
|
||||
msg(p, String.join(", ", GithubScript.getAllScriptNames()));
|
||||
return;
|
||||
}
|
||||
|
||||
if (msg.startsWith("/papijsp git info ")) {
|
||||
|
||||
if (this.githubScripts == null) {
|
||||
msg(p, "This feature is disabled in the PAPI config!");
|
||||
return;
|
||||
}
|
||||
|
||||
msg = msg.replace("/papijsp git info ", "");
|
||||
|
||||
GithubScript script = GithubScript.getScript(msg);
|
||||
|
||||
if (script == null) {
|
||||
msg(p, "&cThe script &7" + msg + " &cdoes not exist!");
|
||||
return;
|
||||
}
|
||||
|
||||
msg(p, "&7Name: &f" + script.getName(),
|
||||
"&7Version: &f" + script.getVersion(),
|
||||
"&7Description: &f" + script.getDescription(),
|
||||
"&7Url: &f" + script.getUrl());
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
if (msg.startsWith("/papijsp git download ")) {
|
||||
|
||||
if (this.githubScripts == null) {
|
||||
msg(p, "This feature is disabled in the PAPI config!");
|
||||
return;
|
||||
}
|
||||
|
||||
msg = msg.replace("/papijsp git download ", "");
|
||||
|
||||
GithubScript script = GithubScript.getScript(msg);
|
||||
|
||||
if (script == null) {
|
||||
msg(p, "&cThe script &7" + msg + " &cdoes not exist!");
|
||||
return;
|
||||
}
|
||||
|
||||
Bukkit.getScheduler().runTaskAsynchronously(getPlaceholderAPI(), new Runnable() {
|
||||
@Override
|
||||
public void run() {
|
||||
githubScripts.downloadScript(script);
|
||||
}
|
||||
});
|
||||
msg(p, "&aDownload initiated... Check the scripts folder in a moment...");
|
||||
return;
|
||||
}
|
||||
|
||||
msg(p, "&cIncorrect usage &7- &f/papijsp");
|
||||
}
|
||||
|
||||
public void msg(Player p, String... text) {
|
||||
Arrays.stream(text).forEach(line -> p.sendMessage(ChatColor.translateAlternateColorCodes('&', line)));
|
||||
}
|
||||
|
||||
@Override
|
||||
@ -224,16 +118,22 @@ public class JavascriptExpansion extends PlaceholderExpansion implements Cacheab
|
||||
}
|
||||
if ((Boolean) get("github_script_downloads", false)) {
|
||||
githubScripts = new GithubScriptManager(this);
|
||||
githubScripts.fetch();
|
||||
}
|
||||
|
||||
registerCommand();
|
||||
return super.register();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void clear() {
|
||||
unregisterCommand();
|
||||
scripts.forEach(s -> {
|
||||
s.saveData();
|
||||
s.cleanup();
|
||||
});
|
||||
githubScripts.clear();
|
||||
githubScripts = null;
|
||||
scripts.clear();
|
||||
globalEngine = null;
|
||||
instance = null;
|
||||
@ -315,7 +215,7 @@ public class JavascriptExpansion extends PlaceholderExpansion implements Cacheab
|
||||
return def;
|
||||
}
|
||||
|
||||
private int reloadScripts() {
|
||||
protected int reloadScripts() {
|
||||
scripts.forEach(s -> {
|
||||
s.saveData();
|
||||
s.cleanup();
|
||||
@ -328,4 +228,22 @@ public class JavascriptExpansion extends PlaceholderExpansion implements Cacheab
|
||||
public static JavascriptExpansion getInstance() {
|
||||
return instance;
|
||||
}
|
||||
|
||||
public GithubScriptManager getGithubScriptManager() {
|
||||
return githubScripts;
|
||||
}
|
||||
|
||||
private boolean unregisterCommand() {
|
||||
if (commandMap == null || commands == null) return false;
|
||||
Command c = commandMap.getCommand(commands.getName());
|
||||
if (c == null) return false;
|
||||
return c.unregister(commandMap);
|
||||
}
|
||||
|
||||
private boolean registerCommand() {
|
||||
if (commandMap == null) return false;
|
||||
commands = new JavascriptExpansionCommands(this);
|
||||
commandMap.register(commands.getName(), commands);
|
||||
return commands.isRegistered();
|
||||
}
|
||||
}
|
||||
|
@ -0,0 +1,128 @@
|
||||
package com.extendedclip.papi.expansion.javascript;
|
||||
|
||||
import com.extendedclip.papi.expansion.javascript.cloud.GithubScript;
|
||||
import com.extendedclip.papi.expansion.javascript.cloud.GithubScriptManager;
|
||||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
import java.util.stream.Collectors;
|
||||
import org.bukkit.ChatColor;
|
||||
import org.bukkit.command.Command;
|
||||
import org.bukkit.command.CommandSender;
|
||||
|
||||
public class JavascriptExpansionCommands extends Command {
|
||||
|
||||
private JavascriptExpansion expansion;
|
||||
|
||||
public JavascriptExpansionCommands(JavascriptExpansion expansion) {
|
||||
super("jsexpansion");
|
||||
this.expansion = expansion;
|
||||
this.setDescription("Javascript expansion commands");
|
||||
this.setUsage("/jsexpansion <arg>");
|
||||
this.setPermission("placeholderapi.js.admin");
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean execute(CommandSender s, String label, String[] args) {
|
||||
if (!s.hasPermission(this.getPermission())) {
|
||||
msg(s, "&cYou don't have permission to do that!");
|
||||
return true;
|
||||
}
|
||||
|
||||
if (args.length == 0) {
|
||||
msg(s, "&7Javascript expansion v: &f" + expansion.getVersion(),
|
||||
"&7Created by: &f" + expansion.getAuthor(),
|
||||
"&fWiki: &ahttps://github.com/PlaceholderAPI-Expansions/Javascript-Expansion/wiki",
|
||||
"&r",
|
||||
"&7/jsexpansion reload &7- &fReload your javascripts without reloading PlaceholderAPI",
|
||||
"&7/jsexpansion list &7- &fList loaded script identifiers.");
|
||||
if (expansion.getGithubScriptManager() != null) {
|
||||
msg(s,
|
||||
"&7/jsexpansion git download <name> &7- &fDownload a script from the js expansion github.");
|
||||
msg(s, "&7/jsexpansion git list &7- &fList available scripts in the js expansion github.");
|
||||
msg(s,
|
||||
"&7/jsexpansion git info (name) &7- &fGet the description and url of a specific script.");
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
if (args[0].equalsIgnoreCase("reload")) {
|
||||
msg(s, "&aJavascriptExpansion reloading...");
|
||||
int l = expansion.reloadScripts();
|
||||
msg(s, l + " &7script" + (l == 1 ? "" : "s") + " loaded");
|
||||
return true;
|
||||
}
|
||||
|
||||
if (args[0].equalsIgnoreCase("list")) {
|
||||
List<String> loaded = expansion.getLoadedIdentifiers();
|
||||
msg(s, loaded.size() + " &7script" + (loaded.size() == 1 ? "" : "s") + " loaded");
|
||||
msg(s, String.join(", ", loaded));
|
||||
return true;
|
||||
}
|
||||
|
||||
if (args[0].equalsIgnoreCase("git")) {
|
||||
if (expansion.getGithubScriptManager() == null) {
|
||||
msg(s, "&8This feature is disabled in the PlaceholderAPI config.");
|
||||
return true;
|
||||
}
|
||||
|
||||
if (args.length < 2) {
|
||||
msg(s, "&cIncorrect usage!");
|
||||
return true;
|
||||
}
|
||||
|
||||
GithubScriptManager manager = expansion.getGithubScriptManager();
|
||||
|
||||
if (args[1].equalsIgnoreCase("list")) {
|
||||
msg(s, manager.getAvailableScripts().size() + " &escript"
|
||||
+ (manager.getAvailableScripts().size() == 1 ? "" : "s") + " available on Github.");
|
||||
msg(s, String.join(", ", manager.getAvailableScripts().stream()
|
||||
.map(GithubScript::getName)
|
||||
.collect(Collectors.toSet())));
|
||||
return true;
|
||||
}
|
||||
|
||||
if (args[1].equalsIgnoreCase("info")) {
|
||||
if (args.length < 3) {
|
||||
msg(s, "&4Incorrect usage! &f" + this.getName() + " git info <name>");
|
||||
return true;
|
||||
}
|
||||
GithubScript script = manager.getScript(args[2]);
|
||||
if (script == null) {
|
||||
msg(s, "&4The script &f" + args[2] + " &4does not exist!");
|
||||
return true;
|
||||
}
|
||||
msg(s, "&eName: &f" + script.getName(),
|
||||
"&eVersion: &f" + script.getVersion(),
|
||||
"&eDescription: &f" + script.getDescription(),
|
||||
"&eAuthor: &f" + script.getAuthor(),
|
||||
"&eUrl: &f" + script.getUrl());
|
||||
return true;
|
||||
}
|
||||
if (args[1].equalsIgnoreCase("download")) {
|
||||
if (args.length < 3) {
|
||||
msg(s, "&4Incorrect usage! &f" + this.getName() + " git download <name>");
|
||||
return true;
|
||||
}
|
||||
GithubScript script = manager.getScript(args[2]);
|
||||
|
||||
if (script == null) {
|
||||
msg(s, "&4The script &f" + args[2] + " &4does not exist!");
|
||||
return true;
|
||||
}
|
||||
|
||||
manager.downloadScript(script);
|
||||
msg(s, "&aDownload initiated... &eCheck the scripts folder in a moment...");
|
||||
return true;
|
||||
}
|
||||
msg(s, "&4Incorrect usage! &f" + this.getName() + " &7for more help.");
|
||||
return true;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
public void msg(CommandSender s, String... text) {
|
||||
Arrays.stream(text)
|
||||
.forEach(line -> s.sendMessage(ChatColor.translateAlternateColorCodes('&', line)));
|
||||
}
|
||||
}
|
@ -36,6 +36,9 @@ import org.bukkit.configuration.file.YamlConfiguration;
|
||||
|
||||
public class JavascriptPlaceholder {
|
||||
|
||||
private final String FILEDIR =
|
||||
PlaceholderAPIPlugin.getInstance().getDataFolder() + File.separator + "javascripts"
|
||||
+ File.separator + "javascript_data";
|
||||
private ScriptEngine engine = null;
|
||||
private String identifier;
|
||||
private String script;
|
||||
@ -43,8 +46,6 @@ public class JavascriptPlaceholder {
|
||||
private File dataFile;
|
||||
private FileConfiguration cfg;
|
||||
|
||||
private final String FILEDIR = PlaceholderAPIPlugin.getInstance().getDataFolder() + File.separator + "javascripts"+ File.separator + "javascript_data";
|
||||
|
||||
public JavascriptPlaceholder(ScriptEngine engine, String identifier, String script) {
|
||||
Validate.notNull(engine, "ScriptEngine can not be null");
|
||||
Validate.notNull(identifier, "Identifier can not be null");
|
||||
|
@ -25,12 +25,9 @@ import java.io.FileNotFoundException;
|
||||
import java.io.IOException;
|
||||
import java.util.Scanner;
|
||||
import java.util.logging.Level;
|
||||
|
||||
import javax.script.ScriptEngine;
|
||||
import javax.script.ScriptEngineManager;
|
||||
|
||||
import me.clip.placeholderapi.PlaceholderAPIPlugin;
|
||||
|
||||
import org.bukkit.configuration.file.FileConfiguration;
|
||||
import org.bukkit.configuration.file.YamlConfiguration;
|
||||
|
||||
@ -119,27 +116,35 @@ public class JavascriptPlaceholdersConfig {
|
||||
try {
|
||||
if (!dir.exists()) {
|
||||
dir.mkdirs();
|
||||
plugin.getLogger().info("Creating directory: plugins" + File.separator + "PlaceholderAPI" + File.separator + "javascripts");
|
||||
plugin.getLogger().info(
|
||||
"Creating directory: plugins" + File.separator + "PlaceholderAPI" + File.separator
|
||||
+ "javascripts");
|
||||
} else {
|
||||
}
|
||||
} catch (SecurityException e) {
|
||||
plugin.getLogger().severe("Could not create directory: plugins" + File.separator + "PlaceholderAPI" + File.separator + "javascripts");
|
||||
plugin.getLogger().severe(
|
||||
"Could not create directory: plugins" + File.separator + "PlaceholderAPI" + File.separator
|
||||
+ "javascripts");
|
||||
}
|
||||
|
||||
for (String identifier : config.getKeys(false)) {
|
||||
if (!config.contains(identifier + ".file") || config.getString(identifier + ".file", null) == null) {
|
||||
plugin.getLogger().warning("Javascript placeholder: " + identifier + " does not have a file specified");
|
||||
if (!config.contains(identifier + ".file")
|
||||
|| config.getString(identifier + ".file", null) == null) {
|
||||
plugin.getLogger()
|
||||
.warning("Javascript placeholder: " + identifier + " does not have a file specified");
|
||||
continue;
|
||||
}
|
||||
|
||||
File scriptFile = new File(plugin.getDataFolder() + File.separator + "javascripts", config.getString(identifier + ".file"));
|
||||
File scriptFile = new File(plugin.getDataFolder() + File.separator + "javascripts",
|
||||
config.getString(identifier + ".file"));
|
||||
|
||||
if (!scriptFile.exists()) {
|
||||
plugin.getLogger().info(scriptFile.getName() + " does not exist. Creating file...");
|
||||
|
||||
try {
|
||||
scriptFile.createNewFile();
|
||||
plugin.getLogger().info(scriptFile.getName() + " created! Add your javascript to this file and use /placeholderapi reload to load it!");
|
||||
plugin.getLogger().info(scriptFile.getName()
|
||||
+ " created! Add your javascript to this file and use /placeholderapi reload to load it!");
|
||||
} catch (IOException e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
@ -149,7 +154,9 @@ public class JavascriptPlaceholdersConfig {
|
||||
String script = getContents(scriptFile);
|
||||
|
||||
if (script == null || script.isEmpty()) {
|
||||
plugin.getLogger().warning("File: " + scriptFile.getName() + " for javascript placeholder: " + identifier + " is empty");
|
||||
plugin.getLogger().warning(
|
||||
"File: " + scriptFile.getName() + " for javascript placeholder: " + identifier
|
||||
+ " is empty");
|
||||
continue;
|
||||
}
|
||||
|
||||
@ -159,15 +166,18 @@ public class JavascriptPlaceholdersConfig {
|
||||
engine = ex.getGlobalEngine();
|
||||
} else {
|
||||
try {
|
||||
engine = new ScriptEngineManager().getEngineByName(config.getString(identifier + ".engine", "nashorn"));
|
||||
engine = new ScriptEngineManager()
|
||||
.getEngineByName(config.getString(identifier + ".engine", "nashorn"));
|
||||
} catch (NullPointerException e) {
|
||||
plugin.getLogger().warning("ScriptEngine type for javascript placeholder: " + identifier + " is invalid! Defaulting to global");
|
||||
plugin.getLogger().warning("ScriptEngine type for javascript placeholder: " + identifier
|
||||
+ " is invalid! Defaulting to global");
|
||||
engine = ex.getGlobalEngine();
|
||||
}
|
||||
}
|
||||
|
||||
if (engine == null) {
|
||||
plugin.getLogger().warning("Failed to set ScriptEngine for javascript placeholder: " + identifier);
|
||||
plugin.getLogger()
|
||||
.warning("Failed to set ScriptEngine for javascript placeholder: " + identifier);
|
||||
continue;
|
||||
}
|
||||
|
||||
@ -182,7 +192,8 @@ public class JavascriptPlaceholdersConfig {
|
||||
}
|
||||
plugin.getLogger().info("%javascript_" + identifier + "% has been loaded!");
|
||||
} else {
|
||||
plugin.getLogger().warning("Javascript placeholder %javascript_" + identifier + "% is a duplicate!");
|
||||
plugin.getLogger()
|
||||
.warning("Javascript placeholder %javascript_" + identifier + "% is a duplicate!");
|
||||
}
|
||||
}
|
||||
return ex.getAmountLoaded();
|
||||
|
@ -1,20 +1,11 @@
|
||||
package com.extendedclip.papi.expansion.javascript.cloud;
|
||||
|
||||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
import java.util.stream.Collectors;
|
||||
|
||||
public enum GithubScript {
|
||||
HAS_PERMISSION("has_permission",
|
||||
"1.0.0",
|
||||
"aBooDyy",
|
||||
"Check if player have \"permission.test\" permission and send a custom message.",
|
||||
"https://raw.githubusercontent.com/PlaceholderAPI/Javascript-Expansion/master/scripts/has_permission.js"),
|
||||
;
|
||||
public class GithubScript {
|
||||
|
||||
private String name, version, author, description, url;
|
||||
|
||||
private GithubScript(String name, String version, String author, String description, String url) {
|
||||
public GithubScript(String name, String version, String author, String description, String url) {
|
||||
this.name = name;
|
||||
this.version = version;
|
||||
this.author = author;
|
||||
@ -41,12 +32,4 @@ public enum GithubScript {
|
||||
public String getUrl() {
|
||||
return url;
|
||||
}
|
||||
|
||||
public static List<String> getAllScriptNames() {
|
||||
return Arrays.stream(values()).map(GithubScript::getName).collect(Collectors.toList());
|
||||
}
|
||||
|
||||
public static GithubScript getScript(String name) {
|
||||
return Arrays.stream(values()).filter(s -> { return s.getName().equalsIgnoreCase(name); } ).findFirst().orElse(null);
|
||||
}
|
||||
}
|
||||
|
@ -1,6 +1,8 @@
|
||||
package com.extendedclip.papi.expansion.javascript.cloud;
|
||||
|
||||
import com.extendedclip.papi.expansion.javascript.JavascriptExpansion;
|
||||
import com.google.gson.Gson;
|
||||
import com.google.gson.reflect.TypeToken;
|
||||
import java.io.BufferedReader;
|
||||
import java.io.File;
|
||||
import java.io.FileNotFoundException;
|
||||
@ -10,35 +12,73 @@ import java.io.PrintStream;
|
||||
import java.net.URL;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import org.bukkit.Bukkit;
|
||||
|
||||
public class GithubScriptManager {
|
||||
|
||||
private JavascriptExpansion expansion;
|
||||
private String path;
|
||||
private String javascriptsFolder;
|
||||
private List<GithubScript> availableScripts;
|
||||
private final String MASTER_LIST_URL = "https://raw.githubusercontent.com/PlaceholderAPI/Javascript-Expansion/master/scripts/master_list.json";
|
||||
private final Gson GSON = new Gson();
|
||||
|
||||
public GithubScriptManager(JavascriptExpansion expansion) {
|
||||
this.expansion = expansion;
|
||||
path = expansion.getPlaceholderAPI().getDataFolder()
|
||||
javascriptsFolder = expansion.getPlaceholderAPI().getDataFolder()
|
||||
+ File.separator
|
||||
+ "javascripts"
|
||||
+ File.separator;
|
||||
}
|
||||
|
||||
public void clear() {
|
||||
availableScripts = null;
|
||||
}
|
||||
|
||||
public void fetch() {
|
||||
Bukkit.getScheduler().runTaskAsynchronously(expansion.getPlaceholderAPI(), new Runnable() {
|
||||
@Override
|
||||
public void run() {
|
||||
String json = getContents(MASTER_LIST_URL);
|
||||
|
||||
if (json.isEmpty()) {
|
||||
return;
|
||||
}
|
||||
System.out.println(json);
|
||||
availableScripts = GSON.fromJson(json, new TypeToken<ArrayList<GithubScript>>() {
|
||||
}.getType());
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
public void downloadScript(GithubScript script) {
|
||||
Bukkit.getScheduler().runTaskAsynchronously(expansion.getPlaceholderAPI(), new Runnable() {
|
||||
@Override
|
||||
public void run() {
|
||||
List<String> contents = read(script.getUrl());
|
||||
if (contents == null || contents.isEmpty()) {
|
||||
return;
|
||||
}
|
||||
File f = new File(path, script.getName() + ".js");
|
||||
File f = new File(javascriptsFolder, script.getName() + ".js");
|
||||
try (PrintStream out = new PrintStream(new FileOutputStream(f))) {
|
||||
contents.forEach(l -> out.println(l));
|
||||
} catch (FileNotFoundException e) {
|
||||
e.printStackTrace();
|
||||
return;
|
||||
}
|
||||
Bukkit.getScheduler().runTask(expansion.getPlaceholderAPI(), new Runnable() {
|
||||
@Override
|
||||
public void run() {
|
||||
expansion.getConfig().load().set(script.getName() + ".file", script.getName() + ".js");
|
||||
expansion.getConfig().save();
|
||||
}
|
||||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
private String getContents(String url) {
|
||||
return String.join("", read(url));
|
||||
}
|
||||
|
||||
private List<String> read(String url) {
|
||||
|
||||
@ -57,4 +97,13 @@ public class GithubScriptManager {
|
||||
|
||||
return lines;
|
||||
}
|
||||
|
||||
public List<GithubScript> getAvailableScripts() {
|
||||
return availableScripts;
|
||||
}
|
||||
|
||||
public GithubScript getScript(String name) {
|
||||
if (availableScripts == null) return null;
|
||||
return availableScripts.stream().filter(s -> {return s.getName().equalsIgnoreCase(name);}).findFirst().orElse(null);
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user