mirror of
https://e.coding.net/circlecloud/SimpleProtect.git
synced 2024-11-22 01:49:03 +00:00
Updata VersionChecker...
Signed-off-by: j502647092 <jtb1@163.com>
This commit is contained in:
parent
50c1d829d3
commit
941d42c96a
@ -17,30 +17,70 @@ import org.bukkit.plugin.Plugin;
|
|||||||
|
|
||||||
import com.google.common.base.Charsets;
|
import com.google.common.base.Charsets;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 自动更新类
|
||||||
|
*
|
||||||
|
* @author 蒋天蓓 2015年8月14日下午4:01:15
|
||||||
|
*/
|
||||||
public class VersionChecker implements Listener {
|
public class VersionChecker implements Listener {
|
||||||
Plugin plugin;
|
Plugin plugin;
|
||||||
|
public String checkurl = "https://coding.net/u/502647092/p/%s/git/raw/%s/src/plugin.yml";
|
||||||
|
public String branch = "master";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param plugin
|
||||||
|
* - 插件
|
||||||
|
*/
|
||||||
public VersionChecker(Plugin plugin) {
|
public VersionChecker(Plugin plugin) {
|
||||||
this.plugin = plugin;
|
this.plugin = plugin;
|
||||||
plugin.getServer().getPluginManager().registerEvents(this, plugin);
|
plugin.getServer().getPluginManager().registerEvents(this, plugin);
|
||||||
this.VersionCheck(null);
|
this.versioncheck(null);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param plugin
|
||||||
|
* - 插件
|
||||||
|
* @param branch
|
||||||
|
* - 分支名称
|
||||||
|
*/
|
||||||
|
public VersionChecker(Plugin plugin, String branch) {
|
||||||
|
this.plugin = plugin;
|
||||||
|
plugin.getServer().getPluginManager().registerEvents(this, plugin);
|
||||||
|
this.checkurl = branch;
|
||||||
|
this.versioncheck(null);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取插件更新链接
|
||||||
|
*
|
||||||
|
* @param pluginName
|
||||||
|
* - 插件名称
|
||||||
|
* @param branch
|
||||||
|
* - 插件分支
|
||||||
|
* @return 更新链接
|
||||||
|
*/
|
||||||
|
public String getCheckUrl(String pluginName, String branch) {
|
||||||
|
return String.format(checkurl, pluginName, branch);
|
||||||
}
|
}
|
||||||
|
|
||||||
@EventHandler
|
@EventHandler
|
||||||
public void onPlayerJoin(PlayerJoinEvent e) {
|
public void onPlayerJoin(PlayerJoinEvent e) {
|
||||||
if (e.getPlayer().isOp()) {
|
if (e.getPlayer().isOp()) {
|
||||||
this.VersionCheck(e.getPlayer());
|
this.versioncheck(e.getPlayer());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void VersionCheck(final Player player) {
|
/**
|
||||||
|
* 开始更新
|
||||||
|
*
|
||||||
|
* @param player
|
||||||
|
* - 获取更新的玩家(null则默认为控制台)
|
||||||
|
*/
|
||||||
|
public void versioncheck(final Player player) {
|
||||||
Bukkit.getScheduler().runTaskAsynchronously(plugin, new Runnable() {
|
Bukkit.getScheduler().runTaskAsynchronously(plugin, new Runnable() {
|
||||||
@Override
|
@Override
|
||||||
public void run() {
|
public void run() {
|
||||||
String website = plugin.getDescription().getWebsite();
|
String readURL = getCheckUrl(plugin.getName(), branch);
|
||||||
String readURL = website
|
|
||||||
+ (website.substring(website.length() - 1).equals("/") ? "" : "/")
|
|
||||||
+ "/lastSuccessfulBuild/artifact/src/plugin.yml";
|
|
||||||
FileConfiguration config;
|
FileConfiguration config;
|
||||||
String currentVersion = plugin.getDescription().getVersion();
|
String currentVersion = plugin.getDescription().getVersion();
|
||||||
try {
|
try {
|
||||||
@ -52,11 +92,10 @@ public class VersionChecker implements Listener {
|
|||||||
br.close();
|
br.close();
|
||||||
if (!newVersion.equals(currentVersion)) {
|
if (!newVersion.equals(currentVersion)) {
|
||||||
String[] msg = new String[] {
|
String[] msg = new String[] {
|
||||||
ChatColor.GREEN + plugin.getName() + "插件最新版本 v" + newVersion,
|
ChatColor.GREEN + plugin.getName() + " 插件最新版本 v" + newVersion,
|
||||||
ChatColor.RED + "服务器运行版本: v" + currentVersion,
|
ChatColor.RED + "服务器运行版本: v" + currentVersion,
|
||||||
ChatColor.GOLD + "插件更新网站: " + ChatColor.BLUE
|
ChatColor.GOLD + "插件更新网站: " + ChatColor.BLUE
|
||||||
+ plugin.getDescription().getWebsite()
|
+ plugin.getDescription().getWebsite() };
|
||||||
};
|
|
||||||
if (player != null) {
|
if (player != null) {
|
||||||
player.sendMessage(msg);
|
player.sendMessage(msg);
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
Reference in New Issue
Block a user