X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=planetstack%2Fcore%2Fxoslib%2Fstatic%2Fjs%2Fxoslib%2Fxos-util.js;h=2fa38a68fc74a3771619bc2cf2d0ee909ed37fcb;hb=df5a86a9734879dee4eebb6d5b372a407eb85682;hp=c1f736ebff96309a051d5d7198ac65c7565e523e;hpb=a9765fc8d10b6ffdc6f0394f7b76e72fd6149b9e;p=plstackapi.git diff --git a/planetstack/core/xoslib/static/js/xoslib/xos-util.js b/planetstack/core/xoslib/static/js/xoslib/xos-util.js index c1f736e..2fa38a6 100644 --- a/planetstack/core/xoslib/static/js/xoslib/xos-util.js +++ b/planetstack/core/xoslib/static/js/xoslib/xos-util.js @@ -1,5 +1,15 @@ // misc utility functions +function idInArray(id, arr) { + // because sometimes ids are strings and sometimes they're integers + for (index in arr) { + if (id.toString() == arr[index].toString()) { + return true; + } + } + return false; +} + function assert(outcome, description) { if (!outcome) { console.log(description); @@ -14,6 +24,17 @@ function firstCharUpper(s) { return s.charAt(0).toUpperCase() + s.slice(1); } +function toTitleCase(str) +{ + return str.replace(/\w\S*/g, function(txt){return txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase();}); +} + +function fieldNameToHumanReadable(str) +{ + str = str.replace("_", " "); + return toTitleCase(str); +} + // http://stackoverflow.com/questions/2117320/set-maximum-displayed-rows-count-for-html-table function limitTableRows(tableSelector, maxRows) { var table = $(tableSelector)[0] //document.getElementById(tableId); @@ -58,3 +79,119 @@ function validateField(validatorName, value, obj) { return true; } + +function array_diff(a1, a2) +{ + var a=[], diff=[]; + for(var i=0;i= 0) { + result.push(value); + } + } + return result; +} + +function array_same_elements(arr1, arr2) +{ + // return true if arrays have same elements, even if order is different + return ($(arr1).not(arr2).length == 0 && $(arr2).not(arr1).length == 0); +} + +function array_pair_lookup(x, names, values) +{ + for (index in values) { + if (values[index] == x) { + return names[index]; + } + } + return "object #" + x; +} + +function all_options(selector) { + el = $(selector); + result = []; + _.each(el.find("option"), function(option) { + result.push($(option).val()); + }); + return result; +} + +function make_same_width(containerSelector, itemSelector) { + var maxWidth = 0; + $(containerSelector).find(itemSelector).each( function(index) { maxWidth = Math.max(maxWidth, $(this).width()); }); + console.log(maxWidth); + $(containerSelector).find(itemSelector).each( function(index) { $(this).width(maxWidth); }); +} + +function parse_portlist(ports) { + /* Support a list of ports in the format "protocol:port, protocol:port, ..." + examples: + tcp 123 + tcp 123:133 + tcp 123, tcp 124, tcp 125, udp 201, udp 202 + + User can put either a "/" or a " " between protocol and ports + Port ranges can be specified with "-" or ":" + + This is a straightforward port of the code in core/models/network.py + */ + + var nats = []; + if (ports) { + parts = ports.split(",") + $.each(parts, function(index, part) { + part = $.trim(part); + if (part.indexOf("/")>=0) { + parts2 = part.split("/",2); + protocol=parts2[0]; + ports=parts2[1]; + } else if (part.indexOf(" ")>=0) { + parts2 = part.split(" +",2); + protocol=parts2[0]; + ports=parts2[1]; + } else { + throw 'malformed port specifier ' + part + ', format example: "tcp 123, tcp 201:206, udp 333"'; + } + + protocol = $.trim(protocol); + ports = $.trim(ports); + + console.log(ports); + + if (protocol!="tcp" && protocol!="udp") { + throw 'unknown protocol ' + protocol; + } + + if (ports.indexOf("-")>=0) { + parts2 = ports.split("-"); + first = parseInt($.trim(parts2[0])); + last = parseInt($.trim(parts2[1])); + portStr = first + ":" + last; + } else if (ports.indexOf(":")>=0) { + parts2 = ports.split(":"); + first = parseInt($.trim(parts2[0])); + last = parseInt($.trim(parts2[1])); + portStr = first + ":" + last; + } else { + portStr = parseInt(ports).toString(); + } + + nats.push( {l4_protocol: protocol, l4_port: portStr} ); + }); /* end $.each(ports) */ + } + return nats +}