From: Florian Zeitz Date: Sun, 22 Aug 2010 13:23:59 +0000 (+0200) Subject: Implement "cancel" action X-Git-Url: http://cgit.babelmonkeys.de/?p=adhocweb.git;a=commitdiff_plain;h=15adf08d0903da15021677a61a5ffdf41272ba8a Implement "cancel" action --- diff --git a/js/main.js b/js/main.js index 2cf542e..61ddaa4 100644 --- a/js/main.js +++ b/js/main.js @@ -4,6 +4,8 @@ Strophe.addNamespace("ADHOC", "http://jabber.org/protocol/commands"); var localJID = null; var connection = null; +var sessionid = null; +var cmdNode = null; function log(msg) { var entry = $('
').append(document.createTextNode(msg)); @@ -45,24 +47,34 @@ function displayResult(result) { $("#output *").remove(); $(result).find("note").each(function(index, e) { - type = $(e).attr("type"); + var type = $(e).attr("type"); if (!type) { type = "info"; } $("#output").append("

" + $(e).text() + "

"); }); if (status == "executing") { - $("#output").append(""+ - ""+ - ""+ - ""); + $("#output").append(""+ + ""+ + ""+ + ""+ + ""); for (kind in ['prev', 'next', 'complete']) { if ($(result).find('actions ' + kind).length > 0) $('#' + kind + 'Button').attr("disabled", "false"); } + $('#cancelButton').bind("click", function() { + var cancelIQ = $iq({ type: "set", to: "localhost", id: connection.getUniqueId() }) + .c("command", { xmlns: Strophe.NS.ADHOC, node: cmdNode, sessionid: sessionid, action: "cancel" }); + cmdNode = null + sessionid = null; + connection.sendIQ(cancelIQ, displayResult); + }); } else { input = $("").bind("click", function() { $('#output *').remove(); + sessionid = null; + cmdNode = null; getCommandNodes(); }); $("#output").append(input); @@ -70,14 +82,17 @@ function displayResult(result) { } function runCommand() { - execIQ = $iq({ type: "set", to: "localhost", id: connection.getUniqueId() }) - .c("command", { xmlns: Strophe.NS.ADHOC, node: $(this).attr("id"), - action: "execute" }); - connection.sendIQ(execIQ, displayResult); + cmdNode = $(this).attr("id"); // Save not of executed command (in global) + var execIQ = $iq({ type: "set", to: "localhost", id: connection.getUniqueId() }) + .c("command", { xmlns: Strophe.NS.ADHOC, node: cmdNode, action: "execute" }); + connection.sendIQ(execIQ, function(result) { + sessionid = $(result).find("command").attr("sessionid"); + displayResult(result); + }); } function getCommandNodes() { - nodesIQ = $iq({ type: "get", to: "localhost", id: "nodes1" }).c("query", {xmlns: Strophe.NS.DISCO_ITEMS, node: Strophe.NS.ADHOC}); + var nodesIQ = $iq({ type: "get", to: "localhost", id: "nodes1" }).c("query", {xmlns: Strophe.NS.DISCO_ITEMS, node: Strophe.NS.ADHOC}); connection.sendIQ(nodesIQ, function(result) { $('#output').append(""); $(result).find("item").each(function(index, e) {