]> git.sur5r.net Git - bacula/bacula/blob - gui/bweb/cgi/bweb.pl
ebl first cup of client group option
[bacula/bacula] / gui / bweb / cgi / bweb.pl
1 #!/usr/bin/perl -w
2 use strict ;
3
4 =head1 LICENSE
5
6    Bweb - A Bacula web interface
7    Bacula® - The Network Backup Solution
8
9    Copyright (C) 2000-2006 Free Software Foundation Europe e.V.
10
11    The main author of Bweb is Eric Bollengier.
12    The main author of Bacula is Kern Sibbald, with contributions from
13    many others, a complete list can be found in the file AUTHORS.
14
15    This program is Free Software; you can redistribute it and/or
16    modify it under the terms of version two of the GNU General Public
17    License as published by the Free Software Foundation plus additions
18    that are listed in the file LICENSE.
19
20    This program is distributed in the hope that it will be useful, but
21    WITHOUT ANY WARRANTY; without even the implied warranty of
22    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
23    General Public License for more details.
24
25    You should have received a copy of the GNU General Public License
26    along with this program; if not, write to the Free Software
27    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
28    02110-1301, USA.
29
30    Bacula® is a registered trademark of John Walker.
31    The licensor of Bacula is the Free Software Foundation Europe
32    (FSFE), Fiduciary Program, Sumatrastrasse 25, 8006 Zurich,
33    Switzerland, email:ftf@fsfeurope.org.
34
35 =head1 VERSION
36
37     $Id$
38
39 =cut
40
41 use Data::Dumper;
42 use Bweb;
43 use CGI;
44
45 my $client_re = qr/^([\w\d\.-]+)$/;
46
47 my $action = CGI::param('action') || 'begin';
48
49 if ($action eq 'restore') {
50     print CGI::header('text/brestore'); # specialy to run brestore.pl
51
52 } else {
53     print CGI::header('text/html');
54 }
55
56 # loading config file
57 my $conf = new Bweb::Config(config_file => $Bweb::config_file);
58 $conf->load();
59
60 my $bweb = new Bweb(info => $conf);
61
62 # just send data with text/brestore content
63 if ($action eq 'restore') {
64     $bweb->restore();
65     exit 0;
66 }
67
68 my $arg = $bweb->get_form('jobid', 'limit', 'offset', 'age');
69
70 $bweb->display_begin();
71
72 # if no configuration, we send edit_conf
73 if ($action ne 'apply_conf' and !$bweb->{info}->{dbi}) {
74     $action = 'edit_conf';
75 }
76
77 if ($action eq 'begin') {               # main display
78     print "<div style='left=0;'><table border='0'><tr><td valign='top' width='100%'>\n";
79     $bweb->display_general(age => $arg->{age});
80     $bweb->display_running_jobs(0);
81     print "</td><td valign='top'>";
82     $bweb->display({}, "stats.tpl");
83     print "</td></tr></table></div>";
84     $bweb->display_job(limit => 10); 
85
86 } elsif ($action eq 'view_conf') {
87     $conf->view()
88
89 } elsif ($action eq 'edit_conf') {
90     $conf->edit();
91
92 } elsif ($action eq 'apply_conf') {
93     $conf->modify();
94
95 } elsif ($action eq 'client') { 
96     $bweb->display_clients();
97
98 } elsif ($action eq 'pool') {
99     $bweb->display_pool();
100
101 } elsif ($action eq 'location_edit') {
102     $bweb->location_edit();
103
104 } elsif ($action eq 'location_save') {
105     $bweb->location_save();
106
107 } elsif ($action eq 'location_add') {
108     $bweb->location_add();
109
110 } elsif ($action eq 'location_del') {
111     $bweb->location_del();
112
113 } elsif ($action eq 'media') {
114     print "<div><table border='0'><tr><td valign='top'>\n";
115     my $fields = $bweb->get_form(qw/db_locations db_pools
116                                     qlocations qpools volstatus qre_media
117                                     limit  qmediatypes db_mediatypes/);
118     $bweb->display($fields, "display_form_media.tpl");
119
120     print "</td><td valign='top'>";
121     $bweb->display_media(offset => $arg->{offset},
122                          limit => $arg->{limit});
123     print "</td></tr></table></div>";
124
125 } elsif ($action eq 'medias') {
126     $bweb->display_medias();
127
128 } elsif ($action eq 'eject') {
129     my $arg = $bweb->get_form("ach");
130     my $a = $bweb->ach_get($arg->{ach});
131     
132     if ($a) {
133         $a->status();
134         foreach my $slot (CGI::param('slot')) {
135             print $a->{error} unless $a->send_to_io($slot);
136         }
137
138         foreach my $media (CGI::param('media')) {
139             my $slot = $a->get_media_slot($media);
140             print $a->{error} unless $a->send_to_io($slot);
141         }
142
143         $a->display_content();
144     }
145
146 } elsif ($action eq 'eject_media') {
147     $bweb->eject_media();
148
149 } elsif ($action eq 'clear_io') {
150     my $arg = $bweb->get_form('ach');
151
152     my $a = $bweb->ach_get($arg->{ach});
153     if (defined $a) {
154         $a->status();
155         $a->clear_io();
156         $a->display_content();
157     }
158
159 } elsif ($action eq 'ach_edit') {
160     $bweb->ach_edit();
161
162 } elsif ($action eq 'ach_del') {
163     $bweb->ach_del();
164
165 } elsif ($action eq 'ach_view') {
166     # TODO : get autochanger name and create it
167     $bweb->connect_db();
168     my $arg = $bweb->get_form('ach');
169
170     my $a = $bweb->ach_get($arg->{ach});
171     if ($a) {
172         $a->status();
173         $a->display_content();
174     }
175
176 } elsif ($action eq 'ach_add') {
177     $bweb->ach_add();
178
179 } elsif ($action eq 'ach_load') {
180     my $arg = $bweb->get_form('ach', 'drive', 'slot');
181     
182     my $a = $bweb->ach_get($arg->{ach});
183
184     if (defined $a and defined $arg->{drive} and defined $arg->{slot})
185     {
186         my $b = new Bconsole(pref => $conf, timeout => 300, log_stdout => 1) ;
187         # TODO : use template here
188         print "<pre>\n";
189         $b->send_cmd("mount slot=$arg->{slot} drive=$arg->{drive} storage=\"" . $a->get_drive_name($arg->{drive}) . '"');
190         print "</pre>\n";
191     } else {
192         $bweb->error("Can't get drive, slot or ach");
193     }
194     
195 } elsif ($action eq 'ach_unload') {
196     my $arg = $bweb->get_form('drive', 'slot', 'ach');
197
198     my $a = $bweb->ach_get($arg->{ach});
199
200     if (defined $a and defined $arg->{drive} and defined $arg->{slot})
201     {
202         my $b = new Bconsole(pref => $conf, timeout => 300, log_stdout => 1) ;
203         # TODO : use template here
204         print "<pre>\n";
205         $b->send_cmd("umount drive=$arg->{drive} storage=\"" . $a->get_drive_name($arg->{drive}) . '"');
206         print "</pre>\n";
207
208     } else {
209         $bweb->error("Can't get drive, slot or ach");
210     }   
211 } elsif ($action eq 'intern_media') {
212     $bweb->help_intern();
213
214 } elsif ($action eq 'compute_intern_media') {
215     $bweb->help_intern_compute();
216
217 } elsif ($action eq 'extern_media') {
218     $bweb->help_extern();
219
220 } elsif ($action eq 'compute_extern_media') {
221     $bweb->help_extern_compute();
222
223 } elsif ($action eq 'extern') {
224     print "<div style='float: left;'>";
225     my @achs = $bweb->eject_media();
226     for my $ach (@achs) {
227         CGI::param('ach', $ach);
228         $bweb->update_slots();
229     }
230     print "</div><div style='float: left;margin-left: 20px;'>";
231     $bweb->move_media();
232     print "</div>";
233
234 } elsif ($action eq 'move_email') {
235     $bweb->move_email();
236
237 } elsif ($action eq 'change_location') {
238     $bweb->location_change();
239
240 } elsif ($action eq 'location') {
241     $bweb->location_display();
242
243 } elsif ($action eq 'about') {
244     $bweb->display($bweb, 'about.tpl');
245
246 } elsif ($action eq 'intern') {
247     $bweb->move_media(); # TODO : remove that
248
249 } elsif ($action eq 'move_media') {
250     $bweb->move_media(); 
251
252 } elsif ($action eq 'save_location') {
253     $bweb->save_location();
254
255 } elsif ($action eq 'update_location') {
256     $bweb->update_location();
257
258 } elsif ($action eq 'update_media') {
259     $bweb->update_media();
260
261 } elsif ($action eq 'do_update_media') {
262     $bweb->do_update_media();
263
264 } elsif ($action eq 'update_slots') {
265     $bweb->update_slots();
266
267 } elsif ($action eq 'graph') {
268     $bweb->display_graph();
269
270 } elsif ($action eq 'next_job') {
271     $bweb->director_show_sched();
272
273 } elsif ($action eq 'enable_job') {
274     $bweb->enable_disable_job(1);
275
276 } elsif ($action eq 'disable_job') {
277     $bweb->enable_disable_job(0);
278
279 } elsif ($action eq 'groups') {
280     $bweb->display_groups();
281
282 } elsif ($action eq 'groups_edit') {
283     $bweb->groups_edit();
284
285 } elsif ($action eq 'groups_save') {
286     $bweb->groups_save();
287
288 } elsif ($action eq 'groups_add') {
289     $bweb->groups_add();
290
291 } elsif ($action eq 'groups_del') {
292     $bweb->groups_del();
293
294 } elsif ($action eq 'job') {
295
296     print "<div><table border='0'><tr><td valign='top'>\n";
297     my $fields = $bweb->get_form(qw/status level db_clients db_filesets
298                                     limit age offset qclients qfilesets
299 #                                   db_client_groups qclient_groups
300                                     jobtype qpools db_pools/);
301     $bweb->display($fields, "display_form_job.tpl");
302
303     print "</td><td valign='top'>";
304     $bweb->display_job(age => $arg->{age},  # last 7 days
305                        offset => $arg->{offset},
306                        limit => $arg->{limit});
307     print "</td></tr></table></div>";
308 } elsif ($action eq 'client_stats') {
309
310     foreach my $client (CGI::param('client')) {
311         if ($client =~ m/$client_re/) {
312             $bweb->display_client_stats(clientname => $1,
313                                         age => $arg->{age});
314         }
315     }
316
317 } elsif ($action eq 'running') {
318     $bweb->display_running_jobs(1);
319
320 } elsif ($action eq 'dsp_cur_job') {
321     $bweb->display_running_job();
322
323 } elsif ($action eq 'update_from_pool') {
324     my $elt = $bweb->get_form(qw/media pool/);
325     unless ($elt->{media} || $elt->{pool}) {
326         $bweb->error("Can't get media or pool param");
327     } else {
328         my $b = new Bconsole(pref => $conf) ;
329
330         $bweb->display({
331  content => $b->send_cmd("update volume=$elt->{media} fromPool=$elt->{pool}"),
332  title => "Update pool",
333  name => "update volume=$elt->{media} fromPool=$elt->{pool}",
334         }, "command.tpl");      
335     }
336     
337     $bweb->update_media();
338
339 } elsif ($action eq 'client_status') {
340     my $b;
341     foreach my $client (CGI::param('client')) {
342         if ($client =~ m/$client_re/) {
343             $client = $1;
344             $b = new Bconsole(pref => $conf) 
345                 unless ($b) ;
346
347             $bweb->display({
348                 content => $b->send_cmd("st client=$client"),
349                 title => "Client status",
350                 name => $client,
351             }, "command.tpl");
352             
353         } else {
354             $bweb->error("Can't get client selection");
355         }
356     }
357
358 } elsif ($action eq 'cancel_job') {
359     $bweb->cancel_job();
360
361 } elsif  ($action eq 'media_zoom') {
362     $bweb->display_media_zoom();
363
364 } elsif  ($action eq 'job_zoom') {
365     if ($arg->{jobid}) {
366         $bweb->display_job_zoom($arg->{jobid});
367         $bweb->get_job_log();
368     } 
369 } elsif ($action eq 'job_log') {
370     $bweb->get_job_log();
371
372 } elsif ($action eq 'prune') {
373     $bweb->prune();
374
375 } elsif ($action eq 'purge') {
376     $bweb->purge();
377
378 } elsif ($action eq 'run_job') {
379     $bweb->run_job();
380
381 } elsif ($action eq 'run_job_mod') {
382     $bweb->run_job_mod();
383
384 } elsif ($action eq 'run_job_now') {
385     $bweb->run_job_now();
386
387 } elsif ($action eq 'label_barcodes') {
388     $bweb->label_barcodes();
389
390 } elsif ($action eq 'delete') {
391     $bweb->delete();
392
393 } elsif ($action eq 'fileset_view') {
394     $bweb->fileset_view();
395
396 } else {
397     $bweb->error("Sorry, this action don't exist");
398 }
399
400 $bweb->display_end();
401
402 $bweb->dbh_disconnect();
403
404 __END__
405
406 TODO :
407
408  o Affichage des job en cours, termines
409  o Affichage du detail d'un job (status client)
410  o Acces aux log d'une sauvegarde
411  o Cancel d'un job
412  o Lancement d'un job
413
414  o Affichage des medias (pool, cf bacweb)
415  o Affichage de la liste des cartouches
416  o Affichage d'un autochangeur
417  o Mise a jour des slots
418  o Label barcodes
419  o Affichage des medias qui ont besoin d'etre change
420
421  o Affichage des stats sur les dernieres sauvegardes (cf bacula-web)
422  o Affichage des stats sur un type de job
423  o Affichage des infos de query.sql
424
425  - Affichage des du TapeAlert sur le site
426  - Recuperation des erreurs SCSI de /var/log/kern.log
427
428  o update d'un volume
429  o update d'un pool
430
431  o Configuration des autochanger a la main dans un hash dumper