add update repo...

Signed-off-by: 502647092 <jtb1@163.com>
This commit is contained in:
502647092 2015-09-01 15:36:54 +08:00
parent 04e6faa6be
commit cf7368da66
4 changed files with 44 additions and 14 deletions

View File

@ -22,22 +22,26 @@ public class Yum extends JavaPlugin {
public RepositoryManager repo;
public FileConfig config;
@Override
public void onLoad() {
config = new FileConfig(this, "config.yml");
}
@Override
public void onEnable() {
CommandHandler cmdhandler = new CommandHandler(this);
this.getCommand("yum").setExecutor(cmdhandler);
this.getCommand("yum").setTabCompleter(cmdhandler);
plugman = new PluginsManager(this);
download = new DownloadManager(this);
repo = new RepositoryManager(this);
config = new FileConfig(this, "config.yml");
repo.jsonToCache(config.getString("cache"));
repo.jsonToCache(config);
}
@Override
public void onDisable() {
if (config != null)
config.set("cache", repo.cacheToJson());
repo.cacheToJson(config);
config.save();
}

View File

@ -136,7 +136,8 @@ public class CommandHandler implements CommandExecutor, TabCompleter {
plugins = Arrays.asList(new String[] {
"add",
"list",
"clean"
"clean",
"update"
});
else
plugins = main.plugman.getPluginNames(false);

View File

@ -48,6 +48,9 @@ public class CommandRepo extends BaseCommand {
main.repo.clean();
sender.sendMessage("§6仓库: §a缓存的插件信息已清理!");
break;
case "update":
main.repo.updateRepositories(sender);
break;
}
};

View File

@ -12,6 +12,9 @@ import java.util.HashMap;
import java.util.List;
import java.util.Map.Entry;
import org.bukkit.command.CommandSender;
import org.bukkit.configuration.file.FileConfiguration;
import cn.citycraft.Yum.Yum;
import com.google.common.base.Charsets;
@ -26,6 +29,7 @@ import com.google.gson.reflect.TypeToken;
*/
public class RepositoryManager {
Gson gson;
List<String> repos;
HashMap<String, PluginInfo> plugins;
Yum main;
@ -34,6 +38,7 @@ public class RepositoryManager {
this.main = yum;
gson = new Gson();
plugins = new HashMap<String, PluginInfo>();
repos = new ArrayList<String>();
}
public void clean() {
@ -50,17 +55,20 @@ public class RepositoryManager {
}
}
public String cacheToJson() {
return gson.toJson(plugins);
public void cacheToJson(FileConfiguration config) {
config.set("repocache", gson.toJson(repos));
config.set("plugincache", gson.toJson(plugins));
}
public boolean jsonToCache(String json) {
if (json == null || json == "") {
plugins = new HashMap<String, PluginInfo>();
return false;
}
public boolean jsonToCache(FileConfiguration config) {
String repocache = config.getString("repocache");
String plugincache = config.getString("plugincache");
try {
plugins = gson.fromJson(json, new TypeToken<HashMap<String, PluginInfo>>() {
if (repocache != null && repocache != "")
repos = gson.fromJson(repocache, new TypeToken<List<String>>() {
}.getType());
if (plugincache != null && plugincache != "")
plugins = gson.fromJson(plugincache, new TypeToken<HashMap<String, PluginInfo>>() {
}.getType());
return true;
} catch (JsonSyntaxException e) {
@ -68,6 +76,19 @@ public class RepositoryManager {
}
}
public boolean updateRepositories(CommandSender sender) {
plugins.clear();
for (String string : repos) {
if (addRepositories(string)) {
sender.sendMessage("§6源: §e" + string + " §a更新成功!");
} else {
sender.sendMessage("§6源: §e" + string + " §c更新失败!");
}
}
sender.sendMessage("§6源: §a所有的源已更新完成!");
return true;
}
public boolean addRepositories(String urlstring) {
String json = getHtml(urlstring);
if (json == "") {
@ -80,6 +101,7 @@ public class RepositoryManager {
for (Repository repository : lrepo) {
addPackage(repository.url);
}
repos.add(urlstring);
return true;
}