]> cgit.babelmonkeys.de Git - adhocweb.git/blobdiff - js/main.js
Restructure adhoc "class"
[adhocweb.git] / js / main.js
index 188dfc762eda4af93e1ac45659c9671bf8046d5f..621596162d3ce61b9068efa0eed6c07c7fd9605e 100644 (file)
@@ -1,13 +1,10 @@
 var BOSH_SERVICE = 'http://localhost:5280/http-bind/';
 var show_log = true;
 
-Strophe.addNamespace("ADHOC", "http://jabber.org/protocol/commands");
-
 var localJID = null;
 var connection   = null;
-var sessionid = null;
-var cmdNode = null;
-var queryJID = null;
+
+var commandCenter = null;
 
 function log(msg) {
     var entry = $('<div></div>').append(document.createTextNode(msg));
@@ -22,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.');
@@ -40,242 +48,18 @@ function onConnect(status) {
         }
     } else if (status == Strophe.Status.CONNECTED) {
         log('Strophe is connected.');
-        queryJID = connection.domain;
-        $('#queryJID').val(queryJID);
+        $('#queryJID').val(connection.domain);
         $('#query').show();
-        checkFeatures();
+       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 addNote(elem, text, type) {
-    if (!type) {
-       type = "info";
-    }
-    text = text.replace(/\n/g, "<br/>");
-    $(elem).append("<p class='" + type + "Note'>" + text + "</p>");
-}
-
-function addForm(elem, x) {
-    var form = $("<form/>");
-    form.submit(function(event){event.preventDefault();});
-    var fieldset = $("<fieldset/>");
-    form.append(fieldset);
-    if ($(x).find("title").length > 0)
-        $("<legend/>").text($(x).find("title").text()).appendTo(fieldset);
-    if ($(x).find("instructions").length > 0)
-        $("<p/>").text($(x).find("instructions").text()).appendTo(fieldset);
-    $(x).find("field").each(function(){
-        var item = null;
-        var type = $(this).attr("type");
-        if($(this).attr("label")) {
-            $("<label/>").text($(this).attr("label")).attr("for", $(this).attr("var")).appendTo(fieldset);
-            $("<br/>").appendTo(fieldset);
-        }
-        switch(type) {
-        case "hidden":
-            item = $("<input type='hidden'/>");
-            break;
-        case "boolean":
-            item = $("<input type='checkbox'/>");
-            break;
-        case "text-multi":
-            item = $("<textarea rows='10' cols='70'/>");
-            break;
-        case "text-single":
-            item = $("<input type='text'/>");
-            break;
-        case "fixed":
-            item = $("<input type='text'/>").attr("readonly",true);
-            break;
-        case "jid-multi":
-            item = $("<textarea rows='10' cols='70'/>");
-            break;
-        case "jid-single":
-            item = $("<input type='text'/>");
-            break;
-        case "list-multi":
-            item = $("<select multiple='multiple'/>");
-            $(this).find("option").each(function(){
-                    $("<option/>").val($(this).find("value").text()).text($(this).attr("label")).appendTo(item);
-                    });
-            break;
-        case "list-single":
-            item = $("<select/>");
-            $(this).find("option").each(function(){
-                    $("<option/>").val($(this).find("value").text()).text($(this).attr("label")).appendTo(item);
-                    });
-            break;
-        case "text-private":
-            item = $("<input type='password'/>");
-            break;
-        default:
-            item = $("<input/>");
-        }
-        item.addClass("df-item");
-        if ($(this).find("value").length > 0) {
-            var value = null;
-            if ((type == "text-multi") || (type == "jid-multi")) {
-                value = "";
-                $(this).find("value").each(function() {
-                    value = value + $(this).text() + "\n";
-                });
-                item.val(value);
-            } else if (type == "list-multi") {
-                value = new Array();
-                $(this).find("value").each(function() {
-                    value[value.length] = $(this).text();
-                });
-            } else {
-                item.val($(this).find("value").text());
-            }
-        }
-        if ($(x).attr("type") == "result")
-            item.attr("readonly", true);
-        if ($(this).attr("var")) {
-            item.attr("name", $(this).attr("var"));
-            item.attr("id", $(this).attr("var"));
-        }
-        fieldset.append(item);
-        if (type != "hidden")
-            fieldset.append("<br/>");
-    });
-    $(elem).append(form);
-}
-
-function serializeToDataform(form, st) {
-    st.c("x", {"xmlns": "jabber:x:data", "type": "submit"});
-    $(form).find(".df-item").each(function(){
-        st.c("field", {"var": $(this).attr("name")});
-        if (this.nodeName.toLowerCase() == "select" && this.multiple) {
-            for (var i = 0; i < this.options.length; i++)
-                if (options[i].selected)
-                    st.c("value").t(options[i]).up();
-        } else if (this.nodeName.toLowerCase() == "textarea") {
-            var sp_value = this.value.split(/\r?\n|\r/g);
-            for(var i = 0; i < sp_value.length; i++)
-                st.c("value").t(sp_value[i]).up();
-        } else if (this.nodeName.toLowerCase() == "input" && this.type == "checkbox") {
-            if (this.checked) {
-                st.c("value").t("1");
-            } else {
-                st.c("value").t("0");
-            }
-        } else {
-            // if this has value then
-            st.c("value").t($(this).val()).up();
-        }
-        st.up();
-    });
-    st.up();
-}
-
-function displayResult(result) {
-    var status = $(result).find("command").attr("status");
-
-    $("#output").empty();
-    $(result).find("command > *").each(function(index, e) {
-        if ($(e).is("note")) {
-            addNote("#output", $(e).text(), $(e).attr("type"));
-        } else if ($(e).is("x[xmlns=jabber:x:data]")) {
-            addForm("#output", e);
-        }
-    });
-    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");
-        }
-        $('#executeButton').bind("click", function() {
-            var execIQ = $iq({ type: "set", to: queryJID, id: connection.getUniqueId() })
-                .c("command", { xmlns: Strophe.NS.ADHOC, node: cmdNode, sessionid: sessionid, action: "execute" });
-            serializeToDataform($('form'), execIQ);
-            connection.sendIQ(execIQ, displayResult);
-        });
-
-        $('#cancelButton').bind("click", function() {
-            cancelCommand(displayResult);
-        });
-
-        $('#queryForm').unbind('submit');
-        $('#queryForm').bind('submit', function (event) {
-            cancelCommand(function(result) {
-                $('#queryForm').unbind('submit');
-                $('#queryForm').bind('submit', function (event) {
-                    queryJID = $('#queryJID').val();
-                    checkFeatures();
-                    event.preventDefault();
-                });
-            });
-            queryJID = $('#queryJID').val();
-            checkFeatures();
-            event.preventDefault();
-        });
-
-    } else {
-        input = $("<input type='button' value='Start over'/>").bind("click", function() {
-            $('#output').empty();
-            sessionid = null;
-            cmdNode = null;
-            getCommandNodes();
-        });
-        $("#output").append(input);
-    }
-}
-
-function runCommand(event) {
-    cmdNode = $(this).attr("id"); // Save node of executed command (in global var)
-    var execIQ = $iq({ type: "set", to: queryJID, 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);
-    });
-    event.preventDefault();
-}
-
-function cancelCommand(callback) {
-    var cancelIQ = $iq({ type: "set", to: queryJID, id: connection.getUniqueId() })
-        .c("command", { xmlns: Strophe.NS.ADHOC, node: cmdNode, sessionid: sessionid, action: "cancel" });
-    cmdNode = null
-    sessionid = null;
-    connection.sendIQ(cancelIQ, callback);
-}
-
-function getCommandNodes() {
-    var nodesIQ = $iq({ type: "get", to: queryJID, 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) {
-            link = $("<a href='#' id='" + $(e).attr("node") + "'>" + $(e).attr("name") + "</a>").click(runCommand)
-            item = $("<li></li>").append(link);
-            $("#items").append(item);
-        });
-    });
-}
-
-function checkFeatures() {
-    featureIQ = $iq({ type: "get", to: queryJID, id: "features1" }).c("query", {xmlns: Strophe.NS.DISCO_INFO});
-    $('#output').empty();
-    connection.sendIQ(featureIQ,
-        function(result) { /* Callback */
-                if ($(result).find("feature[var='" + Strophe.NS.ADHOC + "']").length > 0) {
-                    $('#output').append("<p>This entitiy does support AdHoc commands</p>");
-                    getCommandNodes();
-                } else {
-                    $('#output').append("<p>This entitiy does NOT support AdHoc commands</p>");
-                }
-        },
-        function(result) { /* Errback */
-            $('#output').append("<p>Couldn't get list of supported features</p>");
-        }
-    );
-}
-
 function showConnect() {
     var jid = $('#jid');
     var pass = $('#pass');
@@ -333,8 +117,7 @@ $(document).ready(function () {
     });
 
     $('#queryForm').bind('submit', function (event) {
-        queryJID = $('#queryJID').val();
-        checkFeatures();
+        getFeatures($('#queryJID').val());
         event.preventDefault();
     });
 });