PlotSquared/src/main/java/com/intellectualcrafters/plot/commands/plugin.java

89 lines
4.8 KiB
Java
Raw Normal View History

2014-11-08 20:27:09 +01:00
////////////////////////////////////////////////////////////////////////////////////////////////////
// PlotSquared - A plot manager and world generator for the Bukkit API /
// Copyright (c) 2014 IntellectualSites/IntellectualCrafters /
// /
// This program is free software; you can redistribute it and/or modify /
// it under the terms of the GNU General Public License as published by /
// the Free Software Foundation; either version 3 of the License, or /
// (at your option) any later version. /
// /
// This program is distributed in the hope that it will be useful, /
// but WITHOUT ANY WARRANTY; without even the implied warranty of /
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the /
// GNU General Public License for more details. /
// /
// You should have received a copy of the GNU General Public License /
// along with this program; if not, write to the Free Software Foundation, /
// Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA /
// /
// You can contact us via: support@intellectualsites.com /
////////////////////////////////////////////////////////////////////////////////////////////////////
2014-09-22 13:02:14 +02:00
package com.intellectualcrafters.plot.commands;
import com.intellectualcrafters.plot.PS;
import com.intellectualcrafters.plot.config.C;
import com.intellectualcrafters.plot.object.PlotPlayer;
import com.intellectualcrafters.plot.util.MainUtil;
import com.intellectualcrafters.plot.util.StringMan;
import com.intellectualcrafters.plot.util.TaskManager;
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.net.URL;
import java.net.URLConnection;
import java.util.ArrayList;
2014-09-22 13:02:14 +02:00
2014-11-05 04:42:08 +01:00
public class plugin extends SubCommand {
2015-02-23 02:32:27 +01:00
2014-11-05 04:42:08 +01:00
public plugin() {
super("plugin", "plots.use", "Show plugin information", "plugin", "version", CommandCategory.INFO, false);
2014-11-05 04:42:08 +01:00
}
2015-02-23 02:32:27 +01:00
2014-11-05 04:42:08 +01:00
private static String convertToNumericString(final String str, final boolean dividers) {
final StringBuilder builder = new StringBuilder();
for (final char c : str.toCharArray()) {
if (Character.isDigit(c)) {
2014-10-11 18:16:08 +02:00
builder.append(c);
2014-12-18 03:15:11 +01:00
} else if (dividers && ((c == ',') || (c == '.') || (c == '-') || (c == '_'))) {
2014-10-11 18:16:08 +02:00
builder.append(c);
2014-11-05 04:42:08 +01:00
}
2014-10-11 18:16:08 +02:00
}
return builder.toString();
}
2015-02-23 02:32:27 +01:00
2014-11-05 04:42:08 +01:00
private static String getInfo(final String link) throws Exception {
final URLConnection connection = new URL(link).openConnection();
2014-10-11 18:30:24 +02:00
connection.addRequestProperty("User-Agent", "Mozilla/4.0");
2014-11-05 04:42:08 +01:00
final BufferedReader reader = new BufferedReader(new InputStreamReader(connection.getInputStream()));
2014-10-11 18:30:24 +02:00
String document = "", line;
while ((line = reader.readLine()) != null) {
document += (line + "\n");
}
reader.close();
return document;
2014-11-05 04:42:08 +01:00
}
2015-02-23 02:32:27 +01:00
2014-11-09 12:51:17 +01:00
@Override
2015-02-21 08:30:55 +01:00
public boolean execute(final PlotPlayer plr, final String... args) {
2015-02-22 08:26:17 +01:00
TaskManager.runTaskAsync(new Runnable() {
2014-11-09 12:51:17 +01:00
@Override
public void run() {
final ArrayList<String> strings = new ArrayList<String>() {
// $2>> $1%id$2:$1%world $2- $1%owner
2014-11-09 12:51:17 +01:00
{
add(String.format("$2>> $1&lPlotSquared $2($1Version$2: $1%s$2)", PS.get().IMP.getVersion()));
2015-07-14 09:18:31 +02:00
add(String.format("$2>> $1&lAuthors$2: $1Citymonstret $2& $1Empire92"));
add(String.format("$2>> $1&lWiki$2: $1https://github.com/IntellectualCrafters/PlotSquared/wiki"));
add(String.format("$2>> $1&lWebsite$2: $1http://plotsquared.com"));
2015-07-14 09:18:31 +02:00
add(String.format("$2>> $1&lNewest Version$2: $1" + (PS.get().update == null ? PS.get().IMP.getVersion() : PS.get().update)));
2014-11-09 12:51:17 +01:00
}
};
for (final String s : strings) {
2015-07-14 09:18:31 +02:00
MainUtil.sendMessage(plr, StringMan.replaceFromMap(s, C.replacements), false);
2014-11-09 12:51:17 +01:00
}
}
});
return true;
}
2014-09-22 13:02:14 +02:00
}