Search in sources :

Example 21 with Plugin

use of net.md_5.bungee.api.plugin.Plugin in project CloudNet by Dytanic.

the class CloudGameServer method bootstrap.

@Override
public boolean bootstrap() throws Exception {
    long startupTime = System.currentTimeMillis();
    for (ServerInstallablePlugin url : cloudServerMeta.getPlugins()) {
        switch(url.getPluginResourceType()) {
            case URL:
                {
                    if (!Files.exists(Paths.get("local/cache/web_plugins/" + url.getName() + ".jar"))) {
                        try {
                            URLConnection urlConnection = new java.net.URL(url.getUrl()).openConnection();
                            urlConnection.setRequestProperty("User-Agent", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/23.0.1271.95 Safari/537.11");
                            Files.copy(urlConnection.getInputStream(), Paths.get("local/cache/web_plugins/" + url.getName() + ".jar"));
                        } catch (Exception ex) {
                            ex.printStackTrace();
                        }
                    }
                }
                break;
            case MASTER:
                {
                    if (!Files.exists(Paths.get("local/cache/web_plugins/" + url.getName() + ".jar")) && CloudNetWrapper.getInstance().getSimpledUser() != null) {
                        try {
                            URLConnection urlConnection = new java.net.URL(new StringBuilder(CloudNetWrapper.getInstance().getOptionSet().has("ssl") ? "https://" : "http://").append(CloudNetWrapper.getInstance().getWrapperConfig().getCloudnetHost()).append(":").append(CloudNetWrapper.getInstance().getWrapperConfig().getWebPort()).append("/cloudnet/api/v1/download").substring(0)).openConnection();
                            urlConnection.setRequestProperty("User-Agent", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/23.0.1271.95 Safari/537.11");
                            SimpledUser simpledUser = CloudNetWrapper.getInstance().getSimpledUser();
                            urlConnection.setRequestProperty("-Xcloudnet-user", simpledUser.getUserName());
                            urlConnection.setRequestProperty("-Xcloudnet-token", simpledUser.getApiToken());
                            urlConnection.setRequestProperty("-Xmessage", "plugin");
                            urlConnection.setRequestProperty("-Xvalue", url.getName());
                            urlConnection.connect();
                            System.out.println("Downloading " + url.getName() + ".jar");
                            Files.copy(urlConnection.getInputStream(), Paths.get("local/cache/web_plugins/" + url.getName() + ".jar"));
                            System.out.println("Download was completed successfully!");
                        } catch (Exception ex) {
                            ex.printStackTrace();
                        }
                    }
                }
                break;
            default:
                break;
        }
    }
    Files.createDirectories(this.dir);
    // Template
    MasterTemplateLoader templateLoader = new MasterTemplateLoader(new StringBuilder(CloudNetWrapper.getInstance().getOptionSet().has("ssl") ? "https://" : "http://").append(CloudNetWrapper.getInstance().getWrapperConfig().getCloudnetHost()).append(":").append(CloudNetWrapper.getInstance().getWrapperConfig().getWebPort()).append("/cloudnet/api/v1/download").toString(), dir.toString() + "/template.zip", CloudNetWrapper.getInstance().getSimpledUser(), null, null, cloudServerMeta.getTemplateName());
    System.out.println("Downloading cloud server for " + this.cloudServerMeta.getServiceId());
    templateLoader.load();
    templateLoader.unZip(dir.toString());
    FileCopy.copyFilesInDirectory(new File(dir.toString()), new File(path));
    if (cloudServerMeta.getServerGroupType().equals(ServerGroupType.CAULDRON)) {
        try {
            System.out.println("Downloading cauldron.zip...");
            File file = new File(path + "/cauldron.zip");
            URLConnection connection = new URL("https://yivesmirror.com/files/cauldron/cauldron-1.7.10-2.1403.1.54.zip").openConnection();
            connection.setUseCaches(false);
            connection.setRequestProperty("User-Agent", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/23.0.1271.95 Safari/537.11");
            connection.connect();
            Files.copy(connection.getInputStream(), Paths.get(path + "/cauldron.zip"));
            ((HttpURLConnection) connection).disconnect();
            System.out.println("Download was completed successfully!");
            ZipFile zip = new ZipFile(file);
            Enumeration<? extends ZipEntry> entryEnumeration = zip.entries();
            while (entryEnumeration.hasMoreElements()) {
                ZipEntry entry = entryEnumeration.nextElement();
                if (!entry.isDirectory()) {
                    extractEntry(zip, entry, path);
                }
            }
            zip.close();
            file.delete();
            new File(path + "/cauldron-1.7.10-2.1403.1.54-server.jar").renameTo(new File(path + "/cauldron.jar"));
            try (FileWriter fileWriter = new FileWriter(path + "/eula.txt")) {
                fileWriter.write("eula=true");
                fileWriter.flush();
            }
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
    if (cloudServerMeta.getServerGroupType().equals(ServerGroupType.GLOWSTONE)) {
        Path path = Paths.get(this.path + "/glowstone.jar");
        if (!Files.exists(path)) {
            try {
                URLConnection connection = new URL("https://yivesmirror.com/grab/glowstone/Glowstone-latest.jar").openConnection();
                connection.setUseCaches(false);
                connection.setRequestProperty("User-Agent", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/23.0.1271.95 Safari/537.11");
                connection.connect();
                System.out.println("Downloading glowstone.jar...");
                Files.copy(connection.getInputStream(), path);
                System.out.println("Download was completed successfully");
                ((HttpURLConnection) connection).disconnect();
            } catch (Exception ex) {
                ex.printStackTrace();
            }
        }
    }
    // Init
    for (ServerInstallablePlugin plugin : cloudServerMeta.getPlugins()) FileCopy.copyFileToDirectory(new File("local/cache/web_plugins/" + plugin.getName() + ".jar"), new File(path + "/plugins"));
    for (ServerInstallablePlugin plugin : cloudServerMeta.getPlugins()) FileCopy.copyFileToDirectory(new File("local/cache/web_plugins/" + plugin.getName() + ".jar"), new File(path + "/plugins"));
    if (cloudServerMeta.getServerGroupType().equals(ServerGroupType.BUKKIT))
        if (!Files.exists(Paths.get(path + "/spigot.jar")))
            FileCopy.copyFileToDirectory(new File("local/spigot.jar"), new File(path));
    if (cloudServerMeta.getServerGroupType().equals(ServerGroupType.GLOWSTONE)) {
        if (!Files.exists(Paths.get(path + "/config")))
            Files.createDirectories(Paths.get(path + "/config"));
        if (!Files.exists(Paths.get(path + "/config/glowstone.yml")))
            FileCopy.insertData("files/glowstone.yml", path + "/config/glowstone.yml");
    }
    if (!Files.exists(Paths.get(path + "/server.properties")))
        FileCopy.insertData("files/server.properties", path + "/server.properties");
    if (!Files.exists(Paths.get(path + "/bukkit.yml")))
        FileCopy.insertData("files/bukkit.yml", path + "/bukkit.yml");
    if (!Files.exists(Paths.get(path + "/spigot.yml")))
        FileCopy.insertData("files/spigot.yml", path + "/spigot.yml");
    if (!Files.exists(Paths.get(path + "/plugins")))
        Files.createDirectory(Paths.get(path + "/plugins"));
    if (!Files.exists(Paths.get(path + "/CLOUD")))
        Files.createDirectory(Paths.get(path + "/CLOUD"));
    Files.deleteIfExists(Paths.get(path + "/plugins/CloudNetAPI.jar"));
    FileCopy.insertData("files/CloudNetAPI.jar", path + "/plugins/CloudNetAPI.jar");
    try {
        FileCopy.copyFilesInDirectory(new File("local/global_cloudserver"), new File(path));
    } catch (Exception ex) {
    }
    if (CloudNetWrapper.getInstance().getWrapperConfig().isViaVersion()) {
        if (!Files.exists(Paths.get("local/viaversion.jar"))) {
            try {
                System.out.println("Downloading ViaVersion...");
                URLConnection url = new URL("https://ci.viaversion.com/job/ViaVersion/177/artifact/jar/target/ViaVersion-1.2.0.jar").openConnection();
                url.setRequestProperty("User-Agent", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/23.0.1271.95 Safari/537.11");
                url.connect();
                Files.copy(url.getInputStream(), Paths.get("local/viaversion.jar"));
                ((HttpURLConnection) url).disconnect();
                System.out.println("Download was completed successfully!");
            } catch (Exception ex) {
            }
        }
        FileCopy.copyFileToDirectory(new File("local/viaversion.jar"), new File(path + "/plugins"));
    }
    /*===============================================================================*/
    String motd = "Default Motd";
    int maxPlayers = 0;
    if (!cloudServerMeta.getServerGroupType().equals(ServerGroupType.GLOWSTONE)) {
        Properties properties = new Properties();
        try (InputStreamReader inputStreamReader = new InputStreamReader(Files.newInputStream(Paths.get(path + "/server.properties")))) {
            properties.load(inputStreamReader);
        }
        Enumeration enumeration = this.cloudServerMeta.getServerProperties().keys();
        while (enumeration.hasMoreElements()) {
            String x = enumeration.nextElement().toString();
            properties.setProperty(x, this.cloudServerMeta.getServerProperties().getProperty(x));
        }
        properties.setProperty("server-ip", CloudNetWrapper.getInstance().getWrapperConfig().getInternalIP());
        properties.setProperty("server-port", cloudServerMeta.getPort() + NetworkUtils.EMPTY_STRING);
        properties.setProperty("online-mode", "false");
        // properties.setProperty("server-name", serverProcess.getMeta().getServiceId().getServerId());
        motd = properties.getProperty("motd");
        maxPlayers = Integer.parseInt(properties.getProperty("max-players"));
        try (OutputStream outputStream = Files.newOutputStream(Paths.get(path + "/server.properties"))) {
            properties.store(outputStream, "CloudNet-Wrapper EDIT");
        }
    } else {
        try (InputStreamReader inputStreamReader = new InputStreamReader(Files.newInputStream(Paths.get(path + "/config/glowstone.yml")), StandardCharsets.UTF_8)) {
            Configuration configuration = ConfigurationProvider.getProvider(YamlConfiguration.class).load(inputStreamReader);
            Configuration section = configuration.getSection("server");
            section.set("ip", CloudNetWrapper.getInstance().getWrapperConfig().getInternalIP());
            section.set("port", cloudServerMeta.getPort());
            maxPlayers = section.getInt("max-players");
            motd = section.getString("motd");
            configuration.set("server", section);
            configuration.set("console.use-jline", false);
            try (OutputStreamWriter outputStreamWriter = new OutputStreamWriter(Files.newOutputStream(Paths.get(path + "/config/glowstone.yml")), StandardCharsets.UTF_8)) {
                ConfigurationProvider.getProvider(YamlConfiguration.class).save(configuration, outputStreamWriter);
            }
        }
    }
    /*===============================================================================*/
    this.serverInfo = new ServerInfo(cloudServerMeta.getServiceId(), CloudNetWrapper.getInstance().getWrapperConfig().getInternalIP(), this.cloudServerMeta.getPort(), false, new ArrayList<>(), cloudServerMeta.getMemory(), motd, 0, maxPlayers, ServerState.OFFLINE, this.cloudServerMeta.getServerConfig(), cloudServerMeta.getTemplate());
    new Document().append("serviceId", cloudServerMeta.getServiceId()).append("cloudProcess", cloudServerMeta).append("serverInfo", serverInfo).append("ssl", CloudNetWrapper.getInstance().getOptionSet().has("ssl")).append("memory", cloudServerMeta.getMemory()).saveAsConfig(Paths.get(path + "/CLOUD/config.json"));
    new Document().append("connection", new ConnectableAddress(CloudNetWrapper.getInstance().getWrapperConfig().getCloudnetHost(), CloudNetWrapper.getInstance().getWrapperConfig().getCloudnetPort())).saveAsConfig(Paths.get(path + "/CLOUD/connection.json"));
    Files.deleteIfExists(Paths.get(path + "/plugins/CloudNetAPI.jar"));
    FileCopy.insertData("files/CloudNetAPI.jar", path + "/plugins/CloudNetAPI.jar");
    StringBuilder commandBuilder = new StringBuilder();
    commandBuilder.append("java ");
    for (String command : cloudServerMeta.getProcessParameters()) {
        commandBuilder.append(command).append(NetworkUtils.SPACE_STRING);
    }
    commandBuilder.append("-XX:+UseG1GC -XX:MaxGCPauseMillis=50 -XX:MaxPermSize=256M -XX:-UseAdaptiveSizePolicy -Dio.netty.leakDetectionLevel=DISABLED -Dfile.encoding=UTF-8 -Dio.netty.maxDirectMemory=0 -Dcom.mojang.eula.agree=true -Dio.netty.recycler.maxCapacity=0 -Dio.netty.recycler.maxCapacity.default=0 -Djline.terminal=jline.UnsupportedTerminal -Xmx" + cloudServerMeta.getMemory() + "M -jar ");
    switch(cloudServerMeta.getServerGroupType()) {
        case CAULDRON:
            commandBuilder.append("cauldron.jar nogui");
            break;
        case GLOWSTONE:
            commandBuilder.append("glowstone.jar nogui");
            break;
        case CUSTOM:
            commandBuilder.append("minecraft_server.jar nogui");
            break;
        default:
            commandBuilder.append("spigot.jar nogui");
            break;
    }
    CloudNetWrapper.getInstance().getCloudservers().put(this.cloudServerMeta.getServiceId().getServerId(), this);
    CloudNetWrapper.getInstance().getNetworkConnection().sendPacket(new PacketOutAddCloudServer(this.serverInfo, cloudServerMeta));
    System.out.println("CloudServer " + toString() + " [" + (cloudServerMeta.isPriorityStop() ? "priority stop: true" : "priority stop: false") + "] start [" + (System.currentTimeMillis() - startupTime) + " milliseconds]");
    this.instance = Runtime.getRuntime().exec(commandBuilder.toString().split(NetworkUtils.SPACE_STRING), null, new File(path));
    return true;
}
Also used : Configuration(net.md_5.bungee.config.Configuration) YamlConfiguration(net.md_5.bungee.config.YamlConfiguration) ServerInfo(de.dytanic.cloudnet.lib.server.info.ServerInfo) ZipEntry(java.util.zip.ZipEntry) ArrayList(java.util.ArrayList) Properties(java.util.Properties) YamlConfiguration(net.md_5.bungee.config.YamlConfiguration) Document(de.dytanic.cloudnet.lib.utility.document.Document) URL(java.net.URL) HttpURLConnection(java.net.HttpURLConnection) Path(java.nio.file.Path) ServerInstallablePlugin(de.dytanic.cloudnet.lib.service.plugin.ServerInstallablePlugin) Enumeration(java.util.Enumeration) MasterTemplateLoader(de.dytanic.cloudnet.lib.server.template.MasterTemplateLoader) PacketOutAddCloudServer(de.dytanic.cloudnetwrapper.network.packet.out.PacketOutAddCloudServer) SimpledUser(de.dytanic.cloudnet.lib.user.SimpledUser) HttpURLConnection(java.net.HttpURLConnection) URLConnection(java.net.URLConnection) ConnectableAddress(de.dytanic.cloudnet.lib.ConnectableAddress) ZipFile(java.util.zip.ZipFile) ZipFile(java.util.zip.ZipFile)

Example 22 with Plugin

use of net.md_5.bungee.api.plugin.Plugin in project Statz by Staartvin.

the class CommandsManager method onCommand.

/* (non-Javadoc)
	 * @see org.bukkit.command.CommandExecutor#onCommand(org.bukkit.command.CommandSender, org.bukkit.command.Command, java.lang.String, java.lang.String[])
	 */
@Override
public boolean onCommand(final CommandSender sender, final Command cmd, final String label, final String[] args) {
    if (args.length == 0) {
        // If admin has predefined a list of stats, show that instead of the list view of all stats.
        if (plugin.getConfigHandler().useCustomList() && sender instanceof Player) {
            Player player = (Player) sender;
            // Show custom stats that admin has provided in the config.
            plugin.getServer().getScheduler().runTaskAsynchronously(plugin, new Runnable() {

                private String playerName;

                private UUID uuid;

                private int pageNumber;

                private Runnable init(String playerName, UUID uuid, int pageNumber) {
                    this.playerName = playerName;
                    this.uuid = uuid;
                    this.pageNumber = pageNumber - 1;
                    return this;
                }

                public void run() {
                    plugin.getDataManager().sendStatisticsList(sender, playerName, uuid, pageNumber, plugin.getConfigHandler().getCustomList());
                }
            }.init(sender.getName(), player.getUniqueId(), 0));
            return true;
        } else {
            // Just show information about the plugin.
            sender.sendMessage(ChatColor.BLUE + "-----------------------------------------------------");
            sender.sendMessage(ChatColor.GOLD + "Developed by: " + ChatColor.GRAY + plugin.getDescription().getAuthors());
            sender.sendMessage(ChatColor.GOLD + "Version: " + ChatColor.GRAY + plugin.getDescription().getVersion());
            sender.sendMessage(Lang.STATZ_HELP_COMMAND.getConfigValue());
        }
        return true;
    }
    final String action = args[0];
    List<String> suggestions = new ArrayList<>();
    List<String> bestSuggestions = new ArrayList<>();
    // Go through every list and check if that action is in there.
    for (final Entry<List<String>, StatzCommand> entry : registeredCommands.entrySet()) {
        String suggestion = StatzUtil.findClosestSuggestion(action, entry.getKey());
        if (suggestion != null) {
            suggestions.add(suggestion);
        }
        for (final String actionString : entry.getKey()) {
            if (actionString.equalsIgnoreCase(action)) {
                // Check if player has proper permission
                if (!this.hasPermission(entry.getValue().getPermission(), sender)) {
                    return true;
                }
                return entry.getValue().onCommand(sender, cmd, label, args);
            }
        }
    }
    // Search for suggestions if argument was not found
    for (String suggestion : suggestions) {
        String[] split = suggestion.split(";");
        int editDistance = Integer.parseInt(split[1]);
        // Only give suggestion if edit distance is small
        if (editDistance <= 2) {
            bestSuggestions.add(split[0]);
        }
    }
    sender.sendMessage(Lang.COMMAND_NOT_RECOGNIZED.getConfigValue());
    if (!bestSuggestions.isEmpty()) {
        BaseComponent[] builder = new ComponentBuilder("Did you perhaps mean ").color(net.md_5.bungee.api.ChatColor.DARK_AQUA).append("/statz ").color(net.md_5.bungee.api.ChatColor.GREEN).append(StatzUtil.seperateList(bestSuggestions, "or")).event(new HoverEvent(HoverEvent.Action.SHOW_TEXT, new ComponentBuilder("These are suggestions based on your input.").create())).append("?").color(net.md_5.bungee.api.ChatColor.DARK_AQUA).create();
        if (sender instanceof Player) {
            Player p = (Player) sender;
            p.spigot().sendMessage(builder);
        } else {
            sender.sendMessage(ChatColor.DARK_AQUA + "Did you perhaps mean " + ChatColor.GREEN + "/statz " + StatzUtil.seperateList(bestSuggestions, "or") + ChatColor.DARK_AQUA + "?");
        }
    }
    sender.sendMessage(Lang.STATZ_HELP_COMMAND.getConfigValue());
    return true;
}
Also used : HoverEvent(net.md_5.bungee.api.chat.HoverEvent) Player(org.bukkit.entity.Player) BaseComponent(net.md_5.bungee.api.chat.BaseComponent) ComponentBuilder(net.md_5.bungee.api.chat.ComponentBuilder)

Aggregations

TextComponent (net.md_5.bungee.api.chat.TextComponent)6 YamlConfiguration (net.md_5.bungee.config.YamlConfiguration)6 Player (org.bukkit.entity.Player)6 CoreStateInitException (com.solinia.solinia.Exceptions.CoreStateInitException)5 ISoliniaPlayer (com.solinia.solinia.Interfaces.ISoliniaPlayer)5 Configuration (net.md_5.bungee.config.Configuration)5 File (java.io.File)4 ArrayList (java.util.ArrayList)4 Path (java.nio.file.Path)3 ClickEvent (net.md_5.bungee.api.chat.ClickEvent)3 ComponentBuilder (net.md_5.bungee.api.chat.ComponentBuilder)3 ProxiedPlayer (net.md_5.bungee.api.connection.ProxiedPlayer)3 UserPreference (com.github.games647.changeskin.core.model.UserPreference)2 SkinModel (com.github.games647.changeskin.core.model.skin.SkinModel)2 SoliniaItemException (com.solinia.solinia.Exceptions.SoliniaItemException)2 ISoliniaItem (com.solinia.solinia.Interfaces.ISoliniaItem)2 ISoliniaSpell (com.solinia.solinia.Interfaces.ISoliniaSpell)2 SoliniaActiveSpell (com.solinia.solinia.Models.SoliniaActiveSpell)2 ConnectableAddress (de.dytanic.cloudnet.lib.ConnectableAddress)2 ServerInfo (de.dytanic.cloudnet.lib.server.info.ServerInfo)2