]> git.babelmonkeys.de Git - adhocweb.git/commitdiff
Move adhoc functions into a separate file
authorFlorian Zeitz <florob@babelmonkeys.de>
Sat, 25 Dec 2010 22:53:37 +0000 (23:53 +0100)
committerFlorian Zeitz <florob@babelmonkeys.de>
Sat, 25 Dec 2010 22:53:37 +0000 (23:53 +0100)
index.html
js/adhoc.js [new file with mode: 0644]
js/main.js

index 195bd949a65ea6c7c40fe8d8b60999fb3b97eba3..5390947b474ad369726cab7a78f6d23ac464bcc6 100644 (file)
@@ -8,6 +8,7 @@
 <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" />
 <script type="text/javascript" src="js/jquery-1.3.2.min.js"></script>
 <script type="text/javascript" src="js/strophejs/strophe.js"></script>
+<script type="text/javascript" src="js/adhoc.js"></script>
 <script type="text/javascript" src="js/main.js"></script>
 </head>
 <body>
diff --git a/js/adhoc.js b/js/adhoc.js
new file mode 100644 (file)
index 0000000..574c5a6
--- /dev/null
@@ -0,0 +1,239 @@
+var Adhoc = {
+    status: {
+        sessionid: null,
+        cmdNode: null,
+        queryJID: null
+    },
+
+    addNote: function (elem, text, type) {
+        if (!type) {
+           type = "info";
+        }
+        text = text.replace(/\n/g, "<br/>");
+        $(elem).append("<p class='" + type + "Note'>" + text + "</p>");
+    },
+
+    addForm: function (elem, x) {
+        var form = $("<form action='#'/>");
+        form.submit(function(event) {
+            Adhoc.executeCommand("execute", Adhoc.serializeToDataform('form'),
+                function(e) { Adhoc.displayResult(elem, e) });
+            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") {
+                    $(this).children("value").each(function() {
+                        item.children('option[value="' + $(this).text() + '"]').each(function() {
+                            $(this).attr("selected", "selected");
+                });
+                    });
+                } 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);
+    },
+
+    serializeToDataform: function (form) {
+        st = $build("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 (this.options[i].selected)
+                        st.c("value").t(this.options[i].text).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();
+        return st.tree();
+    },
+
+    displayResult: function (elem, result) {
+        var status = $(result).find("command").attr("status");
+        var kinds = {'prev': 'Prev', 'next': 'Next', 'complete': 'Complete'};
+
+        $(elem).empty();
+        $(result).find("command > *").each(function(index, e) {
+            if ($(e).is("note")) {
+                Adhoc.addNote(elem, $(e).text(), $(e).attr("type"));
+            } else if ($(e).is("x[xmlns=jabber:x:data]")) {
+                Adhoc.addForm(elem, e);
+            }
+        });
+        if (status == "executing") {
+            for (kind in kinds) {
+                input = $("<input type='button' disabled='disabled' value='" + kinds[kind] + "'/>").click(function() {
+                    if (kind == 'prev')
+                        Adhoc.executeCommand(kind, false, function(e) { Adhoc.displayResult(elem, e) });
+                    else
+                        Adhoc.executeCommand(kind, Adhoc.serializeToDataform('form'), function(e) { Adhoc.displayResult(elem, e) });
+                });
+                if ($(result).find('actions ' + kind).length > 0)
+                    input.removeAttr("disabled");
+                $(elem).append(input);
+            }
+
+            $("<input type='button' id='executeButton' value='Execute'/>").click(function() {
+                Adhoc.executeCommand("execute", Adhoc.serializeToDataform('form'), function(e) { Adhoc.displayResult(elem, e) });
+            }).appendTo(elem);
+
+            $("<input type='button' value='Cancel'/>").click(function() {
+                Adhoc.cancelCommand(function(e) { Adhoc.displayResult(elem, e) });
+            }).appendTo(elem);
+        } else {
+            input = $("<input type='button' value='Start over'/>").bind("click", function() {
+                $(elem).empty();
+                Adhoc.status.sessionid = null;
+                Adhoc.status.cmdNode = null;
+                Adhoc.getCommandNodes(elem);
+            });
+            $(elem).append(input);
+        }
+    },
+
+    runCommand: function (item, callback) {
+        Adhoc.status.cmdNode = $(item).attr("id"); // Save node of executed command (in global var)
+        Adhoc.executeCommand("execute", false, function(result) {
+            Adhoc.status.sessionid = $(result).find("command").attr("sessionid");
+            callback(result);
+        });
+    },
+
+    executeCommand: function (type, childs, callback) {
+        if (Adhoc.status.sessionid)
+            var execIQ = $iq({ type: "set", to: Adhoc.status.queryJID, id: connection.getUniqueId() })
+                .c("command", { xmlns: Strophe.NS.ADHOC, node: Adhoc.status.cmdNode, sessionid: Adhoc.status.sessionid, action: type });
+        else
+            var execIQ = $iq({ type: "set", to: Adhoc.status.queryJID, id: connection.getUniqueId() })
+                .c("command", { xmlns: Strophe.NS.ADHOC, node: Adhoc.status.cmdNode, action: type });
+        if (childs)
+            execIQ.cnode(childs);
+            connection.sendIQ(execIQ, callback);
+    },
+
+    cancelCommand: function (callback) {
+        Adhoc.executeCommand("cancel", false, callback);
+        Adhoc.status.cmdNode = null
+        Adhoc.status.sessionid = null;
+    },
+
+    getCommandNodes: function (elem) {
+        var nodesIQ = $iq({ type: "get", to: Adhoc.status.queryJID, id: connection.getUniqueId() }).c("query", {xmlns: Strophe.NS.DISCO_ITEMS, node: Strophe.NS.ADHOC});
+        connection.sendIQ(nodesIQ, function(result) {
+            var items = $("<ul></ul>");
+            $(elem).append(items);
+            $(result).find("item").each(function(index, e) {
+                $("<li></li>").append($("<a href='#' id='" + $(e).attr("node") + "'>" + $(e).attr("name") + "</a>").click(function (event) {
+                    Adhoc.runCommand(this, function (result) { Adhoc.displayResult(elem, result); });
+                    event.preventDefault();
+                })).appendTo(items);
+            });
+        });
+    },
+
+    checkFeatures: function (elem, jid) {
+        if (Adhoc.status.sessionid)
+            Adhoc.cancelCommand();
+        Adhoc.status.queryJID = jid;
+        var featureIQ = $iq({ type: "get", to: Adhoc.status.queryJID, id: connection.getUniqueId() }).c("query", {xmlns: Strophe.NS.DISCO_INFO});
+        $(elem).empty();
+        connection.sendIQ(featureIQ,
+            function(result) { /* Callback */
+                if ($(result).find("feature[var='" + Strophe.NS.ADHOC + "']").length > 0) {
+                    Adhoc.getCommandNodes(elem);
+                } else {
+                    $(elem).append("<p>" + Adhoc.status.queryJID + " does NOT support AdHoc commands</p>");
+                }
+            },
+            function(result) { /* Errback */
+                $(elem).append("<p>Couldn't get list of supported features</p>");
+            }
+        );
+    }
+
+}
index 85f2ccaeaa2ec8887710ca2fe8baed05aff0ada7..15a0fd079a41a87b3d9f4a807495856c41e42486 100644 (file)
@@ -5,11 +5,6 @@ Strophe.addNamespace("ADHOC", "http://jabber.org/protocol/commands");
 
 var localJID = null;
 var connection   = null;
-var adhoc_status = {
-    sessionid: null,
-    cmdNode: null,
-    queryJID: null
-};
 
 function log(msg) {
     var entry = $('<div></div>').append(document.createTextNode(msg));
@@ -42,242 +37,12 @@ function onConnect(status) {
         }
     } else if (status == Strophe.Status.CONNECTED) {
         log('Strophe is connected.');
-        adhoc_status.queryJID = connection.domain;
-        $('#queryJID').val(adhoc_status.queryJID);
+        $('#queryJID').val(connection.domain);
         $('#query').show();
-        checkFeatures("#output");
+        Adhoc.checkFeatures("#output", 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 action='#'/>");
-    form.submit(function(event) {
-        executeCommand("execute", serializeToDataform('form'), function(e) { displayResult(elem, e) });
-        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") {
-                $(this).children("value").each(function() {
-                    item.children('option[value="' + $(this).text() + '"]').each(function() {
-                        $(this).attr("selected", "selected");
-                   });
-                });
-            } 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 = $build("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 (this.options[i].selected)
-                    st.c("value").t(this.options[i].text).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();
-    return st.tree();
-}
-
-function displayResult(elem, result) {
-    var status = $(result).find("command").attr("status");
-    var kinds = {'prev': 'Prev', 'next': 'Next', 'complete': 'Complete'};
-
-    $(elem).empty();
-    $(result).find("command > *").each(function(index, e) {
-        if ($(e).is("note")) {
-            addNote(elem, $(e).text(), $(e).attr("type"));
-        } else if ($(e).is("x[xmlns=jabber:x:data]")) {
-            addForm(elem, e);
-        }
-    });
-    if (status == "executing") {
-        for (kind in kinds) {
-            input = $("<input type='button' disabled='disabled' value='" + kinds[kind] + "'/>").click(function() {
-                if (kind == 'prev')
-                    executeCommand(kind, false, function(e) { displayResult(elem, e) });
-                else
-                    executeCommand(kind, serializeToDataform('form'), function(e) { displayResult(elem, e) });
-            });
-            if ($(result).find('actions ' + kind).length > 0)
-                input.removeAttr("disabled");
-            $(elem).append(input);
-        }
-
-        $("<input type='button' id='executeButton' value='Execute'/>").click(function() {
-            executeCommand("execute", serializeToDataform('form'), function(e) { displayResult(elem, e) });
-        }).appendTo(elem);
-
-        $("<input type='button' value='Cancel'/>").click(function() {
-            cancelCommand(function(e) { displayResult(elem, e) });
-        }).appendTo(elem);
-    } else {
-        input = $("<input type='button' value='Start over'/>").bind("click", function() {
-            $(elem).empty();
-            adhoc_status.sessionid = null;
-            adhoc_status.cmdNode = null;
-            getCommandNodes(elem);
-        });
-        $(elem).append(input);
-    }
-}
-
-function runCommand(item, callback) {
-    adhoc_status.cmdNode = $(item).attr("id"); // Save node of executed command (in global var)
-    executeCommand("execute", false, function(result) {
-        adhoc_status.sessionid = $(result).find("command").attr("sessionid");
-        callback(result);
-    });
-}
-
-function executeCommand(type, childs, callback) {
-    if (adhoc_status.sessionid)
-        var execIQ = $iq({ type: "set", to: adhoc_status.queryJID, id: connection.getUniqueId() })
-            .c("command", { xmlns: Strophe.NS.ADHOC, node: adhoc_status.cmdNode, sessionid: adhoc_status.sessionid, action: type });
-    else
-        var execIQ = $iq({ type: "set", to: adhoc_status.queryJID, id: connection.getUniqueId() })
-            .c("command", { xmlns: Strophe.NS.ADHOC, node: adhoc_status.cmdNode, action: type });
-    if (childs)
-        execIQ.cnode(childs);
-        connection.sendIQ(execIQ, callback);
-}
-
-function cancelCommand(callback) {
-    executeCommand("cancel", false, callback);
-    adhoc_status.cmdNode = null
-    adhoc_status.sessionid = null;
-}
-
-function getCommandNodes(elem) {
-    var nodesIQ = $iq({ type: "get", to: adhoc_status.queryJID, id: connection.getUniqueId() }).c("query", {xmlns: Strophe.NS.DISCO_ITEMS, node: Strophe.NS.ADHOC});
-    connection.sendIQ(nodesIQ, function(result) {
-        var items = $("<ul></ul>");
-        $(elem).append(items);
-        $(result).find("item").each(function(index, e) {
-            $("<li></li>").append($("<a href='#' id='" + $(e).attr("node") + "'>" + $(e).attr("name") + "</a>").click(function (event) {
-                runCommand(this, function (result) { displayResult(elem, result); });
-                event.preventDefault();
-            })).appendTo(items);
-        });
-    });
-}
-
-function checkFeatures(elem) {
-    if (adhoc_status.sessionid)
-        cancelCommand();
-    featureIQ = $iq({ type: "get", to: adhoc_status.queryJID, id: connection.getUniqueId() }).c("query", {xmlns: Strophe.NS.DISCO_INFO});
-    $(elem).empty();
-    connection.sendIQ(featureIQ,
-        function(result) { /* Callback */
-            if ($(result).find("feature[var='" + Strophe.NS.ADHOC + "']").length > 0) {
-                getCommandNodes(elem);
-            } else {
-                $(elem).append("<p>" + adhoc_status.queryJID + " does NOT support AdHoc commands</p>");
-            }
-        },
-        function(result) { /* Errback */
-            $(elem).append("<p>Couldn't get list of supported features</p>");
-        }
-    );
-}
-
 function showConnect() {
     var jid = $('#jid');
     var pass = $('#pass');
@@ -335,8 +100,7 @@ $(document).ready(function () {
     });
 
     $('#queryForm').bind('submit', function (event) {
-        adhoc_status.queryJID = $('#queryJID').val();
-        checkFeatures("#output");
+        Adhoc.checkFeatures("#output", $('#queryJID').val());
         event.preventDefault();
     });
 });