--- miscJava/bukkit-minecraft-plugins/HoerupUtils/src/dk/thoerup/bukkit/hoeruputils/web/StatusListener.java 2011/12/22 20:30:28 1671 +++ miscJava/bukkit-minecraft-plugins/HoerupUtils/src/main/java/dk/thoerup/bukkit/hoeruputils/web/StatusListener.java 2012/03/12 19:10:20 1720 @@ -13,10 +13,14 @@ import org.bukkit.configuration.Configuration; -import org.kokakiwi.apicraft.events.ApiEvent; -import org.kokakiwi.apicraft.events.ApiListener; +/*import org.kokakiwi.apicraft.events.ApiEvent; +import org.kokakiwi.apicraft.events.ApiListener;*/ +import de.codeinfection.quickwango.ApiBukkit.ApiBukkit; +import de.codeinfection.quickwango.ApiBukkit.ApiServer.*; -public class StatusListener extends ApiListener { + +@Controller( name = "webstatus", authenticate = false ) +public class StatusListener extends ApiController { SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); @@ -24,7 +28,13 @@ Configuration loginConfig; Configuration homeConfig; - public StatusListener(Server server, Configuration loginConfig, Configuration homeConfig) { + long cachedTime = 0; + String cachedXml = ""; + + public StatusListener(Plugin plugin, Server server, Configuration loginConfig, Configuration homeConfig) { + + super( new de.codeinfection.quickwango.ApiBukkit.Abstraction.Implementations.Bukkit.BukkitPlugin(plugin) ); + this.server = server; this.loginConfig = loginConfig; this.homeConfig = homeConfig; @@ -39,10 +49,33 @@ } @Override - public void onApiEvent(ApiEvent event) { - if(!event.path[0].equalsIgnoreCase("webstatus")) { + public void defaultAction(String action, ApiRequest request, ApiResponse response) { +/* if(!event.path[0].equalsIgnoreCase("webstatus")) { return; + }*/ + + String xml; + + synchronized(this) { //is this necessary ? + long now = System.currentTimeMillis(); + if ( (now-cachedTime) > 5000) { + xml = buildXML(); + cachedXml = xml; + cachedTime = now; + } else { + xml = cachedXml; + } } + + +/* event.setResponse(xml); + event.setActionTaken(true);*/ + + response.setContent( xml); + } + + private String buildXML() { + StringBuilder sb = new StringBuilder(); sb.append(" \n"); @@ -121,8 +154,8 @@ sb.append("\n"); sb.append(""); - event.setResponse(sb.toString()); - event.setActionTaken(true); + + return sb.toString(); }