Search in sources :

Example 6 with ServerGroup

use of de.dytanic.cloudnet.lib.server.ServerGroup in project CloudNet by Dytanic.

the class PacketInCreateTemplate method handleInput.

@Override
public void handleInput(Document data, PacketSender packetSender) {
    if (data.getString("type").equals(DefaultType.BUKKIT.name())) {
        ServerGroup serverGroup = data.getObject("serverGroup", new TypeToken<ServerGroup>() {
        }.getType());
        try {
            for (Template template : serverGroup.getTemplates()) {
                if (!Files.exists(Paths.get("local/templates/" + serverGroup.getName() + NetworkUtils.SLASH_STRING + template.getName()))) {
                    System.out.println("Creating GroupTemplate for " + serverGroup.getName() + " " + template.getName() + "...");
                    Files.createDirectories(Paths.get("local/templates/" + serverGroup.getName() + NetworkUtils.SLASH_STRING + template.getName() + ""));
                }
                if (!Files.exists(Paths.get("local/templates/" + serverGroup.getName() + NetworkUtils.SLASH_STRING + template.getName() + "/server.properties"))) {
                    FileCopy.insertData("files/server.properties", "local/templates/" + serverGroup.getName() + NetworkUtils.SLASH_STRING + template.getName() + "/server.properties");
                }
                if (!Files.exists(Paths.get("local/templates/" + serverGroup.getName() + NetworkUtils.SLASH_STRING + template.getName() + "/plugins"))) {
                    new File("local/templates/" + serverGroup.getName() + NetworkUtils.SLASH_STRING + template.getName() + "/plugins").mkdir();
                }
            }
            Template template = serverGroup.getGlobalTemplate();
            if (!Files.exists(Paths.get("local/templates/" + serverGroup.getName() + NetworkUtils.SLASH_STRING + template.getName()))) {
                System.out.println("Creating GroupTemplate for " + serverGroup.getName() + " " + template.getName() + "...");
                Files.createDirectories(Paths.get("local/templates/" + serverGroup.getName() + NetworkUtils.SLASH_STRING + template.getName() + ""));
            }
            if (!Files.exists(Paths.get("local/templates/" + serverGroup.getName() + NetworkUtils.SLASH_STRING + template.getName() + "/server.properties"))) {
                FileCopy.insertData("files/server.properties", "local/templates/" + serverGroup.getName() + NetworkUtils.SLASH_STRING + template.getName() + "/server.properties");
            }
            if (!Files.exists(Paths.get("local/templates/" + serverGroup.getName() + NetworkUtils.SLASH_STRING + template.getName() + "/plugins"))) {
                new File("local/templates/" + serverGroup.getName() + NetworkUtils.SLASH_STRING + template.getName() + "/plugins").mkdir();
            }
        } catch (IOException e) {
            e.printStackTrace();
        }
        if (serverGroup.getServerType().equals(ServerGroupType.CAULDRON)) {
            for (Template template : serverGroup.getTemplates()) {
                if (!Files.exists(Paths.get("local/templates/" + serverGroup.getName() + NetworkUtils.SLASH_STRING + template.getName() + "/cauldron.jar"))) {
                    try {
                        System.out.println("Downloading cauldron.zip...");
                        File file = new File("local/templates/" + serverGroup.getName() + NetworkUtils.SLASH_STRING + template.getName() + "/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("local/templates/" + serverGroup.getName() + NetworkUtils.SLASH_STRING + template.getName() + "/cauldron.zip"));
                        System.out.println("Downloading Complete!");
                        ZipFile zip = new ZipFile(file);
                        Enumeration<? extends ZipEntry> entryEnumeration = zip.entries();
                        while (entryEnumeration.hasMoreElements()) {
                            ZipEntry entry = entryEnumeration.nextElement();
                            if (!entry.isDirectory()) {
                                extractEntry(zip, entry, "local/templates/" + serverGroup.getName() + NetworkUtils.SLASH_STRING + template.getName());
                            }
                        }
                        zip.close();
                        file.delete();
                        new File("local/templates/" + serverGroup.getName() + NetworkUtils.SLASH_STRING + template.getName() + "/cauldron-1.7.10-2.1403.1.54-server.jar").renameTo(new File("local/templates/" + serverGroup.getName() + NetworkUtils.SLASH_STRING + template.getName() + "/cauldron.jar"));
                        System.out.println("Using a cauldron.jar for your minecraft service template " + serverGroup.getName() + ", please copy a eula.txt into the template or into the global folder");
                    } catch (Exception e) {
                        e.printStackTrace();
                    }
                }
            }
            Template template = serverGroup.getGlobalTemplate();
            if (!Files.exists(Paths.get("local/templates/" + serverGroup.getName() + NetworkUtils.SLASH_STRING + template.getName() + "/cauldron.jar"))) {
                try {
                    System.out.println("Downloading cauldron.zip...");
                    File file = new File("local/templates/" + serverGroup.getName() + NetworkUtils.SLASH_STRING + template.getName() + "/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("local/templates/" + serverGroup.getName() + NetworkUtils.SLASH_STRING + template.getName() + "/cauldron.zip"));
                    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, "local/templates/" + serverGroup.getName() + NetworkUtils.SLASH_STRING + template.getName());
                        }
                    }
                    zip.close();
                    file.delete();
                    new File("local/templates/" + serverGroup.getName() + NetworkUtils.SLASH_STRING + template.getName() + "/cauldron-1.7.10-2.1403.1.54-server.jar").renameTo(new File("local/templates/" + serverGroup.getName() + NetworkUtils.SLASH_STRING + template.getName() + "/cauldron.jar"));
                    System.out.println("Using a cauldron.jar for your minecraft service template " + serverGroup.getName() + ", please copy a eula.txt into the template or into the global folder");
                } catch (Exception e) {
                    e.printStackTrace();
                }
            }
        }
        if (serverGroup.getServerType().equals(ServerGroupType.GLOWSTONE)) {
            for (Template template : serverGroup.getTemplates()) {
                Path path = Paths.get("local/templates/" + serverGroup.getName() + NetworkUtils.SLASH_STRING + template.getName() + "/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();
                    }
                }
            }
            Template template = serverGroup.getGlobalTemplate();
            Path path = Paths.get("local/templates/" + serverGroup.getName() + NetworkUtils.SLASH_STRING + template.getName() + "/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();
                }
            }
        }
    } else {
        ProxyGroup proxyGroup = data.getObject("proxyGroup", new TypeToken<ProxyGroup>() {
        }.getType());
        try {
            if (!Files.exists(Paths.get("local/templates/" + proxyGroup.getName()))) {
                System.out.println("Creating GroupTemplate for " + proxyGroup.getName() + " DEFAULT...");
                Files.createDirectories(Paths.get("local/templates/" + proxyGroup.getName() + "/plugins"));
            }
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}
Also used : Path(java.nio.file.Path) ProxyGroup(de.dytanic.cloudnet.lib.server.ProxyGroup) ServerGroup(de.dytanic.cloudnet.lib.server.ServerGroup) ZipEntry(java.util.zip.ZipEntry) HttpURLConnection(java.net.HttpURLConnection) URLConnection(java.net.URLConnection) URL(java.net.URL) Template(de.dytanic.cloudnet.lib.server.template.Template) HttpURLConnection(java.net.HttpURLConnection) ZipFile(java.util.zip.ZipFile) TypeToken(com.google.gson.reflect.TypeToken) ZipFile(java.util.zip.ZipFile)

Example 7 with ServerGroup

use of de.dytanic.cloudnet.lib.server.ServerGroup in project CloudNet by Dytanic.

the class PacketInWrapperInfo method handleInput.

@Override
public void handleInput(Document data, PacketSender packetSender) {
    WrapperExternal wrapperExternal = data.getObject("wrapper", new TypeToken<WrapperExternal>() {
    }.getType());
    CloudNetWrapper.getInstance().setSimpledUser(wrapperExternal.getUser());
    CloudNetWrapper.getInstance().getServerGroups().clear();
    NetworkUtils.addAll(CloudNetWrapper.getInstance().getServerGroups(), wrapperExternal.getServerGroups(), new Acceptable<ServerGroup>() {

        @Override
        public boolean isAccepted(ServerGroup value) {
            System.out.println("Importing server group [" + value.getName() + "] from CloudNet-Master");
            return true;
        }
    });
    CloudNetWrapper.getInstance().getProxyGroups().clear();
    NetworkUtils.addAll(CloudNetWrapper.getInstance().getProxyGroups(), wrapperExternal.getProxyGroups(), new Acceptable<ProxyGroup>() {

        @Override
        public boolean isAccepted(ProxyGroup value) {
            System.out.println("Importing proxy group [" + value.getName() + "] from CloudNet-Master");
            return true;
        }
    });
}
Also used : ProxyGroup(de.dytanic.cloudnet.lib.server.ProxyGroup) ServerGroup(de.dytanic.cloudnet.lib.server.ServerGroup) TypeToken(com.google.gson.reflect.TypeToken) WrapperExternal(de.dytanic.cloudnet.lib.network.WrapperExternal)

Example 8 with ServerGroup

use of de.dytanic.cloudnet.lib.server.ServerGroup in project CloudNet by Dytanic.

the class CommandCloud method execute.

@Override
public void execute(CommandSender commandSender, String[] args) {
    if (args.length > 2) {
        if (args[0].equalsIgnoreCase("cmds") && commandSender.hasPermission("cloudnet.command.cloud.commandserver")) {
            if (CloudProxy.getInstance().getCachedServers().containsKey(args[1])) {
                StringBuilder builder = new StringBuilder();
                for (short i = 2; i < args.length; i++) builder.append(args[i]).append(NetworkUtils.SPACE_STRING);
                CloudAPI.getInstance().sendConsoleMessage(DefaultType.BUKKIT, args[1], builder.substring(0, builder.length() - 1));
                commandSender.sendMessage(CloudAPI.getInstance().getPrefix() + "The information was sent to the cloud");
                return;
            }
        }
        if (args[0].equalsIgnoreCase("cmdp") && commandSender.hasPermission("cloudnet.command.cloud.commandproxy")) {
            StringBuilder builder = new StringBuilder();
            for (short i = 2; i < args.length; i++) builder.append(args[i]).append(NetworkUtils.SPACE_STRING);
            CloudAPI.getInstance().sendConsoleMessage(DefaultType.BUNGEE_CORD, args[1], builder.substring(0, builder.length() - 1));
            commandSender.sendMessage(CloudAPI.getInstance().getPrefix() + "The information was sent to the cloud");
            return;
        }
    }
    switch(args.length) {
        case 1:
            if (args[0].equalsIgnoreCase("help")) {
                commandSender.sendMessages(NetworkUtils.SPACE_STRING, CloudAPI.getInstance().getPrefix() + "All command arguments", "§7/cloud toggle autoslot", "§7/cloud toggle maintenance", "§7/cloud toggle maintenance <time>", "§7/cloud setMaxPlayers <maxonlinecount>", "§7/cloud whitelist <add : remove> <name>", "§7/cloud start <group> <count>", "§7/cloud start <group> <template>", "§7/cloud startcs <name> <memory> <priorityStop>", "§7/cloud cmds (command server) <server> <command>", "§7/cloud cmdp (command proxy) <proxy> <command>", "§7/cloud stop <serverId>", "§7/cloud stopGroup <group>", "§7/cloud ustopGroup <group>", "§7/cloud listProxys", "§7/cloud listOnline", "§7/cloud listServers", "§7/cloud log <server>", "§7/cloud listGroups", "§7/cloud rl", "§7/cloud rlconfig", "§7/cloud list", "§7/cloud maintenance <group>", "§7/cloud copy <server>", "§7/cloud copy <server> <directory>", "§7/cloud version", "§7/cloud statistics", NetworkUtils.SPACE_STRING);
                return;
            }
            if (args[0].equalsIgnoreCase("rl") && commandSender.hasPermission("cloudnet.command.cloud.reload")) {
                CloudAPI.getInstance().sendCloudCommand("reload all");
                commandSender.sendMessage(CloudAPI.getInstance().getPrefix() + "The information was sent to the cloud");
                return;
            }
            if (args[0].equalsIgnoreCase("statistics") && commandSender.hasPermission("cloudnet.ommand.cloud.statistics")) {
                Document document = CloudAPI.getInstance().getStatistics();
                commandSender.sendMessage(CloudAPI.getInstance().getPrefix() + "Statistics");
                for (String key : document.keys()) if (!Database.UNIQUE_NAME_KEY.equalsIgnoreCase(key))
                    commandSender.sendMessage("§3" + key + "§8| §e " + document.get(key).toString());
                return;
            }
            if (args[0].equalsIgnoreCase("version") && commandSender.hasPermission("cloudnet.command.cloud.version")) {
                commandSender.sendMessage("CloudNet " + NetworkUtils.class.getPackage().getSpecificationVersion() + " #" + NetworkUtils.class.getPackage().getImplementationVersion() + " by Dytanic");
                return;
            }
            if (args[0].equalsIgnoreCase("rlconfig") && commandSender.hasPermission("cloudnet.command.cloud.reloadconfig")) {
                CloudAPI.getInstance().sendCloudCommand("reload config");
                commandSender.sendMessage(CloudAPI.getInstance().getPrefix() + "The information was sent to the cloud");
                return;
            }
            if (args[0].equalsIgnoreCase("list") && commandSender.hasPermission("cloudnet.command.cloud.list")) {
                commandSender.sendMessage(NetworkUtils.SPACE_STRING);
                int maxMemory = 0;
                int usedMemory = 0;
                Map<String, Collection<ServerInfo>> groupSorted = new LinkedHashMap<>();
                for (WrapperInfo cnsInfo : CloudAPI.getInstance().getWrappers()) {
                    commandSender.sendMessage("§8[§7" + cnsInfo.getServerId() + "§8/§7" + cnsInfo.getHostName() + "§8] §7Cores: " + cnsInfo.getAvailableProcessors());
                    maxMemory = maxMemory + cnsInfo.getMemory();
                }
                commandSender.sendMessage(NetworkUtils.SPACE_STRING);
                for (ProxyInfo simpleProxyInfo : CloudAPI.getInstance().getProxys()) {
                    commandSender.sendMessage("§8[§c" + simpleProxyInfo.getServiceId().getServerId() + "§8] §8(§e" + simpleProxyInfo.getOnlineCount() + "§8) : §7" + simpleProxyInfo.getMemory() + "MB");
                    usedMemory = usedMemory + simpleProxyInfo.getMemory();
                }
                commandSender.sendMessage(NetworkUtils.SPACE_STRING);
                for (ServerInfo simpleProxyInfo : CloudAPI.getInstance().getServers()) {
                    if (simpleProxyInfo.getServiceId().getGroup() != null) {
                        if (!groupSorted.containsKey(simpleProxyInfo.getServiceId().getGroup()))
                            groupSorted.put(simpleProxyInfo.getServiceId().getGroup(), new ArrayList<>());
                        groupSorted.get(simpleProxyInfo.getServiceId().getGroup()).add(simpleProxyInfo);
                        continue;
                    }
                    TextComponent textComponent = new TextComponent(TextComponent.fromLegacyText("§8[§c" + simpleProxyInfo.getServiceId().getServerId() + "§8] §8(§e" + simpleProxyInfo.getOnlineCount() + "§8) §e" + simpleProxyInfo.getServerState().name() + " §8: §7" + simpleProxyInfo.getMemory() + "MB"));
                    textComponent.setClickEvent(new ClickEvent(ClickEvent.Action.RUN_COMMAND, "/server " + simpleProxyInfo.getServiceId().getServerId()));
                    commandSender.sendMessage(textComponent);
                    usedMemory = usedMemory + simpleProxyInfo.getMemory();
                }
                commandSender.sendMessage(NetworkUtils.SPACE_STRING);
                for (Map.Entry<String, Collection<ServerInfo>> entry : groupSorted.entrySet()) {
                    commandSender.sendMessage("§7Group: §e" + entry.getKey());
                    for (ServerInfo serverInfo : entry.getValue()) {
                        TextComponent textComponent = new TextComponent(TextComponent.fromLegacyText("§8[§c" + serverInfo.getServiceId().getServerId() + "§8] §8(§e" + serverInfo.getOnlineCount() + "§8) §e" + serverInfo.getServerState().name() + " §8: §7" + serverInfo.getMemory() + "MB"));
                        textComponent.setClickEvent(new ClickEvent(ClickEvent.Action.RUN_COMMAND, "/server " + serverInfo.getServiceId().getServerId()));
                        commandSender.sendMessage(textComponent);
                        usedMemory = usedMemory + serverInfo.getMemory();
                    }
                    commandSender.sendMessage(NetworkUtils.SPACE_STRING);
                }
                commandSender.sendMessage("§7Memory in use: " + usedMemory + "§8/§7" + maxMemory + "MB");
            }
            if (args[0].equalsIgnoreCase("listProxys") && commandSender.hasPermission("cloudnet.command.listproxys")) {
                commandSender.sendMessage(CloudAPI.getInstance().getPrefix() + "Proxys:");
                for (ProxyInfo proxy : CloudAPI.getInstance().getProxys()) {
                    commandSender.sendMessage("§7- " + (proxy.isOnline() ? "§e" : "§c") + proxy.getServiceId().getServerId() + " §8(§e" + proxy.getOnlineCount() + "§8) ");
                }
                return;
            }
            if (args[0].equalsIgnoreCase("listServers") && commandSender.hasPermission("cloudnet.command.cloud.listservers")) {
                commandSender.sendMessage(CloudAPI.getInstance().getPrefix() + "Server:");
                for (ServerInfo server : CloudProxy.getInstance().getCachedServers().values()) {
                    TextComponent textComponent = new TextComponent(TextComponent.fromLegacyText("§7- " + (server.isOnline() ? "§e" : "§c") + server.getServiceId().getServerId() + "§8(" + server.getOnlineCount() + "§8) §7State: " + server.getServerState()));
                    textComponent.setClickEvent(new ClickEvent(ClickEvent.Action.RUN_COMMAND, "/server " + server.getServiceId().getServerId()));
                    commandSender.sendMessage(textComponent);
                }
                return;
            }
            if (args[0].equalsIgnoreCase("listOnline") && commandSender.hasPermission("cloudnet.command.cloud.listonline")) {
                for (CloudPlayer playerWhereAmI : CloudAPI.getInstance().getOnlinePlayers()) {
                    commandSender.sendMessage("§7- §e" + playerWhereAmI.getName() + " §7on §e" + playerWhereAmI.getServer() + NetworkUtils.SLASH_STRING + playerWhereAmI.getProxy());
                }
                return;
            }
            if (args[0].equalsIgnoreCase("listGroups") && commandSender.hasPermission("cloudnet.command.cloud.listgroups")) {
                StringBuilder builder = new StringBuilder();
                for (SimpleServerGroup group : CloudAPI.getInstance().getCloudNetwork().getServerGroups().values()) {
                    builder.append((!group.isMaintenance() ? "§e" : "§c")).append(group.getName()).append("§7, ");
                }
                commandSender.sendMessage("§7The following server groups are registered:");
                commandSender.sendMessage(builder.substring(0));
                return;
            }
            break;
        case 2:
            if (args[0].equalsIgnoreCase("toggle")) {
                switch(args[1].toLowerCase()) {
                    case "autoslot":
                        {
                            if (commandSender.hasPermission("cloudnet.command.cloud.autoslot")) {
                                ProxyGroup proxyGroup = CloudProxy.getInstance().getProxyGroup();
                                proxyGroup.getProxyConfig().setAutoSlot(new AutoSlot(proxyGroup.getProxyConfig().getAutoSlot().getDynamicSlotSize(), !proxyGroup.getProxyConfig().getAutoSlot().isEnabled()));
                                CloudAPI.getInstance().updateProxyGroup(proxyGroup);
                                commandSender.sendMessage(CloudAPI.getInstance().getPrefix() + "The autoslot state was updated.");
                            }
                        }
                        return;
                    case "maintenance":
                        {
                            if (commandSender.hasPermission("cloudnet.command.cloud.maintenance")) {
                                ProxyGroup proxyGroup = CloudProxy.getInstance().getProxyGroup();
                                proxyGroup.getProxyConfig().setMaintenance(!proxyGroup.getProxyConfig().isMaintenance());
                                CloudAPI.getInstance().updateProxyGroup(proxyGroup);
                                commandSender.sendMessage(CloudAPI.getInstance().getPrefix() + "The maintenance state was updated.");
                            }
                            return;
                        }
                }
                return;
            }
            if (args[0].equalsIgnoreCase("log") && commandSender.hasPermission("cloudnet.command.cloud.log")) {
                if (CloudProxy.getInstance().getCachedServers().containsKey(args[1]) || CollectionWrapper.filter(CloudAPI.getInstance().getProxys(), new Acceptable<ProxyInfo>() {

                    @Override
                    public boolean isAccepted(ProxyInfo proxyInfo) {
                        return proxyInfo.getServiceId().getServerId().equalsIgnoreCase(args[1]);
                    }
                }) != null) {
                    String url = CloudAPI.getInstance().createServerLogUrl(args[1]);
                    TextComponent textComponent = new TextComponent(TextComponent.fromLegacyText("§n§l§b" + url));
                    textComponent.setClickEvent(new ClickEvent(ClickEvent.Action.OPEN_URL, url));
                    commandSender.sendMessage(new TextComponent(TextComponent.fromLegacyText(CloudAPI.getInstance().getPrefix() + "You can review the log at: ")), textComponent);
                    commandSender.sendMessage(CloudAPI.getInstance().getPrefix() + "The log is dynamic and will be deleted on 10 minutes");
                } else {
                    commandSender.sendMessage(CloudAPI.getInstance().getPrefix() + "The server doesn't exist.");
                }
                return;
            }
            if (args[0].equalsIgnoreCase("setMaxPlayers") && commandSender.hasPermission("cloudnet.command.cloud.setmaxplayers")) {
                if (checkAsNumber(args[1])) {
                    ProxyGroup proxyGroup = CloudProxy.getInstance().getProxyGroup();
                    proxyGroup.getProxyConfig().setMaxPlayers(Integer.parseInt(args[1]));
                    CloudAPI.getInstance().updateProxyGroup(proxyGroup);
                    commandSender.sendMessage(CloudAPI.getInstance().getPrefix() + "The maximum onlinecount was updated.");
                } else {
                    commandSender.sendMessage("§7The second argument is not a number.");
                }
                return;
            }
            if (args[0].equalsIgnoreCase("start") && commandSender.hasPermission("cloudnet.command.cloud.start")) {
                if (CloudAPI.getInstance().getCloudNetwork().getServerGroups().containsKey(args[1])) {
                    CloudAPI.getInstance().startGameServer(CloudAPI.getInstance().getServerGroupData(args[1]), new ServerConfig(false, "extra", new Document(), System.currentTimeMillis()), true);
                    commandSender.sendMessage(CloudAPI.getInstance().getPrefix() + "The information was sent to the cloud");
                } else if (CloudAPI.getInstance().getCloudNetwork().getProxyGroups().containsKey(args[1])) {
                    CloudAPI.getInstance().startProxy(CloudAPI.getInstance().getProxyGroupData(args[1]));
                    commandSender.sendMessage(CloudAPI.getInstance().getPrefix() + "The information was sent to the cloud");
                } else {
                    commandSender.sendMessage(CloudAPI.getInstance().getPrefix() + "The group doesn't exist.");
                }
                return;
            }
            if (args[0].equalsIgnoreCase("maintenance") && commandSender.hasPermission("cloudnet.command.cloud.maintenancegroup")) {
                if (CloudAPI.getInstance().getServerGroupMap().containsKey(args[1])) {
                    ServerGroup serverGroup = CloudAPI.getInstance().getServerGroup(args[1]);
                    serverGroup.setMaintenance(!serverGroup.isMaintenance());
                    CloudAPI.getInstance().updateServerGroup(serverGroup);
                    commandSender.sendMessage(CloudAPI.getInstance().getPrefix() + "The information was sent to the cloud");
                } else {
                    commandSender.sendMessage(CloudAPI.getInstance().getPrefix() + "The group doesn't exist.");
                }
                return;
            }
            if (args[0].equalsIgnoreCase("stop") && commandSender.hasPermission("cloudnet.command.cloud.stop")) {
                if (CloudProxy.getInstance().getCachedServers().containsKey(args[1])) {
                    CloudAPI.getInstance().stopServer(args[1]);
                    commandSender.sendMessage(CloudAPI.getInstance().getPrefix() + "The information was sent to the cloud");
                } else if (CollectionWrapper.filter(CloudAPI.getInstance().getProxys(), new Acceptable<ProxyInfo>() {

                    @Override
                    public boolean isAccepted(ProxyInfo proxyInfo) {
                        return proxyInfo.getServiceId().getServerId().equalsIgnoreCase(args[1]);
                    }
                }) != null) {
                    CloudAPI.getInstance().stopProxy(args[1]);
                    commandSender.sendMessage(CloudAPI.getInstance().getPrefix() + "The information was sent to the cloud");
                } else {
                    commandSender.sendMessage(CloudAPI.getInstance().getPrefix() + "The specified server isn't online.");
                }
                return;
            }
            if (args[0].equalsIgnoreCase("stopGroup") && commandSender.hasPermission("cloudnet.command.cloud.stopgroup")) {
                if (CloudAPI.getInstance().getServerGroupMap().containsKey(args[1])) {
                    List<String> servers = CloudProxy.getInstance().getServers(args[1]);
                    for (String server : servers) CloudAPI.getInstance().stopServer(server);
                    commandSender.sendMessage(CloudAPI.getInstance().getPrefix() + "The information was sent to the cloud");
                    return;
                }
                if (CloudAPI.getInstance().getProxyGroupMap().containsKey(args[1])) {
                    Collection<ProxyInfo> servers = CloudAPI.getInstance().getProxys();
                    for (ProxyInfo proxyInfo : servers) if (proxyInfo.getServiceId().getGroup().equalsIgnoreCase(args[1]))
                        CloudAPI.getInstance().stopProxy(proxyInfo.getServiceId().getServerId());
                    commandSender.sendMessage(CloudAPI.getInstance().getPrefix() + "The information was sent to the cloud");
                    return;
                }
                return;
            }
            if (args[0].equalsIgnoreCase("ustopGroup") && commandSender.hasPermission("cloudnet.command.cloud.useless-stopgroup")) {
                if (CloudAPI.getInstance().getServerGroupMap().containsKey(args[1])) {
                    Collection<ServerInfo> servers = CollectionWrapper.filterMany(CloudProxy.getInstance().getCachedServers().values(), new Acceptable<ServerInfo>() {

                        @Override
                        public boolean isAccepted(ServerInfo serverInfo) {
                            return serverInfo.getServiceId().getGroup() != null && serverInfo.getServiceId().getGroup().equalsIgnoreCase(args[1]);
                        }
                    });
                    for (ServerInfo server : servers) if (server.getOnlineCount() == 0)
                        CloudAPI.getInstance().stopServer(server.getServiceId().getServerId());
                    commandSender.sendMessage(CloudAPI.getInstance().getPrefix() + "The information was sent to the cloud");
                    return;
                }
                if (CloudAPI.getInstance().getProxyGroupMap().containsKey(args[1])) {
                    Collection<ProxyInfo> servers = CloudAPI.getInstance().getProxys();
                    for (ProxyInfo proxyInfo : servers) if (proxyInfo.getServiceId().getGroup().equalsIgnoreCase(args[1]) && proxyInfo.getOnlineCount() == 0)
                        CloudAPI.getInstance().stopProxy(proxyInfo.getServiceId().getServerId());
                    commandSender.sendMessage(CloudAPI.getInstance().getPrefix() + "The information was sent to the cloud");
                    return;
                }
                return;
            }
            if (args[0].equalsIgnoreCase("copy") && commandSender.hasPermission("cloudnet.command.cloud.copy")) {
                CloudAPI.getInstance().sendCloudCommand("copy " + args[1]);
                commandSender.sendMessage(CloudAPI.getInstance().getPrefix() + "The information was sent to the cloud");
                return;
            }
            break;
        case 3:
            if (args[0].equalsIgnoreCase("copy")) {
                if (!CloudProxy.getInstance().getCachedServers().containsKey(args[1])) {
                    commandSender.sendMessage(CloudAPI.getInstance().getPrefix() + "The server doesn't exists");
                    return;
                }
                CloudAPI.getInstance().copyDirectory(CloudProxy.getInstance().getCachedServers().get(args[1]), args[2]);
                commandSender.sendMessage(CloudAPI.getInstance().getPrefix() + "The wrapper tried to copy the directory...");
                return;
            }
            if (args[0].equalsIgnoreCase("toggle")) {
                switch(args[1].toLowerCase()) {
                    case "maintenance":
                        {
                            if (commandSender.hasPermission("cloudnet.command.cloud.maintenance")) {
                                if (!NetworkUtils.checkIsNumber(args[2]))
                                    return;
                                ProxyServer.getInstance().getScheduler().schedule(CloudProxy.getInstance().getPlugin(), new Runnable() {

                                    @Override
                                    public void run() {
                                        ProxyGroup proxyGroup = CloudProxy.getInstance().getProxyGroup();
                                        proxyGroup.getProxyConfig().setMaintenance(!proxyGroup.getProxyConfig().isMaintenance());
                                        CloudAPI.getInstance().updateProxyGroup(proxyGroup);
                                        commandSender.sendMessage(CloudAPI.getInstance().getPrefix() + "The maintenance state was updated.");
                                    }
                                }, Integer.parseInt(args[2]), TimeUnit.SECONDS);
                                commandSender.sendMessage(CloudAPI.getInstance().getPrefix() + "The maintenance will be changed in " + args[2] + " seconds");
                            }
                            return;
                        }
                }
                return;
            }
            if (args[0].equalsIgnoreCase("start") && commandSender.hasPermission("cloudnet.command.cloud.start")) {
                if (CloudAPI.getInstance().getServerGroupMap().containsKey(args[1])) {
                    if (checkAsNumber(args[2])) {
                        for (short i = 0; i < Integer.parseInt(args[2]); i++) {
                            CloudAPI.getInstance().startGameServer(CloudAPI.getInstance().getServerGroupData(args[1]), new ServerConfig(false, "extra", new Document(), System.currentTimeMillis()), true);
                        }
                        commandSender.sendMessage(CloudAPI.getInstance().getPrefix() + "The information was sent to the cloud");
                    } else {
                        ServerGroup serverGroup = CloudAPI.getInstance().getServerGroup(args[1]);
                        if (CollectionWrapper.filter(serverGroup.getTemplates(), new Acceptable<Template>() {

                            @Override
                            public boolean isAccepted(Template value) {
                                return value.getName().equalsIgnoreCase(args[2]);
                            }
                        }) != null) {
                            CloudAPI.getInstance().startGameServer(CloudAPI.getInstance().getServerGroupData(args[1]), new ServerConfig(false, "extra", new Document(), System.currentTimeMillis()), true, CollectionWrapper.filter(serverGroup.getTemplates(), new Acceptable<Template>() {

                                @Override
                                public boolean isAccepted(Template value) {
                                    return value.getName().equalsIgnoreCase(args[2]);
                                }
                            }));
                            commandSender.sendMessage(CloudAPI.getInstance().getPrefix() + "The information was sent to the cloud");
                        }
                    }
                } else if (CloudAPI.getInstance().getProxyGroupMap().containsKey(args[1])) {
                    if (checkAsNumber(args[2])) {
                        for (short i = 0; i < Integer.parseInt(args[2]); i++) {
                            CloudAPI.getInstance().startProxy(CloudAPI.getInstance().getProxyGroupData(args[1]));
                        }
                        commandSender.sendMessage(CloudAPI.getInstance().getPrefix() + "The information was sent to the cloud");
                    } else {
                        CloudAPI.getInstance().startProxy(CloudAPI.getInstance().getProxyGroupData(args[1]));
                        commandSender.sendMessage(CloudAPI.getInstance().getPrefix() + "The information was sent to the cloud");
                    }
                } else {
                    commandSender.sendMessage(CloudAPI.getInstance().getPrefix() + "The group doesn't exist.");
                }
            } else if (args[0].equalsIgnoreCase("whitelist") && commandSender.hasPermission("cloudnet.command.cloud.whitelist")) {
                if (args[1].equalsIgnoreCase("add")) {
                    ProxyGroup proxyGroup = CloudProxy.getInstance().getProxyGroup();
                    if (proxyGroup.getProxyConfig().getWhitelist().contains(args[2])) {
                        commandSender.sendMessage(CloudAPI.getInstance().getPrefix() + " The user " + args[2] + " is already on the whitelist.");
                        return;
                    }
                    proxyGroup.getProxyConfig().getWhitelist().add(args[2]);
                    CloudAPI.getInstance().updateProxyGroup(proxyGroup);
                    commandSender.sendMessage(CloudAPI.getInstance().getPrefix() + " You added " + args[2] + " to the whitelist of the maintenance mode.");
                } else if (args[1].equalsIgnoreCase("remove")) {
                    ProxyGroup proxyGroup = CloudProxy.getInstance().getProxyGroup();
                    proxyGroup.getProxyConfig().getWhitelist().remove(args[2]);
                    CloudAPI.getInstance().updateProxyGroup(proxyGroup);
                    commandSender.sendMessage(CloudAPI.getInstance().getPrefix() + " You removed " + args[2] + " from the whitelist of the maintenance mode.");
                }
            }
            break;
        case 4:
            if (args[0].equalsIgnoreCase("startcs") && commandSender.hasPermission("cloudnet.command.cloud.startcs")) {
                if (NetworkUtils.checkIsNumber(args[2]) && Integer.parseInt(args[2]) > 128) {
                    CloudAPI.getInstance().startCloudServer(args[1], Integer.parseInt(args[2]), args[3].equalsIgnoreCase("true"));
                    commandSender.sendMessage(CloudAPI.getInstance().getPrefix() + "The information was sent to the cloud");
                } else {
                    commandSender.sendMessage("Invalid arguments!");
                }
            }
            break;
        default:
            commandSender.sendMessage(CloudAPI.getInstance().getPrefix() + "Use /cloud help");
            break;
    }
}
Also used : ProxyGroup(de.dytanic.cloudnet.lib.server.ProxyGroup) ServerGroup(de.dytanic.cloudnet.lib.server.ServerGroup) SimpleServerGroup(de.dytanic.cloudnet.lib.server.SimpleServerGroup) ServerInfo(de.dytanic.cloudnet.lib.server.info.ServerInfo) ClickEvent(net.md_5.bungee.api.chat.ClickEvent) Document(de.dytanic.cloudnet.lib.utility.document.Document) Template(de.dytanic.cloudnet.lib.server.template.Template) ProxyInfo(de.dytanic.cloudnet.lib.server.info.ProxyInfo) ServerConfig(de.dytanic.cloudnet.lib.server.ServerConfig) WrapperInfo(de.dytanic.cloudnet.lib.network.WrapperInfo) SimpleServerGroup(de.dytanic.cloudnet.lib.server.SimpleServerGroup) TextComponent(net.md_5.bungee.api.chat.TextComponent) CloudPlayer(de.dytanic.cloudnet.lib.player.CloudPlayer) AutoSlot(de.dytanic.cloudnet.lib.proxylayout.AutoSlot) Acceptable(de.dytanic.cloudnet.lib.utility.Acceptable)

Example 9 with ServerGroup

use of de.dytanic.cloudnet.lib.server.ServerGroup in project CloudNet by Dytanic.

the class PacketInAddCloudServer method handleInput.

@Override
public void handleInput(Document data, PacketSender packetSender) {
    if (!(packetSender instanceof Wrapper))
        return;
    Wrapper cn = ((Wrapper) packetSender);
    ServerInfo nullServerInfo = data.getObject("serverInfo", new TypeToken<ServerInfo>() {
    }.getType());
    CloudServerMeta serverProcessMeta = data.getObject("cloudServerMeta", new TypeToken<CloudServerMeta>() {
    }.getType());
    CloudServer minecraftServer = new CloudServer(cn, nullServerInfo, serverProcessMeta);
    cn.getCloudServers().put(nullServerInfo.getServiceId().getServerId(), minecraftServer);
    cn.getWaitingServices().remove(minecraftServer.getServerId());
    {
        if (serverProcessMeta.isPriorityStop()) {
            ServerGroup serverGroup = CloudNet.getInstance().getServerGroups().get(serverProcessMeta.getServiceId().getGroup());
            if (serverGroup != null) {
                PriorityStopTask priorityStopTask = new PriorityStopTask(cn, minecraftServer, serverGroup.getPriorityService().getStopTimeInSeconds());
                ScheduledTask scheduledTask = CloudNet.getInstance().getSubScheduler().runTaskRepeatSync(priorityStopTask, 0, 50);
                priorityStopTask.setScheduledTask(scheduledTask);
            }
        }
    }
    CloudNet.getInstance().getNetworkManager().handleServerAdd(minecraftServer);
}
Also used : CloudServerMeta(de.dytanic.cloudnet.lib.cloudserver.CloudServerMeta) PriorityStopTask(de.dytanic.cloudnetcore.network.components.priority.PriorityStopTask) Wrapper(de.dytanic.cloudnetcore.network.components.Wrapper) ServerGroup(de.dytanic.cloudnet.lib.server.ServerGroup) ServerInfo(de.dytanic.cloudnet.lib.server.info.ServerInfo) TypeToken(com.google.gson.reflect.TypeToken) CloudServer(de.dytanic.cloudnetcore.network.components.CloudServer) ScheduledTask(de.dytanic.cloudnet.lib.utility.threading.ScheduledTask)

Example 10 with ServerGroup

use of de.dytanic.cloudnet.lib.server.ServerGroup in project CloudNet by Dytanic.

the class PacketInAddServer method handleInput.

@Override
public void handleInput(Document data, PacketSender packetSender) {
    if (!(packetSender instanceof Wrapper))
        return;
    Wrapper cn = ((Wrapper) packetSender);
    ServerInfo nullServerInfo = data.getObject("serverInfo", new TypeToken<ServerInfo>() {
    }.getType());
    ServerProcessMeta serverProcessMeta = data.getObject("serverProcess", new TypeToken<ServerProcessMeta>() {
    }.getType());
    MinecraftServer minecraftServer = new MinecraftServer(serverProcessMeta, cn, CloudNet.getInstance().getServerGroups().get(nullServerInfo.getServiceId().getGroup()), nullServerInfo);
    cn.getServers().put(nullServerInfo.getServiceId().getServerId(), minecraftServer);
    cn.getWaitingServices().remove(minecraftServer.getServerId());
    {
        if (serverProcessMeta.isPriorityStop()) {
            ServerGroup serverGroup = CloudNet.getInstance().getServerGroups().get(serverProcessMeta.getServiceId().getGroup());
            if (serverGroup != null) {
                PriorityStopTask priorityStopTask = new PriorityStopTask(cn, minecraftServer, serverGroup.getPriorityService().getStopTimeInSeconds());
                ScheduledTask scheduledTask = CloudNet.getInstance().getSubScheduler().runTaskRepeatSync(priorityStopTask, 0, 50);
                priorityStopTask.setScheduledTask(scheduledTask);
            }
        }
    }
    CloudNet.getInstance().getNetworkManager().handleServerAdd(minecraftServer);
}
Also used : PriorityStopTask(de.dytanic.cloudnetcore.network.components.priority.PriorityStopTask) Wrapper(de.dytanic.cloudnetcore.network.components.Wrapper) ServerGroup(de.dytanic.cloudnet.lib.server.ServerGroup) ServerProcessMeta(de.dytanic.cloudnet.lib.server.ServerProcessMeta) ServerInfo(de.dytanic.cloudnet.lib.server.info.ServerInfo) TypeToken(com.google.gson.reflect.TypeToken) ScheduledTask(de.dytanic.cloudnet.lib.utility.threading.ScheduledTask) MinecraftServer(de.dytanic.cloudnetcore.network.components.MinecraftServer)

Aggregations

ServerGroup (de.dytanic.cloudnet.lib.server.ServerGroup)16 ProxyGroup (de.dytanic.cloudnet.lib.server.ProxyGroup)8 TypeToken (com.google.gson.reflect.TypeToken)7 Document (de.dytanic.cloudnet.lib.utility.document.Document)5 Wrapper (de.dytanic.cloudnetcore.network.components.Wrapper)5 ServerInfo (de.dytanic.cloudnet.lib.server.info.ServerInfo)4 SimpleServerGroup (de.dytanic.cloudnet.lib.server.SimpleServerGroup)3 Template (de.dytanic.cloudnet.lib.server.template.Template)3 WrapperExternal (de.dytanic.cloudnet.lib.network.WrapperExternal)2 WrapperInfo (de.dytanic.cloudnet.lib.network.WrapperInfo)2 ServerConfig (de.dytanic.cloudnet.lib.server.ServerConfig)2 ScheduledTask (de.dytanic.cloudnet.lib.utility.threading.ScheduledTask)2 MinecraftServer (de.dytanic.cloudnetcore.network.components.MinecraftServer)2 PriorityStopTask (de.dytanic.cloudnetcore.network.components.priority.PriorityStopTask)2 CloudNetwork (de.dytanic.cloudnet.lib.CloudNetwork)1 CloudServerMeta (de.dytanic.cloudnet.lib.cloudserver.CloudServerMeta)1 CloudPlayer (de.dytanic.cloudnet.lib.player.CloudPlayer)1 AutoSlot (de.dytanic.cloudnet.lib.proxylayout.AutoSlot)1 ServerProcessMeta (de.dytanic.cloudnet.lib.server.ServerProcessMeta)1 DevService (de.dytanic.cloudnet.lib.server.advanced.DevService)1