network_ports validation, wip
[plstackapi.git] / planetstack / core / xoslib / static / js / xoslib / xos-util.js
1 // misc utility functions
2
3 function idInArray(id, arr) {
4     // because sometimes ids are strings and sometimes they're integers
5     for (index in arr) {
6         if (id.toString() == arr[index].toString()) {
7             return true;
8         }
9     }
10     return false;
11 }
12
13 function assert(outcome, description) {
14     if (!outcome) {
15         console.log(description);
16     }
17 }
18
19 function templateFromId(id) {
20     return _.template($(id).html());
21 }
22
23 function firstCharUpper(s) {
24     return s.charAt(0).toUpperCase() + s.slice(1);
25 }
26
27 function toTitleCase(str)
28 {\r
29     return str.replace(/\w\S*/g, function(txt){return txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase();});\r
30 }
31
32 function fieldNameToHumanReadable(str)
33 {
34     str = str.replace("_", " ");
35     return toTitleCase(str);
36 }
37
38 // http://stackoverflow.com/questions/2117320/set-maximum-displayed-rows-count-for-html-table
39 function limitTableRows(tableSelector, maxRows) {
40     var table = $(tableSelector)[0] //document.getElementById(tableId);
41     var wrapper = table.parentNode;
42     var rowsInTable = table.rows.length;
43     try {
44         var border = getComputedStyle(table.rows[0].cells[0], '').getPropertyValue('border-top-width');
45         border = border.replace('px', '') * 1;
46     } catch (e) {
47         var border = table.rows[0].cells[0].currentStyle.borderWidth;
48         border = (border.replace('px', '') * 1) / 2;
49     }
50     var height = 0;
51     if (rowsInTable > maxRows) {
52         for (var i = 0; i < maxRows; i++) {
53             height += table.rows[i].clientHeight + border;
54             //console.log("XXX " + height + " " + table.rows[i].clientHeight + " " + border);
55         }
56         wrapper.style.height = height + "px";
57     }
58 }
59
60 function validateField(validatorName, value, obj) {
61     if (validatorName=="notBlank") {
62         if ((value==undefined) || (value=="")) {
63             return "can not be blank";
64         }
65     }
66
67     // if notBlank wasn't set, and the field is blank, then we can return
68     if ((value==undefined) || (value=="")) {
69         return true;
70     }
71
72     switch (validatorName) {
73         case "url":
74             if (! /^(https?|ftp):\/\/(((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:)*@)?(((\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5]))|((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?)(:\d*)?)(\/((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)+(\/(([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)*)*)?)?(\?((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|[\uE000-\uF8FF]|\/|\?)*)?(\#((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|\/|\?)*)?$/i.test(value)) {
75                 return "must be a valid url";
76             }
77             break;
78     }
79
80     return true;
81 }
82
83 function array_diff(a1, a2)
84 {\r
85   var a=[], diff=[];\r
86   for(var i=0;i<a1.length;i++)\r
87     a[a1[i]]=true;\r
88   for(var i=0;i<a2.length;i++)\r
89     if(a[a2[i]]) delete a[a2[i]];\r
90     else a[a2[i]]=true;\r
91   for(var k in a)\r
92     diff.push(k);\r
93   return diff;\r
94 }
95
96 function array_subtract(a1, a2)
97 {
98     result=[]
99     for (index in a1) {
100         value = a1[index];
101         if (!$.inArray(value, a2) >= 0) {
102             result.push(value);
103         }
104     }
105     return result;
106 }
107
108 function array_same_elements(arr1, arr2)
109 {
110     // return true if arrays have same elements, even if order is different
111     return ($(arr1).not(arr2).length == 0 && $(arr2).not(arr1).length == 0);
112 }
113
114 function array_pair_lookup(x, names, values)
115 {
116     for (index in values) {
117         if (values[index] == x) {
118             return names[index];
119         }
120     }
121     return "object #" + x;
122 }
123
124 function all_options(selector) {
125     el = $(selector);
126     result = [];
127     _.each(el.find("option"), function(option) {
128         result.push($(option).val());
129     });
130     return result;
131 }
132
133 function make_same_width(containerSelector, itemSelector) {
134     var maxWidth = 0;
135     $(containerSelector).find(itemSelector).each( function(index) { maxWidth = Math.max(maxWidth, $(this).width()); });\r
136     console.log(maxWidth);\r
137     $(containerSelector).find(itemSelector).each( function(index) { $(this).width(maxWidth); });
138 }
139
140 function parse_portlist(ports) {
141     /* Support a list of ports in the format "protocol:port, protocol:port, ..."
142         examples:
143             tcp 123
144             tcp 123:133
145             tcp 123, tcp 124, tcp 125, udp 201, udp 202
146
147         User can put either a "/" or a " " between protocol and ports
148         Port ranges can be specified with "-" or ":"
149
150         This is a straightforward port of the code in core/models/network.py
151     */
152
153     var nats = [];
154     if (ports) {
155         parts = ports.split(",")
156         $.each(parts, function(index, part) {
157             part = $.trim(part);
158             if (part.indexOf("/")>=0) {
159                 parts2 = part.split("/",2);
160                 protocol=parts2[0];
161                 ports=parts2[1];
162             } else if (part.indexOf(" ")>=0) {
163                 parts2 = part.split(" +",2);
164                 protocol=parts2[0];
165                 ports=parts2[1];
166             } else {
167                 throw 'malformed port specifier ' + part + ', format example: "tcp 123, tcp 201:206, udp 333"';
168             }
169
170             protocol = $.trim(protocol);
171             ports = $.trim(ports);
172
173             console.log(ports);
174
175             if (protocol!="tcp" && protocol!="udp") {
176                 throw 'unknown protocol ' + protocol;
177             }
178
179             if (ports.indexOf("-")>=0) {
180                 parts2 = ports.split("-");
181                 first = parseInt($.trim(parts2[0]));
182                 last = parseInt($.trim(parts2[1]));
183                 portStr = first + ":" + last;
184             } else if (ports.indexOf(":")>=0) {
185                 parts2 = ports.split(":");
186                 first = parseInt($.trim(parts2[0]));
187                 last = parseInt($.trim(parts2[1]));
188                 portStr = first + ":" + last;
189             } else {
190                 portStr = parseInt(ports).toString();
191             }
192
193             nats.push( {l4_protocol: protocol, l4_port: portStr} );
194         }); /* end $.each(ports) */
195     }
196     return nats
197 }