]> git.sur5r.net Git - bacula/bacula/blob - gui/bweb/html/bweb.js
ebl update regress script
[bacula/bacula] / gui / bweb / html / bweb.js
1 // Bweb - A Bacula web interface
2 // Bacula® - The Network Backup Solution
3 //
4 // Copyright (C) 2000-2006 Free Software Foundation Europe e.V.
5 //
6 // The main author of Bweb is Eric Bollengier.
7 // The main author of Bacula is Kern Sibbald, with contributions from
8 // many others, a complete list can be found in the file AUTHORS.
9 //
10 // This program is Free Software; you can redistribute it and/or
11 // modify it under the terms of version two of the GNU General Public
12 // License as published by the Free Software Foundation plus additions
13 // that are listed in the file LICENSE.
14 //
15 // This program is distributed in the hope that it will be useful, but
16 // WITHOUT ANY WARRANTY; without even the implied warranty of
17 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 // General Public License for more details.
19 //
20 // You should have received a copy of the GNU General Public License
21 // along with this program; if not, write to the Free Software
22 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
23 // 02110-1301, USA.
24 //
25 // Bacula® is a registered trademark of John Walker.
26 // The licensor of Bacula is the Free Software Foundation Europe
27 // (FSFE), Fiduciary Program, Sumatrastrasse 25, 8006 Zurich,
28 // Switzerland, email:ftf@fsfeurope.org.
29
30  var even_cell_color = "#FFFFFF";
31  var odd_cell_color  = "#EEEEEE";
32  var header_color    = "#E1E0DA";
33  var rows_per_page   = 20;
34  var bweb_root       = "/bweb/";
35  var up_icon         = "/bweb/up.gif";
36  var down_icon       = "/bweb/down.gif";
37  var prev_icon       = "/bweb/left.gif";
38  var next_icon       = "/bweb/right.gif";
39  var rew_icon        = "/bweb/first.gif";
40  var fwd_icon        = "/bweb/last.gif";
41
42  var jobstatus = {
43  'C': 'created but not yet running',
44  'R': 'running',
45  'B': 'blocked',
46  'T': 'terminated normally',
47  'E': 'Job terminated in error',
48  'e': 'Non-fatal error',
49  'f': 'Fatal error',
50  'D': 'Verify differences',
51  'A': 'canceled by user',
52  'F': 'waiting on File daemon',
53  'S': 'waiting on the Storage daemon',
54  'm': 'waiting for new media',
55  'M': 'waiting for Mount',
56  's': 'Waiting for storage resource',
57  'j': 'Waiting for job resource',
58  'c': 'Waiting for Client resource',
59  'd': 'Waiting for maximum jobs',
60  't': 'Waiting for start time',
61  'p': 'Waiting for higher priority jobs to finish'
62 };
63
64 var joblevel = {
65  'F': 'Full backup',
66  'I': 'Incr (since last backup)',
67  'D': 'Diff (since last full backup)',
68  'C': 'verify from catalog',
69  'V': 'verify save (init DB)',
70  'O': 'verify Volume to catalog entries',
71  'd': 'verify Disk attributes to catalog',
72  'A': 'verify data on volume',
73  'B': 'Base level job'
74 };
75
76 var joblevelname = {
77  'F': 'Full',
78  'I': 'Incremental',
79  'D': 'Differential',
80 };
81
82
83 var refresh_time = 60000;
84
85 function bweb_refresh() {
86   location.reload(true)
87 }
88 function bweb_add_refresh(){
89         window.setInterval("bweb_refresh()",refresh_time);
90 }
91
92 function human_size(val)
93 {   
94    if (!val) {
95       return '';
96    }
97    var unit = ['B', 'KB', 'MB', 'GB', 'TB'];
98    var i=0;
99    var format;
100    while (val /1024 > 1) {
101       i++;
102       val /= 1024;
103    }
104
105    var format = (i>0)?1:0;
106    return val.toFixed(format) + ' ' + unit[i];
107 }
108
109 function human_enabled(val)
110 {   
111    if (!val) {
112       return 'no';
113    }
114
115    if (val == 'yes' || val == '1') {
116       return 'yes';
117
118    } else if (val == 'archived' || val == '2') {
119       return 'archived';
120    } else {
121       return 'no';
122    }
123 }
124
125 function human_sec(val)
126 {
127    if (!val) {
128       val = 0;
129    }
130    val /= 60;                   // sec -> min
131    
132    if ((val / 60) <= 1) {
133       return val.toFixed(0) + ' mins';
134    }
135
136    val /= 60;                   // min -> hour
137
138    if ((val / 24) <= 1) { 
139       return val.toFixed(0) + ' hours';
140    }
141
142    val /= 24;                   // hour -> day
143
144    if ((val / 365) < 2) { 
145       return val.toFixed(0) + ' days';
146    }
147
148    val /= 365;
149
150    return val.toFixed(0) + ' years';
151 }
152
153
154 //
155 // percent_display("row2", [ { nb: 1, name: "Full"   },
156 //                         { nb: 2, name: "Error"  },
157 //                         { nb: 5, name: "Append" },
158 //                         { nb: 2, name: "Purged" },
159 //                         {}                               # last element must be {}
160 //                       ]);
161
162 function percent_get_img(type)
163 {
164    var img=document.createElement('img');
165    if (type) {
166       img.className="pSlice" + type ;
167    } else {
168       img.className="pSlice";
169    }
170    img.src="/bweb/pix.png";
171    img.alt="";
172    return img;
173 }
174
175 var percent_display_nb_slice = 20;
176 var percent_usage_nb_slice = 5;
177
178 function percent_display(hash_values, parent)
179 {
180    var nb_elt=percent_display_nb_slice;
181    var tips= "";
182
183    if (!parent) {
184       parent = document.createElement('DIV');
185    }
186
187    if (typeof parent != "object") {
188       parent = document.getElementById(parent);
189    } 
190
191    if (!parent) {
192        alert("E : display_percent(): Can't find parent " + parent);
193        return;
194    }
195
196    hash_values.pop(); // drop last element {}
197
198    var nb_displayed = 0;
199    var nb_max = 0;
200
201    for(var i=0;i<hash_values.length;i++) {
202         nb_max += hash_values[i]['nb'];
203    }
204
205    for(var i=0;i<hash_values.length;i++) {
206         var elt = hash_values[i];
207         var cur_nb = (elt['nb'] * nb_elt)/nb_max;
208         var cur_name = elt['name'];
209         cur_name.replace(/-/,"_");
210
211         tips = tips + " " + elt['nb'] + " " + cur_name;
212
213         while ((nb_displayed < nb_elt) && (cur_nb >=1)) {
214             nb_displayed++;
215             cur_nb--;
216
217             var img= percent_get_img(cur_name);
218             parent.appendChild(img);
219         }       
220    }
221
222    while (nb_displayed < nb_elt) {
223       nb_displayed++;
224       var img= percent_get_img();
225       parent.appendChild(img);
226   }     
227
228   parent.title = tips;
229
230   return parent;
231 }
232
233 function percent_usage(value, parent)
234 {
235    var nb_elt=percent_usage_nb_slice;
236    var type;
237   
238    if (!parent) {
239       parent = document.createElement('DIV');
240    }   
241
242    if (typeof parent != "object") {
243       parent = document.getElementById(parent);
244    } 
245
246    if (!parent) {
247        alert("E : display_percent(): Can't find parent " + parent);
248        return;
249    }
250
251    if (value >= 500) {
252       return;
253    } else if (value <= 0.001) {
254       type = "Empty";
255       value = 0;      
256    } else if (value <= 40) {
257       type = "Ok";
258    } else if (value <= 75) {
259       type = "Warn";
260    } else if (value <= 85) {
261       type = "Crit";
262    } else {
263       type = "Crit";
264    }
265
266    var nb = parseInt(value*nb_elt/100, 10);
267    parent.title = parseInt(value*100,10)/100 + "% used (approximate)";
268
269    for(var i=0; i<nb; i++) {
270       var img= percent_get_img(type);
271       parent.appendChild(img);
272    }
273
274    for(nb;nb < nb_elt;nb++) {
275       var img= percent_get_img("Empty");
276       parent.appendChild(img);       
277    } 
278
279    return parent;
280 }
281
282 function bweb_get_job_img(status, errors)
283 {
284   var ret;
285
286   if (status == "T") {
287      if (errors > 0) {
288         ret = "W.png";
289
290      } else {
291         ret = "T.png";
292      }
293
294   } else {
295      ret = status + ".png";
296   }
297
298   return bweb_root + ret;
299 }
300
301 function search_media()
302 {
303  var what = document.getElementById('searchbox').value;
304  if (what) {
305    document.search.action.value='media';
306    document.search.re_media.value=what;
307    document.search.submit();
308  }
309 }
310
311 function search_client()
312 {
313  var what = document.getElementById('searchbox').value;
314  if (what) {
315    document.search.action.value='client';
316    document.search.re_client.value=what;
317    document.search.submit();
318  }
319 }
320
321 sfHover = function() {
322  var sfEls = document.getElementById("menu").getElementsByTagName("LI");
323  for (var i=0; i<sfEls.length; i++) {
324     sfEls[i].onmouseover=function() {
325        this.className+=" sfhover";
326     }
327     sfEls[i].onmouseout=function() {
328        this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
329     }
330  }
331 }
332
333 if (window.attachEvent) window.attachEvent("onload", sfHover);