]> cgit.babelmonkeys.de Git - adhocweb.git/blobdiff - js/main.js
Restructure adhoc "class"
[adhocweb.git] / js / main.js
index 61ddaa41f427a51f832208a575c2b97a6a5c61ed..621596162d3ce61b9068efa0eed6c07c7fd9605e 100644 (file)
@@ -1,11 +1,10 @@
 var BOSH_SERVICE = 'http://localhost:5280/http-bind/';
-
-Strophe.addNamespace("ADHOC", "http://jabber.org/protocol/commands");
+var show_log = true;
 
 var localJID = null;
 var connection   = null;
-var sessionid = null;
-var cmdNode = null;
+
+var commandCenter = null;
 
 function log(msg) {
     var entry = $('<div></div>').append(document.createTextNode(msg));
@@ -20,6 +19,17 @@ function rawOutput(data) {
     log('SENT: ' + data);
 }
 
+function getFeatures(jid) {
+    var cb, ecb;
+    cb = function(result) { /* Callback */
+       commandCenter.getCommandNodes(function(items) { $('#output').empty(); $('#output').append(items) });
+    }
+    ecb = function(result) { /* Errback */
+       $('#output').append("<p>" + jid + " does NOT support AdHoc commands</p>");
+    }
+    commandCenter.checkFeatures(jid, cb, ecb);
+}
+
 function onConnect(status) {
     if (status == Strophe.Status.CONNECTING) {
         log('Strophe is connecting.');
@@ -38,93 +48,30 @@ function onConnect(status) {
         }
     } else if (status == Strophe.Status.CONNECTED) {
         log('Strophe is connected.');
-        checkFeatures();
-    }
-}
-
-function displayResult(result) {
-    var status = $(result).find("command").attr("status");
-
-    $("#output *").remove();
-    $(result).find("note").each(function(index, e) {
-        var type = $(e).attr("type");
-        if (!type) {
-           type = "info";
-        }
-        $("#output").append("<p class='" + type + "Note'>" + $(e).text() + "</p>");
-    });
-    if (status == "executing") {
-        $("#output").append("<input type='button' disabled='true' id='prevButton' value='Prev'/>"+
-                            "<input type='button' disabled='true' id='nextButton' value='Next'/>"+
-                            "<input type='button' disabled='true' id='completeButton' value='Complete'/>"+
-                            "<input type='button' id='executeButton' value='Execute'/>"+
-                            "<input type='button' id='cancelButton' value='Cancel'/>");
-        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 = $("<input type='button' value='Restart'/>").bind("click", function() {
-            $('#output *').remove();
-            sessionid = null;
-            cmdNode = null;
-            getCommandNodes();
-        });
-        $("#output").append(input);
+        $('#queryJID').val(connection.domain);
+        $('#query').show();
+       commandCenter = new Adhoc("#output", function() {
+               $("<input type='button' value='Start over'/>").bind("click", function() {
+                       $('#output').empty();
+                       commandCenter.getCommandNodes(function(items) { $('#output').append(items) });
+               }).appendTo('#output');
+       });
+        getFeatures(connection.domain);
     }
 }
 
-function runCommand() {
-    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() {
-    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("<ul id='items'></ul>");
-        $(result).find("item").each(function(index, e) {
-            item = $("<li id='" + $(e).attr("node") + "'>" + $(e).attr("name") + "</li>").bind("click", runCommand);
-            $("#items").append(item);
-        });
-    });
-}
-
-function checkFeatures() {
-    featureIQ = $iq({ type: "get", to: "localhost", id: "features1" }).c("query", {xmlns: Strophe.NS.DISCO_INFO});
-    connection.sendIQ(featureIQ, function(result) {
-        if ($(result).find("feature[var='" + Strophe.NS.ADHOC + "']").length > 0) {
-            $('#output').append("<p>This entitiy does support AdHoc commands</p>");
-        } else {
-            $('#output').append("<p>This entitiy does NOT support AdHoc commands</p>");
-        }
-    });
-    getCommandNodes();
-}
-
 function showConnect() {
     var jid = $('#jid');
     var pass = $('#pass');
     var button = $('#connect').get(0);        
 
     button.value = 'connect';
+    $('#query').hide();
     pass.show();
     jid.show();
-    $('label').show();
-    $('#output *').remove();
-    return false;
+    $('#cred label').show();
+    $('#cred br').show();
+    $('#output').empty();
 }
 
 function showDisconnect() {
@@ -135,20 +82,23 @@ function showDisconnect() {
     button.value = 'disconnect';
     pass.hide();
     jid.hide();
-    $('label').hide();
-    return false;
+    $('#cred label').hide();
+    $('#cred br').hide();
 }
 
 $(document).ready(function () {
     connection = new Strophe.Connection(BOSH_SERVICE);
-    connection.rawInput = rawInput;
-    connection.rawOutput = rawOutput;
+    if (show_log) {
+        $('#log_container').show();
+        connection.rawInput = rawInput;
+        connection.rawOutput = rawOutput;
+    }
 
     $("#log_toggle").click(function () {
         $("#log").toggle();
       });
 
-    $('#cred').bind('submit', function () {
+    $('#cred').bind('submit', function (event) {
         var button = $('#connect').get(0);
         var jid = $('#jid');
         var pass = $('#pass');        
@@ -156,20 +106,24 @@ $(document).ready(function () {
 
         if (button.value == 'connect') {
             showDisconnect();
-            $('#log *').remove();
+            $('#log').empty();
             connection.connect(localJID,
                pass.get(0).value,
                onConnect);
         } else {
             connection.disconnect();
         }
-        return false;
+        event.preventDefault();
+    });
+
+    $('#queryForm').bind('submit', function (event) {
+        getFeatures($('#queryJID').val());
+        event.preventDefault();
     });
 });
 
-onunload = function() {
+window.onunload = window.onbeforeunload = function() {
     if (connection) {
         connection.disconnect();
     }
 }
-