]> git.sur5r.net Git - bacula/bacula/blob - gui/bweb/html/bweb.js
ebl add a re-run option in display_job_zoom
[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_sec(val)
110 {
111    if (!val) {
112       val = 0;
113    }
114    val /= 60;                   // sec -> min
115    
116    if ((val / 60) <= 1) {
117       return val.toFixed(0) + ' mins';
118    }
119
120    val /= 60;                   // min -> hour
121
122    if ((val / 24) <= 1) { 
123       return val.toFixed(0) + ' hours';
124    }
125
126    val /= 24;                   // hour -> day
127
128    if ((val / 365) < 2) { 
129       return val.toFixed(0) + ' days';
130    }
131
132    val /= 365;
133
134    return val.toFixed(0) + ' years';
135 }
136
137
138 //
139 // percent_display("row2", [ { nb: 1, name: "Full"   },
140 //                         { nb: 2, name: "Error"  },
141 //                         { nb: 5, name: "Append" },
142 //                         { nb: 2, name: "Purged" },
143 //                         {}                               # last element must be {}
144 //                       ]);
145
146 function percent_get_img(type)
147 {
148    var img=document.createElement('img');
149    if (type) {
150       img.className="pSlice" + type ;
151    } else {
152       img.className="pSlice";
153    }
154    img.src="/bweb/pix.png";
155    img.alt="";
156    return img;
157 }
158
159 var percent_display_nb_slice = 20;
160 var percent_usage_nb_slice = 5;
161
162 function percent_display(hash_values, parent)
163 {
164    var nb_elt=percent_display_nb_slice;
165    var tips= "";
166
167    if (!parent) {
168       parent = document.createElement('DIV');
169    }
170
171    if (typeof parent != "object") {
172       parent = document.getElementById(parent);
173    } 
174
175    if (!parent) {
176        alert("E : display_percent(): Can't find parent " + parent);
177        return;
178    }
179
180    hash_values.pop(); // drop last element {}
181
182    var nb_displayed = 0;
183    var nb_max = 0;
184
185    for(var i=0;i<hash_values.length;i++) {
186         nb_max += hash_values[i]['nb'];
187    }
188
189    for(var i=0;i<hash_values.length;i++) {
190         var elt = hash_values[i];
191         var cur_nb = (elt['nb'] * nb_elt)/nb_max;
192         var cur_name = elt['name'];
193         cur_name.replace(/-/,"_");
194
195         tips = tips + " " + elt['nb'] + " " + cur_name;
196
197         while ((nb_displayed < nb_elt) && (cur_nb >=1)) {
198             nb_displayed++;
199             cur_nb--;
200
201             var img= percent_get_img(cur_name);
202             parent.appendChild(img);
203         }       
204    }
205
206    while (nb_displayed < nb_elt) {
207       nb_displayed++;
208       var img= percent_get_img();
209       parent.appendChild(img);
210   }     
211
212   parent.title = tips;
213
214   return parent;
215 }
216
217 function percent_usage(value, parent)
218 {
219    var nb_elt=percent_usage_nb_slice;
220    var type;
221   
222    if (!parent) {
223       parent = document.createElement('DIV');
224    }   
225
226    if (typeof parent != "object") {
227       parent = document.getElementById(parent);
228    } 
229
230    if (!parent) {
231        alert("E : display_percent(): Can't find parent " + parent);
232        return;
233    }
234
235    if (value <= 0.001) {
236       type = "Empty";
237       value = 0;      
238    } else if (value <= 40) {
239       type = "Ok";
240    } else if (value <= 75) {
241       type = "Warn";
242    } else if (value <= 85) {
243       type = "Crit";
244    } else {
245       type = "Crit";
246    }
247
248    var nb = parseInt(value*nb_elt/100, 10);
249    parent.title = parseInt(value*100,10)/100 + "% used (approximate)";
250
251    for(var i=0; i<nb; i++) {
252       var img= percent_get_img(type);
253       parent.appendChild(img);
254    }
255
256    for(nb;nb < nb_elt;nb++) {
257       var img= percent_get_img("Empty");
258       parent.appendChild(img);       
259    } 
260
261    return parent;
262 }
263
264 function bweb_get_job_img(status, errors)
265 {
266   var ret;
267
268   if (status == "T") {
269      if (errors > 0) {
270         ret = "W.png";
271
272      } else {
273         ret = "T.png";
274      }
275
276   } else {
277      ret = status + ".png";
278   }
279
280   return bweb_root + ret;
281 }
282
283 function search_media()
284 {
285  var what = document.getElementById('searchbox').value;
286  if (what) {
287    document.search.action.value='media';
288    document.search.re_media.value=what;
289    document.search.submit();
290  }
291 }
292
293 function search_client()
294 {
295  var what = document.getElementById('searchbox').value;
296  if (what) {
297    document.search.action.value='client';
298    document.search.re_client.value=what;
299    document.search.submit();
300  }
301 }
302
303 sfHover = function() {
304  var sfEls = document.getElementById("menu").getElementsByTagName("LI");
305  for (var i=0; i<sfEls.length; i++) {
306     sfEls[i].onmouseover=function() {
307        this.className+=" sfhover";
308     }
309     sfEls[i].onmouseout=function() {
310        this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
311     }
312  }
313 }
314
315 if (window.attachEvent) window.attachEvent("onload", sfHover);