2017-06-02 15:51:03 +02:00
|
|
|
package me.libraryaddict.disguise.utilities;
|
|
|
|
|
2019-01-03 03:13:03 +01:00
|
|
|
import me.libraryaddict.disguise.utilities.reflection.ReflectionManager;
|
2018-10-23 23:11:37 +02:00
|
|
|
import org.bukkit.configuration.file.YamlConfiguration;
|
|
|
|
|
2017-06-02 15:51:03 +02:00
|
|
|
import java.io.File;
|
|
|
|
import java.net.URL;
|
|
|
|
import java.net.URLClassLoader;
|
2019-02-16 04:57:07 +01:00
|
|
|
import java.text.ParseException;
|
|
|
|
import java.text.SimpleDateFormat;
|
|
|
|
import java.util.Date;
|
2017-06-02 15:51:03 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Created by libraryaddict on 2/06/2017.
|
|
|
|
*/
|
2017-06-08 17:09:28 +02:00
|
|
|
public class LibsPremium {
|
2019-02-16 04:57:07 +01:00
|
|
|
private static class PluginInformation {
|
|
|
|
private String userID;
|
|
|
|
private boolean premium;
|
|
|
|
private String version;
|
|
|
|
private String buildNumber;
|
|
|
|
private String buildDate;
|
|
|
|
|
|
|
|
public PluginInformation(String userID, boolean premium, String version, String buildNumber, String buildDate) {
|
|
|
|
this.userID = userID;
|
|
|
|
this.premium = premium;
|
|
|
|
this.version = version;
|
|
|
|
this.buildNumber = buildNumber;
|
|
|
|
this.buildDate = buildDate;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getUserID() {
|
|
|
|
return userID;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean isPremium() {
|
|
|
|
return premium;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getVersion() {
|
|
|
|
return version;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getBuildNumber() {
|
|
|
|
return buildNumber;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getBuildDate() {
|
|
|
|
return buildDate;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Date getParsedBuildDate() {
|
|
|
|
try {
|
|
|
|
return new SimpleDateFormat("dd/MM/yyyy HH:mm").parse(getBuildDate());
|
|
|
|
}
|
|
|
|
catch (ParseException e) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-02 15:51:03 +02:00
|
|
|
private static Boolean thisPluginIsPaidFor;
|
|
|
|
|
2019-02-16 04:57:07 +01:00
|
|
|
/**
|
|
|
|
* @return Account ID if downloaded through SpigotMC
|
|
|
|
*/
|
|
|
|
public static String getUserID() {
|
|
|
|
return "%%__USER__%%";
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return Resource ID if downloaded through SpigotMC
|
|
|
|
*/
|
|
|
|
public static String getResourceID() {
|
|
|
|
return "%%__RESOURCE__%%";
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return Download ID if downloaded through SpigotMC
|
|
|
|
*/
|
|
|
|
public static String getDownloadID() {
|
|
|
|
return "%%__NONCE__%%";
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param userID
|
|
|
|
* @return true if userID does not contain __USER__
|
|
|
|
*/
|
|
|
|
private static Boolean isPremium(String userID) {
|
|
|
|
return !userID.contains("__USER__");
|
|
|
|
}
|
|
|
|
|
2017-06-02 15:51:03 +02:00
|
|
|
public static Boolean isPremium() {
|
2019-02-16 04:57:07 +01:00
|
|
|
return thisPluginIsPaidFor == null ? !getUserID().contains("__USER__") : thisPluginIsPaidFor;
|
2017-06-02 15:51:03 +02:00
|
|
|
}
|
|
|
|
|
2019-03-05 05:51:06 +01:00
|
|
|
/**
|
|
|
|
* Checks if the premiumVersion can work on the current version
|
|
|
|
*/
|
|
|
|
private static boolean isValidVersion(String currentVersion, String premiumVersion) {
|
|
|
|
currentVersion = currentVersion.replaceAll("(v)|(-SNAPSHOT)", "");
|
|
|
|
|
|
|
|
// Premium version must be using an accepted versioning system
|
|
|
|
if (!premiumVersion.matches("[0-9]+(\\.[0-9]+)+")) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If current version is not a number version, then the premium version cannot be checked
|
|
|
|
if (!currentVersion.matches("[0-9]+(\\.[0-9]+)+")) {
|
|
|
|
// Return true as the rest of the version check cannot be used
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Split by decimal points
|
2019-03-07 02:39:10 +01:00
|
|
|
String[] currentSplit = currentVersion.split("\\.");
|
|
|
|
String[] premSplit = premiumVersion.split("\\.");
|
2019-03-05 05:51:06 +01:00
|
|
|
|
|
|
|
// Comparing major versions
|
|
|
|
// Current version must be the same, or lower than premium version
|
2019-03-07 02:39:10 +01:00
|
|
|
return Integer.parseInt(currentSplit[0]) <= Integer.parseInt(premSplit[0]);
|
2019-03-05 05:51:06 +01:00
|
|
|
}
|
|
|
|
|
2019-02-16 04:57:07 +01:00
|
|
|
private static PluginInformation getInformation(File file) throws Exception {
|
|
|
|
try (URLClassLoader cl = new URLClassLoader(new URL[]{file.toURI().toURL()})) {
|
|
|
|
Class c = cl.loadClass(LibsPremium.class.getName());
|
2017-06-02 15:51:03 +02:00
|
|
|
|
2019-02-16 04:57:07 +01:00
|
|
|
boolean oldJarFile = true;
|
2017-06-08 17:06:58 +02:00
|
|
|
|
2019-02-16 04:57:07 +01:00
|
|
|
try {
|
|
|
|
// Error thrown if method doesn't exist
|
|
|
|
c.getMethod("getUserID");
|
|
|
|
// Method exists, is not older file
|
|
|
|
oldJarFile = false;
|
|
|
|
}
|
|
|
|
catch (Exception ignored) {
|
|
|
|
}
|
2017-06-08 17:06:58 +02:00
|
|
|
|
2019-02-16 04:57:07 +01:00
|
|
|
// Fetch the plugin.yml from the jar file
|
|
|
|
YamlConfiguration config = ReflectionManager.getPluginYaml(cl);
|
|
|
|
// No checks for null config as the correct error will be thrown on access
|
2017-06-02 15:51:03 +02:00
|
|
|
|
2019-02-16 04:57:07 +01:00
|
|
|
Boolean premium;
|
|
|
|
String userId = null;
|
2017-06-02 15:51:03 +02:00
|
|
|
|
2019-02-16 04:57:07 +01:00
|
|
|
if (oldJarFile) {
|
|
|
|
premium = (Boolean) c.getMethod("isPremium").invoke(null);
|
|
|
|
} else {
|
|
|
|
userId = (String) c.getMethod("getUserID").invoke(null);
|
|
|
|
premium = isPremium(userId);
|
|
|
|
}
|
2017-06-02 15:51:03 +02:00
|
|
|
|
2019-02-16 04:57:07 +01:00
|
|
|
String pluginBuildDate = "??/??/????";
|
2018-10-23 23:11:37 +02:00
|
|
|
|
2019-02-16 04:57:07 +01:00
|
|
|
// If plugin.yml contains a build-date
|
|
|
|
if (config.contains("build-date")) {
|
|
|
|
pluginBuildDate = config.getString("build-date");
|
|
|
|
}
|
2018-10-23 23:11:37 +02:00
|
|
|
|
2019-02-16 04:57:07 +01:00
|
|
|
String pluginBuildNumber = "???";
|
2017-06-02 15:51:03 +02:00
|
|
|
|
2019-02-16 04:57:07 +01:00
|
|
|
// If plugin.yml contains a jenkins build number
|
|
|
|
if (config.contains("build-number")) {
|
|
|
|
pluginBuildNumber = config.getString("build-number");
|
2018-02-15 22:51:15 +01:00
|
|
|
|
2019-02-16 04:57:07 +01:00
|
|
|
// If build number is composed of purely numbers, prepend with # for readability
|
|
|
|
if (pluginBuildNumber.matches("[0-9]+")) {
|
|
|
|
pluginBuildNumber = "#" + pluginBuildNumber;
|
2017-06-02 15:51:03 +02:00
|
|
|
}
|
|
|
|
}
|
2019-02-16 04:57:07 +01:00
|
|
|
|
|
|
|
String pluginVersion = config.getString("version");
|
|
|
|
|
|
|
|
return new PluginInformation(userId, premium, pluginVersion, pluginBuildNumber, pluginBuildDate);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-05 05:51:06 +01:00
|
|
|
private static void doSecondaryCheck(String version) {
|
2019-02-16 04:57:07 +01:00
|
|
|
File[] files = new File("plugins/LibsDisguises/").listFiles();
|
|
|
|
|
|
|
|
if (files == null)
|
|
|
|
return;
|
|
|
|
|
|
|
|
for (File file : files) {
|
|
|
|
if (!file.isFile())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (!file.getName().endsWith(".jar"))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
PluginInformation plugin;
|
|
|
|
|
|
|
|
try {
|
|
|
|
plugin = getInformation(file);
|
|
|
|
}
|
|
|
|
catch (ClassNotFoundException ex) {
|
|
|
|
DisguiseUtilities.getLogger()
|
|
|
|
.warning("Found an unrecognized jar in the LibsDisguises folder (" + file.getName() + ")");
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
catch (Exception ex) {
|
|
|
|
DisguiseUtilities.getLogger().warning("Error while trying to handle the file " + file.getName());
|
|
|
|
ex.printStackTrace();
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Format into a string
|
|
|
|
// v5.2.6, build #40, created 16/02/2019
|
|
|
|
String fileInfo = String.format("v%s, build %s, created %s", plugin.getVersion(), plugin.getBuildNumber(),
|
|
|
|
plugin.getBuildDate());
|
|
|
|
|
|
|
|
if (plugin.isPremium()) {
|
2019-03-07 02:49:37 +01:00
|
|
|
if (!isValidVersion(version, plugin.getVersion()) || plugin.getUserID() == null) {
|
2019-03-05 05:51:06 +01:00
|
|
|
DisguiseUtilities.getLogger().warning(
|
|
|
|
"You have an old Lib's Disguises jar (" + file.getName() + " " + fileInfo +
|
|
|
|
") in the LibsDisguises folder! For security purposes, please replace this with a" +
|
|
|
|
" new " +
|
|
|
|
"version from SpigotMC - https://www.spigotmc.org/resources/libs-disguises.32453/");
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2019-02-16 04:57:07 +01:00
|
|
|
thisPluginIsPaidFor = true;
|
|
|
|
// Found a premium Lib's Disguises jar (v5.2.6, build #40, created 16/02/2019)
|
2019-03-05 05:51:06 +01:00
|
|
|
DisguiseUtilities.getLogger().info("Found a premium Lib's Disguises jar (" + fileInfo + ")");
|
|
|
|
DisguiseUtilities.getLogger().info("Registered to: " + getSanitizedUser(plugin.getUserID()));
|
2019-02-16 04:57:07 +01:00
|
|
|
|
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
// You have a non-premium Lib's Disguises jar (LibsDisguises.jar v5.2.6, build #40, created
|
|
|
|
// 16/02/2019) in the LibsDisguises folder!
|
|
|
|
DisguiseUtilities.getLogger().warning(
|
|
|
|
"You have a non-premium Lib's Disguises jar (" + file.getName() + " " + fileInfo +
|
|
|
|
") in the LibsDisguises folder!");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-05 05:51:06 +01:00
|
|
|
/**
|
|
|
|
* Add a naughty message for the invalid user ids
|
|
|
|
*/
|
|
|
|
private static String getSanitizedUser(String userID) {
|
2019-03-05 14:32:30 +01:00
|
|
|
if (userID == null) {
|
|
|
|
return "N/A";
|
|
|
|
}
|
|
|
|
|
2019-03-05 05:51:06 +01:00
|
|
|
if (!userID.matches("[0-9]+")) {
|
|
|
|
return String.format("... %s? Am I reading this right?", userID);
|
|
|
|
}
|
|
|
|
|
|
|
|
return userID;
|
|
|
|
}
|
|
|
|
|
2019-02-16 04:57:07 +01:00
|
|
|
public static void check(String version) {
|
|
|
|
thisPluginIsPaidFor = isPremium();
|
|
|
|
|
|
|
|
if (!isPremium()) {
|
2019-03-05 05:51:06 +01:00
|
|
|
doSecondaryCheck(version);
|
|
|
|
} else {
|
|
|
|
DisguiseUtilities.getLogger().info("Registered to: " + getSanitizedUser(getUserID()));
|
2019-02-16 04:57:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (isPremium()) {
|
|
|
|
DisguiseUtilities.getLogger().info("Premium enabled, thank you for supporting Lib's Disguises!");
|
2017-06-02 15:51:03 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|