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

90 lines
4.7 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;
2015-07-27 19:50:04 +02:00
import com.intellectualcrafters.plot.PS;
import com.intellectualcrafters.plot.object.PlotPlayer;
import com.intellectualcrafters.plot.util.TaskManager;
import com.plotsquared.general.commands.CommandDeclaration;
2015-07-18 14:21:36 +02:00
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.net.URL;
import java.net.URLConnection;
import java.util.ArrayList;
@CommandDeclaration(
command = "plugin",
permission = "plots.use",
description = "Show plugin information",
aliases = {"version}"},
category = CommandCategory.INFO
)
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
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-07-27 15:10:14 +02:00
public boolean onCommand(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
{
2015-07-26 17:08:06 +02:00
add(String.format("$2>> $1&lPlotSquared $2($1Version$2: $1%s$2)", PS.get().IMP.getPluginVersion()));
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-26 17:08:06 +02:00
add(String.format("$2>> $1&lNewest Version$2: $1" + (PS.get().update == null ? PS.get().IMP.getPluginVersion() : PS.get().update)));
2014-11-09 12:51:17 +01:00
}
};
for (final String s : strings) {
2015-07-27 15:10:14 +02:00
plr.sendMessage(s);
2014-11-09 12:51:17 +01:00
}
}
});
return true;
}
2014-09-22 13:02:14 +02:00
}